aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-03 15:39:36 +0000
committerChris Lattner <sabre@nondot.org>2001-10-03 15:39:36 +0000
commit6a57baa295bb3dbd389581df968536f594709bdb (patch)
treedd666d1e72f2a300634e7223657f5ec12f6553bf
parentd535c2d1635a1a72ccfd95bd2664c22e5d24b00b (diff)
Rename getNullPointer to getNull
Allow sharing of null pointer constants git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@709 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/ConstPoolVals.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/VMCore/ConstPoolVals.cpp b/lib/VMCore/ConstPoolVals.cpp
index 6c054e1ee0..eeb7a43069 100644
--- a/lib/VMCore/ConstPoolVals.cpp
+++ b/lib/VMCore/ConstPoolVals.cpp
@@ -46,7 +46,7 @@ ConstPoolVal *ConstPoolVal::getNullConstant(const Type *Ty) {
case Type::DoubleTyID: return ConstPoolFP::get(Ty, 0);
case Type::PointerTyID:
- return ConstPoolPointer::getNullPointer(cast<PointerType>(Ty));
+ return ConstPoolPointer::getNull(cast<PointerType>(Ty));
default:
return 0;
}
@@ -331,3 +331,15 @@ ConstPoolStruct *ConstPoolStruct::get(const StructType *Ty,
StructConstants.add(Ty, V, Result = new ConstPoolStruct(Ty, V));
return Result;
}
+
+//---- ConstPoolPointer::get() implementation...
+//
+static ValueMap<char, ConstPoolPointer> NullPtrConstants;
+
+ConstPoolPointer *ConstPoolPointer::getNull(const PointerType *Ty) {
+ ConstPoolPointer *Result = NullPtrConstants.get(Ty, 0);
+ if (!Result) // If no preexisting value, create one now...
+ NullPtrConstants.add(Ty, 0, Result = new ConstPoolPointer(Ty));
+ return Result;
+}
+