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

  /external/llvm/lib/CodeGen/
ELFCodeEmitter.h 32 std::vector<MachineRelocation> Relocations;
36 std::vector<MachineRelocation> JTRelocations;
44 void addRelocation(const MachineRelocation &MR) {
ELFCodeEmitter.cpp 22 #include "llvm/CodeGen/MachineRelocation.h"
90 for (std::vector<MachineRelocation>::iterator MRI = JTRelocations.begin(),
92 MachineRelocation &MR = *MRI;
104 MachineRelocation &MR = Relocations[i];
192 MachineRelocation MR =
193 MachineRelocation::getBB(JTSection.size(), MachineRelTy, MBBs[mi]);
ObjectCodeEmitter.cpp 12 #include "llvm/CodeGen/MachineRelocation.h"
96 void ObjectCodeEmitter::addRelocation(const MachineRelocation& relocation) {
ELFWriter.cpp 599 MachineRelocation MR =
600 MachineRelocation::getGV(GblS.getCurrentPCOffset(),
773 std::vector<MachineRelocation> Relos = S.getRelocations();
774 for (std::vector<MachineRelocation>::iterator MRI = Relos.begin(),
776 MachineRelocation &MR = *MRI;
    [all...]
  /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...]
ObjectCodeEmitter.h 110 void addRelocation(const MachineRelocation& relocation);
MachineCodeEmitter.h 30 class MachineRelocation;
300 virtual void addRelocation(const MachineRelocation &MR) = 0;
BinaryObject.h 18 #include "llvm/CodeGen/MachineRelocation.h"
34 std::vector<MachineRelocation> Relocations;
62 const std::vector<MachineRelocation>& getRelocations() const {
344 void addRelocation(const MachineRelocation& relocation) {
JITCodeEmitter.h 33 class MachineRelocation;
305 virtual void addRelocation(const MachineRelocation &MR) = 0;
  /external/llvm/include/llvm/Target/
TargetJITInfo.h 28 class MachineRelocation;
107 virtual void 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,
146 MachineRelocation PPCCodeEmitter::GetRelocation(const MachineOperand &MO,
160 return MachineRelocation::getGV(MCE.getCurrentPCOffset(), RelocID,
164 return MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
167 return MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
171 return MachineRelocation::getBB(MCE.getCurrentPCOffset(),
175 return MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
PPCJITInfo.cpp 410 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR,
  /external/llvm/lib/Target/X86/
X86JITInfo.h 66 virtual void relocate(void *Function, MachineRelocation *MR,
X86CodeEmitter.cpp 251 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
270 MachineRelocation MR = Indirect
271 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
274 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
297 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
318 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
338 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
    [all...]
X86JITInfo.cpp 533 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 239 intptr_t ARMJITInfo::resolveRelocDestAddr(MachineRelocation *MR) const {
269 void ARMJITInfo::relocate(void *Function, MachineRelocation *MR,
ARMCodeEmitter.cpp 483 MachineRelocation MR = Indirect
484 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
487 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
498 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
507 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
516 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
524 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
    [all...]
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.h 28 #include "llvm/CodeGen/MachineRelocation.h"
119 std::vector<llvm::MachineRelocation> mRelocations;
203 virtual void addRelocation(const llvm::MachineRelocation &MR) {
CodeEmitter.cpp 43 #include "llvm/CodeGen/MachineRelocation.h"
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 30 #include "llvm/CodeGen/MachineRelocation.h"
294 std::vector<MachineRelocation> Relocations;
417 virtual void addRelocation(const MachineRelocation &MR) {
841 MachineRelocation &MR = Relocations[i];
    [all...]

Completed in 1013 milliseconds