Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type-inl.h142 DCHECK(instance_ != nullptr); in GetInstance()
143 return instance_; in GetInstance()
147 DCHECK(instance_ != nullptr); in GetInstance()
148 return instance_; in GetInstance()
152 DCHECK(instance_ != nullptr); in GetInstance()
153 return instance_; in GetInstance()
157 DCHECK(instance_ != nullptr); in GetInstance()
158 return instance_; in GetInstance()
162 DCHECK(instance_ != nullptr); in GetInstance()
163 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.h406 static const ConflictType* instance_; variable
441 static const UndefinedType* instance_; variable
479 static const IntegerType* instance_; variable
504 static const BooleanType* instance_; variable
528 static const ByteType* instance_; variable
552 static const ShortType* instance_; variable
576 static const CharType* instance_; variable
600 static const FloatType* instance_; variable
631 static const LongLoType* instance_; variable
655 static const LongHiType* instance_; variable
[all …]
/art/runtime/jit/
Dprofile_saver.cc44 ProfileSaver* ProfileSaver::instance_ = nullptr; member in art::ProfileSaver
182 if (instance_ == nullptr || instance_->shutting_down_) { in NotifyJitActivity()
185 instance_->NotifyJitActivityInternal(); in NotifyJitActivity()
643 } else if (instance_ == nullptr) { in Start()
657 if (instance_ != nullptr) { in Start()
661 DCHECK_EQ(instance_->jit_code_cache_, jit_code_cache); in Start()
663 instance_->AddTrackedLocations(output_filename, code_paths_to_profile); in Start()
670 instance_ = new ProfileSaver(options, in Start()
678 (&profiler_pthread_, nullptr, &RunProfileSaverThread, reinterpret_cast<void*>(instance_)), in Start()
691 profile_saver = instance_; in Stop()
[all …]
Dprofile_saver.h108 static ProfileSaver* instance_ GUARDED_BY(Locks::profiler_lock_);
/art/runtime/arch/arm/
Dasm_support_arm.S47 ldr \rDest, .Lruntime_instance_\name\()_\num @ Load GOT_PREL offset of Runtime::instance_.
50 ldr \rDest, [\rDest] @ Load address of Runtime::instance_.
51 ldr \rDest, [\rDest] @ Load Runtime::instance_.
/art/runtime/
Druntime.cc179 Runtime* Runtime::instance_ = nullptr; member in art::Runtime
405 CHECK(instance_ == nullptr || instance_ == this); in ~Runtime()
406 instance_ = nullptr; in ~Runtime()
612 if (Runtime::instance_ != nullptr) { in Create()
615 instance_ = new Runtime; in Create()
617 if (!instance_->Init(std::move(runtime_options))) { in Create()
621 instance_ = nullptr; in Create()
Druntime.h209 return instance_; in Current()
711 static Runtime* instance_; variable