Home
last modified time | relevance | path

Searched defs:bytecode (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/libpandafile/tests/
Dbytecode_instruction_tests.cpp31 const uint8_t bytecode[] = {0x00, 0xa1, 0xff}; in TEST() local
39 const uint8_t bytecode[] = {0x00, 0x2f, 0xff}; in TEST() local
48 const uint8_t bytecode[] = {0x00, 0xf2, 0xff}; in TEST() local
55 const uint8_t bytecode[] = {0x00, 0x21, 0xff}; in TEST() local
63 const uint8_t bytecode[] = {0x00, 0x12, 0xf2, 0xff}; in TEST() local
71 const uint8_t bytecode[] = {0x00, 0xf2, 0x12, 0xff}; in TEST() local
80 const uint8_t bytecode[] = {0x00, 0xf2, 0x12, 0xff}; in TEST() local
87 const uint8_t bytecode[] = {0x00, 0x12, 0xf2, 0xff}; in TEST() local
95 const uint8_t bytecode[] = {0x00, 0x10, 0xf2, 0x12, 0xff}; in TEST() local
103 const uint8_t bytecode[] = {0x00, 0xff, 0x12, 0xf2, 0xff}; in TEST() local
[all …]
/arkcompiler/ets_runtime/ecmascript/tests/
Dframe_test.cpp56 uint8_t bytecode[] = { in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/compiler/
Dbytecodes.cpp425 std::array<uint8_t, 2> bytecode{CALLRUNTIME_PREFIX_OPCODE_INDEX, pc}; // 2: 2 opcode in Bytecodes() local
431 std::array<uint8_t, 2> bytecode{DEPRECATED_PREFIX_OPCODE_INDEX, pc}; // 2: 2 opcode in Bytecodes() local
437 std::array<uint8_t, 2> bytecode{WIDE_PREFIX_OPCODE_INDEX, pc}; // 2: 2 opcode in Bytecodes() local
443 std::array<uint8_t, 2> bytecode{THROW_PREFIX_OPCODE_INDEX, pc}; // 2: 2 opcode in Bytecodes() local
Dgate.cpp715 void Gate::Print(std::string bytecode, bool inListPreview, size_t highlightIdx) const in Print()
774 void Gate::ShortPrint(std::string bytecode, bool inListPreview, size_t highlightIdx) const in ShortPrint()
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/
Djs_stackinfo.cpp377 size_t bytecode = fullBytecode & 0xff; // 0xff: last byte in CopyBytecodeInfoToBuffer() local
/arkcompiler/toolchain/tooling/test/
Ddebugger_returns_test.cpp140 std::string bytecode; in HWTEST_F_L0() local
/arkcompiler/runtime_core/assembler/
Dassembly-emitter.cpp1615 …BuildLineNumberProgram(panda_file::DebugInfoItem *debug_item, const std::vector<uint8_t> &bytecode, in BuildLineNumberProgram()