Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type-inl.h146 DCHECK(instance_ != nullptr); in GetInstance()
147 return instance_; in GetInstance()
151 DCHECK(instance_ != nullptr); in GetInstance()
152 return instance_; in GetInstance()
156 DCHECK(instance_ != nullptr); in GetInstance()
157 return instance_; in GetInstance()
161 DCHECK(instance_ != nullptr); in GetInstance()
162 return instance_; in GetInstance()
166 DCHECK(instance_ != nullptr); in GetInstance()
167 return instance_; in GetInstance()
[all …]
Dreg_type.cc43 const UndefinedType* UndefinedType::instance_ = nullptr; member in art::verifier::UndefinedType
44 const ConflictType* ConflictType::instance_ = nullptr; member in art::verifier::ConflictType
45 const BooleanType* BooleanType::instance_ = nullptr; member in art::verifier::BooleanType
46 const ByteType* ByteType::instance_ = nullptr; member in art::verifier::ByteType
47 const ShortType* ShortType::instance_ = nullptr; member in art::verifier::ShortType
48 const CharType* CharType::instance_ = nullptr; member in art::verifier::CharType
49 const FloatType* FloatType::instance_ = nullptr; member in art::verifier::FloatType
50 const LongLoType* LongLoType::instance_ = nullptr; member in art::verifier::LongLoType
51 const LongHiType* LongHiType::instance_ = nullptr; member in art::verifier::LongHiType
52 const DoubleLoType* DoubleLoType::instance_ = nullptr; member in art::verifier::DoubleLoType
[all …]
Dreg_type.h389 static const ConflictType* instance_; variable
425 static const UndefinedType* instance_; variable
466 static const IntegerType* instance_; variable
492 static const BooleanType* instance_; variable
517 static const ByteType* instance_; variable
541 static const ShortType* instance_; variable
566 static const CharType* instance_; variable
591 static const FloatType* instance_; variable
624 static const LongLoType* instance_; variable
649 static const LongHiType* instance_; variable
[all …]
/art/runtime/jit/
Dprofile_saver.h37 REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
40 static void Stop(bool dump_info_) REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
48 static void NotifyJitActivity() REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
58 static void NotifyStartupCompleted() REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
68 REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
113 static ProfileSaver* instance_ GUARDED_BY(Locks::profiler_lock_);
Dprofile_saver.cc50 ProfileSaver* ProfileSaver::instance_ = nullptr; member in art::ProfileSaver
117 if (instance_ == nullptr || instance_->shutting_down_) { in NotifyStartupCompleted()
120 MutexLock mu2(self, instance_->wait_lock_); in NotifyStartupCompleted()
121 instance_->period_condition_.Signal(self); in NotifyStartupCompleted()
220 if (instance_ == nullptr || instance_->shutting_down_) { in NotifyJitActivity()
223 instance_->NotifyJitActivityInternal(); in NotifyJitActivity()
672 CHECK_EQ(reinterpret_cast<ProfileSaver*>(arg), instance_); in RunProfileSaverThread()
673 instance_->Run(); in RunProfileSaverThread()
743 } else if (instance_ == nullptr) { in Start()
757 if (instance_ != nullptr) { in Start()
[all …]
/art/runtime/arch/arm/
Dasm_support_arm.S58 ldr \rDest, .Lruntime_instance_\name\()_\num @ Load GOT_PREL offset of Runtime::instance_.
61 ldr \rDest, [\rDest] @ Load address of Runtime::instance_.
62 ldr \rDest, [\rDest] @ Load Runtime::instance_.
/art/runtime/
Druntime.cc197 Runtime* Runtime::instance_ = nullptr; member in art::Runtime
505 CHECK(instance_ == nullptr || instance_ == this); in ~Runtime()
506 instance_ = nullptr; in ~Runtime()
747 if (Runtime::instance_ != nullptr) { in Create()
750 instance_ = new Runtime; in Create()
752 if (!instance_->Init(std::move(runtime_options))) { in Create()
756 instance_ = nullptr; in Create()
Druntime.h246 return instance_; in Current()
1022 static Runtime* instance_; variable