Searched refs:native_offset (Results 1 - 4 of 4) sorted by relevance

/art/compiler/
H A Dgc_map_builder.h48 void AddEntry(uint32_t native_offset, const uint8_t* references) { argument
49 size_t table_index = TableIndex(native_offset);
54 SetCodeOffset(table_index, native_offset);
55 DCHECK_EQ(native_offset, GetCodeOffset(table_index));
60 size_t TableIndex(uint32_t native_offset) { argument
61 return NativePcOffsetToReferenceMap::Hash(native_offset) % entries_;
65 uint32_t native_offset = 0; local
68 native_offset |= (*table_)[table_offset + i] << (i * 8);
70 return native_offset;
73 void SetCodeOffset(size_t table_index, uint32_t native_offset) { argument
[all...]
/art/runtime/
H A Dgc_map.h78 static uint32_t Hash(uint32_t native_offset) { argument
79 uint32_t hash = native_offset;
/art/compiler/optimizing/
H A Dcode_generator.cc283 uint32_t native_offset = pc_infos_.Get(i).native_pc; local
284 if (native_offset > max_native_offset) {
285 max_native_offset = native_offset;
292 uint32_t native_offset = pc_info.native_pc; local
296 builder.AddEntry(native_offset, references);
/art/compiler/dex/quick/
H A Dcodegen_util.cc753 uint32_t native_offset = it.NativePcOffset(); local
754 if (native_offset > max_native_offset) {
755 max_native_offset = native_offset;
769 uint32_t native_offset = it.NativePcOffset(); local
774 native_gc_map_builder.AddEntry(native_offset, references);

Completed in 115 milliseconds