Displaying 3 results from an estimated 3 matches for "in_valuelist".
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)
...ge &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;
};
};
It gets Registered in the cpp file via:
RegisterAnalysis<MParSchedule> X("MParSchedule","Maximal Parallel Schedule");...