Searched refs:isMips64EL (Results 1 – 6 of 6) sorted by relevance
/external/llvm/include/llvm/Object/ |
D | ELFTypes.h | 332 uint32_t getRInfo(bool isMips64EL) const { 333 assert(!isMips64EL); 343 uint32_t getSymbol(bool isMips64EL) const { 344 return this->getRInfo(isMips64EL) >> 8; 346 unsigned char getType(bool isMips64EL) const { 347 return (unsigned char)(this->getRInfo(isMips64EL) & 0x0ff); 373 uint64_t getRInfo(bool isMips64EL) const { 375 if (!isMips64EL) 393 uint32_t getSymbol(bool isMips64EL) const { 394 return (uint32_t)(this->getRInfo(isMips64EL) >> 32); [all …]
|
D | ELFObjectFile.h | 669 symbolIdx = getRel(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol() 671 symbolIdx = getRela(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol() 699 return getRel(Rel)->getType(EF.isMips64EL()); in getRelocationType() 701 return getRela(Rel)->getType(EF.isMips64EL()); in getRelocationType()
|
D | ELF.h | 101 bool isMips64EL() const { in isMips64EL() function 310 uint32_t Index = Rel->getSymbol(isMips64EL()); in getRelocationSymbol()
|
/external/llvm/tools/yaml2obj/ |
D | yaml2elf.cpp | 356 static bool isMips64EL(const ELFYAML::Object &Doc) { in isMips64EL() function 389 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent() 395 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()
|
/external/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 1166 Obj->getRelocationTypeName(Rel.getType(Obj->isMips64EL()), RelocName); in printDynamicRelocations() 1168 uint32_t SymIndex = Rel.getSymbol(Obj->isMips64EL()); in printDynamicRelocations() 1174 W.printNumber("Type", RelocName, (int)Rel.getType(Obj->isMips64EL())); in printDynamicRelocations() 1215 Obj->getRelocationTypeName(Rel.getType(Obj->isMips64EL()), RelocName); in printRelocation() 1233 W.printNumber("Type", RelocName, (int)Rel.getType(Obj->isMips64EL())); in printRelocation() 1235 Rel.getSymbol(Obj->isMips64EL())); in printRelocation()
|
/external/llvm/tools/obj2yaml/ |
D | elf2yaml.cpp | 207 R.Type = Rel->getType(Obj.isMips64EL()); in dumpRelocation()
|