Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Object/
DELFTypes.h297 uint32_t getRInfo(bool isMips64EL) const {
298 assert(!isMips64EL);
310 uint64_t getRInfo(bool isMips64EL) const {
312 if (!isMips64EL)
333 uint32_t getRInfo(bool isMips64EL) const {
334 assert(!isMips64EL);
347 uint64_t getRInfo(bool isMips64EL) const {
352 if (!isMips64EL)
373 uint32_t getSymbol(bool isMips64EL) const {
374 return (uint32_t)(this->getRInfo(isMips64EL) >> 32);
[all …]
DELFObjectFile.h543 symbolIdx = getRel(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol()
547 symbolIdx = getRela(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol()
620 Result = getRel(Rel)->getType(EF.isMips64EL()); in getRelocationType()
624 Result = getRela(Rel)->getType(EF.isMips64EL()); in getRelocationType()
645 type = getRel(Rel)->getType(EF.isMips64EL()); in getRelocationTypeName()
649 type = getRela(Rel)->getType(EF.isMips64EL()); in getRelocationTypeName()
689 type = getRel(Rel)->getType(EF.isMips64EL()); in getRelocationValueString()
690 symbol_index = getRel(Rel)->getSymbol(EF.isMips64EL()); in getRelocationValueString()
695 type = getRela(Rel)->getType(EF.isMips64EL()); in getRelocationValueString()
696 symbol_index = getRela(Rel)->getSymbol(EF.isMips64EL()); in getRelocationValueString()
DELF.h328 bool isMips64EL() const { in isMips64EL() function
591 SymTable, getEntry<Elf_Sym>(SymTable, Rel->getSymbol(isMips64EL()))); in getRelocationSymbol()
/external/llvm/tools/obj2yaml/
Delf2yaml.cpp160 R.Type = Rel->getType(Obj.isMips64EL()); in dumpRelocation()
/external/llvm/tools/llvm-readobj/
DELFDumper.cpp667 Obj->getRelocationTypeName(Rel.getType(Obj->isMips64EL()), RelocName); in printRelocation()
677 W.printNumber("Type", RelocName, (int)Rel.getType(Obj->isMips64EL())); in printRelocation()