Test source: git
Source: <stdin> ---------------------------------------- define i32 @test_sink_no_stores(i1 %z) { %0: %l = call i32 @f_load_global() nowrite nofree br i1 %z, label %true, label %false %false: ret i32 0 %true: ret i32 %l } => define i32 @test_sink_no_stores(i1 %z) { %0: br i1 %z, label %true, label %false %false: ret i32 0 %true: %l = call i32 @f_load_global() nowrite nofree ret i32 %l } Transformation seems to be correct! ---------------------------------------- @A = global 4 bytes, align 4 @B = global 4 bytes, align 4 define i32 @test_sink_argmem_store(i1 %z) { %0: %l = call i32 @f_load_arg(* @A) nowrite argmemonly nofree store i32 0, * @B, align 4 br i1 %z, label %true, label %false %false: ret i32 0 %true: ret i32 %l } => @B = global 4 bytes, align 4 @A = global 4 bytes, align 4 define i32 @test_sink_argmem_store(i1 %z) { %0: store i32 0, * @B, align 4 br i1 %z, label %true, label %false %false: ret i32 0 %true: %l = call i32 @f_load_arg(* @A) nowrite argmemonly nofree ret i32 %l } Transformation seems to be correct! ---------------------------------------- @A = global 4 bytes, align 4 @B = global 4 bytes, align 4 define i32 @test_sink_argmem_call(i1 %z) { %0: %l = call i32 @f_load_arg(* @A) nowrite argmemonly nofree call void @f_store_arg(* @B) argmemonly br i1 %z, label %true, label %false %false: ret i32 0 %true: ret i32 %l } => @B = global 4 bytes, align 4 @A = global 4 bytes, align 4 define i32 @test_sink_argmem_call(i1 %z) { %0: call void @f_store_arg(* @B) argmemonly br i1 %z, label %true, label %false %false: ret i32 0 %true: %l = call i32 @f_load_arg(* @A) nowrite argmemonly nofree ret i32 %l } Transformation doesn't verify! ERROR: Source is more defined than target Example: i1 %z = #x1 (1) Source: i32 %l = poison SOURCE MEMORY STATE =================== NON-LOCAL BLOCKS: Block 0 > size: 0 align: 1 alloc type: 0 Block 1 > size: 4 align: 4 alloc type: 0 Block 2 > size: 4 align: 4 alloc type: 0 Block 3 > size: 4 align: 2 alloc type: 0 Target: i32 %l = poison ------------------- SMT STATS ------------------- Num queries: 7 Num invalid: 0 Num skips: 0 Num trivial: 11 (61.1%) Num timeout: 0 (0.0%) Num errors: 0 (0.0%) Num SAT: 5 (71.4%) Num UNSAT: 2 (28.6%) Alive2: Transform doesn't verify; aborting!
+ : 'RUN: at line 1' + /home/nlopes/alive2/build/opt-alive.sh -basic-aa -sink -S + /home/nlopes/llvm/build/bin/FileCheck /home/nlopes/llvm/llvm/test/Transforms/Sink/call.ll FileCheck error: '<stdin>' is empty. FileCheck command line: /home/nlopes/llvm/build/bin/FileCheck /home/nlopes/llvm/llvm/test/Transforms/Sink/call.ll