Searched refs:IsMips64EL (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/llvm/include/llvm/Object/ |
| H A D | ELFTypes.h | 394 void setRInfo(uint32_t R, bool IsMips64EL) { 395 assert(!IsMips64EL); 407 void setSymbol(uint32_t s, bool IsMips64EL) { 408 setSymbolAndType(s, getType(IsMips64EL), IsMips64EL); 411 setSymbolAndType(getSymbol(IsMips64EL), t, IsMips64EL); 414 this->setRInfo((s << 8) + t, IsMips64EL); 444 void setRInfo(uint64_t R, bool IsMips64EL) { 445 if (IsMips64EL) 461 setSymbolAndType(s, getType(IsMips64EL), IsMips64EL); 463 void setType(uint32_t t, bool IsMips64EL) { [all …]
|
| /llvm-project-15.0.7/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObject.cpp | 920 static void writeRel(const RelRange &Relocations, T *Buf, bool IsMips64EL) { in writeRel() argument 925 Reloc.Type, IsMips64EL); in writeRel() 935 Sec.getObject().IsMips64EL); in visit() 938 Sec.getObject().IsMips64EL); in visit() 1347 Obj.IsMips64EL = ElfFile.isMips64EL(); in ELFBuilder() 1596 ToAdd.Type = Rel.getType(Relocs->getObject().IsMips64EL); in initRelocations() 1598 if (uint32_t Sym = Rel.getSymbol(Relocs->getObject().IsMips64EL)) { in initRelocations()
|
| H A D | ELFObject.h | 1060 bool IsMips64EL = false; variable
|
| /llvm-project-15.0.7/llvm/tools/llvm-readobj/ |
| H A D | ELFDumper.cpp | 191 Relocation(const typename ELFT::Rel &R, bool IsMips64EL) in Relocation() argument 192 : Type(R.getType(IsMips64EL)), Symbol(R.getSymbol(IsMips64EL)), in Relocation() 195 Relocation(const typename ELFT::Rela &R, bool IsMips64EL) in Relocation() argument 196 : Relocation((const typename ELFT::Rel &)R, IsMips64EL) { in Relocation() 4492 const bool IsMips64EL = this->Obj.isMips64EL(); in printDynamicRelocationsHelper() local 4497 printDynamicReloc(Relocation<ELFT>(Rela, IsMips64EL)); in printDynamicRelocationsHelper() 4504 printDynamicReloc(Relocation<ELFT>(Rel, IsMips64EL)); in printDynamicRelocationsHelper() 4512 printDynamicReloc(Relocation<ELFT>(Rel, IsMips64EL)); in printDynamicRelocationsHelper() 4520 printDynamicReloc(Relocation<ELFT>(Rela, IsMips64EL)); in printDynamicRelocationsHelper() 4525 printDynamicReloc(Relocation<ELFT>(Rel, IsMips64EL)); in printDynamicRelocationsHelper() [all …]
|