/external/llvm/include/llvm/Object/ |
D | ELFTypes.h | 381 uint32_t getRInfo(bool isMips64EL) const { 382 assert(!isMips64EL); 392 uint32_t getSymbol(bool isMips64EL) const { 393 return this->getRInfo(isMips64EL) >> 8; 395 unsigned char getType(bool isMips64EL) const { 396 return (unsigned char)(this->getRInfo(isMips64EL) & 0x0ff); 424 uint64_t getRInfo(bool isMips64EL) const { 426 if (!isMips64EL) 444 uint32_t getSymbol(bool isMips64EL) const { 445 return (uint32_t)(this->getRInfo(isMips64EL) >> 32); [all …]
|
D | ELFObjectFile.h | 684 symbolIdx = getRel(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol() 686 symbolIdx = getRela(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol() 712 return getRel(Rel)->getType(EF.isMips64EL()); in getRelocationType() 714 return getRela(Rel)->getType(EF.isMips64EL()); in getRelocationType()
|
D | ELF.h | 106 bool isMips64EL() const { in isMips64EL() function 304 uint32_t Index = Rel->getSymbol(isMips64EL()); in getRelocationSymbol()
|
/external/llvm-project/llvm/include/llvm/Object/ |
D | ELFTypes.h | 363 uint32_t getRInfo(bool isMips64EL) const { 364 assert(!isMips64EL); 374 uint32_t getSymbol(bool isMips64EL) const { 375 return this->getRInfo(isMips64EL) >> 8; 377 unsigned char getType(bool isMips64EL) const { 378 return (unsigned char)(this->getRInfo(isMips64EL) & 0x0ff); 406 uint64_t getRInfo(bool isMips64EL) const { 408 if (!isMips64EL) 427 uint32_t getSymbol(bool isMips64EL) const { 428 return (uint32_t)(this->getRInfo(isMips64EL) >> 32); [all …]
|
D | ELFObjectFile.h | 962 symbolIdx = getRel(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol() 964 symbolIdx = getRela(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol() 988 return getRel(Rel)->getType(EF.isMips64EL()); in getRelocationType() 990 return getRela(Rel)->getType(EF.isMips64EL()); in getRelocationType()
|
D | ELF.h | 180 bool isMips64EL() const { return isMipsELF64() && isLE(); } in isMips64EL() function 514 uint32_t Index = Rel.getSymbol(isMips64EL()); in getRelocationSymbol()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | ELFTypes.h | 365 uint32_t getRInfo(bool isMips64EL) const { 366 assert(!isMips64EL); 376 uint32_t getSymbol(bool isMips64EL) const { 377 return this->getRInfo(isMips64EL) >> 8; 379 unsigned char getType(bool isMips64EL) const { 380 return (unsigned char)(this->getRInfo(isMips64EL) & 0x0ff); 408 uint64_t getRInfo(bool isMips64EL) const { 410 if (!isMips64EL) 429 uint32_t getSymbol(bool isMips64EL) const { 430 return (uint32_t)(this->getRInfo(isMips64EL) >> 32); [all …]
|
D | ELFObjectFile.h | 875 symbolIdx = getRel(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol() 877 symbolIdx = getRela(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol() 901 return getRel(Rel)->getType(EF.isMips64EL()); in getRelocationType() 903 return getRela(Rel)->getType(EF.isMips64EL()); in getRelocationType()
|
D | ELF.h | 162 bool isMips64EL() const { return isMipsELF64() && isLE(); } in isMips64EL() function 476 uint32_t Index = Rel->getSymbol(isMips64EL()); in getRelocationSymbol()
|
/external/llvm-project/lld/ELF/ |
D | Relocations.cpp | 635 RelType type = rel.getType(config->isMips64EL); in computeMipsAddend() 641 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in computeMipsAddend() 646 if (ri->getType(config->isMips64EL) == pairTy && in computeMipsAddend() 647 ri->getSymbol(config->isMips64EL) == symIndex) in computeMipsAddend() 663 RelType type = rel.getType(config->isMips64EL); in computeAddend() 994 type |= (rel++)->getType(config->isMips64EL) << (8 * n++); in getMipsN32RelType() 1286 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in scanReloc() 1294 type = rel.getType(config->isMips64EL); in scanReloc()
|
D | DWARF.cpp | 116 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in findAux()
|
D | ICF.cpp | 244 ra[i].getType(config->isMips64EL) != rb[i].getType(config->isMips64EL)) in constantEq()
|
D | Config.h | 298 bool isMips64EL; member
|
D | MarkLive.cpp | 80 rel.getType(config->isMips64EL)); in getAddend()
|
D | InputFiles.h | 223 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in getRelocTargetSym()
|
D | InputSection.cpp | 421 RelType type = rel.getType(config->isMips64EL); in copyRelocations() 435 config->isMips64EL); in copyRelocations() 876 RelType type = rel.getType(config->isMips64EL); in relocateNonAlloc()
|
D | SyntheticSections.cpp | 1635 p->setSymbolAndType(rel.getSymIndex(symTab), rel.type, config->isMips64EL); in encodeDynamicReloc() 1743 if (r.getType(config->isMips64EL) == target->relativeRel) in updateAllocSize()
|
D | Driver.cpp | 1309 config->isMips64EL = (k == ELF64LEKind && m == EM_MIPS); in setConfigs()
|
/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 | 2468 Obj->getRelocationTypeName(R.getType(Obj->isMips64EL()), RelocName); in printRelocation() 2973 uint32_t SymIndex = R.getSymbol(Obj->isMips64EL()); in printDynamicRelocation() 2975 Obj->getRelocationTypeName(R.getType(Obj->isMips64EL()), RelocName); in printDynamicRelocation() 3289 Obj->getRelocationTypeName(Rel.getType(Obj->isMips64EL()), RelocName); in printRelocation() 3304 W.printNumber("Type", RelocName, (int)Rel.getType(Obj->isMips64EL())); in printRelocation() 3306 Rel.getSymbol(Obj->isMips64EL())); in printRelocation() 3490 Obj->getRelocationTypeName(Rel.getType(Obj->isMips64EL()), RelocName); in printDynamicRelocation() 3492 uint32_t SymIndex = Rel.getSymbol(Obj->isMips64EL()); in printDynamicRelocation() 3499 W.printNumber("Type", RelocName, (int)Rel.getType(Obj->isMips64EL())); in printDynamicRelocation()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | ELFEmitter.cpp | 784 static bool isMips64EL(const ELFYAML::Object &Doc) { in isMips64EL() function 820 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent() 826 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()
|
/external/llvm/tools/obj2yaml/ |
D | elf2yaml.cpp | 210 R.Type = Rel->getType(Obj.isMips64EL()); in dumpRelocation()
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | ELFEmitter.cpp | 1179 static bool isMips64EL(const ELFYAML::Object &Obj) { in isMips64EL() function 1220 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent() 1226 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()
|
/external/llvm-project/llvm/tools/obj2yaml/ |
D | elf2yaml.cpp | 699 R.Type = Rel->getType(Obj.isMips64EL()); in dumpRelocation()
|
/external/llvm-project/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 4658 const bool IsMips64EL = this->Obj.isMips64EL(); in printDynamicRelocationsHelper() 5723 const bool IsMips64EL = this->Obj.isMips64EL(); in forEachRelocationDo()
|