Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Object/
DELFTypes.h309 uint32_t getRInfo(bool isMips64EL) const {
310 assert(!isMips64EL);
325 uint64_t getRInfo(bool isMips64EL) const {
327 if (!isMips64EL)
351 uint32_t getRInfo(bool isMips64EL) const {
352 assert(!isMips64EL);
368 uint64_t getRInfo(bool isMips64EL) const {
373 if (!isMips64EL)
397 uint32_t getSymbol(bool isMips64EL) const {
398 return (uint32_t)(this->getRInfo(isMips64EL) >> 32);
[all …]
DELFObjectFile.h560 symbolIdx = getRel(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol()
564 symbolIdx = getRela(Rel)->getSymbol(EF.isMips64EL()); in getRelocationSymbol()
637 Result = getRel(Rel)->getType(EF.isMips64EL()); in getRelocationType()
641 Result = getRela(Rel)->getType(EF.isMips64EL()); in getRelocationType()
662 type = getRel(Rel)->getType(EF.isMips64EL()); in getRelocationTypeName()
666 type = getRela(Rel)->getType(EF.isMips64EL()); in getRelocationTypeName()
706 type = getRel(Rel)->getType(EF.isMips64EL()); in getRelocationValueString()
707 symbol_index = getRel(Rel)->getSymbol(EF.isMips64EL()); in getRelocationValueString()
712 type = getRela(Rel)->getType(EF.isMips64EL()); in getRelocationValueString()
713 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/yaml2obj/
Dyaml2elf.cpp336 static bool isMips64EL(const ELFYAML::Object &Doc) { in isMips64EL() function
372 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()
378 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()
/external/llvm/tools/llvm-readobj/
DELFDumper.cpp670 Obj->getRelocationTypeName(Rel.getType(Obj->isMips64EL()), RelocName); in printRelocation()
680 W.printNumber("Type", RelocName, (int)Rel.getType(Obj->isMips64EL())); in printRelocation()
682 Rel.getSymbol(Obj->isMips64EL())); in printRelocation()
/external/llvm/tools/obj2yaml/
Delf2yaml.cpp169 R.Type = Rel->getType(Obj.isMips64EL()); in dumpRelocation()