Displaying 2 results from an estimated 2 matches for "intervalanalylsis".
2011 Jan 18
1
[LLVMdev] adding a codegen pass into llvm
...MachineFunctionPass is a case of point.
For a built-into codegen/MachineCode pass,
task 1 should be done in Passes.h;
task 2 should be done in the related mypass.cpp file;
task 3 should be done in LLVMTargetMachine.cpp
task 4 should be done by INITIALIZE_PASS
class IntervalAnalylsis: public MachineFunctionPass is a case in point.
I have implemented a new mypass (just for analysis, rather than
transformation) as a subclass of MchineFunctionPass, and finished task 1, 2,
4. But I don't know how to finish task 3, since I failed to make clear how
the class IntervalAnalysis did...
2011 Jan 12
0
[LLVMdev] About adding a pass into llvm, cont
...ineFunctionPass is a case of point.
For a built-into codegen/MachineCode pass,
task 1 should be done in Passes.h;
task 2 should be done in the related mypass.cpp file;
task 3 should be done in LLVMTargetMachine.cpp
task 4 should be done by INITIALIZE_PASS
class IntervalAnalylsis: public MachineFunctionPass is a case in point.
I have implemented a new mypass (just for analysis, rather than
transformation) as a subclass of MchineFunctionPass, and finished task 1, 2,
4. But I don't know how to finish task 3, since I failed to make clear how
the class IntervalAnalysis did...