Add BasicBlock level dominates(A,B) interface.
[oota-llvm.git] / include / llvm / Intrinsics.h
index e439476914f069b118d3dbb236fd6c9cd65cd0e5..3a97b33358d87e17501a4bf2fba591392decd329 100644 (file)
 
 namespace llvm {
 
+class Type;
+class FunctionType;
+class Function;
+class Module;
+
 /// Intrinsic Namespace - This namespace contains an enum with a value for
 /// every intrinsic/builtin function known by LLVM.  These enum values are
 /// returned by Function::getIntrinsicID().
@@ -35,7 +40,17 @@ namespace Intrinsic {
   
   /// Intrinsic::getName(ID) - Return the LLVM name for an intrinsic, such as
   /// "llvm.ppc.altivec.lvx".
-  const char *getName(ID id);
+  std::string getName(ID id, const Type **Tys = 0, unsigned numTys = 0);
+  
+  /// Intrinsic::getType(ID) - Return the function type for an intrinsic.
+  ///
+  const FunctionType *getType(ID id, const Type **Tys = 0, unsigned numTys = 0);
+
+  /// Intrinsic::getDeclaration(M, ID) - Create or insert an LLVM Function
+  /// declaration for an intrinsic, and return it.
+  Function *getDeclaration(Module *M, ID id, const Type **Tys = 0, 
+                           unsigned numTys = 0);
+  
 } // End Intrinsic namespace
 
 } // End llvm namespace