Searched refs:max_native_offset (Results 1 – 3 of 3) sorted by relevance
/art/compiler/ |
D | gc_map_builder.h | 30 GcMapBuilder(std::vector<uint8_t, Alloc>* table, size_t entries, uint32_t max_native_offset, in GcMapBuilder() argument 33 native_offset_width_(entries != 0 && max_native_offset != 0 in GcMapBuilder() 34 ? sizeof(max_native_offset) - CLZ(max_native_offset) / 8u in GcMapBuilder()
|
/art/compiler/dex/quick/ |
D | codegen_util.cc | 800 CodeOffset max_native_offset = 0u; in CreateNativeGcMap() local 803 max_native_offset = std::max(max_native_offset, native_offset); in CreateNativeGcMap() 820 max_native_offset, reg_width); in CreateNativeGcMap() 853 uint32_t max_native_offset = 0; in CreateNativeGcMapWithoutRegisterPromotion() local 856 if (native_offset > max_native_offset) { in CreateNativeGcMapWithoutRegisterPromotion() 857 max_native_offset = native_offset; in CreateNativeGcMapWithoutRegisterPromotion() 868 max_native_offset, dex_gc_map.RegWidth()); in CreateNativeGcMapWithoutRegisterPromotion()
|
/art/compiler/optimizing/ |
D | code_generator.cc | 489 uint32_t max_native_offset = 0; in BuildNativeGCMap() local 492 if (native_offset > max_native_offset) { in BuildNativeGCMap() 493 max_native_offset = native_offset; in BuildNativeGCMap() 497 GcMapBuilder builder(data, pc_infos_.Size(), max_native_offset, dex_gc_map.RegWidth()); in BuildNativeGCMap()
|