search for: blockschedul

Displaying 4 results from an estimated 4 matches for "blockschedul".

Did you mean: blockschedule
2008 Dec 09
7
subclassing vs mixins, which one should be used?
Hey all, I have two models in my rails project that share a lot of traits. They each have the same 4 properties, and now I need to add 2-3 methods to each one that will be the same. In the spirit of DRY I am looking for a solution to write these methods only once. Both of these models already inherit from ActiveRecord . . . and I didn''t know if it was safe to just "whip up" a
2006 May 30
0
[LLVMdev] Adding an object to llc
On Tue, 2006-05-30 at 14:48 +0200, Silken Tiger wrote: > Hi > > Thanks for all your feedback. I just found the reason for the compile failure > for my analysis pass: I had to add my object to the namespace llvm instead of > anonymous. This took me some time since i was looking for an linking > failure... but as errors go i should have looked at the error message a >
2006 May 30
2
[LLVMdev] Adding an object to llc
Hi Thanks for all your feedback. I just found the reason for the compile failure for my analysis pass: I had to add my object to the namespace llvm instead of anonymous. This took me some time since i was looking for an linking failure... but as errors go i should have looked at the error message a little closer. So for all those trying to add an analysis path: * add the object name to the
2006 May 30
3
[LLVMdev] Adding an object to llc (analysis pass)
...public: virtual bool runOnBasicBlock(BasicBlock &B); void getAnalysisUsage(AnalysisUsage &AU) const; virtual void releaseMemory(); map<const BasicBlock *,list<Schedule*> *> BlockSchedule; list<Schedule*>* lookupBasicBlock(BasicBlock *); private: bool in_ValueList(Value *val); list<const Value*> ValueList; list<Instruction*> InstructionList; }; }...