Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type-inl.h158 DCHECK(instance_ != nullptr); in GetInstance()
159 return instance_; in GetInstance()
163 DCHECK(instance_ != nullptr); in GetInstance()
164 return instance_; in GetInstance()
168 DCHECK(instance_ != nullptr); in GetInstance()
169 return instance_; in GetInstance()
173 DCHECK(instance_ != nullptr); in GetInstance()
174 return instance_; in GetInstance()
178 DCHECK(instance_ != nullptr); in GetInstance()
179 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.h42 REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
45 static void Stop(bool dump_info_) REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
53 static void NotifyJitActivity() REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
59 static void NotifyStartupCompleted() REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
70 REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
122 static ProfileSaver* instance_ GUARDED_BY(Locks::profiler_lock_);
Dprofile_saver.cc50 ProfileSaver* ProfileSaver::instance_ = nullptr; member in art::ProfileSaver
113 if (instance_ == nullptr || instance_->shutting_down_) { in NotifyStartupCompleted()
116 MutexLock mu2(self, instance_->wait_lock_); in NotifyStartupCompleted()
117 instance_->period_condition_.Signal(self); in NotifyStartupCompleted()
285 if (instance_ == nullptr || instance_->shutting_down_) { in NotifyJitActivity()
288 instance_->NotifyJitActivityInternal(); in NotifyJitActivity()
981 CHECK_EQ(reinterpret_cast<ProfileSaver*>(arg), instance_); in RunProfileSaverThread()
982 instance_->Run(); in RunProfileSaverThread()
1053 } else if (instance_ == nullptr) { in Start()
1067 if (instance_ != nullptr) { in Start()
[all …]
/art/runtime/arch/arm/
Dasm_support_arm.S75 ldr \rDest, .Lruntime_instance_\name\()_\num @ Load GOT_PREL offset of Runtime::instance_.
78 ldr \rDest, [\rDest] @ Load address of Runtime::instance_.
79 ldr \rDest, [\rDest] @ Load Runtime::instance_.
/art/runtime/
Druntime.cc203 Runtime* Runtime::instance_ = nullptr; member in art::Runtime
520 CHECK(instance_ == nullptr || instance_ == this); in ~Runtime()
521 instance_ = nullptr; in ~Runtime()
768 if (Runtime::instance_ != nullptr) { in Create()
771 instance_ = new Runtime; in Create()
773 if (!instance_->Init(std::move(runtime_options))) { in Create()
777 instance_ = nullptr; in Create()
Druntime.h255 return instance_; in Current()
1094 static Runtime* instance_; variable