/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldELF.cpp | 198 int64_t Addend) { in resolveX86_64Relocation() argument 205 *Target = Value + Addend; in resolveX86_64Relocation() 210 Value += Addend; in resolveX86_64Relocation() 222 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress; in resolveX86_64Relocation() 235 int32_t Addend) { in resolveX86Relocation() argument 240 *Target = Placeholder + Value + Addend; in resolveX86Relocation() 245 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress; in resolveX86Relocation() 261 int32_t Addend) { in resolveARMRelocation() argument 264 Value += Addend; in resolveARMRelocation() 270 << " Addend: " << format("%x",Addend) in resolveARMRelocation() [all …]
|
D | RuntimeDyldMachO.cpp | 28 int64_t Addend) { in resolveRelocation() argument 36 << " Addend: " << Addend in resolveRelocation() 52 Addend); in resolveRelocation() 61 Addend); in resolveRelocation() 71 Addend); in resolveRelocation() 83 int64_t Addend) { in resolveI386Relocation() argument 92 uint64_t ValueToWrite = Value + Addend; in resolveI386Relocation() 112 int64_t Addend) { in resolveX86_64Relocation() argument 129 Value += Addend; in resolveX86_64Relocation() 154 int64_t Addend) { in resolveARMRelocation() argument [all …]
|
D | RuntimeDyldMachO.h | 35 int64_t Addend); 42 int64_t Addend); 49 int64_t Addend); 61 int64_t Addend);
|
D | RuntimeDyldELF.h | 31 int64_t Addend); 37 int32_t Addend); 43 int32_t Addend); 49 int64_t Addend);
|
D | RuntimeDyldImpl.h | 63 intptr_t Addend; // Addend encoded in the instruction itself, if any, variable 67 : SectionID(id), Offset(offset), Data(data), Addend(addend) {} in RelocationEntry() 83 intptr_t Addend; variable 85 RelocationValueRef(): SectionID(0), Addend(0), SymbolName(0) {} in RelocationValueRef() 204 int64_t Addend) = 0;
|
D | RuntimeDyld.cpp | 315 << " Addend: " << format("%p", Value.Addend) in AddRelocation() 325 Value.Addend)); in AddRelocation() 331 Value.Addend)); in AddRelocation() 373 << " Addend: " << RE.Addend in resolveRelocationEntry() 377 Value, RE.Data, RE.Addend); in resolveRelocationEntry() 412 Entry.Addend += Loc->second.second; in resolveSymbols()
|
/external/llvm/lib/Target/MBlaze/MCTargetDesc/ |
D | MBlazeELFObjectWriter.cpp | 26 int64_t Addend) const; 41 int64_t Addend) const { in GetRelocType() 59 Type = ((IsRelocWithSymbol || Addend !=0) in GetRelocType()
|
/external/llvm/include/llvm/MC/ |
D | MCELFObjectWriter.h | 42 const MCSymbol *Sym, uint64_t Addend, const MCFixup &Fixup) in ELFRelocationEntry() 44 r_addend(Addend), Fixup(&Fixup) {} in ELFRelocationEntry() 79 int64_t Addend) const = 0;
|
/external/llvm/lib/Target/PowerPC/MCTargetDesc/ |
D | PPCELFObjectWriter.cpp | 26 int64_t Addend) const; 43 int64_t Addend) const { in GetRelocType()
|
/external/llvm/lib/MC/ |
D | MCExpr.cpp | 316 int64_t &Addend) { in AttemptToFoldSymbolOffsetDifference() argument 333 Addend += (AD.getOffset() - BD.getOffset()); in AttemptToFoldSymbolOffsetDifference() 338 Addend |= 1; in AttemptToFoldSymbolOffsetDifference() 356 Addend += (Layout->getSymbolOffset(&Asm->getSymbolData(A->getSymbol())) - in AttemptToFoldSymbolOffsetDifference() 359 Addend += (Addrs->lookup(&SecA) - Addrs->lookup(&SecB)); in AttemptToFoldSymbolOffsetDifference() 364 Addend |= 1; in AttemptToFoldSymbolOffsetDifference()
|
D | ELFObjectWriter.cpp | 146 int64_t Addend) const { in GetRelocType() 148 IsRelocWithSymbol, Addend); in GetRelocType() 695 int64_t Addend = 0; in RecordRelocation() local 734 Addend = Value; in RecordRelocation() 742 (RelocSymbol != 0), Addend); in RecordRelocation() 755 Addend = 0; in RecordRelocation() 758 assert(isInt<64>(Addend)); in RecordRelocation() 760 assert(isInt<32>(Addend)); in RecordRelocation() 762 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend, Fixup); in RecordRelocation()
|
/external/llvm/lib/Target/Mips/ |
D | MipsJITInfo.cpp | 225 int Addend = *((unsigned*) RelocPos) & 0xffff; in relocate() local 226 ResultPtr = (ResultPtr + Addend) & 0xffff; in relocate()
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86ELFObjectWriter.cpp | 29 int64_t Addend) const; 45 int64_t Addend) const { in GetRelocType()
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMELFObjectWriter.cpp | 39 int64_t Addend) const; 154 int64_t Addend) const { in GetRelocType()
|
/external/llvm/lib/Target/Mips/MCTargetDesc/ |
D | MipsELFObjectWriter.cpp | 43 int64_t Addend) const; 93 int64_t Addend) const { in GetRelocType()
|
/external/elfutils/po/ |
D | elfutils.pot | 1064 msgid " Offset Type Value Addend Name\n" 1068 msgid " Offset Type Value Addend Name\n"
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 10369 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, in LowerShift() local 10373 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend); in LowerShift()
|