search for: xm1988

Displaying 8 results from an estimated 8 matches for "xm1988".

Did you mean: 1988
2010 Oct 15
2
[LLVMdev] how to get MachineBasicBlock of a BasicBlock
Hello, we can get BasicBlock from MachineBasicBlock through MachineBasicBlock::getBasicBlock() function, but how can I get MachineBasicBlock of a BasicBlock? Thank you!
2010 Oct 15
0
[LLVMdev] how to get MachineBasicBlock of a BasicBlock
...indBlock( BasicBlock * block ) : block(block) {} bool operator( MachineBasicBlock * mbb ) { return mbb->getBasicBlock() == block; } } findBlock; MachineBasicBlock = *std::find( machineFunction.begin(), machineFunction.end(), findBlock( basicBlock ) ); -Thanks -Jeff Kunkel 2010/10/15 徐敏 <xm1988 at mail.ustc.edu.cn>: > Hello, we can get BasicBlock from MachineBasicBlock through MachineBasicBlock::getBasicBlock() function, but how can I get MachineBasicBlock of a BasicBlock? > Thank you! > > > > > _______________________________________________ > LLVM Developers m...
2010 Oct 15
1
[LLVMdev] how to get MachineBasicBlock of a BasicBlock
...t; bool operator( MachineBasicBlock * mbb ) { return > mbb->getBasicBlock() == block; } > } findBlock; > MachineBasicBlock = *std::find( machineFunction.begin(), > machineFunction.end(), > findBlock( basicBlock ) ); > > -Thanks > -Jeff Kunkel > > 2010/10/15 徐敏 <xm1988 at mail.ustc.edu.cn>: > > Hello, we can get BasicBlock from MachineBasicBlock through > MachineBasicBlock::getBasicBlock() function, but how can I get > MachineBasicBlock of a BasicBlock? > > Thank you! > > > > > > > > > > _________________________...
2010 Oct 10
0
[LLVMdev] Hello
Hello,Everyone!
2010 Oct 14
0
[LLVMdev] MachineLoopInfo question
Dear all, I found many methods (such as getTripCount, isLCSSAForm) are not supported for machine loops in MachineLoopInfo.h file. Does this mean I can not use MachineLoopInfo if I need getTripCount? Why not support them in MachineLoopInfo? Thank you!
2010 Oct 16
0
[LLVMdev] profile-directed if-conversion
Hello, everyone. How can I implement profile-directed if-conversion for an specific architecture on LLVM? I know if-conversion pass of LLVM. Thank you for your help! I am new LLVMer, your presents do me a favor!
2010 Oct 17
0
[LLVMdev] profile directed if conversion
Hello, everyone. How can I implement profile directed if conversion for an specific architecture on LLVM? I know if conversion pass of LLVM. Thank you for your help! I am new LLVMer, your presents do me a favor!
2010 Oct 18
0
[LLVMdev] MachinePostDominator
Why MachinePostDominator.h is removed? How can I judge whether MachineBasicBlock A post dominate B or not? Thanks!