OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uninit_type
(Results
1 - 5
of
5
) sorted by null
/art/runtime/verifier/
reg_type_cache.cc
365
const RegType& RegTypeCache::FromUninitialized(const RegType&
uninit_type
) {
368
if (
uninit_type
.IsUnresolvedTypes()) {
369
const std::string& descriptor(
uninit_type
.GetDescriptor());
379
mirror::Class* klass =
uninit_type
.GetClass();
380
if (
uninit_type
.IsUninitializedThisReference() && !klass->IsFinal()) {
398
entry = new PreciseReferenceType(klass,
uninit_type
.GetDescriptor(), entries_.size());
register_line.cc
164
void RegisterLine::MarkRefsAsInitialized(const RegType&
uninit_type
) {
165
DCHECK(
uninit_type
.IsUninitializedTypes());
166
const RegType& init_type = verifier_->GetRegTypeCache()->FromUninitialized(
uninit_type
);
169
if (GetRegisterType(i).Equals(
uninit_type
)) {
215
void RegisterLine::MarkUninitRefsAsInvalid(const RegType&
uninit_type
) {
217
if (GetRegisterType(i).Equals(
uninit_type
)) {
reg_type_cache.h
137
const RegType& FromUninitialized(const RegType&
uninit_type
)
register_line.h
132
void MarkUninitRefsAsInvalid(const RegType&
uninit_type
)
136
* Update all registers holding "
uninit_type
" to instead hold the corresponding initialized
140
void MarkRefsAsInitialized(const RegType&
uninit_type
)
method_verifier.cc
1756
const RegType&
uninit_type
= reg_types_.Uninitialized(res_type, work_insn_idx_);
local
[
all
...]
Completed in 1704 milliseconds