Home
last modified time | relevance | path

Searched refs:IsMips64EL (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h399 void setRInfo(uint32_t R, bool IsMips64EL) {
400 assert(!IsMips64EL);
412 void setSymbol(uint32_t s, bool IsMips64EL) {
413 setSymbolAndType(s, getType(IsMips64EL), IsMips64EL);
415 void setType(unsigned char t, bool IsMips64EL) {
416 setSymbolAndType(getSymbol(IsMips64EL), t, IsMips64EL);
418 void setSymbolAndType(uint32_t s, unsigned char t, bool IsMips64EL) {
419 this->setRInfo((s << 8) + t, IsMips64EL);
451 void setRInfo(uint64_t R, bool IsMips64EL) {
452 if (IsMips64EL)
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp976 static void writeRel(const RelRange &Relocations, T *Buf, bool IsMips64EL) { in writeRel() argument
981 Reloc.Type, IsMips64EL); in writeRel()
994 Sec.getObject().IsMips64EL); in visit()
997 Sec.getObject().IsMips64EL); in visit()
1415 Obj.IsMips64EL = ElfFile.isMips64EL(); in ELFBuilder()
1663 ToAdd.Type = Rel.getType(Relocs->getObject().IsMips64EL); in initRelocations()
1665 if (uint32_t Sym = Rel.getSymbol(Relocs->getObject().IsMips64EL)) { in initRelocations()
H A DELFObject.h1197 bool IsMips64EL = false; variable
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp194 Relocation(const typename ELFT::Rel &R, bool IsMips64EL) in Relocation() argument
195 : Type(R.getType(IsMips64EL)), Symbol(R.getSymbol(IsMips64EL)), in Relocation()
198 Relocation(const typename ELFT::Rela &R, bool IsMips64EL) in Relocation() argument
199 : Relocation((const typename ELFT::Rel &)R, IsMips64EL) { in Relocation()
4930 const bool IsMips64EL = this->Obj.isMips64EL(); in printDynamicRelocationsHelper() local
4963 printDynamicReloc(Relocation<ELFT>(Rela, IsMips64EL)); in printDynamicRelocationsHelper()
4970 printDynamicReloc(Relocation<ELFT>(Rel, IsMips64EL)); in printDynamicRelocationsHelper()
4978 printDynamicReloc(Relocation<ELFT>(Rel, IsMips64EL)); in printDynamicRelocationsHelper()
4986 printDynamicReloc(Relocation<ELFT>(Rela, IsMips64EL)); in printDynamicRelocationsHelper()
4993 printDynamicReloc(Relocation<ELFT>(Rel, IsMips64EL)); in printDynamicRelocationsHelper()
[all …]