Searched refs:isMips64EL (Results 1 – 16 of 16) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | ELFTypes.h | 395 uint32_t getRInfo(bool isMips64EL) const { 396 assert(!isMips64EL); 406 uint32_t getSymbol(bool isMips64EL) const { 407 return this->getRInfo(isMips64EL) >> 8; 409 unsigned char getType(bool isMips64EL) const { 410 return (unsigned char)(this->getRInfo(isMips64EL) & 0x0ff); 440 uint64_t getRInfo(bool isMips64EL) const { 442 if (!isMips64EL) 461 uint32_t getSymbol(bool isMips64EL) const { 462 return (uint32_t)(this->getRInfo(isMips64EL) >> 32); [all …]
|
H A D | ELFObjectFile.h | 1108 symbolIdx = getRel(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol() 1110 symbolIdx = getRela(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol() 1138 return getRel(Rel)->getType(EF.isMips64EL()); in getRelocationType() 1140 return getRela(Rel)->getType(EF.isMips64EL()); in getRelocationType()
|
H A D | ELF.h | 337 bool isMips64EL() const { return isMipsELF64() && isLE(); } in isMips64EL() function 757 uint32_t Index = Rel.getSymbol(isMips64EL()); in getRelocationSymbol()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | Relocations.cpp | 501 RelType type = rel.getType(config->isMips64EL); in computeMipsAddend() 507 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in computeMipsAddend() 512 if (ri->getType(config->isMips64EL) == pairTy && in computeMipsAddend() 513 ri->getSymbol(config->isMips64EL) == symIndex) in computeMipsAddend() 867 type |= (rel++)->getType(config->isMips64EL) << (8 * n++); in getMipsN32RelType() 1442 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in scanOne() 1446 type = rel.getType(config->isMips64EL); in scanOne() 1453 type = rel.getType(config->isMips64EL); in scanOne() 2411 Symbol &sym = sec->file->getSymbol(r.getSymbol(config->isMips64EL)); in scanCrossRefs()
|
H A D | DWARF.cpp | 115 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in findAux()
|
H A D | ICF.cpp | 245 rai->getType(config->isMips64EL) != rbi->getType(config->isMips64EL)) in constantEq()
|
H A D | InputFiles.h | 111 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in getRelocTargetSym()
|
H A D | MarkLive.cpp | 79 rel.getType(config->isMips64EL)); in getAddend()
|
H A D | Config.h | 400 bool isMips64EL; member
|
H A D | InputSection.cpp | 415 return Relocation{R_NONE, rel.getType(config->isMips64EL), rel.r_offset, in copyRelocations() 456 config->isMips64EL); in copyRelocations() 973 const RelType type = rel.getType(config->isMips64EL); in relocateNonAlloc()
|
H A D | OutputSections.cpp | 673 rel.getType(config->isMips64EL), getAddend<ELFT>(rel)); in relToCrel()
|
H A D | Driver.cpp | 1007 symbolIndices.push_back(rel.getSymbol(config->isMips64EL)); in processCallGraphRelocations() 1014 symbolIndices.push_back(rel.getSymbol(config->isMips64EL)); in processCallGraphRelocations() 1813 config->isMips64EL = (k == ELF64LEKind && m == EM_MIPS); in setConfigs()
|
H A D | SyntheticSections.cpp | 1735 p->setSymbolAndType(rel.r_sym, rel.type, config->isMips64EL); in writeTo() 1840 if (r.getType(config->isMips64EL) == target->relativeRel) in updateAllocSize()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | ELFEmitter.cpp | 1267 static bool isMips64EL(const ELFYAML::Object &Obj) { in isMips64EL() function 1340 REntry.setSymbolAndType(CurSymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent() 1346 REntry.setSymbolAndType(CurSymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | ELFDumper.cpp | 4930 const bool IsMips64EL = this->Obj.isMips64EL(); in printDynamicRelocationsHelper() 6448 const bool IsMips64EL = this->Obj.isMips64EL(); in forEachRelocationDo() 7685 SymbolIndices.push_back(Rel.getSymbol(Obj.isMips64EL())); in getSymbolIndices() 7702 SymbolIndices.push_back(Rela.getSymbol(Obj.isMips64EL())); in getSymbolIndices()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObject.cpp | 1415 Obj.IsMips64EL = ElfFile.isMips64EL(); in ELFBuilder()
|