Lines Matching full:op
42 std::string GateMetaData::Str(TypedBinOp op) in Str() argument
45 #define TYPED_BIN_OP_NAME_MAP(OP) { TypedBinOp::OP, #OP }, in Str() argument
49 if (strMap.count(op) > 0) { in Str()
50 return strMap.at(op); in Str()
55 std::string GateMetaData::Str(TypedUnOp op) in Str() argument
58 #define TYPED_UN_OP_NAME_MAP(OP) { TypedUnOp::OP, #OP }, in Str() argument
62 if (strMap.count(op) > 0) { in Str()
63 return strMap.at(op); in Str()
68 std::string GateMetaData::Str(TypedJumpOp op) in Str() argument
71 #define TYPED_JUMP_OP_NAME_MAP(OP) { TypedJumpOp::OP, #OP }, in Str() argument
75 if (strMap.count(op) > 0) { in Str()
76 return strMap.at(op); in Str()
81 std::string GateMetaData::Str(TypedLoadOp op) in Str() argument
84 #define TYPED_LOAD_OP_NAME_MAP(OP) { TypedLoadOp::OP, #OP }, in Str() argument
88 if (strMap.count(op) > 0) { in Str()
89 return strMap.at(op); in Str()
94 std::string GateMetaData::Str(TypedStoreOp op) in Str() argument
97 #define TYPED_STORE_OP_NAME_MAP(OP) { TypedStoreOp::OP, #OP }, in Str() argument
101 if (strMap.count(op) > 0) { in Str()
102 return strMap.at(op); in Str()
107 std::string GateMetaData::Str(TypedCallTargetCheckOp op) in Str() argument
110 #define TYPED_CALL_TARGET_CHECK_OP_NAME_MAP(OP) { TypedCallTargetCheckOp::OP, #OP }, in Str() argument
114 if (strMap.count(op) > 0) { in Str()
115 return strMap.at(op); in Str()