Test source: git
Comments: LLVM bug: memcpy -> i8 load/store
Source: <stdin>
-- 1. ModuleToFunctionPassAdaptor
ERROR: Unsupported metadata: 7
-- 1. PassManager<llvm::Function> : Skipping NOP
-- 2. InstCombinePass
----------------------------------------
define void @copy_1_byte(ptr %d, ptr %s) {
#0:
memcpy ptr %d align 1, ptr %s align 1, i32 1
ret void
}
Transformation seems to be correct! (syntactically equal)
-- 3. InstCombinePass
----------------------------------------
define void @copy_1_byte(ptr %d, ptr %s) {
#0:
memcpy ptr %d align 1, ptr %s align 1, i32 1
ret void
}
=>
define void @copy_1_byte(ptr %d, ptr %s) {
#0:
%#1 = load i8, ptr %s, align 1
store i8 %#1, ptr %d, align 1
ret void
}
Transformation doesn't verify! (unsound)
ERROR: Mismatch in memory
Example:
ptr %d = pointer(non-local, block_id=1, offset=0) / Address=#x04
ptr %s = pointer(non-local, block_id=1, offset=0) / Address=#x04
Source:
SOURCE MEMORY STATE
===================
NON-LOCAL BLOCKS:
Block 0 > size: 0 align: 1 alloc type: 0 alive: false address: 0
Block 1 > size: 1 align: 2 alloc type: 0 alive: true address: 4
Contents:
*: pointer(non-local, block_id=0, offset=64), byte offset=0
Block 2 > size: 0 align: 1 alloc type: 0 alive: true address: 1
Contents:
*: pointer(non-local, block_id=0, offset=64), byte offset=0
Target:
i8 %#1 = poison
Mismatch in pointer(non-local, block_id=1, offset=0)
Source value: pointer(non-local, block_id=0, offset=64), byte offset=0
Target value: poison
Pass: InstCombinePass
Command line: '/home/nlopes/llvm/build/bin/opt' '-load=/home/nlopes/alive2/build/tv/tv.so' '-load-pass-plugin=/home/nlopes/alive2/build/tv/tv.so' '-tv-exit-on-error' '-passes=instcombine' '-S' '-tv-smt-to=20000' '-tv-report-dir=/home/nlopes/alive2/build/logs' '-tv-smt-stats'
Wrote bitcode to: "/home/nlopes/alive2/build/logs/in_Y6p9JYVS_KBQY.bc"
------------------- SMT STATS -------------------
Num queries: 37
Num invalid: 0
Num skips: 0
Num trivial: 7 (15.9%)
Num timeout: 0 (0.0%)
Num errors: 0 (0.0%)
Num SAT: 22 (59.5%)
Num UNSAT: 15 (40.5%)
Alive2: Transform doesn't verify; aborting!
RUN: at line 2: /home/nlopes/alive2/build/opt-alive.sh < /bitbucket/nlopes/llvm/llvm/test/Transforms/InstCombine/memcpy-to-load.ll -passes=instcombine -S | /bitbucket/nlopes/llvm/build/bin/FileCheck /bitbucket/nlopes/llvm/llvm/test/Transforms/InstCombine/memcpy-to-load.ll + /home/nlopes/alive2/build/opt-alive.sh -passes=instcombine -S + /bitbucket/nlopes/llvm/build/bin/FileCheck /bitbucket/nlopes/llvm/llvm/test/Transforms/InstCombine/memcpy-to-load.ll FileCheck error: '<stdin>' is empty. FileCheck command line: /bitbucket/nlopes/llvm/build/bin/FileCheck /bitbucket/nlopes/llvm/llvm/test/Transforms/InstCombine/memcpy-to-load.ll