• Home
  • Raw
  • Download

Lines Matching full:op

112 #define GATE_NAME_MAP(NAME, OP, R, S, D, V) { OpCode::OP, #OP },  in Str()  argument
122 #define GATE_NAME_MAP(OP) { OpCode::OP, #OP }, in Str() argument
129 return "OP-" + std::to_string(static_cast<uint8_t>(opcode)); in Str()
305 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \ argument
313 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \ argument
316 auto meta = new (chunk_) BoolMetaData(OpCode::OP, R, S, D, V, value); \
322 #define DECLARE_GATE_META_WITH_BOOL_VALUE_IN(NAME, OP, R, S, D, V) \ in GATE_META_DATA_LIST_WITH_BOOL() argument
325 auto meta = new (chunk_) BoolMetaData(OpCode::OP, R, S, D, V, flag); \ in GATE_META_DATA_LIST_WITH_BOOL()
331 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \ argument
348 auto meta = new (chunk_) GateMetaData(OpCode::OP, R, S, D, V); \
355 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \ argument
372 auto meta = new (chunk_) OneParameterMetaData(OpCode::OP, R, S, D, V, value); \
379 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \ argument
382 auto meta = new (chunk_) OneParameterMetaData(OpCode::OP, R, S, D, V, value); \
389 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \ argument
392 auto meta = new (chunk_) OneParameterMetaData(OpCode::OP, R, S, D, value, pcOffset); \
399 #define DECLARE_GATE_META_FOR_CALL(NAME, OP, R, S, D, V) … argument
402 auto meta = new (chunk_) TypedCallMetaData(OpCode::OP, R, S, D, value, pcOffset, noGC); \
409 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \ argument
412 auto meta = new (chunk_) OneParameterMetaData(OpCode::OP, R, S, D, V, pcOffset); \