Changes so that iMemory.h doesn't include DerivedTypes.h
authorChris Lattner <sabre@nondot.org>
Mon, 29 Apr 2002 18:46:50 +0000 (18:46 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 29 Apr 2002 18:46:50 +0000 (18:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2404 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/AsmWriter.cpp
lib/VMCore/iMemory.cpp

index 8e5de342561a2d644d4014ea80aa0e5b5809afe2..90ce6ba517576b0ba600adda81647a8326f48953 100644 (file)
@@ -11,6 +11,7 @@
 #include "llvm/Assembly/CachedWriter.h"
 #include "llvm/Assembly/Writer.h"
 #include "llvm/SlotCalculator.h"
+#include "llvm/DerivedTypes.h"
 #include "llvm/Module.h"
 #include "llvm/Function.h"
 #include "llvm/GlobalVariable.h"
index 09d9d156bf63183d05bf7006c9ce7676cf74fd50..0a62d1cae069f313e6cfaafad6e0dd28a5fa62d5 100644 (file)
@@ -6,6 +6,7 @@
 
 #include "llvm/iMemory.h"
 #include "llvm/Constants.h"
+#include "llvm/DerivedTypes.h"
 
 static inline const Type *checkType(const Type *Ty) {
   assert(Ty && "Invalid indices for type!");
@@ -32,6 +33,11 @@ bool AllocationInst::isArrayAllocation() const {
          getOperand(0) != ConstantUInt::get(Type::UIntTy, 1);
 }
 
+const Type *AllocationInst::getAllocatedType() const {
+  return getType()->getElementType();
+}
+
+
 //===----------------------------------------------------------------------===//
 //                        MemAccessInst Implementation
 //===----------------------------------------------------------------------===//
@@ -130,3 +136,15 @@ GetElementPtrInst::GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
   for (unsigned i = 0, E = Idx.size(); i != E; ++i)
     Operands.push_back(Use(Idx[i], this));
 }
+
+
+//===----------------------------------------------------------------------===//
+//                             FreeInst Implementation
+//===----------------------------------------------------------------------===//
+
+FreeInst::FreeInst(Value *Ptr) : Instruction(Type::VoidTy, Free, "") {
+  assert(Ptr->getType()->isPointerType() && "Can't free nonpointer!");
+  Operands.reserve(1);
+  Operands.push_back(Use(Ptr, this));
+}
+