Home
last modified time | relevance | path

Searched refs:region_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dstack_map.h48 explicit InlineInfo(MemoryRegion region) : region_(region) {} in InlineInfo()
51 return region_.LoadUnaligned<uint8_t>(kDepthOffset); in GetDepth()
55 region_.StoreUnaligned<uint8_t>(kDepthOffset, depth); in SetDepth()
59 return region_.LoadUnaligned<uint32_t>(kFixedSize + depth * SingleEntrySize()); in GetMethodReferenceIndexAtDepth()
63 region_.StoreUnaligned<uint32_t>(kFixedSize + depth * SingleEntrySize(), index); in SetMethodReferenceIndexAtDepth()
76 MemoryRegion region_; variable
236 explicit DexRegisterLocationCatalog(MemoryRegion region) : region_(region) {} in DexRegisterLocationCatalog()
257 region_.StoreUnaligned<ShortLocation>(offset, MakeShortLocation(kind, value)); in SetRegisterInfo()
271 region_.StoreUnaligned<DexRegisterLocation::Kind>(offset, kind); in SetRegisterInfo()
272 region_.StoreUnaligned<int32_t>(offset + sizeof(DexRegisterLocation::Kind), value); in SetRegisterInfo()
[all …]
Dstack_map.cc106 return LoadAt(region_, info.NumberOfBytesForDexPc(), info.ComputeStackMapDexPcOffset()); in GetDexPc()
110 StoreAt(region_, info.NumberOfBytesForDexPc(), info.ComputeStackMapDexPcOffset(), dex_pc); in SetDexPc()
114 return LoadAt(region_, info.NumberOfBytesForNativePc(), info.ComputeStackMapNativePcOffset()); in GetNativePcOffset()
118 …StoreAt(region_, info.NumberOfBytesForNativePc(), info.ComputeStackMapNativePcOffset(), native_pc_… in SetNativePcOffset()
122 return LoadAt(region_, in GetDexRegisterMapOffset()
129 StoreAt(region_, in SetDexRegisterMapOffset()
137 return LoadAt(region_, in GetInlineDescriptorOffset()
145 StoreAt(region_, in SetInlineDescriptorOffset()
152 return LoadAt(region_, in GetRegisterMask()
158 StoreAt(region_, in SetRegisterMask()
[all …]