search for: _stack_

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

2004 May 09
2
[LLVMdev] Strange SetCond Behavior
...;m going to try and reduce the test case because I suspect something is broken in LLVM that only shows up in Stacker's usage. I'll let you know what I find. Please let me know if the above sounds like a known problem or usage issue. Thanks, Reid. -------------- next part -------------- %_stack_ = linkonce global [1024 x long] zeroinitializer ; <[1024 x long]*> [#uses=12] %_index_ = linkonce global long 0 ; <long*> [#uses=36] %_str_format_ = linkonce constant [3 x sbyte] c"%s\00" ; <[3 x sbyte]*> [#uses=0] %_in_str_format_ = linkonce constant [5 x sbyte] c&qu...
2003 Nov 23
3
[LLVMdev] Linkage Types again!
...ilation units that don't include "main", I generate it with: TheStack = new GlobalVariable( /*type=*/ stack_type, /*isConstant=*/ false, /*Linkage=*/ GlobalValue::AppendingLinkage, /*initializer=*/ 0, /*name=*/ "_stack_", /*parent=*/ TheModule ); Note that lack of an initializer. I think this makes it external. When a main program is...
2003 Nov 21
2
[LLVMdev] Need Help With Verifier
...> TheStack = new GlobalVariable( > /*type=*/ stack_type, > /*isConstant=*/ false, > /*Linkage=*/ GlobalValue::AppendingLinkage, > /*initializer=*/0, > /*name=*/ "_stack_", > /*parent=*/ TheModule > ); Shouldn't that create just a single dimensioned array? Note that "stack_size" is an integer with the value 1024. Finally, I have some confusion about how SSA works with LLVM. If I understand the documentation correctly, there is no di...