Searched defs:successor_ (Results 1 - 6 of 6) sorted by relevance

/art/compiler/optimizing/
H A Dcode_generator_mips64.cc293 : SlowPathCodeMIPS64(instruction), successor_(successor) {}
305 if (successor_ == nullptr) {
308 __ Bc(mips64_codegen->GetLabelOf(successor_));
313 DCHECK(successor_ == nullptr);
321 HBasicBlock* const successor_; member in class:art::mips64::SuspendCheckSlowPathMIPS64
323 // If `successor_` is null, the label to branch to after the suspend check.
H A Dcode_generator_arm64.cc393 : SlowPathCodeARM64(instruction), successor_(successor) {}
403 if (successor_ == nullptr) {
406 __ B(arm64_codegen->GetLabelOf(successor_));
411 DCHECK(successor_ == nullptr);
416 return successor_;
423 HBasicBlock* const successor_; member in class:art::arm64::SuspendCheckSlowPathARM64
425 // If `successor_` is null, the label to branch to after the suspend check.
H A Dcode_generator_mips.cc340 : SlowPathCodeMIPS(instruction), successor_(successor) {}
353 if (successor_ == nullptr) {
356 __ B(mips_codegen->GetLabelOf(successor_));
361 DCHECK(successor_ == nullptr);
369 HBasicBlock* const successor_; member in class:art::mips::SuspendCheckSlowPathMIPS
371 // If `successor_` is null, the label to branch to after the suspend check.
H A Dcode_generator_arm.cc116 : SlowPathCode(instruction), successor_(successor) {}
126 if (successor_ == nullptr) {
129 __ b(arm_codegen->GetLabelOf(successor_));
134 DCHECK(successor_ == nullptr);
139 return successor_;
146 HBasicBlock* const successor_; member in class:art::arm::SuspendCheckSlowPathARM
148 // If `successor_` is null, the label to branch to after the suspend check.
H A Dcode_generator_x86.cc168 : SlowPathCode(instruction), successor_(successor) {}
180 if (successor_ == nullptr) {
183 __ jmp(x86_codegen->GetLabelOf(successor_));
188 DCHECK(successor_ == nullptr);
193 return successor_;
199 HBasicBlock* const successor_; member in class:art::x86::SuspendCheckSlowPathX86
H A Dcode_generator_x86_64.cc146 : SlowPathCode(instruction), successor_(successor) {}
158 if (successor_ == nullptr) {
161 __ jmp(x86_64_codegen->GetLabelOf(successor_));
166 DCHECK(successor_ == nullptr);
171 return successor_;
177 HBasicBlock* const successor_; member in class:art::x86_64::SuspendCheckSlowPathX86_64

Completed in 107 milliseconds