Home
last modified time | relevance | path

Searched refs:isMips64EL (Results 1 – 6 of 6) sorted by relevance

/external/llvm/include/llvm/Object/
DELFTypes.h332 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 …]
DELFObjectFile.h669 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()
DELF.h101 bool isMips64EL() const { in isMips64EL() function
310 uint32_t Index = Rel->getSymbol(isMips64EL()); in getRelocationSymbol()
/external/llvm/tools/yaml2obj/
Dyaml2elf.cpp356 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/
DELFDumper.cpp1166 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/
Delf2yaml.cpp207 R.Type = Rel->getType(Obj.isMips64EL()); in dumpRelocation()