Lines Matching refs:CASE_OP
18 #define CASE_OP(name, str) \ macro
21 #define CASE_I32_OP(name, str) CASE_OP(I32##name, "i32." str)
22 #define CASE_I64_OP(name, str) CASE_OP(I64##name, "i64." str)
23 #define CASE_F32_OP(name, str) CASE_OP(F32##name, "f32." str)
24 #define CASE_F64_OP(name, str) CASE_OP(F64##name, "f64." str)
25 #define CASE_REF_OP(name, str) CASE_OP(Ref##name, "ref." str)
26 #define CASE_F32x4_OP(name, str) CASE_OP(F32x4##name, "f32x4." str)
27 #define CASE_I32x4_OP(name, str) CASE_OP(I32x4##name, "i32x4." str)
28 #define CASE_I16x8_OP(name, str) CASE_OP(I16x8##name, "i16x8." str)
29 #define CASE_I8x16_OP(name, str) CASE_OP(I8x16##name, "i8x16." str)
30 #define CASE_S128_OP(name, str) CASE_OP(S128##name, "s128." str)
31 #define CASE_S32x4_OP(name, str) CASE_OP(S32x4##name, "s32x4." str)
32 #define CASE_S16x8_OP(name, str) CASE_OP(S16x8##name, "s16x8." str)
33 #define CASE_S8x16_OP(name, str) CASE_OP(S8x16##name, "s8x16." str)
34 #define CASE_S1x4_OP(name, str) CASE_OP(S1x4##name, "s1x4." str)
35 #define CASE_S1x8_OP(name, str) CASE_OP(S1x8##name, "s1x8." str)
36 #define CASE_S1x16_OP(name, str) CASE_OP(S1x16##name, "s1x16." str)
133 CASE_OP(Unreachable, "unreachable") in OpcodeName()
134 CASE_OP(Nop, "nop") in OpcodeName()
135 CASE_OP(Block, "block") in OpcodeName()
136 CASE_OP(Loop, "loop") in OpcodeName()
137 CASE_OP(If, "if") in OpcodeName()
138 CASE_OP(Else, "else") in OpcodeName()
139 CASE_OP(End, "end") in OpcodeName()
140 CASE_OP(Br, "br") in OpcodeName()
141 CASE_OP(BrIf, "br_if") in OpcodeName()
142 CASE_OP(BrTable, "br_table") in OpcodeName()
143 CASE_OP(Return, "return") in OpcodeName()
144 CASE_OP(CallFunction, "call") in OpcodeName()
145 CASE_OP(CallIndirect, "call_indirect") in OpcodeName()
146 CASE_OP(Drop, "drop") in OpcodeName()
147 CASE_OP(Select, "select") in OpcodeName()
148 CASE_OP(GetLocal, "get_local") in OpcodeName()
149 CASE_OP(SetLocal, "set_local") in OpcodeName()
150 CASE_OP(TeeLocal, "tee_local") in OpcodeName()
151 CASE_OP(GetGlobal, "get_global") in OpcodeName()
152 CASE_OP(SetGlobal, "set_global") in OpcodeName()
154 CASE_OP(MemorySize, "current_memory") in OpcodeName()
155 CASE_OP(GrowMemory, "grow_memory") in OpcodeName()
168 CASE_OP(Try, "try") in OpcodeName()
169 CASE_OP(Throw, "throw") in OpcodeName()
170 CASE_OP(Rethrow, "rethrow") in OpcodeName()
171 CASE_OP(Catch, "catch") in OpcodeName()
172 CASE_OP(CatchAll, "catch_all") in OpcodeName()
274 #undef CASE_OP