[llvm-branch-commits] [llvm-branch] r101512 - in /llvm/branches/Apple/Morbo: include/llvm/Type.h lib/VMCore/Type.cpp

Daniel Dunbar daniel at zuster.org
Fri Apr 16 11:33:48 PDT 2010


Author: ddunbar
Date: Fri Apr 16 13:33:47 2010
New Revision: 101512

URL: http://llvm.org/viewvc/llvm-project?rev=101512&view=rev
Log:
VMCore: Add Type::getIntN[Ptr]Ty, which are the obvious generic forms of Type::getInt{1,8,...}[Ptr]Ty, so code can consistently use the methods on Type without occasionally needed to call IntegerType::get.

Modified:
    llvm/branches/Apple/Morbo/include/llvm/Type.h
    llvm/branches/Apple/Morbo/lib/VMCore/Type.cpp

Modified: llvm/branches/Apple/Morbo/include/llvm/Type.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Morbo/include/llvm/Type.h?rev=101512&r1=101511&r2=101512&view=diff
==============================================================================
--- llvm/branches/Apple/Morbo/include/llvm/Type.h (original)
+++ llvm/branches/Apple/Morbo/include/llvm/Type.h Fri Apr 16 13:33:47 2010
@@ -406,6 +406,7 @@
   static const Type *getX86_FP80Ty(LLVMContext &C);
   static const Type *getFP128Ty(LLVMContext &C);
   static const Type *getPPC_FP128Ty(LLVMContext &C);
+  static const IntegerType *getIntNTy(LLVMContext &C, unsigned N);
   static const IntegerType *getInt1Ty(LLVMContext &C);
   static const IntegerType *getInt8Ty(LLVMContext &C);
   static const IntegerType *getInt16Ty(LLVMContext &C);
@@ -421,6 +422,8 @@
   static const PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0);
   static const PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0);
   static const PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0);
+  static const PointerType *getIntNPtrTy(LLVMContext &C, unsigned N,
+                                         unsigned AS = 0);
   static const PointerType *getInt1PtrTy(LLVMContext &C, unsigned AS = 0);
   static const PointerType *getInt8PtrTy(LLVMContext &C, unsigned AS = 0);
   static const PointerType *getInt16PtrTy(LLVMContext &C, unsigned AS = 0);

Modified: llvm/branches/Apple/Morbo/lib/VMCore/Type.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Morbo/lib/VMCore/Type.cpp?rev=101512&r1=101511&r2=101512&view=diff
==============================================================================
--- llvm/branches/Apple/Morbo/lib/VMCore/Type.cpp (original)
+++ llvm/branches/Apple/Morbo/lib/VMCore/Type.cpp Fri Apr 16 13:33:47 2010
@@ -380,6 +380,10 @@
   return &C.pImpl->PPC_FP128Ty;
 }
 
+const IntegerType *Type::getIntNTy(LLVMContext &C, unsigned N) {
+  return IntegerType::get(C, N);
+}
+
 const IntegerType *Type::getInt1Ty(LLVMContext &C) {
   return &C.pImpl->Int1Ty;
 }
@@ -420,6 +424,10 @@
   return getPPC_FP128Ty(C)->getPointerTo(AS);
 }
 
+const PointerType *Type::getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS) {
+  return getIntNTy(C, N)->getPointerTo(AS);
+}
+
 const PointerType *Type::getInt1PtrTy(LLVMContext &C, unsigned AS) {
   return getInt1Ty(C)->getPointerTo(AS);
 }





More information about the llvm-branch-commits mailing list