HomeSort by relevance Sort by last modified time
    Searched refs:gc_map (Results 1 - 7 of 7) sorted by null

  /art/runtime/entrypoints/portable/
portable_thread_entrypoints.cc 38 const uint8_t* gc_map = method->GetNativeGcMap(); local
39 uint32_t gc_map_length = static_cast<uint32_t>((gc_map[0] << 24) |
40 (gc_map[1] << 16) |
41 (gc_map[2] << 8) |
42 (gc_map[3] << 0));
43 verifier::DexPcToReferenceMap dex_gc_map(gc_map + 4, gc_map_length);
  /art/compiler/
oat_writer.cc 355 const std::vector<uint8_t>& gc_map = compiled_method->GetGcMap(); local
356 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
372 << &gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " "
379 gc_map_offsets_.find(&gc_map);
383 gc_map_offsets_.Put(&gc_map, gc_map_offset);
385 oat_header_->UpdateChecksum(&gc_map[0], gc_map_size);
768 const std::vector<uint8_t>& gc_map = compiled_method->GetGcMap(); local
769 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0])
    [all...]
compiled_method.h 122 const std::vector<uint8_t>& gc_map, const std::string& symbol);
compiled_method.cc 151 const std::string& code, const std::vector<uint8_t>& gc_map,
155 fp_spill_mask_(0), gc_map_(driver.DeduplicateGCMap(gc_map)) {
  /art/runtime/
common_test.h 174 const uint8_t* gc_map) {
182 reinterpret_cast<uint32_t>(gc_map));
thread.cc 42 #include "gc_map.h"
2034 const uint8_t* gc_map = m->GetNativeGcMap(); local
    [all...]
  /art/runtime/verifier/
method_verifier.cc     [all...]

Completed in 372 milliseconds