Displaying 4 results from an estimated 4 matches for "removepr".
Did you mean:
remover
2013 Feb 21
2
[LLVMdev] hazard scheduling nodes
...a scheduler derived from ScheduleDAGInstrs. I get weird errors, so I wonder what I am doing wrong?
What I am doing right now is:
I have a created MI with opcode HAZARD that does not have parent, and I greate a SUnit(HazardMI). I use this one HazardMI for all hazard nodes.
I remove all edges using removePred.
I insert edges between Node -> hazardNode -> pred.
What is there to think about in this approach? I must be missing some detail...
Any help is appreciated,
Jonas Paulsson
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail...
2013 Mar 09
0
[LLVMdev] hazard scheduling nodes
...heduleDAGInstrs. I get weird errors, so I wonder what I am doing wrong?
>
> What I am doing right now is:
>
> I have a created MI with opcode HAZARD that does not have parent, and I greate a SUnit(HazardMI). I use this one HazardMI for all hazard nodes.
> I remove all edges using removePred.
> I insert edges between Node -> hazardNode -> pred.
>
> What is there to think about in this approach? I must be missing some detail…
>
> Any help is appreciated,
>
> Jonas Paulsson
Jonas, I'm sorry I forgot to respond to this. Hopefully you figured out how...
2013 Mar 12
1
[LLVMdev] hazard scheduling nodes
...a scheduler derived from ScheduleDAGInstrs. I get weird errors, so I wonder what I am doing wrong?
What I am doing right now is:
I have a created MI with opcode HAZARD that does not have parent, and I greate a SUnit(HazardMI). I use this one HazardMI for all hazard nodes.
I remove all edges using removePred.
I insert edges between Node -> hazardNode -> pred.
What is there to think about in this approach? I must be missing some detail...
Any help is appreciated,
Jonas Paulsson
Jonas, I'm sorry I forgot to respond to this. Hopefully you figured out how to debug it. I'm not sure if yo...
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