Home
last modified time | relevance | path

Searched refs:GetU32 (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/regexp/
Dregexp_opcode.cpp176 << "char32\t" << static_cast<char>(buf.GetU32(offset + 1)) << std::endl; in DumpOpCode()
195 << "goto\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
210 << "split_next\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
225 << "split_first\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
241 << "loop\t" << buf.GetU32(offset + 1) + offset + GetSize() << "\t" in DumpOpCode()
242 …<< buf.GetU32(offset + RegExpOpCode::OP_SIZE_FIVE) << "\t" << buf.GetU32(offset + RegExpOpCode::OP… in DumpOpCode()
259 << "greedy_loop\t" << buf.GetU32(offset + 1) + offset + GetSize() << "\t" in DumpOpCode()
260 …<< buf.GetU32(offset + RegExpOpCode::OP_SIZE_FIVE) << "\t" << buf.GetU32(offset + RegExpOpCode::OP… in DumpOpCode()
316 << "check_char\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
447 << "match_ahead\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
[all …]
Dregexp_executor.cpp32 uint32_t size = buffer.GetU32(0); in Execute()
33 nCapture_ = buffer.GetU32(RegExpParser::NUM_CAPTURE__OFFSET); in Execute()
34 nStack_ = buffer.GetU32(RegExpParser::NUM_STACK_OFFSET); in Execute()
35 flags_ = buffer.GetU32(RegExpParser::FLAGS_OFFSET); in Execute()
150 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in ExecuteInternal()
193 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in ExecuteInternal()
Dregexp_executor.h98 expectedChar = byteCode.GetU32(GetCurrentPC() + 1); in HandleOpChar()
205 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in HandleOpMatch()
213 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in HandleOpSplitFirst()
234 uint32_t quantifyMin = byteCode.GetU32(GetCurrentPC() + LOOP_MIN_OFFSET); in HandleOpLoop()
235 uint32_t quantifyMax = byteCode.GetU32(GetCurrentPC() + LOOP_MAX_OFFSET); in HandleOpLoop()
236 uint32_t pcOffset = byteCode.GetU32(GetCurrentPC() + LOOP_PC_OFFSET); in HandleOpLoop()
275 byteCode.GetU32(GetCurrentPC() + RANGE32_HEAD_OFFSET + idxMax * RANGE32_MAX_OFFSET + in HandleOpRange32()
280 … low = byteCode.GetU32(GetCurrentPC() + RANGE32_HEAD_OFFSET + static_cast<uint32_t>(idx) * in HandleOpRange32()
282 … high = byteCode.GetU32(GetCurrentPC() + RANGE32_HEAD_OFFSET + static_cast<uint32_t>(idx) * in HandleOpRange32()
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/
Dassembler.h216 uint32_t GetU32(size_t offset) const in GetU32() function
218 return buffer_.GetU32(offset); in GetU32()
/arkcompiler/ets_runtime/ecmascript/regexp/tests/
Ddyn_chunk_test.cpp66 uint32_t val3 = dynChunk.GetU32(4); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/mem/
Ddyn_chunk.h87 inline uint32_t GetU32(size_t offset) const in GetU32() function
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
Dassembler_aarch64.cpp1055 uint32_t branchCode = GetU32(pos); in GetLinkOffsetFromBranchInst()
1096 uint32_t branchCode = GetU32(linkPos); in SetRealOffsetToBranchInst()
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/x64/
Dassembler_x64.cpp743 uint32_t preLinkPos = GetU32(linkPos); in Bind()