Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type-inl.h123 DCHECK(instance_ != nullptr); in GetInstance()
124 return instance_; in GetInstance()
128 DCHECK(instance_ != nullptr); in GetInstance()
129 return instance_; in GetInstance()
133 DCHECK(instance_ != nullptr); in GetInstance()
134 return instance_; in GetInstance()
138 DCHECK(instance_ != nullptr); in GetInstance()
139 return instance_; in GetInstance()
143 DCHECK(instance_ != nullptr); in GetInstance()
144 return instance_; in GetInstance()
[all …]
Dreg_type.cc36 const UndefinedType* UndefinedType::instance_ = nullptr; member in art::verifier::UndefinedType
37 const ConflictType* ConflictType::instance_ = nullptr; member in art::verifier::ConflictType
38 const BooleanType* BooleanType::instance_ = nullptr; member in art::verifier::BooleanType
39 const ByteType* ByteType::instance_ = nullptr; member in art::verifier::ByteType
40 const ShortType* ShortType::instance_ = nullptr; member in art::verifier::ShortType
41 const CharType* CharType::instance_ = nullptr; member in art::verifier::CharType
42 const FloatType* FloatType::instance_ = nullptr; member in art::verifier::FloatType
43 const LongLoType* LongLoType::instance_ = nullptr; member in art::verifier::LongLoType
44 const LongHiType* LongHiType::instance_ = nullptr; member in art::verifier::LongHiType
45 const DoubleLoType* DoubleLoType::instance_ = nullptr; member in art::verifier::DoubleLoType
[all …]
Dreg_type.h326 static const ConflictType* instance_; variable
355 static const UndefinedType* instance_; variable
387 static const IntegerType* instance_; variable
406 static const BooleanType* instance_; variable
424 static const ByteType* instance_; variable
442 static const ShortType* instance_; variable
460 static const CharType* instance_; variable
478 static const FloatType* instance_; variable
503 static const LongLoType* instance_; variable
521 static const LongHiType* instance_; variable
[all …]
/art/runtime/arch/arm/
Dasm_support_arm.S41 ldr \rTemp, .Lruntime_instance_\name\()_\num @ Load GOT offset of Runtime::instance_.
44 ldr \rDest, [\rDest, \rTemp] @ Load address of Runtime::instance_.
45 ldr \rDest, [\rDest] @ Load Runtime::instance_.
/art/runtime/
Druntime.cc137 Runtime* Runtime::instance_ = nullptr; member in art::Runtime
288 CHECK(instance_ == nullptr || instance_ == this); in ~Runtime()
289 instance_ = nullptr; in ~Runtime()
412 if (Runtime::instance_ != nullptr) { in Create()
416 instance_ = new Runtime; in Create()
417 if (!instance_->Init(options, ignore_unrecognized)) { in Create()
421 instance_ = nullptr; in Create()
Druntime.h205 return instance_; in Current()
573 static Runtime* instance_; variable