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

  /external/llvm/include/llvm/Target/
TargetJITInfo.h 104 unsigned NumRelocs, unsigned char* GOTBase) {
105 assert(NumRelocs == 0 && "This target does not have relocations!");
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.h 34 void relocate(void *Function, MachineRelocation *MR, unsigned NumRelocs,
PPCJITInfo.cpp 425 unsigned NumRelocs, unsigned char* GOTBase) {
426 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
  /external/llvm/lib/Target/Sparc/
SparcJITInfo.h 57 unsigned NumRelocs, unsigned char *GOTBase) override;
SparcJITInfo.cpp 277 unsigned NumRelocs, unsigned char *GOTBase) {
278 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
  /external/llvm/lib/Target/Mips/
MipsJITInfo.h 59 unsigned NumRelocs, unsigned char *GOTBase) override;
MipsJITInfo.cpp 249 unsigned NumRelocs, unsigned char *GOTBase) {
250 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
  /external/llvm/lib/Target/X86/
X86JITInfo.h 65 unsigned NumRelocs, unsigned char* GOTBase) override;
X86JITInfo.cpp 549 unsigned NumRelocs, unsigned char* GOTBase) {
550 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
  /external/llvm/lib/Target/ARM/
ARMJITInfo.h 80 unsigned NumRelocs, unsigned char* GOTBase) override;
ARMJITInfo.cpp 269 unsigned NumRelocs, unsigned char* GOTBase) {
270 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
  /external/llvm/lib/MC/
MachObjectWriter.cpp 863 unsigned NumRelocs = Relocs.size();
865 WriteSection(Asm, Layout, *it, SectionStart, RelocTableEnd, NumRelocs);
866 RelocTableEnd += NumRelocs * sizeof(MachO::any_relocation_info);
    [all...]

Completed in 786 milliseconds