#include "llvm/ADT/ArrayRef.h"
#include <string>
#include "llvm/IR/Intrinsics.gen"
Go to the source code of this file.
|
| | llvm |
| | Compute iterated dominance frontiers using a linear time algorithm.
|
| |
| | llvm::Intrinsic |
| | This namespace contains an enum with a value for every intrinsic/builtin function known by LLVM.
|
| |
|
| std::string | llvm::Intrinsic::getName (ID id, ArrayRef< Type * > Tys=None) |
| | Return the LLVM name for an intrinsic, such as "llvm.ppc.altivec.lvx". More...
|
| |
| FunctionType * | llvm::Intrinsic::getType (LLVMContext &Context, ID id, ArrayRef< Type * > Tys=None) |
| | Return the function type for an intrinsic. More...
|
| |
| bool | llvm::Intrinsic::isOverloaded (ID id) |
| | Returns true if the intrinsic can be overloaded. More...
|
| |
| bool | llvm::Intrinsic::isLeaf (ID id) |
| | Returns true if the intrinsic is a leaf, i.e. More...
|
| |
| AttributeSet | llvm::Intrinsic::getAttributes (LLVMContext &C, ID id) |
| | Return the attributes for an intrinsic. More...
|
| |
| Function * | llvm::Intrinsic::getDeclaration (Module *M, ID id, ArrayRef< Type * > Tys=None) |
| | Create or insert an LLVM Function declaration for an intrinsic, and return it. More...
|
| |
| ID | llvm::Intrinsic::getIntrinsicForGCCBuiltin (const char *Prefix, const char *BuiltinName) |
| | Map a GCC builtin name to an intrinsic ID. More...
|
| |
| ID | llvm::Intrinsic::getIntrinsicForMSBuiltin (const char *Prefix, const char *BuiltinName) |
| | Map a MS builtin name to an intrinsic ID. More...
|
| |
| void | llvm::Intrinsic::getIntrinsicInfoTableEntries (ID id, SmallVectorImpl< IITDescriptor > &T) |
| | Return the IIT table descriptor for the specified intrinsic into an array of IITDescriptors. More...
|
| |
| #define GET_INTRINSIC_ENUM_VALUES |