Lines Matching defs:CodeGenIntrinsic
26 struct CodeGenIntrinsic { struct
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 MSBuiltinName; // Name of the corresponding MS builtin, or "".
32 std::string TargetPrefix; // Target prefix, e.g. "ppc" for t-s intrinsics.
40 struct IntrinsicSignature {
60 IntrinsicSignature IS;
63 enum ModRefKind {
66 ModRefKind ModRef;
70 bool isOverloaded;
94 CodeGenIntrinsic(Record *R); argument