Searched refs:isMips64EL (Results 1 – 14 of 14) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ |
| HD | 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 …]
|
| HD | 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()
|
| HD | ELF.h | 162 bool isMips64EL() const { return isMipsELF64() && isLE(); } in isMips64EL() function 476 uint32_t Index = Rel->getSymbol(isMips64EL()); in getRelocationSymbol()
|
| /freebsd-11-stable/contrib/llvm-project/lld/ELF/ |
| HD | Relocations.cpp | 605 RelType type = rel.getType(config->isMips64EL); in computeMipsAddend() 611 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in computeMipsAddend() 616 if (ri->getType(config->isMips64EL) == pairTy && in computeMipsAddend() 617 ri->getSymbol(config->isMips64EL) == symIndex) in computeMipsAddend() 633 RelType type = rel.getType(config->isMips64EL); in computeAddend() 955 type |= (rel++)->getType(config->isMips64EL) << (8 * n++); in getMipsN32RelType() 1247 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in scanReloc() 1255 type = rel.getType(config->isMips64EL); in scanReloc()
|
| HD | DWARF.cpp | 92 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in findAux()
|
| HD | ICF.cpp | 240 ra[i].getType(config->isMips64EL) != rb[i].getType(config->isMips64EL)) in constantEq()
|
| HD | Config.h | 275 bool isMips64EL; member
|
| HD | MarkLive.cpp | 80 rel.getType(config->isMips64EL)); in getAddend()
|
| HD | InputSection.cpp | 413 RelType type = rel.getType(config->isMips64EL); in copyRelocations() 427 config->isMips64EL); in copyRelocations() 845 RelType type = rel.getType(config->isMips64EL); in relocateNonAlloc()
|
| HD | InputFiles.h | 220 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in getRelocTargetSym()
|
| HD | SyntheticSections.cpp | 1587 p->setSymbolAndType(rel.getSymIndex(symTab), rel.type, config->isMips64EL); in encodeDynamicReloc() 1695 if (r.getType(config->isMips64EL) == target->relativeRel) in updateAllocSize()
|
| HD | Driver.cpp | 1132 config->isMips64EL = (k == ELF64LEKind && m == EM_MIPS); in setConfigs()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| HD | 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()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| HD | ELFDumper.cpp | 3238 Obj->getRelocationTypeName(R.getType(Obj->isMips64EL()), RelocName); in printRelocation() 3949 uint32_t SymIndex = Reloc.getSymbol(Obj->isMips64EL()); in getSymbolForReloc() 5603 Obj->getRelocationTypeName(Rel.getType(Obj->isMips64EL()), RelocName); in printRelocation() 5622 W.printNumber("Type", RelocName, (int)Rel.getType(Obj->isMips64EL())); in printRelocation() 5624 Rel.getSymbol(Obj->isMips64EL())); in printRelocation() 5853 Obj->getRelocationTypeName(Rel.getType(Obj->isMips64EL()), RelocName); in printDynamicRelocation() 5860 W.printNumber("Type", RelocName, (int)Rel.getType(Obj->isMips64EL())); in printDynamicRelocation()
|