Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
DELFTypes.h393 uint32_t getRInfo(bool isMips64EL) const {
394 assert(!isMips64EL);
404 uint32_t getSymbol(bool isMips64EL) const {
405 return this->getRInfo(isMips64EL) >> 8;
407 unsigned char getType(bool isMips64EL) const {
408 return (unsigned char)(this->getRInfo(isMips64EL) & 0x0ff);
436 uint64_t getRInfo(bool isMips64EL) const {
438 if (!isMips64EL)
457 uint32_t getSymbol(bool isMips64EL) const {
458 return (uint32_t)(this->getRInfo(isMips64EL) >> 32);
[all …]
DELFObjectFile.h1001 symbolIdx = getRel(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol()
1003 symbolIdx = getRela(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol()
1027 return getRel(Rel)->getType(EF.isMips64EL()); in getRelocationType()
1029 return getRela(Rel)->getType(EF.isMips64EL()); in getRelocationType()
DELF.h251 bool isMips64EL() const { return isMipsELF64() && isLE(); } in isMips64EL() function
630 uint32_t Index = Rel.getSymbol(isMips64EL()); in getRelocationSymbol()
/freebsd-12-stable/contrib/llvm-project/lld/ELF/
DRelocations.cpp648 RelType type = rel.getType(config->isMips64EL); in computeMipsAddend()
654 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in computeMipsAddend()
659 if (ri->getType(config->isMips64EL) == pairTy && in computeMipsAddend()
660 ri->getSymbol(config->isMips64EL) == symIndex) in computeMipsAddend()
676 RelType type = rel.getType(config->isMips64EL); in computeAddend()
1007 type |= (rel++)->getType(config->isMips64EL) << (8 * n++); in getMipsN32RelType()
1308 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in scanReloc()
1316 type = rel.getType(config->isMips64EL); in scanReloc()
DICF.cpp244 ra[i].getType(config->isMips64EL) != rb[i].getType(config->isMips64EL)) in constantEq()
DDWARF.cpp116 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in findAux()
DConfig.h308 bool isMips64EL; member
DMarkLive.cpp80 rel.getType(config->isMips64EL)); in getAddend()
DInputFiles.h222 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in getRelocTargetSym()
DInputSection.cpp414 RelType type = rel.getType(config->isMips64EL); in copyRelocations()
428 config->isMips64EL); in copyRelocations()
888 RelType type = rel.getType(config->isMips64EL); in relocateNonAlloc()
DDriver.cpp884 symbolIndices.push_back(rel.getSymbol(config->isMips64EL)); in processCallGraphRelocations()
891 symbolIndices.push_back(rel.getSymbol(config->isMips64EL)); in processCallGraphRelocations()
1416 config->isMips64EL = (k == ELF64LEKind && m == EM_MIPS); in setConfigs()
DSyntheticSections.cpp1693 p->setSymbolAndType(rel.getSymIndex(symTab), rel.type, config->isMips64EL); in encodeDynamicReloc()
1801 if (r.getType(config->isMips64EL) == target->relativeRel) in updateAllocSize()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
DELFEmitter.cpp1260 static bool isMips64EL(const ELFYAML::Object &Obj) { in isMips64EL() function
1290 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()
1296 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
DELFDumper.cpp4387 const bool IsMips64EL = this->Obj.isMips64EL(); in printDynamicRelocationsHelper()
5626 const bool IsMips64EL = this->Obj.isMips64EL(); in forEachRelocationDo()
6743 SymbolIndices.push_back(Rel.getSymbol(Obj.isMips64EL())); in getSymbolIndices()
6760 SymbolIndices.push_back(Rela.getSymbol(Obj.isMips64EL())); in getSymbolIndices()