1 //===- CodeGenIntrinsic.h - Intrinsic Class Wrapper ------------*- C++ -*--===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines a wrapper class for the 'Intrinsic' TableGen class.
12 //===----------------------------------------------------------------------===//
14 #ifndef CODEGEN_INTRINSIC_H
15 #define CODEGEN_INTRINSIC_H
19 #include "llvm/CodeGen/ValueTypes.h"
26 struct CodeGenIntrinsic
{
27 Record
*TheDef
; // The actual record defining this intrinsic.
28 std::string Name
; // The name of the LLVM function "llvm.bswap.i32"
29 std::string EnumName
; // The name of the enum "bswap_i32"
30 std::string GCCBuiltinName
;// Name of the corresponding GCC builtin, or "".
31 std::string TargetPrefix
; // Target prefix, e.g. "ppc" for t-s intrinsics.
33 /// ArgVTs - The MVT::ValueType for each argument type. Note that this list
34 /// is only populated when in the context of a target .td file. When
35 /// building Intrinsics.td, this isn't available, because we don't know the
36 /// target pointer size.
37 std::vector
<MVT::ValueType
> ArgVTs
;
39 /// ArgTypeDefs - The records for each argument type.
41 std::vector
<Record
*> ArgTypeDefs
;
43 // Memory mod/ref behavior of this intrinsic.
45 NoMem
, ReadArgMem
, ReadMem
, WriteArgMem
, WriteMem
48 // This is set to true if the intrinsic is overloaded by its argument
52 CodeGenIntrinsic(Record
*R
, CodeGenTarget
*CGT
);
55 /// LoadIntrinsics - Read all of the intrinsics defined in the specified
57 std::vector
<CodeGenIntrinsic
> LoadIntrinsics(const RecordKeeper
&RC
);