OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:gc_map
(Results
1 - 6
of
6
) sorted by null
/art/runtime/entrypoints/portable/
portable_thread_entrypoints.cc
38
const uint8_t*
gc_map
= method->GetNativeGcMap(sizeof(void*));
local
39
verifier::DexPcToReferenceMap dex_gc_map(
gc_map
);
/art/compiler/optimizing/
optimizing_compiler.cc
167
std::vector<uint8_t>
gc_map
;
local
168
codegen->BuildNativeGCMap(&
gc_map
, dex_compilation_unit);
178
ArrayRef<const uint8_t>(
gc_map
),
/art/runtime/
oat_file-inl.h
94
const uint8_t*
gc_map
= GetGcMap();
local
95
return static_cast<uint32_t>(
gc_map
!= nullptr ?
gc_map
- begin_ : 0u);
thread.cc
41
#include "
gc_map
.h"
2076
const uint8_t*
gc_map
= m->GetNativeGcMap(sizeof(void*));
local
[
all
...]
/art/compiler/
common_compiler_test.cc
176
const SwapVector<uint8_t>&
gc_map
= compiled_method->GetGcMap();
local
177
uint32_t gc_map_offset =
gc_map
.empty() ? 0u
178
: sizeof(OatQuickMethodHeader) + vmap_table.size() + mapping_table.size() +
gc_map
.size();
187
gc_map
.size();
195
chunk->insert(chunk->begin(),
gc_map
.begin(),
gc_map
.end());
oat_writer.cc
468
const SwapVector<uint8_t>&
gc_map
= compiled_method->GetGcMap();
local
469
size_t gc_map_size =
gc_map
.size() * sizeof(
gc_map
[0]);
472
<< &
gc_map
<< " " << gc_map_size << " " << (is_native ? "true" : "false") << " "
[
all
...]
Completed in 2493 milliseconds