OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vmap_table
(Results
1 - 8
of
8
) sorted by null
/art/runtime/
oat_file-inl.h
95
const uint8_t*
vmap_table
= GetVmapTable();
local
96
return static_cast<uint32_t>(
vmap_table
!= nullptr ?
vmap_table
- begin_ : 0u);
stack.cc
32
#include "
vmap_table
.h"
152
const VmapTable
vmap_table
(m->GetVmapTable(code_pointer));
156
if (
vmap_table
.IsInContext(vreg, kind, &vmap_offset)) {
159
uint32_t reg =
vmap_table
.ComputeRegister(spill_mask, vmap_offset, kind);
206
const VmapTable
vmap_table
(m->GetVmapTable(code_pointer));
210
if (
vmap_table
.IsInContext(vreg, kind_lo, &vmap_offset_lo) &&
211
vmap_table
.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) {
214
uint32_t reg_lo =
vmap_table
.ComputeRegister(spill_mask, vmap_offset_lo, kind_lo);
215
uint32_t reg_hi =
vmap_table
.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi);
253
const VmapTable
vmap_table
(m->GetVmapTable(code_pointer))
[
all
...]
thread.cc
71
#include "
vmap_table
.h"
[
all
...]
/art/compiler/optimizing/
optimizing_compiler.cc
165
std::vector<uint8_t>
vmap_table
;
local
166
codegen->BuildVMapTable(&
vmap_table
);
177
vmap_table
,
/art/compiler/
common_compiler_test.cc
180
const std::vector<uint8_t>&
vmap_table
= compiled_method->GetVmapTable();
local
181
uint32_t vmap_table_offset =
vmap_table
.empty() ? 0u
182
: sizeof(OatQuickMethodHeader) +
vmap_table
.size();
185
: sizeof(OatQuickMethodHeader) +
vmap_table
.size() + mapping_table.size();
193
size_t size = sizeof(method_header) + code_size +
vmap_table
.size() + mapping_table.size();
199
chunk->insert(chunk->begin(),
vmap_table
.begin(),
vmap_table
.end());
compiled_method.cc
152
const std::vector<uint8_t>&
vmap_table
,
158
vmap_table_(driver->DeduplicateVMapTable(
vmap_table
)),
compiled_method.h
113
const std::vector<uint8_t>&
vmap_table
,
/art/oatdump/
oatdump.cc
56
#include "
vmap_table
.h"
548
*indent2_os << "
vmap_table
: ";
669
const VmapTable
vmap_table
(raw_table);
673
for (size_t i = 0; i <
vmap_table
.Size(); i++) {
674
uint16_t dex_reg =
vmap_table
[i];
675
uint32_t cpu_reg =
vmap_table
.ComputeRegister(spill_mask, i,
697
const VmapTable
vmap_table
(raw_table);
699
if (
vmap_table
.IsInContext(reg, kind, &vmap_offset)) {
703
os << (is_float ? "fr" : "r") <<
vmap_table
.ComputeRegister(spill_mask, vmap_offset, kind);
[
all
...]
Completed in 942 milliseconds