HomeSort by relevance Sort by last modified time
    Searched refs:MachineRelocation (Results 1 - 17 of 17) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineRelocation.h 1 //===-- llvm/CodeGen/MachineRelocation.h - Target Relocation ----*- C++ -*-===//
10 // This file defines the MachineRelocation class.
24 /// MachineRelocation - This represents a target-specific relocation value,
38 class MachineRelocation {
80 /// MachineRelocation::getGV - Return a relocation entry for a GlobalValue.
82 static MachineRelocation getGV(uintptr_t offset, unsigned RelocationType,
87 MachineRelocation Result;
99 /// MachineRelocation::getIndirectSymbol - Return a relocation entry for an
101 static MachineRelocation getIndirectSymbol(uintptr_t offset,
107 MachineRelocation Result
    [all...]
JITCodeEmitter.h 33 class MachineRelocation;
305 virtual void addRelocation(const MachineRelocation &MR) = 0;
MachineCodeEmitter.h 31 class MachineRelocation;
302 virtual void addRelocation(const MachineRelocation &MR) = 0;
  /external/llvm/include/llvm/Target/
TargetJITInfo.h 28 class MachineRelocation;
103 virtual void relocate(void *Function, MachineRelocation *MR,
  /external/llvm/lib/Target/Mips/
MipsJITInfo.h 58 virtual void relocate(void *Function, MachineRelocation *MR,
MipsCodeEmitter.cpp 242 MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
249 MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
251 MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset() + Offset,
257 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
262 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
268 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
274 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
MipsJITInfo.cpp 247 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR,
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.h 37 virtual void relocate(void *Function, MachineRelocation *MR,
PPCCodeEmitter.cpp 56 MachineRelocation GetRelocation(const MachineOperand &MO,
151 MachineRelocation PPCCodeEmitter::GetRelocation(const MachineOperand &MO,
165 return MachineRelocation::getGV(MCE.getCurrentPCOffset(), RelocID,
169 return MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
172 return MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
176 return MachineRelocation::getBB(MCE.getCurrentPCOffset(),
180 return MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
PPCJITInfo.cpp 413 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR,
  /external/llvm/lib/Target/X86/
X86JITInfo.h 66 virtual void relocate(void *Function, MachineRelocation *MR,
X86CodeEmitter.cpp 264 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
283 MachineRelocation MR = Indirect
284 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
287 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
310 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
331 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
351 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
    [all...]
X86JITInfo.cpp 542 void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
  /external/llvm/lib/Target/ARM/
ARMJITInfo.h 80 virtual void relocate(void *Function, MachineRelocation *MR,
179 intptr_t resolveRelocDestAddr(MachineRelocation *MR) const;
ARMJITInfo.cpp 238 intptr_t ARMJITInfo::resolveRelocDestAddr(MachineRelocation *MR) const {
267 void ARMJITInfo::relocate(void *Function, MachineRelocation *MR,
ARMCodeEmitter.cpp 506 MachineRelocation MR = Indirect
507 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
510 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
521 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
530 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
539 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
547 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 29 #include "llvm/CodeGen/MachineRelocation.h"
297 std::vector<MachineRelocation> Relocations;
403 virtual void addRelocation(const MachineRelocation &MR) {
827 MachineRelocation &MR = Relocations[i];
    [all...]

Completed in 793 milliseconds