Home | History | Annotate | Download | only in runtime

Lines Matching refs:d_tag

49 /* MIPS dependent d_tag field for Elf32_Dyn.  */
74 inline bool IsDynamicSectionPointer(Elf32_Word d_tag, Elf32_Word e_machine) {
75 switch (d_tag) {
76 // case 1: well known d_tag values that imply Elf32_Dyn.d_un contains an address in d_ptr
117 LOG(FATAL) << "Illegal d_tag value 0x" << std::hex << d_tag;
121 // case 2: "regular" DT_* ranges where even d_tag values imply an address in d_ptr
122 if ((DT_ENCODING < d_tag && d_tag < DT_LOOS)
123 || (DT_LOOS < d_tag && d_tag < DT_HIOS)
124 || (DT_LOPROC < d_tag && d_tag < DT_HIPROC)) {
127 switch (d_tag) {
149 LOG(FATAL) << "Unknown MIPS d_tag value 0x" << std::hex << d_tag;
153 } else if ((d_tag % 2) == 0) {
159 LOG(FATAL) << "Unknown d_tag value 0x" << std::hex << d_tag;