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

/art/compiler/
H A Dgc_map_builder.h50 void AddEntry(uint32_t native_offset, const uint8_t* references) { argument
51 size_t table_index = TableIndex(native_offset);
56 SetCodeOffset(table_index, native_offset);
57 DCHECK_EQ(native_offset, GetCodeOffset(table_index));
62 size_t TableIndex(uint32_t native_offset) { argument
63 return NativePcOffsetToReferenceMap::Hash(native_offset) % entries_;
67 uint32_t native_offset = 0; local
70 native_offset |= table_[table_offset + i] << (i * 8);
72 return native_offset;
75 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.cc491 uint32_t native_offset = pc_infos_.Get(i).native_pc; local
492 if (native_offset > max_native_offset) {
493 max_native_offset = native_offset;
500 uint32_t native_offset = pc_info.native_pc; local
504 builder.AddEntry(native_offset, references);
/art/compiler/dex/quick/
H A Dcodegen_util.cc802 uint32_t native_offset = entry.first->offset; local
803 max_native_offset = std::max(max_native_offset, native_offset);
823 uint32_t native_offset = entry.first->offset; local
827 native_gc_map_builder.AddEntry(native_offset,
835 uint32_t native_offset = entry.first->offset; local
844 native_gc_map_builder.AddEntry(native_offset, &references_buffer[0]);
855 uint32_t native_offset = it.NativePcOffset(); local
856 if (native_offset > max_native_offset) {
857 max_native_offset = native_offset;
871 uint32_t native_offset local
[all...]

Completed in 3245 milliseconds