Searched defs:Reloc (Results 1 - 10 of 10) sorted by relevance

/external/llvm/include/llvm/Support/
H A DCodeGen.h24 namespace Reloc { namespace in namespace:llvm
H A DTargetRegistry.h96 Reloc::Model RM,
110 Reloc::Model RM,
309 MCCodeGenInfo *createMCCodeGenInfo(StringRef Triple, Reloc::Model RM,
366 Reloc::Model RM = Reloc::Default,
941 static MCCodeGenInfo *Allocator(StringRef /*TT*/, Reloc::Model /*RM*/,
1113 Reloc::Model RM,
364 createTargetMachine(StringRef Triple, StringRef CPU, StringRef Features, const TargetOptions &Options, Reloc::Model RM = Reloc::Default, CodeModel::Model CM = CodeModel::Default, CodeGenOpt::Level OL = CodeGenOpt::Default) const argument
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp107 RelocAddrMap::const_iterator Reloc = Relocs.find(DataOffset-4); local
108 if (Reloc != Relocs.end())
109 StringOffset += Reloc->second.second;
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFObjectWriter.cpp262 // For the given Reloc.Type, return the matching relocation type, as in the
265 const ELFRelocationEntry &Reloc) {
266 unsigned Type = Reloc.Type;
274 const MCSymbolData &SD = Asm.getSymbolData(*Reloc.Symbol);
264 getMatchingLoType(const MCAssembler &Asm, const ELFRelocationEntry &Reloc) argument
/external/llvm/lib/Target/
H A DTargetMachineC.cpp110 LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc,
112 Reloc::Model RM;
113 switch (Reloc){
115 RM = Reloc::Static;
118 RM = Reloc::PIC_;
121 RM = Reloc::DynamicNoPIC;
124 RM = Reloc::Default;
108 LLVMCreateTargetMachine(LLVMTargetRef T, const char* Triple, const char* CPU, const char* Features, LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc, LLVMCodeModel CodeModel) argument
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp47 void printRelocation(const RelocationRef &Reloc);
49 void printRelocation(const MachOObjectFile *Obj, const RelocationRef &Reloc);
427 for (const RelocationRef &Reloc : Section.relocations())
428 printRelocation(Reloc);
464 for (const RelocationRef &Reloc : Section.relocations()) {
471 printRelocation(Reloc);
481 void MachODumper::printRelocation(const RelocationRef &Reloc) { argument
482 return printRelocation(Obj, Reloc);
486 const RelocationRef &Reloc) {
489 if (error(Reloc
485 printRelocation(const MachOObjectFile *Obj, const RelocationRef &Reloc) argument
[all...]
H A DCOFFDumper.cpp66 void printRelocation(const SectionRef &Section, const RelocationRef &Reloc);
344 for (const RelocationRef &Reloc : S.relocations())
345 RelocMap[Section].push_back(Reloc);
749 for (const RelocationRef &Reloc : Sec.relocations())
750 printRelocation(Sec, Reloc);
788 for (const RelocationRef &Reloc : Section.relocations()) {
795 printRelocation(Section, Reloc);
806 const RelocationRef &Reloc) {
811 if (error(Reloc.getOffset(Offset)))
813 if (error(Reloc
805 printRelocation(const SectionRef &Section, const RelocationRef &Reloc) argument
[all...]
/external/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp737 COFFRelocation Reloc; local
739 Reloc.Data.SymbolTableIndex = 0;
740 Reloc.Data.VirtualAddress = Layout.getFragmentOffset(Fragment);
744 Reloc.Symb = coff_symbol->Section->Symbol;
748 Reloc.Symb = coff_symbol;
750 ++Reloc.Symb->Relocations;
752 Reloc.Data.VirtualAddress += Fixup.getOffset();
753 Reloc.Data.Type =
760 Reloc.Data.Type == COFF::IMAGE_REL_AMD64_REL32) ||
762 Reloc
[all...]
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp1072 COFFObjectFile::getCOFFRelocation(const RelocationRef &Reloc) const {
1073 return toRel(Reloc.getRawDataRefImpl());
1084 const coff_relocation *Reloc = toRel(Rel); local
1088 switch (Reloc->Type) {
1111 switch (Reloc->Type) {
1132 switch (Reloc->Type) {
1160 const coff_relocation *Reloc = toRel(Rel); local
1162 ErrorOr<COFFSymbolRef> Symb = getSymbol(Reloc->SymbolTableIndex);
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp809 for (const RelocationRef &Reloc : Section.relocations()) {
813 Rel = Reloc.getRawDataRefImpl();
818 Reloc.getOffset(RelocOffset);
819 symbol_iterator RelocSym = Reloc.getSymbol();
847 auto Reloc = std::find_if( local
850 if (Reloc != Relocs.end()) {
851 symbol_iterator RelocSym = Reloc->second;
1783 for (const RelocationRef &Reloc : info->S.relocations()) {
1785 Reloc.getOffset(RelocOffset);
1787 Rel = Reloc
1929 auto Reloc = local
2056 auto Reloc = local
6469 findUnwindRelocNameAddend(const MachOObjectFile *Obj, std::map<uint64_t, SymbolRef> &Symbols, const RelocationRef &Reloc, uint64_t Addr, StringRef &Name, uint64_t &Addend) argument
6511 printUnwindRelocDest(const MachOObjectFile *Obj, std::map<uint64_t, SymbolRef> &Symbols, const RelocationRef &Reloc, uint64_t Addr) argument
[all...]

Completed in 534 milliseconds