search for: metasplit

Displaying 10 results from an estimated 10 matches for "metasplit".

2004 Jun 23
0
[LLVMdev] weird issue with mem2reg
MetaSplit is an anlysis I just finished writing. It doesn't alter anything, all it does is build a set of "program instructions". For some reason even though if I run it with any other combination of passes I've found, anytime I run it with mem2reg I get a seg fault in dyn_cast! Here'...
2004 Jun 23
2
[LLVMdev] weird issue with mem2reg
On Wed, 23 Jun 2004, Patrick Meredith wrote: > MetaSplit is an anlysis I just finished writing. It doesn't alter anything, > all it does is build a set of "program instructions". For some reason even > though if I run it with any other combination of passes I've found, anytime > I run it with mem2reg I get a seg fault in dyn_...
2004 Jun 23
0
[LLVMdev] weird issue with mem2reg
----- Original Message ----- From: "Chris Lattner" <sabre at nondot.org> To: <llvmdev at cs.uiuc.edu> Sent: Wednesday, June 23, 2004 4:05 PM Subject: Re: [LLVMdev] weird issue with mem2reg > On Wed, 23 Jun 2004, Patrick Meredith wrote: > > > MetaSplit is an anlysis I just finished writing. It doesn't alter anything, > > all it does is build a set of "program instructions". For some reason even > > though if I run it with any other combination of passes I've found, anytime > > I run it with mem2reg I get a se...
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
3
[LLVMdev] weird issue with mem2reg
On Wed, Jun 23, 2004 at 03:50:09PM -0500, Patrick Meredith wrote: > MetaSplit is an anlysis I just finished writing. It doesn't alter > anything, all it does is build a set of "program instructions". For > some reason even though if I run it with any other combination of > passes I've found, anytime I run it with mem2reg I get a seg fault in >...
2004 Jun 23
2
[LLVMdev] weird issue with mem2reg, still
...; > To: <llvmdev at cs.uiuc.edu> > > > Sent: Wednesday, June 23, 2004 3:56 PM > > > Subject: Re: [LLVMdev] weird issue with mem2reg > > > > > > > > > > On Wed, Jun 23, 2004 at 03:50:09PM -0500, Patrick Meredith wrote: > > > > > MetaSplit is an anlysis I just finished writing. It doesn't alter > > > > > anything, all it does is build a set of "program instructions". For > > > > > some reason even though if I run it with any other combination of > > > > > passes I've fo...
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-...
2004 Jun 23
4
[LLVMdev] weird issue with mem2reg, should have guessed
...; From: "Misha Brukman" <brukman at uiuc.edu> > To: <llvmdev at cs.uiuc.edu> > Sent: Wednesday, June 23, 2004 3:56 PM > Subject: Re: [LLVMdev] weird issue with mem2reg > > > > On Wed, Jun 23, 2004 at 03:50:09PM -0500, Patrick Meredith wrote: > > > MetaSplit is an anlysis I just finished writing. It doesn't alter > > > anything, all it does is build a set of "program instructions". For > > > some reason even though if I run it with any other combination of > > > passes I've found, anytime I run it with mem...
2004 Jun 23
0
[LLVMdev] weird issue with mem2reg, should have guessed
...nt. ----- Original Message ----- From: "Misha Brukman" <brukman at uiuc.edu> To: <llvmdev at cs.uiuc.edu> Sent: Wednesday, June 23, 2004 3:56 PM Subject: Re: [LLVMdev] weird issue with mem2reg > On Wed, Jun 23, 2004 at 03:50:09PM -0500, Patrick Meredith wrote: > > MetaSplit is an anlysis I just finished writing. It doesn't alter > > anything, all it does is build a set of "program instructions". For > > some reason even though if I run it with any other combination of > > passes I've found, anytime I run it with mem2reg I get a se...
2004 Jun 23
0
[LLVMdev] weird issue with mem2reg, still
...lt;brukman at uiuc.edu> > > To: <llvmdev at cs.uiuc.edu> > > Sent: Wednesday, June 23, 2004 3:56 PM > > Subject: Re: [LLVMdev] weird issue with mem2reg > > > > > > > On Wed, Jun 23, 2004 at 03:50:09PM -0500, Patrick Meredith wrote: > > > > MetaSplit is an anlysis I just finished writing. It doesn't alter > > > > anything, all it does is build a set of "program instructions". For > > > > some reason even though if I run it with any other combination of > > > > passes I've found, anytime I...