search for: d9b7d682

Displaying 3 results from an estimated 3 matches for "d9b7d682".

2011 Oct 21
2
[LLVMdev] Question about local variables
It looks like the AsmWriter is generating the local variables (SlotNum)s on the fly in that file (AsmWriter.cpp), so is there any way at all to get this information from the operation itself, via Instruction, Value or Type? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111021/55f4887c/attachment.html>
2011 Oct 22
0
[LLVMdev] Question about local variables
Ryan Taylor wrote: > It looks like the AsmWriter is generating the local variables (SlotNum)s > on the fly in that file (AsmWriter.cpp), so is there any way at all to > get this information from the operation itself, via Instruction, Value > or Type? Nope! As you noticed, they're created on the fly... ...when the Value or Type is anonymous. If you want them to be persistent,
2011 Oct 22
9
[LLVMdev] Question about local variables
...nt, > values can have names via. the setName() call. "opt -instnamer" will name > all your instructions, for example. > > Nick > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111022/d9b7d682/attachment.html>