HomeSort by relevance Sort by last modified time
    Searched refs:stack_map (Results 1 - 4 of 4) sorted by null

  /art/compiler/optimizing/
stack_map_test.cc 17 #include "stack_map.h"
53 StackMap<size_t> stack_map = code_info.GetStackMapAt(0); local
54 ASSERT_TRUE(stack_map.Equals(code_info.GetStackMapForDexPc(0)));
55 ASSERT_TRUE(stack_map.Equals(code_info.GetStackMapForNativePc(64)));
56 ASSERT_EQ(0u, stack_map.GetDexPc());
57 ASSERT_EQ(64u, stack_map.GetNativePc());
58 ASSERT_EQ(0x3u, stack_map.GetRegisterMask());
59 ASSERT_FALSE(stack_map.HasInlineInfo());
61 MemoryRegion stack_mask = stack_map.GetStackMask();
64 DexRegisterMap dex_registers = code_info.GetDexRegisterMapOf(stack_map, 2)
100 StackMap<size_t> stack_map = code_info.GetStackMapAt(0); local
    [all...]
stack_map_stream.h 22 #include "stack_map.h"
47 // See runtime/stack_map.h to know what these fields contain.
156 StackMap<T> stack_map = code_info.GetStackMapAt(i); local
159 stack_map.SetDexPc(entry.dex_pc);
160 stack_map.SetNativePc(entry.native_pc);
161 stack_map.SetRegisterMask(entry.register_mask);
162 stack_map.SetStackMask(*entry.sp_mask);
170 stack_map.SetDexRegisterMapOffset(region.start() - memory_start);
186 stack_map.SetInlineDescriptorOffset(region.start() - memory_start);
194 stack_map.SetInlineDescriptorOffset(InlineInfo::kNoInlineInfo)
    [all...]
  /art/runtime/
stack_map.h 254 DexRegisterMap GetDexRegisterMapOf(StackMap<T> stack_map, uint32_t number_of_dex_registers) {
255 uint32_t offset = stack_map.GetDexRegisterMapOffset();
260 InlineInfo GetInlineInfoOf(StackMap<T> stack_map) {
261 uint32_t offset = stack_map.GetInlineDescriptorOffset();
269 StackMap<T> stack_map = GetStackMapAt(i); local
270 if (stack_map.GetDexPc() == dex_pc) {
271 return stack_map;
281 StackMap<T> stack_map = GetStackMapAt(i); local
282 if (stack_map.GetNativePc() == native_pc) {
283 return stack_map;
    [all...]
  /external/chromium_org/v8/tools/
grokdump.py     [all...]

Completed in 641 milliseconds