Displaying 1 result from an estimated 1 matches for "6d9f2835".
2015 Apr 24
2
[LLVMdev] convert LLVM IR to another IR without SSA
Hi,
I want to convert LLVM IR to another type of IR, which has no SSA form. So
the most important thing I need to handle is Phi node and register
allocation because another type of IR has a limitation of virtual register
number. The first thing I can think about is to learn how LLVM Backend
works because LLVM Backend handles these things. But I'm not familiar with
Backend. After reading some