Test Failure: Transforms/InstCombine/cast_ptr.ll

Test source: git

Log:

Source: <stdin>

----------------------------------------
define * @test1(* %t) {
%0:
  %tc = ptrtoint * %t to i32
  %ta = add i32 %tc, 32
  %tv = int2ptr i32 %ta to *
  ret * %tv
}
=>
define * @test1(* %t) {
%0:
  %tc = ptrtoint * %t to i32
  %ta = add i32 %tc, 32
  %tv = int2ptr i32 %ta to *
  ret * %tv
}
Transformation doesn't verify!
ERROR: Invalid expr


----------------------------------------
define i1 @test2(* %a, * %b) {
%0:
  %ta = ptrtoint * %a to i32
  %tb = ptrtoint * %b to i32
  %r = icmp eq i32 %ta, %tb
  ret i1 %r
}
=>
define i1 @test2(* %a, * %b) {
%0:
  %r = icmp eq * %a, %b
  ret i1 %r
}
Transformation doesn't verify!
ERROR: Value mismatch

Example:
* %a = pointer(non-local, block_id=0, offset=537919489)
* %b = pointer(non-local, block_id=2, offset=1048577)

Source:
i32 %ta = #x20100001 (537919489)
i32 %tb = #x20100001 (537919489)
i1 %r = #x1 (1)

SOURCE MEMORY STATE
===================
NON-LOCAL BLOCKS:
Block 0 >	size: 0	align: 1	alloc type: 0	address: 0
Block 1 >	size: 367821833	align: 2	alloc type: 0	address: 134217728
Block 2 >	size: 536608767	align: 2	alloc type: 0	address: 536870912

Target:
i1 %r = #x0 (0)
Source value: #x1 (1)
Target value: #x0 (0)


------------------- SMT STATS -------------------
Num queries: 3
Num invalid: 1
Num skips:   0
Num trivial: 6 (66.7%)
Num timeout: 0 (0.0%)
Num errors:  0 (0.0%)
Num SAT:     3 (100.0%)
Num UNSAT:   0 (0.0%)

stderr:

+ : 'RUN: at line 3'
+ /home/nlopes/alive2/scripts/opt-alive.sh -instcombine -S
+ /home/nlopes/llvm/build/bin/FileCheck /home/nlopes/llvm/llvm/test/Transforms/InstCombine/cast_ptr.ll

Alive2: Transform doesn't verify; aborting!
FileCheck error: '<stdin>' is empty.
FileCheck command line:  /home/nlopes/llvm/build/bin/FileCheck /home/nlopes/llvm/llvm/test/Transforms/InstCombine/cast_ptr.ll

 

<-- Back