mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 06:12:18 +00:00
* Add implementation of ExtractBasicBlock()
* Add comments to ExtractLoop() git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12053 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a8a06367f8
commit
b97fce5252
@ -566,8 +566,18 @@ Function *CodeExtractor::ExtractCodeRegion(const std::vector<BasicBlock*> &code)
|
|||||||
return newFunction;
|
return newFunction;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ExtractBasicBlock - slurp a natural loop into a brand new function
|
||||||
|
///
|
||||||
Function* llvm::ExtractLoop(Loop *L) {
|
Function* llvm::ExtractLoop(Loop *L) {
|
||||||
CodeExtractor CE;
|
CodeExtractor CE;
|
||||||
return CE.ExtractCodeRegion(L->getBlocks());
|
return CE.ExtractCodeRegion(L->getBlocks());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ExtractBasicBlock - slurp a basic block into a brand new function
|
||||||
|
///
|
||||||
|
Function* llvm::ExtractBasicBlock(BasicBlock *BB) {
|
||||||
|
CodeExtractor CE;
|
||||||
|
std::vector<BasicBlock*> Blocks;
|
||||||
|
Blocks.push_back(BB);
|
||||||
|
return CE.ExtractCodeRegion(Blocks);
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user