HomeSort by relevance Sort by last modified time
    Searched defs:Addend (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Target/Mips/
MipsJITInfo.cpp 267 // Addend is needed for unaligned load/store instructions, where offset
269 // be modified by +1 or +3. Otherwise, Addend is 0.
270 int Addend = *((unsigned*) RelocPos) & 0xffff;
271 ResultPtr = (ResultPtr + Addend) & 0xffff;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 197 int64_t Addend) {
204 *Target = Value + Addend;
209 Value += Addend;
220 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
233 int32_t Addend) {
238 *Target = Placeholder + Value + Addend;
243 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
259 int32_t Addend) {
262 Value += Addend;
268 << " Addend: " << format("%x",Addend
    [all...]
RuntimeDyldImpl.h 83 /// Addend - the relocation addend encoded in the instruction itself. Also
85 intptr_t Addend;
87 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
88 : SectionID(id), Offset(offset), RelType(type), Addend(addend) {}
106 intptr_t Addend;
108 RelocationValueRef(): SectionID(0), Addend(0), SymbolName(0) {}
236 /// \param Addend A constant addend used to compute the value to be store
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 146 int64_t Addend) const {
148 IsRelocWithSymbol, Addend);
696 int64_t Addend = 0;
735 Addend = Value;
736 // Compensate for the addend on i386.
743 (RelocSymbol != 0), Addend);
756 Addend = 0;
759 assert(isInt<64>(Addend));
761 assert(isInt<32>(Addend));
763 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend, Fixup)
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 85 milliseconds