Home
last modified time | relevance | path

Searched refs:max_native_offset (Results 1 – 3 of 3) sorted by relevance

/art/compiler/
Dgc_map_builder.h29 GcMapBuilder(std::vector<uint8_t>* table, size_t entries, uint32_t max_native_offset, in GcMapBuilder() argument
32 native_offset_width_(entries != 0 && max_native_offset != 0 in GcMapBuilder()
33 ? sizeof(max_native_offset) - CLZ(max_native_offset) / 8u in GcMapBuilder()
/art/compiler/optimizing/
Dcode_generator.cc281 uint32_t max_native_offset = 0; in BuildNativeGCMap() local
284 if (native_offset > max_native_offset) { in BuildNativeGCMap()
285 max_native_offset = native_offset; in BuildNativeGCMap()
289 GcMapBuilder builder(data, pc_infos_.Size(), max_native_offset, dex_gc_map.RegWidth()); in BuildNativeGCMap()
/art/compiler/dex/quick/
Dcodegen_util.cc751 uint32_t max_native_offset = 0; in CreateNativeGcMap() local
754 if (native_offset > max_native_offset) { in CreateNativeGcMap()
755 max_native_offset = native_offset; in CreateNativeGcMap()
766 max_native_offset, dex_gc_map.RegWidth()); in CreateNativeGcMap()