Searched refs:SIGN_EXTENSION_CASE (Results 1 – 1 of 1) sorted by relevance
/external/v8/src/wasm/ |
D | wasm-interpreter.cc | 2508 #define SIGN_EXTENSION_CASE(name, wtype, ntype) \ in Execute() macro 2514 SIGN_EXTENSION_CASE(I32SExtendI8, int32_t, int8_t); in Execute() 2515 SIGN_EXTENSION_CASE(I32SExtendI16, int32_t, int16_t); in Execute() 2516 SIGN_EXTENSION_CASE(I64SExtendI8, int64_t, int8_t); in Execute() 2517 SIGN_EXTENSION_CASE(I64SExtendI16, int64_t, int16_t); in Execute() 2518 SIGN_EXTENSION_CASE(I64SExtendI32, int64_t, int32_t); in Execute() 2519 #undef SIGN_EXTENSION_CASE in Execute()
|