Displaying 1 result from an estimated 1 matches for "e325e810".
2011 Jul 05
2
[LLVMdev] load/store in IR without stack/heap
Hi all,
Can anyone give an idea to solve my problem? I'm implementing backend part
using LLVM for my research architecture. The main issue is that this
architecture
cannot use stack/heap. So, all the value should be stored in the register.
Given that architecture, load/store instruction in IR uses virtual register
to load/
store the value. For example:
C source code is:
if(...) {
a = 1;