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

  /art/runtime/
stack.cc 27 #include "vmap_table.h"
139 const VmapTable vmap_table(m->GetVmapTable());
142 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
146 return GetGPR(vmap_table.ComputeRegister(spill_mask, vmap_offset, kind));
164 const VmapTable vmap_table(m->GetVmapTable());
167 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) {
170 const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kReferenceVReg);
oat_file.cc 31 #include "vmap_table.h"
442 VmapTable vmap_table(reinterpret_cast<const uint8_t*>(begin_ + vmap_table_offset_));
444 DCHECK_EQ(vmap_table.Size(), static_cast<uint32_t>(__builtin_popcount(core_spill_mask_) +
common_test.h 173 const uint8_t* vmap_table,
181 reinterpret_cast<uint32_t>(vmap_table),
thread.cc 69 #include "vmap_table.h"
    [all...]
  /art/compiler/
oat_writer.cc 340 const std::vector<uint8_t>& vmap_table = compiled_method->GetVmapTable(); local
341 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
346 vmap_table_offsets_.find(&vmap_table);
350 vmap_table_offsets_.Put(&vmap_table, vmap_table_offset);
352 oat_header_->UpdateChecksum(&vmap_table[0], vmap_table_size);
744 const std::vector<uint8_t>& vmap_table = compiled_method->GetVmapTable(); local
745 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
749 vmap_table_offsets_.find(&vmap_table);
    [all...]
compiled_method.h 109 const std::vector<uint8_t>& vmap_table,
compiled_method.cc 126 const std::vector<uint8_t>& vmap_table,
131 vmap_table_(driver.DeduplicateVMapTable(vmap_table)),
image_writer.cc 565 const byte* vmap_table = GetOatAddress(vmap_table_offset); local
566 copy->SetVmapTable(vmap_table);
  /art/runtime/mirror/
art_method.h 267 void SetVmapTable(const uint8_t* vmap_table) {
268 SetFieldPtr<const uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, vmap_table_), vmap_table, false); local
  /art/oatdump/
oatdump.cc 52 #include "vmap_table.h"
396 const VmapTable vmap_table(raw_table);
400 for (size_t i = 0; i < vmap_table.Size(); i++) {
401 uint16_t dex_reg = vmap_table[i];
402 uint32_t cpu_reg = vmap_table.ComputeRegister(spill_mask, i,
424 const VmapTable vmap_table(raw_table);
426 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) {
430 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind);
    [all...]

Completed in 53 milliseconds