Displaying 3 results from an estimated 3 matches for "reloctype".
2013 Sep 25
1
[LLVMdev] arm64 / iOS support
...sing namespace llvm;
+
+namespace {
+class AArch64MachOObjectWriter : public MCMachObjectTargetWriter {
+
+ bool requiresExternRelocation(MachObjectWriter *Writer,
+ const MCAssembler &Asm,
+ const MCFragment &Fragment, unsigned RelocType,
+ const MCSymbolData *SD, uint64_t FixedValue);
+
+public:
+ AArch64MachOObjectWriter(uint32_t CPUType, uint32_t CPUSubtype);
+
+ virtual ~AArch64MachOObjectWriter();
+
+protected:
+ virtual void
+ RecordRelocation(MachObjectWriter *Writer, const MCAssembler &...
2012 Nov 06
0
[LLVMdev] [PATCH] basic reading reloc visitor for x86_64 ELF
On Mon, Nov 5, 2012 at 5:17 PM, Eric Christopher <echristo at gmail.com> wrote:
> For llvm-dwarfdump we need to handle relocations inside the debug info
> sections in order to successfully dump the dwarf info including strings.
> Nick sent out a partial patch that did this not too long ago and I've taken
> it and gone in a bit of a different direction, but kept the same basic
2012 Nov 06
2
[LLVMdev] [PATCH] basic reading reloc visitor for x86_64 ELF
For llvm-dwarfdump we need to handle relocations inside the debug info
sections in order to successfully dump the dwarf info including strings.
Nick sent out a partial patch that did this not too long ago and I've taken
it and gone in a bit of a different direction, but kept the same basic
architecture.
In place of applying the relocations to the data we've read from disk I'm
keeping