Lines Matching refs:cls_
273 : SlowPathCodeARM64(at), cls_(cls) { in LoadClassSlowPathARM64()
275 DCHECK_EQ(instruction_->IsLoadClass(), cls_ == instruction_); in LoadClassSlowPathARM64()
282 bool must_resolve_type = instruction_->IsLoadClass() && cls_->MustResolveTypeOnSlowPath(); in EmitNativeCode()
283 bool must_do_clinit = instruction_->IsClinitCheck() || cls_->MustGenerateClinitCheck(); in EmitNativeCode()
291 DCHECK(IsSameDexFile(cls_->GetDexFile(), arm64_codegen->GetGraph()->GetDexFile()) || in EmitNativeCode()
292 arm64_codegen->GetCompilerOptions().WithinOatFile(&cls_->GetDexFile()) || in EmitNativeCode()
294 &cls_->GetDexFile())); in EmitNativeCode()
295 dex::TypeIndex type_index = cls_->GetTypeIndex(); in EmitNativeCode()
297 if (cls_->NeedsAccessCheck()) { in EmitNativeCode()
310 cls_->GetType()); in EmitNativeCode()
331 HLoadClass* const cls_; member in art::arm64::LoadClassSlowPathARM64