Displaying 2 results from an estimated 2 matches for "selectiondag_intro".
2010 Oct 21
1
[LLVMdev] [Noob] Docs for SelectionDAGs?
Hi all,
Just getting started with LLVM, and trying to write a back end for a toy hypothetical processor. I'm using llvm-gcc with -emit-llvm to see the LLVM code. The LLVM code is very well-documented at http://llvm.org/docs/LangRef.html. However, I'm looking for equivalent documentation for SelectionDAGs. As I understand it, instructions in the target specification get matched against the
2012 Feb 27
3
[LLVMdev] SwitchInst handling in backend
Hi,
if I want to know how switch instructions are handled in the backend, where do I have to look first?
I'm not familiar with the backend framework and I couldn't figure out the interface between the LLVM instruction 'SwitchInst' and whatever there is in the backend.
I would be very happy about every hint where I have to look to find the entry point of switch instructions in the