Add a programatic interface to intrinsic names.
[oota-llvm.git] / include / llvm / Intrinsics.h
1 //===-- llvm/Instrinsics.h - LLVM Intrinsic Function Handling ---*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines a set of enums which allow processing of intrinsic
11 // functions.  Values of these enum types are returned by
12 // Function::getIntrinsicID.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_INTRINSICS_H
17 #define LLVM_INTRINSICS_H
18
19 namespace llvm {
20
21 /// Intrinsic Namespace - This namespace contains an enum with a value for
22 /// every intrinsic/builtin function known by LLVM.  These enum values are
23 /// returned by Function::getIntrinsicID().
24 ///
25 namespace Intrinsic {
26   enum ID {
27     not_intrinsic = 0,   // Must be zero
28
29     // Get the intrinsic enums generated from Intrinsics.td
30 #define GET_INTRINSIC_ENUM_VALUES
31 #include "llvm/Intrinsics.gen"    
32 #undef GET_INTRINSIC_ENUM_VALUES
33     , num_intrinsics
34   };
35   
36   /// Intrinsic::getName(ID) - Return the LLVM name for an intrinsic, such as
37   /// "llvm.ppc.altivec.lvx".
38   const char *getName(ID id);
39 } // End Intrinsic namespace
40
41 } // End llvm namespace
42
43 #endif