c8b32bd90f18395ac98621d8696746078ccce1a8
[mono.git] / mcs / tools / cil-strip / Mono.Cecil.Binary / RVA.cs
1 //
2 // RVA.cs
3 //
4 // Author:
5 //   Jb Evain (jbevain@gmail.com)
6 //
7 // (C) 2005 Jb Evain
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 namespace Mono.Cecil.Binary {
30
31         internal struct RVA {
32
33                 public static readonly RVA Zero = new RVA (0);
34
35                 uint m_rva;
36
37                 public uint Value {
38                         get { return m_rva; }
39                         set { m_rva = value; }
40                 }
41
42                 public RVA (uint rva)
43                 {
44                         m_rva = rva;
45                 }
46
47                 public override int GetHashCode ()
48                 {
49                         return (int) m_rva;
50                 }
51
52                 public override bool Equals (object other)
53                 {
54                         if (other is RVA)
55                                 return this.m_rva == ((RVA) other).m_rva;
56
57                         return false;
58                 }
59
60                 public override string ToString ()
61                 {
62                         return string.Format ("0x{0}", m_rva.ToString ("X"));
63                 }
64
65                 public static bool operator == (RVA one, RVA other)
66                 {
67                         return one.m_rva == other.m_rva;
68                 }
69
70                 public static bool operator != (RVA one, RVA other)
71                 {
72                         return one.m_rva != other.m_rva;
73                 }
74
75                 public static bool operator < (RVA one, RVA other)
76                 {
77                         return one.m_rva < other.m_rva;
78                 }
79
80                 public static bool operator > (RVA one, RVA other)
81                 {
82                         return one.m_rva > other.m_rva;
83                 }
84
85                 public static bool operator <= (RVA one, RVA other)
86                 {
87                         return one.m_rva <= other.m_rva;
88                 }
89
90                 public static bool operator >= (RVA one, RVA other)
91                 {
92                         return one.m_rva >= other.m_rva;
93                 }
94
95                 public static RVA operator + (RVA rva, uint x)
96                 {
97                         return new RVA (rva.m_rva + x);
98                 }
99
100                 public static RVA operator - (RVA rva, uint x)
101                 {
102                         return new RVA (rva.m_rva - x);
103                 }
104
105                 public static implicit operator RVA (uint val)
106                 {
107                         return val == 0 ? Zero : new RVA (val);
108                 }
109
110                 public static implicit operator uint (RVA rva)
111                 {
112                         return rva.m_rva;
113                 }
114         }
115 }