HomeSort by relevance Sort by last modified time
    Searched refs:Relocations (Results 1 - 25 of 28) sorted by null

1 2

  /external/llvm/test/MC/ARM/
eh-directive-personality.s 35 @ CHECK: Relocations [
44 @ CHECK: Relocations [
77 @ CHECK: Relocations [
86 @ CHECK: Relocations [
elf-thumbfunc-reloc.s 20 @CHECK: Relocations [
elf-movt.s 32 @ OBJ-NEXT: Relocations [
51 @ OBJ-NEXT: Relocations [
eh-directive-cantunwind.s 49 @ CHECK: Relocations [
eh-directive-section.s 67 @ CHECK: Relocations [
92 @ CHECK: Relocations [
118 @ CHECK: Relocations [
144 @ CHECK: Relocations [
eh-compact-pr0.s 66 @ CHECK: Relocations [
101 @ CHECK: Relocations [
eh-directive-handlerdata.s 46 @ CHECK: Relocations [
103 @ CHECK: Relocations [
eh-compact-pr1.s 70 @ CHECK: Relocations [
eh-directive-section-multiple-func.s 72 @ CHECK: Relocations [
98 @ CHECK: Relocations [
eh-directive-text-section-multiple-func.s 62 @ CHECK: Relocations [
eh-directive-text-section.s 79 @ CHECK: Relocations [
  /external/llvm/test/MC/PowerPC/
ppc64-tls-relocs-01.s 18 # CHECK: Relocations [
ppc64-initial-cfa.s 23 # STATIC-NEXT: Relocations [
44 # STATIC-NEXT: Relocations [
61 # PIC-NEXT: Relocations [
82 # PIC-NEXT: Relocations [
ppc64-relocs-01.s 22 # CHECK: Relocations [
24 # The relocations in .rela.text are the 'number64' load using a
32 # The .opd entry for the 'access_int64' function creates 2 relocations:
  /external/llvm/tools/llvm-readobj/
llvm-readobj.h 36 extern llvm::cl::opt<bool> Relocations;
llvm-readobj.cpp 67 // -section-relocations, -sr
68 cl::opt<bool> SectionRelocations("section-relocations",
69 cl::desc("Display relocations for each section shown."));
71 cl::desc("Alias for --section-relocations"),
88 // -relocations, -r
89 cl::opt<bool> Relocations("relocations",
92 cl::desc("Alias for --relocations"),
93 cl::aliasopt(Relocations));
210 if (opts::Relocations)
    [all...]
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 69 std::vector<COFFYAML::Relocation> Relocations;
79 Relocations.push_back(Rel);
81 Sec.Relocations = Relocations;
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 69 int Relocations;
89 typedef std::vector<COFFRelocation> relocations; typedef in namespace:__anon21900
99 relocations Relocations;
211 , Relocations(0)
234 // if it has relocations pointing at it, keep it
235 if (Relocations > 0) {
236 assert(Section->Number != -1 && "Sections with relocations must be real!");
687 // Turn relocations for temporary symbols into section relocations
    [all...]
  /external/llvm/tools/yaml2obj/
yaml2coff.cpp 136 if (!i->Relocations.empty()) {
138 i->Header.NumberOfRelocations = i->Relocations.size();
236 for (unsigned I2 = 0, E2 = i->Relocations.size(); I2 != E2; ++I2) {
237 const COFFYAML::Relocation &R = i->Relocations[I2];
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 57 STATISTIC(NumRelos, "Number of relocations applied");
295 /// Relocations - These are the relocations that the function needs, as
297 std::vector<MachineRelocation> Relocations;
404 Relocations.push_back(MR);
821 if (!Relocations.empty()) {
823 NumRelos += Relocations.size();
825 // Resolve the relocations to concrete pointers.
826 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
827 MachineRelocation &MR = Relocations[i]
    [all...]
  /external/llvm/include/llvm/Object/
COFFYAML.h 48 std::vector<Relocation> Relocations;
  /external/llvm/include/llvm/MC/
MCMachObjectWriter.h 101 std::vector<object::macho::RelocationEntry> > Relocations;
217 Relocations[SD].push_back(MRE);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 36 // Resolve the relocations for all symbols we currently know about.
38 // First, resolve relocations associated with external symbols.
41 // Just iterate over the sections we have and resolve all the relocations
45 DEBUG(dbgs() << "Resolving relocations Section #" << i
48 resolveRelocationList(Relocations[i], Addr);
142 // Parse and process relocations
143 DEBUG(dbgs() << "Parse relocations:\n");
337 Relocations[SectionID].push_back(RE);
353 Relocations[Loc->second.first].push_back(RECopy);
428 // Assign an address to a symbol name and resolve all the relocations
    [all...]
RuntimeDyldImpl.h 62 /// relocations (like ARM).
66 /// for calculating relocations in some object formats (like MachO).
75 /// RelocationEntry - used to represent relocations internally in the dynamic
148 // For each symbol, keep a list of relocations based on it. Anytime
150 // the relocations get re-resolved.
154 // Relocations to sections already loaded. Indexed by SectionID which is the
157 DenseMap<unsigned, RelocationList> Relocations;
159 // Relocations to external symbols that are not yet resolved. Symbols are
276 /// \brief Resolves relocations from Relocs list with address from Value.
284 /// \brief Parses the object file relocation and stores it to Relocations
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 78 Relocations("r", cl::desc("Display the relocation entries in the file"));
230 // around to outputting relocations.
398 // Make a list of all the relocations for this section.
409 // Sort relocations by address.
759 DisassembleObject(o, Relocations);
760 if (Relocations && !Disassemble)
847 && !Relocations

Completed in 378 milliseconds

1 2