Displaying 2 results from an estimated 2 matches for "start_ckpt".
2011 May 04
2
[LLVMdev] identifying all dependent instructions through multi-levels of def-use relationship
...example (IR segment):
define void @foo() nounwind {
entry:
%a = alloca i32, align 4; ; [0]
%b = alloca i32, align 4
%c = alloca i32, align 4
%d = alloca i32, align 4
%e = alloca i32, align 4
%f = alloca i32, align 4
%A = alloca [100 x i32], align 4
call void @start_ckpt() nounwind
%0 = call i32 @puts(i8* getelementptr inbounds ([8 x i8]* @.str, i32
0, i32 0)) nounwind
%a1 = bitcast i32* %a to i8* ; [1]
call void @bkp_memory(i8* %a1, i32 4) nounwind ; [2] the
function call instruction that I am about to replicate
I need to make a copy/clo...
2011 May 05
0
[LLVMdev] identifying all dependent instructions through multi-levels of def-use relationship
...o() nounwind {
> entry:
> %a = alloca i32, align 4; ; [0]
> %b = alloca i32, align 4
> %c = alloca i32, align 4
> %d = alloca i32, align 4
> %e = alloca i32, align 4
> %f = alloca i32, align 4
> %A = alloca [100 x i32], align 4
> call void @start_ckpt() nounwind
> %0 = call i32 @puts(i8* getelementptr inbounds ([8 x i8]* @.str, i32
> 0, i32 0)) nounwind
> %a1 = bitcast i32* %a to i8* ; [1]
> call void @bkp_memory(i8* %a1, i32 4) nounwind ; [2] the
> function call instruction that I am about to replicate
&g...