Home
last modified time | relevance | path

Searched refs:instance_ (Results 1 – 8 of 8) sorted by relevance

/art/runtime/verifier/
Dreg_type-inl.h139 DCHECK(instance_ != nullptr); in GetInstance()
140 return instance_; in GetInstance()
144 DCHECK(instance_ != nullptr); in GetInstance()
145 return instance_; in GetInstance()
149 DCHECK(instance_ != nullptr); in GetInstance()
150 return instance_; in GetInstance()
154 DCHECK(instance_ != nullptr); in GetInstance()
155 return instance_; in GetInstance()
159 DCHECK(instance_ != nullptr); in GetInstance()
160 return instance_; in GetInstance()
[all …]
Dreg_type.cc42 const UndefinedType* UndefinedType::instance_ = nullptr; member in art::verifier::UndefinedType
43 const ConflictType* ConflictType::instance_ = nullptr; member in art::verifier::ConflictType
44 const BooleanType* BooleanType::instance_ = nullptr; member in art::verifier::BooleanType
45 const ByteType* ByteType::instance_ = nullptr; member in art::verifier::ByteType
46 const ShortType* ShortType::instance_ = nullptr; member in art::verifier::ShortType
47 const CharType* CharType::instance_ = nullptr; member in art::verifier::CharType
48 const FloatType* FloatType::instance_ = nullptr; member in art::verifier::FloatType
49 const LongLoType* LongLoType::instance_ = nullptr; member in art::verifier::LongLoType
50 const LongHiType* LongHiType::instance_ = nullptr; member in art::verifier::LongHiType
51 const DoubleLoType* DoubleLoType::instance_ = nullptr; member in art::verifier::DoubleLoType
[all …]
Dreg_type.h351 static const ConflictType* instance_; variable
382 static const UndefinedType* instance_; variable
416 static const IntegerType* instance_; variable
437 static const BooleanType* instance_; variable
457 static const ByteType* instance_; variable
477 static const ShortType* instance_; variable
497 static const CharType* instance_; variable
517 static const FloatType* instance_; variable
544 static const LongLoType* instance_; variable
564 static const LongHiType* instance_; variable
[all …]
/art/runtime/jit/
Dprofile_saver.cc39 ProfileSaver* ProfileSaver::instance_ = nullptr; member in art::ProfileSaver
150 if (instance_ == nullptr || instance_->shutting_down_) { in NotifyJitActivity()
153 instance_->NotifyJitActivityInternal(); in NotifyJitActivity()
443 if (instance_ != nullptr) { in Start()
447 DCHECK_EQ(instance_->jit_code_cache_, jit_code_cache); in Start()
449 instance_->AddTrackedLocations(output_filename, code_paths_to_profile); in Start()
456 instance_ = new ProfileSaver(options, in Start()
464 (&profiler_pthread_, nullptr, &RunProfileSaverThread, reinterpret_cast<void*>(instance_)), in Start()
485 profile_saver = instance_; in Stop()
487 if (instance_ == nullptr) { in Stop()
[all …]
Dprofile_saver.h109 static ProfileSaver* instance_ GUARDED_BY(Locks::profiler_lock_);
/art/runtime/arch/arm/
Dasm_support_arm.S40 ldr \rDest, .Lruntime_instance_\name\()_\num @ Load GOT_PREL offset of Runtime::instance_.
43 ldr \rDest, [\rDest] @ Load address of Runtime::instance_.
44 ldr \rDest, [\rDest] @ Load Runtime::instance_.
/art/runtime/
Druntime.cc173 Runtime* Runtime::instance_ = nullptr; member in art::Runtime
392 CHECK(instance_ == nullptr || instance_ == this); in ~Runtime()
393 instance_ = nullptr; in ~Runtime()
581 if (Runtime::instance_ != nullptr) { in Create()
584 instance_ = new Runtime; in Create()
586 if (!instance_->Init(std::move(runtime_options))) { in Create()
590 instance_ = nullptr; in Create()
Druntime.h214 return instance_; in Current()
731 static Runtime* instance_; variable