Home
last modified time | relevance | path

Searched refs:jumpOffset (Results 1 - 1 of 1) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/baseline/
H A Dbaseline_compiler.cpp213 int8_t jumpOffset = *(start + 1); // 1: get one byte in bytecodes in GetJumpToOffsets() local
214 size_t jumpTo = offset + jumpOffset; in GetJumpToOffsets()
221 int16_t jumpOffset = *(start + 2); // 2: get two bytes in bytecodes in GetJumpToOffsets() local
222 uint16_t tmpValue = static_cast<uint16_t>(jumpOffset) << 8; // 8: left shift 8 bits in GetJumpToOffsets()
231 int32_t jumpOffset = *(start + 4); // 4: get four bytes in bytecodes in GetJumpToOffsets() local
232 uint32_t tmpValue = static_cast<uint32_t>(jumpOffset) << 8; // 8: left shift 8 bits in GetJumpToOffsets()

Completed in 10 milliseconds