Home | History | Annotate | Download | only in common

Lines Matching defs:Address

64   typedef uint64_t Address;
71 // absolute, not relative to the the module's load address. That
72 // is, if the module were loaded at its nominal load address, the
90 Function(const string &name_input, const Address &address_input) :
91 name(name_input), address(address_input), size(0), parameter_size(0) {}
93 // For sorting by address. (Not style-guide compliant, but it's
96 return x->address < y->address;
102 // The start address and length of the function's code.
103 const Address address;
104 Address size;
107 Address parameter_size;
110 // address.
116 // For sorting by address. (Not style-guide compliant, but it's
119 return x.address < y.address;
122 Address address, size; // The address and size of the line's code.
129 explicit Extern(const Address &address_input) : address(address_input) {}
130 const Address address;
136 // follow at some address, or a set of changes to be applied to an
142 typedef map<Address, RuleMap> RuleChangeMap;
148 // The starting address and number of bytes of machine code this
150 Address address, size;
153 // address.
157 // force at a given address, start with initial_rules, and then
159 // including the address you're interested in.
166 if (lhs->address == rhs->address)
168 return lhs->address < rhs->address;
175 return lhs->address < rhs->address;
185 // Set the module's load address to LOAD_ADDRESS; addresses given
187 // file as offsets from this address. Construction initializes this
188 // module's load address to zero: addresses written to the symbol
194 // simply subtracts off the load address from addresses before it
195 // prints them. Only the last load address given before calling
197 void SetLoadAddress(Address load_address);
276 // Addresses in the output are all relative to the load address
298 // The module's nominal load address. Addresses for functions and
300 // address.
301 Address load_address_;
313 // A set containing Function structures, sorted by address.
316 // A set containing Extern structures, sorted by address.