search for: notresult

Displaying 2 results from an estimated 2 matches for "notresult".

2018 Dec 14
3
LLVM Alias Analysis problem
Dear LLVM developers, My name is Artem Vopilov, I am a student at TU Darmstadt. I am writing to you again to ask about Alias Analysis. Now I attached IR code and C code of program I analyze with Alias Analysis. Running commands "opt -analyze -aa-eval -print-all-alias-modref-info" and for printing sets of alias "opt -analyze -aa-eval -print-alias-sets" gives me the results,
2018 Dec 14
2
LLVM Alias Analysis problem
...%sum, align 4 >> ret i32 %6 >> } >> >> ; Function Attrs: nounwind uwtable >> define i32 @addNumbers(i32 %a, i32 %b) #0 { >> entry: >> %a.addr = alloca i32, align 4 >> %b.addr = alloca i32, align 4 >> %result = alloca i32, align 4 >> %notResult = alloca i32*, align 8 >> store i32 %a, i32* %a.addr, align 4 >> store i32 %b, i32* %b.addr, align 4 >> store i32* %b.addr, i32** %notResult, align 8 >> %0 = load i32* %a.addr, align 4 >> %1 = load i32** %notResult, align 8 >> %2 = load i32* %1, align 4 &gt...