Displaying 5 results from an estimated 5 matches for "elfobject".
2017 Nov 13
4
How to objcopy via LLVM toolchain for armv7e-m ELF32LE?
Hi LLVM developers,
As PR35281 mentioned:
$ llvm-objcopy -O binary llvm-cortex-m7.elf llvm-cortex-m7.bin
llvm-objcopy: 'llvm-cortex-m7.elf': The file was not recognized as a
valid object file.
if (ELFObjectFile<ELF64LE> *o =
dyn_cast<ELFObjectFile<ELF64LE>>(&Binary))
https://github.com/llvm-mirror/llvm/blob/master/tools/llvm-objcopy/llvm-objcopy.cpp#L200
Please give me some hints about objcopy armv7e-m ELF32LE via LLVM
toolchain, thanks a lot!
--
Regards,
Leslie Zhai - htt...
2011 Jul 06
2
[LLVMdev] [MCJIT] Why does it allocate function by function?
I am implementing ELFObject class for MCJIT to be able to run ELFs on
ELF-platforms.
One thing bothers me: I see that the RTDyldMemoryManager-based allocator
is always passed to MCJIT and to RuntimeDyld classes from outside. This
enforces the approach that memory will be allocated function by function
with startFunctionB...
2011 Jul 06
0
[LLVMdev] [MCJIT] Why does it allocate function by function?
On Jul 5, 2011, at 6:04 PM, Yuri wrote:
> I am implementing ELFObject class for MCJIT to be able to run ELFs on ELF-platforms.
>
> One thing bothers me: I see that the RTDyldMemoryManager-based allocator is always passed to MCJIT and to RuntimeDyld classes from outside. This enforces the approach that memory will be allocated function by function with startFun...
2011 Jun 30
0
[LLVMdev] MC-JIT (any progress?)
On Jun 29, 2011, at 4:36 PM, Yuri wrote:
> On 06/24/2011 13:23, Jim Grosbach wrote:
>>> Any progress with this?
>>> gitorious page shows the last update on Jul 27, 2010.
>>>
>> There's basics for an MC JIT implemented now, but it's not yet full featured enough to replace the old JIT. Have a look at ExecutionEnginer/RuntimeDyld and
2011 Jun 29
2
[LLVMdev] MC-JIT (any progress?)
On 06/24/2011 13:23, Jim Grosbach wrote:
>> Any progress with this?
>> gitorious page shows the last update on Jul 27, 2010.
>>
> There's basics for an MC JIT implemented now, but it's not yet full featured enough to replace the old JIT. Have a look at ExecutionEnginer/RuntimeDyld and ExecutionEngine/MCJIT.
>
> It's usable enough for some things; for