search for: twoalloca

Displaying 2 results from an estimated 2 matches for "twoalloca".

Did you mean: thealloca
2013 Apr 12
1
[LLVMdev] What pattern of front end language can be tranalated into
I find this pattern as below from <llvm-source-tree>/test/CodeGen/Mips/alloca.ll, and want to know what front end pattern can be translated into this. Anybody know this answer? %tmp1 = alloca i8, i32 %size, align 4 // has %size variable, not pattern, alloca i8, align 4 define i32 @twoalloca(i32 %size) nounwind { entry: ...   %tmp1 = alloca i8, i32 %size, align 4 } Jonathan -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130412/f43c87ef/attachment.html>
2013 Apr 15
1
[LLVMdev] What is the front end pattern?
...be translated into this pattern alloca with variable argument %size as below? Can some one help me? I am writing the llvm backend document --http://jonathan2251.github.com/lbd/index.html now. %tmp1 = alloca i8, i32 %size, align 4 // has %size variable, not pattern, alloca i8, align 4 define i32 @twoalloca(i32 %size) nounwind { entry: ... ? %tmp1 = alloca i8, i32 %size, align 4 } Jonathan -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130415/cd40107b/attachment.html>