Lines Matching full:op
41 std::string GateMetaData::Str(TypedBinOp op) in Str() argument
44 #define TYPED_BIN_OP_NAME_MAP(OP) { TypedBinOp::OP, #OP }, in Str() argument
48 if (strMap.count(op) > 0) { in Str()
49 return strMap.at(op); in Str()
54 std::string GateMetaData::Str(TypedUnOp op) in Str() argument
57 #define TYPED_UN_OP_NAME_MAP(OP) { TypedUnOp::OP, #OP }, in Str() argument
61 if (strMap.count(op) > 0) { in Str()
62 return strMap.at(op); in Str()
67 std::string GateMetaData::Str(TypedJumpOp op) in Str() argument
70 #define TYPED_JUMP_OP_NAME_MAP(OP) { TypedJumpOp::OP, #OP }, in Str() argument
74 if (strMap.count(op) > 0) { in Str()
75 return strMap.at(op); in Str()
80 std::string GateMetaData::Str(TypedLoadOp op) in Str() argument
83 #define TYPED_LOAD_OP_NAME_MAP(OP) { TypedLoadOp::OP, #OP }, in Str() argument
87 if (strMap.count(op) > 0) { in Str()
88 return strMap.at(op); in Str()
93 std::string GateMetaData::Str(TypedStoreOp op) in Str() argument
96 #define TYPED_STORE_OP_NAME_MAP(OP) { TypedStoreOp::OP, #OP }, in Str() argument
100 if (strMap.count(op) > 0) { in Str()
101 return strMap.at(op); in Str()
106 std::string GateMetaData::Str(TypedCallTargetCheckOp op) in Str() argument
109 #define TYPED_CALL_TARGET_CHECK_OP_NAME_MAP(OP) { TypedCallTargetCheckOp::OP, #OP }, in Str() argument
113 if (strMap.count(op) > 0) { in Str()
114 return strMap.at(op); in Str()