Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
DELFTypes.h397 void setRInfo(uint32_t R, bool IsMips64EL) {
398 assert(!IsMips64EL);
410 void setSymbol(uint32_t s, bool IsMips64EL) {
411 setSymbolAndType(s, getType(IsMips64EL), IsMips64EL);
413 void setType(unsigned char t, bool IsMips64EL) {
414 setSymbolAndType(getSymbol(IsMips64EL), t, IsMips64EL);
416 void setSymbolAndType(uint32_t s, unsigned char t, bool IsMips64EL) {
417 this->setRInfo((s << 8) + t, IsMips64EL);
447 void setRInfo(uint64_t R, bool IsMips64EL) {
448 if (IsMips64EL)
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
DELFDumper.cpp186 Relocation(const typename ELFT::Rel &R, bool IsMips64EL) in Relocation() argument
187 : Type(R.getType(IsMips64EL)), Symbol(R.getSymbol(IsMips64EL)), in Relocation()
190 Relocation(const typename ELFT::Rela &R, bool IsMips64EL) in Relocation() argument
191 : Relocation((const typename ELFT::Rel &)R, IsMips64EL) { in Relocation()
4387 const bool IsMips64EL = this->Obj.isMips64EL(); in printDynamicRelocationsHelper() local
4392 printDynamicReloc(Relocation<ELFT>(Rela, IsMips64EL)); in printDynamicRelocationsHelper()
4399 printDynamicReloc(Relocation<ELFT>(Rel, IsMips64EL)); in printDynamicRelocationsHelper()
4407 printDynamicReloc(Relocation<ELFT>(Rel, IsMips64EL)); in printDynamicRelocationsHelper()
4415 printDynamicReloc(Relocation<ELFT>(Rela, IsMips64EL)); in printDynamicRelocationsHelper()
4420 printDynamicReloc(Relocation<ELFT>(Rel, IsMips64EL)); in printDynamicRelocationsHelper()
[all …]