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.
39 struct IntrinsicSignature {
59 IntrinsicSignature IS;
64 enum ModRefBits {
81 enum ModRefBehavior {
90 ModRefBehavior ModRef;
114 CodeGenIntrinsic(Record *R); argument