Home
last modified time | relevance | path

Searched refs:stackmap (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/runtime_core/compiler/tests/
Dcode_info_test.cpp271 auto stackmap = code_info.FindStackMapForNativePc(20); in TEST_F() local
272 ASSERT_TRUE(stackmap.IsValid()); in TEST_F()
273 ASSERT_EQ(stackmap.GetNativePcUnpacked(), 20); in TEST_F()
274 ASSERT_EQ(stackmap.GetBytecodePc(), 10); in TEST_F()
275 stackmap = code_info.FindStackMapForNativePc(40); in TEST_F()
276 ASSERT_TRUE(stackmap.IsValid()); in TEST_F()
277 ASSERT_EQ(stackmap.GetNativePcUnpacked(), 40); in TEST_F()
278 ASSERT_EQ(stackmap.GetBytecodePc(), 30); in TEST_F()
279 stackmap = code_info.FindStackMapForNativePc(60); in TEST_F()
280 ASSERT_TRUE(stackmap.IsValid()); in TEST_F()
[all …]
/arkcompiler/runtime_core/docs/
Dcode_metainfo.md117 | PROPERTIES | Define properties of the stackmap, currently, it contains only one flag: is_osr |
118 | NATIVE_PC | Native address to which this stackmap corresponds |
119 | BYTECODE_PC | Bytecode address to which this stackmap corresponds |
122 | INLINE_INFO_INDEX | Inline information for the stackmap |
123 | VREG_MASK_INDEX | Mask of the virtual registers, that are modified from the last stackmap to the …
124 | VREG_MAP_INDEX | Map of the virtual registers, that are modified from the last stackmap to the cu…
Don-stack-replacement.md71 …cial OsrStackMap for each SaveStateOsr instruction. Difference from regular stackmap is that it has
78 For this purpose new stackmap and new opcode were introduced.
/arkcompiler/ets_runtime/ecmascript/stackmap/
Dark_stackmap_builder.cpp117 auto &stackmap = stackmaps.at(j); in SaveArkStackMap() local
118 LLVMStackMapType::DwarfRegType reg = stackmap.first; in SaveArkStackMap()
119 LLVMStackMapType::OffsetType offset = stackmap.second; in SaveArkStackMap()
/arkcompiler/ets_runtime/
DBUILD.gn749 "ecmascript/stackmap/ark_stackmap_builder.cpp",
750 "ecmascript/stackmap/ark_stackmap_parser.cpp",
751 "ecmascript/stackmap/llvm_stackmap_parser.cpp",
752 "ecmascript/stackmap/llvm_stackmap_type.cpp",