search for: handleprogramuses

Displaying 6 results from an estimated 6 matches for "handleprogramuses".

2004 Jun 23
0
[LLVMdev] weird issue with mem2reg
...alhome/pmeredit/llvm/include/Support/Casting.h:114 #14 0x4001baaa in dyn_cast<llvm::CallInst, llvm::Use> (Val={Val = 0x894e850, U = 0x8917e48, Prev = 0x895a240, Next = 0x894e880}) at /localhome/pmeredit/llvm/include/Support/Casting.h:223 #15 0x4001af72 in (anonymous namespace)::MetaSplit::handleProgramUses(llvm::Value*) (this=0x893e998, V=0x8917e48) at MetaSplit.cpp:79 #16 0x4001b049 in (anonymous namespace)::MetaSplit::handleProgramUses(llvm::Value*) (this=0x893e998, V=0x895ff40) at MetaSplit.cpp:88 #17 0x4001b049 in (anonymous namespace)::MetaSplit::handleProgramUses(llvm::Value*) (this=0x893e998,...
2004 Jun 23
2
[LLVMdev] weird issue with mem2reg
...ude/Support/Casting.h:114 > #14 0x4001baaa in dyn_cast<llvm::CallInst, llvm::Use> (Val={Val = 0x894e850, > U = 0x8917e48, Prev = 0x895a240, Next = 0x894e880}) > at /localhome/pmeredit/llvm/include/Support/Casting.h:223 > #15 0x4001af72 in (anonymous > namespace)::MetaSplit::handleProgramUses(llvm::Value*) (this=0x893e998, > V=0x8917e48) at MetaSplit.cpp:79 > #16 0x4001b049 in (anonymous > namespace)::MetaSplit::handleProgramUses(llvm::Value*) (this=0x893e998, > V=0x895ff40) at MetaSplit.cpp:88 > #17 0x4001b049 in (anonymous > namespace)::MetaSplit::handleProgramUses(l...
2004 Jun 23
0
[LLVMdev] weird issue with mem2reg
...> > #14 0x4001baaa in dyn_cast<llvm::CallInst, llvm::Use> (Val={Val = 0x894e850, > > U = 0x8917e48, Prev = 0x895a240, Next = 0x894e880}) > > at /localhome/pmeredit/llvm/include/Support/Casting.h:223 > > #15 0x4001af72 in (anonymous > > namespace)::MetaSplit::handleProgramUses(llvm::Value*) (this=0x893e998, > > V=0x8917e48) at MetaSplit.cpp:79 > > #16 0x4001b049 in (anonymous > > namespace)::MetaSplit::handleProgramUses(llvm::Value*) (this=0x893e998, > > V=0x895ff40) at MetaSplit.cpp:88 > > #17 0x4001b049 in (anonymous > > namespace)::...
2004 Jun 23
3
[LLVMdev] IRC: Discussion About Upgrades To Bugzilla
I thought this conversation was worth saving. DannyB who did wonderful things with GCC's use of bugzilla has offered the same capability to LLVM. Thanks, Danny! <DannyB> sabre: BTW, if you need any of the bugzilla fun i have implemented for gcc, let me know [22:47] <sabre> Cool, what kinds of things do you have? [22:47] <DannyB> Besides the triplet stuff, i changed some of
2004 Jun 23
0
[LLVMdev] weird issue with mem2reg, still
void MetaSplit::handleProgramUses(Value *V){ if(!isa<BasicBlock>(V)) programValues.insert(V); if(User *U = dyn_cast<User>(V)){ User::op_iterator OB = U->op_begin(), OE = U->op_end(); for(; OB != OE; ++OB){ if(CallInst *CI = dyn_cast<CallInst>(*OB)){ Function *F = CI->getCalledFuncti...
2004 Jun 23
2
[LLVMdev] weird issue with mem2reg, still
On Wed, 23 Jun 2004, Patrick Meredith wrote: > Somehow it fails with operand out of bounds when the number of operands > is 2 and I am asking for the second operand. Second meaning operand 1. Okay, so you have something like this: if (CallInst *CI = dyn_cast<CallInst>(...)) { ... = CI->getOperand(1); } Can you send in this snippet of code, the assertion, and the