Home | History | Annotate | Download | only in gold

Lines Matching refs:code

29 // relocation code.
65 // Relocation code represented by this.
67 code() const
70 // Name of the relocation code.
75 // Type of relocation code.
80 // Whether this code is deprecated.
85 // Class of relocation code.
90 // Whether this code is implemented in gold.
95 // If code is a group relocation code, return the group number, otherwise -1.
149 Arm_reloc_property(unsigned int code, const char* name, Reloc_type rtype,
247 // Relocation code.
294 // Return an Arm_reloc_property object for CODE if it is a valid relocation
295 // code or NULL otherwise.
297 get_reloc_property(unsigned int code) const
299 gold_assert(code < Property_table_size);
300 return this->table_[code];
303 // Like get_reloc_property but only return non-NULL if relocation code is
306 get_implemented_static_reloc_property(unsigned int code) const
308 gold_assert(code < Property_table_size);
309 const Arm_reloc_property* arp = this->table_[code];
317 // Return a string describing the relocation code that is not
318 // an implemented static reloc code.
320 reloc_name_in_error_message(unsigned int code);