Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/regexp/
H A Dregexp_executor.cpp26 uint32_t size = buffer.GetU32(0); in Execute()
27 nCapture_ = buffer.GetU32(RegExpParser::NUM_CAPTURE__OFFSET); in Execute()
28 nStack_ = buffer.GetU32(RegExpParser::NUM_STACK_OFFSET); in Execute()
29 flags_ = buffer.GetU32(RegExpParser::FLAGS_OFFSET); in Execute()
30 prefilter_ = buffer.GetU32(RegExpParser::PREFILTER_OFFSET); in Execute()
130 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in ExecuteInternal()
191 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in ExecuteInternal()
H A Dregexp_opcode.cpp178 << "char32\t" << static_cast<char>(buf.GetU32(offset + 1)) << std::endl; in DumpOpCode()
197 << "goto\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
219 << "split_next\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
241 << "split_first\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
257 << "loop\t" << buf.GetU32(offset + 1) + offset + GetSize() << "\t" in DumpOpCode()
258 << buf.GetU32(offset + RegExpOpCode::OP_SIZE_FIVE) << "\t" << buf.GetU32(offset + RegExpOpCode::OP_SIZE_NINE) in DumpOpCode()
275 << "greedy_loop\t" << buf.GetU32(offset + 1) + offset + GetSize() << "\t" in DumpOpCode()
276 << buf.GetU32(offset + RegExpOpCode::OP_SIZE_FIVE) << "\t" << buf.GetU32(offse in DumpOpCode()
[all...]
H A Dregexp_executor.h102 expectedChar = byteCode.GetU32(GetCurrentPC() + 1); in HandleOpChar()
220 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in HandleOpMatch()
228 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in HandleOpSplitFirst()
249 uint32_t quantifyMin = byteCode.GetU32(GetCurrentPC() + LOOP_MIN_OFFSET); in HandleOpLoop()
250 uint32_t quantifyMax = byteCode.GetU32(GetCurrentPC() + LOOP_MAX_OFFSET); in HandleOpLoop()
251 uint32_t pcOffset = byteCode.GetU32(GetCurrentPC() + LOOP_PC_OFFSET); in HandleOpLoop()
291 byteCode.GetU32(GetCurrentPC() + RANGE32_HEAD_OFFSET + idxMax * RANGE32_MAX_OFFSET + in HandleOpRange32()
296 low = byteCode.GetU32(GetCurrentPC() + RANGE32_HEAD_OFFSET + static_cast<uint32_t>(idx) * in HandleOpRange32()
298 high = byteCode.GetU32(GetCurrentPC() + RANGE32_HEAD_OFFSET + static_cast<uint32_t>(idx) * in HandleOpRange32()
356 uint32_t offset = byteCode.GetU32(GetCurrentP in HandleOpSparse()
[all...]
H A Dregexp_parser.cpp166 offset = buffer_.GetU32(ptr + 1); in ParseDisjunction()
211 uint32_t paraTmp = buffer_.GetU32(pos + 1); in ParseDisjunction()
/arkcompiler/runtime_core/static_core/runtime/regexp/ecmascript/
H A Dregexp_executor.h106 expectedChar = byteCode.GetU32(GetCurrentPC() + 1); in HandleOpChar()
224 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1);
232 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1);
253 uint32_t quantifyMin = byteCode.GetU32(GetCurrentPC() + LOOP_MIN_OFFSET);
254 uint32_t quantifyMax = byteCode.GetU32(GetCurrentPC() + LOOP_MAX_OFFSET);
255 uint32_t pcOffset = byteCode.GetU32(GetCurrentPC() + LOOP_PC_OFFSET);
293 uint32_t high = byteCode.GetU32(GetCurrentPC() + RANGE32_HEAD_OFFSET + idxMax * RANGE32_MAX_OFFSET +
298 low = byteCode.GetU32(GetCurrentPC() + RANGE32_HEAD_OFFSET +
300 high = byteCode.GetU32(GetCurrentPC() + RANGE32_HEAD_OFFSET +
H A Dregexp_opcode.cpp172 << "char32\t" << static_cast<char>(buf.GetU32(offset + 1)) << std::endl; in DumpOpCode()
191 << "goto\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
206 << "split_next\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
221 << "split_first\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
237 << "loop\t" << buf.GetU32(offset + 1) + offset + GetSize() << "\t" in DumpOpCode()
238 << buf.GetU32(offset + RegExpOpCode::OP_SIZE_FIVE) << "\t" << buf.GetU32(offset + RegExpOpCode::OP_SIZE_NINE) in DumpOpCode()
255 << "greedy_loop\t" << buf.GetU32(offset + 1) + offset + GetSize() << "\t" in DumpOpCode()
256 << buf.GetU32(offset + RegExpOpCode::OP_SIZE_FIVE) << "\t" << buf.GetU32(offse in DumpOpCode()
[all...]
H A Dregexp_executor.cpp30 uint32_t size = buffer.GetU32(0); in Execute()
31 nCapture_ = buffer.GetU32(RegExpParser::NUM_CAPTURE__OFFSET); in Execute()
32 nStack_ = buffer.GetU32(RegExpParser::NUM_STACK_OFFSET); in Execute()
33 flags_ = buffer.GetU32(RegExpParser::FLAGS_OFFSET); in Execute()
156 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in ExecuteInternal()
199 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in ExecuteInternal()
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/
H A Dassembler.h245 uint32_t GetU32(size_t offset) const in GetU32() function in panda::ecmascript::Assembler
247 return buffer_.GetU32(offset); in GetU32()
/arkcompiler/ets_runtime/ecmascript/mem/
H A Ddyn_chunk.h94 inline uint32_t GetU32(size_t offset) const in GetU32() function in panda::ecmascript::DynChunk
/arkcompiler/ets_runtime/ecmascript/regexp/tests/
H A Ddyn_chunk_test.cpp66 uint32_t val3 = dynChunk.GetU32(4); in HWTEST_F_L0()
/arkcompiler/runtime_core/static_core/runtime/regexp/ecmascript/mem/
H A Ddyn_chunk.h107 inline uint32_t GetU32(size_t offset) const in GetU32() function in ark::DynChunk
/arkcompiler/runtime_core/static_core/runtime/tests/
H A Ddyn_buffer_test.cpp66 uint32_t val3 = dynChunk.GetU32(4U); in TEST_F()
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
H A Dassembler_aarch64.cpp1069 uint32_t branchCode = GetU32(pos); in GetLinkOffsetFromBranchInst()
1110 uint32_t branchCode = GetU32(linkPos); in SetRealOffsetToBranchInst()
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/x64/
H A Dassembler_x64.cpp743 uint32_t preLinkPos = GetU32(linkPos); in Bind()

Completed in 14 milliseconds