Searched refs:cls_ (Results 1 - 7 of 7) sorted by relevance

/art/compiler/optimizing/
H A Dcode_generator_arm64.cc309 cls_(cls),
326 DCHECK_EQ(instruction_->IsLoadClass(), cls_ == instruction_);
328 (cls_ == instruction_) && (cls_->GetLoadKind() == HLoadClass::LoadKind::kBssEntry);
339 dex::TypeIndex type_index = cls_->GetTypeIndex();
360 const DexFile& dex_file = cls_->GetDexFile();
384 HLoadClass* const cls_; member in class:art::arm64::LoadClassSlowPathARM64
H A Dcode_generator_mips64.cc167 : SlowPathCodeMIPS64(at), cls_(cls), dex_pc_(dex_pc), do_clinit_(do_clinit) {
179 dex::TypeIndex type_index = cls_->GetTypeIndex();
200 DCHECK_EQ(instruction_->IsLoadClass(), cls_ == instruction_);
201 if (cls_ == instruction_ && cls_->GetLoadKind() == HLoadClass::LoadKind::kBssEntry) {
208 mips64_codegen->NewTypeBssEntryPatch(cls_->GetDexFile(), type_index);
219 HLoadClass* const cls_; member in class:art::mips64::LoadClassSlowPathMIPS64
H A Dcode_generator_arm.cc372 : SlowPathCodeARM(at), cls_(cls), dex_pc_(dex_pc), do_clinit_(do_clinit) {
387 DCHECK_EQ(instruction_->IsLoadClass(), cls_ == instruction_);
389 (cls_ == instruction_) && (cls_->GetLoadKind() == HLoadClass::LoadKind::kBssEntry);
402 dex::TypeIndex type_index = cls_->GetTypeIndex();
422 arm_codegen->NewTypeBssEntryPatch(cls_->GetDexFile(), type_index);
445 HLoadClass* const cls_; member in class:art::arm::LoadClassSlowPathARM
H A Dcode_generator_arm_vixl.cc399 : SlowPathCodeARMVIXL(at), cls_(cls), dex_pc_(dex_pc), do_clinit_(do_clinit) {
414 DCHECK_EQ(instruction_->IsLoadClass(), cls_ == instruction_);
416 (cls_ == instruction_) && (cls_->GetLoadKind() == HLoadClass::LoadKind::kBssEntry);
429 dex::TypeIndex type_index = cls_->GetTypeIndex();
451 arm_codegen->NewTypeBssEntryPatch(cls_->GetDexFile(), type_index);
469 HLoadClass* const cls_; member in class:art::arm::LoadClassSlowPathARMVIXL
H A Dcode_generator_mips.cc216 : SlowPathCodeMIPS(at), cls_(cls), dex_pc_(dex_pc), do_clinit_(do_clinit) {
228 dex::TypeIndex type_index = cls_->GetTypeIndex();
250 DCHECK_EQ(instruction_->IsLoadClass(), cls_ == instruction_);
251 if (cls_ == instruction_ && cls_->GetLoadKind() == HLoadClass::LoadKind::kBssEntry) {
260 mips_codegen->NewTypeBssEntryPatch(cls_->GetDexFile(), type_index);
273 HLoadClass* const cls_; member in class:art::mips::LoadClassSlowPathMIPS
H A Dcode_generator_x86.cc260 : SlowPathCode(at), cls_(cls), dex_pc_(dex_pc), do_clinit_(do_clinit) {
271 dex::TypeIndex type_index = cls_->GetTypeIndex();
292 DCHECK_EQ(instruction_->IsLoadClass(), cls_ == instruction_);
293 if (cls_ == instruction_ && cls_->GetLoadKind() == HLoadClass::LoadKind::kBssEntry) {
298 Label* fixup_label = x86_codegen->NewTypeBssEntryPatch(cls_);
308 HLoadClass* const cls_; member in class:art::x86::LoadClassSlowPathX86
H A Dcode_generator_x86_64.cc240 : SlowPathCode(at), cls_(cls), dex_pc_(dex_pc), do_clinit_(do_clinit) {
252 __ movl(CpuRegister(RAX), Immediate(cls_->GetTypeIndex().index_));
272 DCHECK_EQ(instruction_->IsLoadClass(), cls_ == instruction_);
273 if (cls_ == instruction_ && cls_->GetLoadKind() == HLoadClass::LoadKind::kBssEntry) {
277 Label* fixup_label = x86_64_codegen->NewTypeBssEntryPatch(cls_);
287 HLoadClass* const cls_; member in class:art::x86_64::LoadClassSlowPathX86_64

Completed in 121 milliseconds