Displaying 2 results from an estimated 2 matches for "falseblock".
2011 Sep 28
3
[LLVMdev] ICmpInst example?
...new ICmpInst(j, CmpInst::ICMP_EQ, shadow, val,
"Shadow check");
BasicBlock *trueBlock = BasicBlock::Create(M.getContext(), "Shadow
Check Block: TRUE", &F);
CallInst::Create(qv_true, "", trueBlock);
BranchInst::Create(bb_after, trueBlock);
BasicBlock *falseBlock = BasicBlock::Create(M.getContext(), "Shadow
Check Block: FALSE", &F);
CallInst::Create(qv_false, "", falseBlock);
BranchInst::Create(bb_after, falseBlock);
BranchInst::Create(trueBlock, falseBlock, test, j);
2007 Dec 19
0
[LLVMdev] JIT Stub Problem
I'm having an issue with the Stubs used by the JIT Compiler. I'm not sure if it's a bug or if I'm doing something incorrectly.
I've got a long complicated function with the following basic blocks at the end of it (The complete .ll file is attached):
falseBlock: ; preds = %__exp.exit340
ret int 617
codeRepl: ; preds = %__exp.exit340
%tmp2.i.i = add int %x, 1 ; <int> [#uses=1]
store int %tmp2.i.i, int* %tmp2.loc
call void %test3_trueBlock_trueBlock.ret.exitStub_newFuncRoot.ce...