[cfe-commits] r107687 - /cfe/trunk/lib/CodeGen/CGBuilder.h
John McCall
rjmccall at apple.com
Tue Jul 6 11:43:48 PDT 2010
Author: rjmccall
Date: Tue Jul 6 13:43:48 2010
New Revision: 107687
URL: http://llvm.org/viewvc/llvm-project?rev=107687&view=rev
Log:
Make CGBuilderTy a typedef again; its functionality has been rolled back
into IRBuilder.
Modified:
cfe/trunk/lib/CodeGen/CGBuilder.h
Modified: cfe/trunk/lib/CodeGen/CGBuilder.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGBuilder.h?rev=107687&r1=107686&r2=107687&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGBuilder.h (original)
+++ cfe/trunk/lib/CodeGen/CGBuilder.h Tue Jul 6 13:43:48 2010
@@ -17,58 +17,11 @@
// Don't preserve names on values in an optimized build.
#ifdef NDEBUG
-typedef llvm::IRBuilder<false> CGBuilderSuperTy;
+typedef llvm::IRBuilder<false> CGBuilderTy;
#else
-typedef llvm::IRBuilder<> CGBuilderSuperTy;
+typedef llvm::IRBuilder<> CGBuilderTy;
#endif
-/// IR generation's wrapper around an LLVM IRBuilder.
-class CGBuilderTy : public CGBuilderSuperTy {
-public:
- CGBuilderTy(llvm::LLVMContext &Context) : CGBuilderSuperTy(Context) {}
- CGBuilderTy(llvm::BasicBlock *Block) : CGBuilderSuperTy(Block) {}
- CGBuilderTy(llvm::BasicBlock *Block, llvm::BasicBlock::iterator Point)
- : CGBuilderSuperTy(Block, Point) {}
-
- CGBuilderTy(const CGBuilderTy &Builder)
- : CGBuilderSuperTy(Builder.getContext()) {
-
- if (Builder.GetInsertBlock())
- SetInsertPoint(Builder.GetInsertBlock(), Builder.GetInsertPoint());
- }
-
- /// A saved insertion point.
- class InsertPoint {
- llvm::BasicBlock *Block;
- llvm::BasicBlock::iterator Point;
-
- public:
- InsertPoint(llvm::BasicBlock *Block, llvm::BasicBlock::iterator Point)
- : Block(Block), Point(Point) {}
-
- bool isSet() const { return (Block != 0); }
- llvm::BasicBlock *getBlock() const { return Block; }
- llvm::BasicBlock::iterator getPoint() const { return Point; }
- };
-
- InsertPoint saveIP() const {
- return InsertPoint(GetInsertBlock(), GetInsertPoint());
- }
-
- InsertPoint saveAndClearIP() {
- InsertPoint IP(GetInsertBlock(), GetInsertPoint());
- ClearInsertionPoint();
- return IP;
- }
-
- void restoreIP(InsertPoint IP) {
- if (IP.isSet())
- SetInsertPoint(IP.getBlock(), IP.getPoint());
- else
- ClearInsertionPoint();
- }
-};
-
} // end namespace CodeGen
} // end namespace clang
More information about the cfe-commits
mailing list