Lines Matching refs:NAME
63 #define DECLARE_CACHED_GATE_META(NAME, OP, R, S, D, V) \
64 GateMetaData cached##NAME##_ { OpCode::OP, R, S, D, V };
80 #define DECLARE_CACHED_GATE_META(NAME, OP, R, S, D, V) \
81 GateMetaData cached##NAME##1_{ OpCode::OP, R, S, D, ONE_VALUE }; \
82 GateMetaData cached##NAME##2_{ OpCode::OP, R, S, D, TWO_VALUE }; \
83 GateMetaData cached##NAME##3_{ OpCode::OP, R, S, D, THREE_VALUE }; \
84 GateMetaData cached##NAME##4_{ OpCode::OP, R, S, D, FOUR_VALUE }; \
85 GateMetaData cached##NAME##5_{ OpCode::OP, R, S, D, FIVE_VALUE };
89 #define DECLARE_CACHED_GATE_META(NAME, OP, R, S, D, V) \
90 OneParameterMetaData cached##NAME##1_{ OpCode::OP, R, S, D, V, ONE_VALUE }; \
91 OneParameterMetaData cached##NAME##2_{ OpCode::OP, R, S, D, V, TWO_VALUE }; \
92 OneParameterMetaData cached##NAME##3_{ OpCode::OP, R, S, D, V, THREE_VALUE }; \
93 OneParameterMetaData cached##NAME##4_{ OpCode::OP, R, S, D, V, FOUR_VALUE }; \
94 OneParameterMetaData cached##NAME##5_{ OpCode::OP, R, S, D, V, FIVE_VALUE };
101 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \
102 const GateMetaData* NAME();
106 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \
107 const GateMetaData* NAME(size_t value);
111 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \
112 const GateMetaData* NAME(uint64_t value);
116 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \
117 const GateMetaData* NAME(uint64_t value, uint64_t pcOffset);
121 #define DECLARE_GATE_META_FOR_CALL(NAME, OP, R, S, D, V) \
122 const GateMetaData* NAME(uint64_t value, uint64_t pcOffset, bool noGC);
126 #define DECLARE_GATE_META_FOR_NEW(NAME, OP, R, S, D, V) \
127 const GateMetaData* NAME(uint64_t value, uint64_t pcOffset, \
132 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \
133 const GateMetaData* NAME(uint64_t pcOffset) const;
137 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \
138 const GateMetaData* NAME(bool value);
142 #define DECLARE_GATE_META_WITH_BOOL_VALUE_IN(NAME, OP, R, S, D, V) \
143 const GateMetaData* NAME(size_t value, bool flag);