HomeSort by relevance Sort by last modified time
    Searched refs:successor_ (Results 1 - 6 of 6) sorted by null

  /art/compiler/optimizing/
code_generator_arm64.cc 491 : SlowPathCodeARM64(instruction), successor_(successor) {}
501 if (successor_ == nullptr) {
504 __ B(arm64_codegen->GetLabelOf(successor_));
509 DCHECK(successor_ == nullptr);
514 return successor_;
521 HBasicBlock* const successor_; member in class:art::arm64::SuspendCheckSlowPathARM64
523 // If `successor_` is null, the label to branch to after the suspend check.
    [all...]
code_generator_mips64.cc 383 : SlowPathCodeMIPS64(instruction), successor_(successor) {}
393 if (successor_ == nullptr) {
396 __ Bc(mips64_codegen->GetLabelOf(successor_));
401 DCHECK(successor_ == nullptr);
409 HBasicBlock* const successor_; member in class:art::mips64::SuspendCheckSlowPathMIPS64
411 // If `successor_` is null, the label to branch to after the suspend check.
    [all...]
code_generator_arm_vixl.cc 392 : SlowPathCodeARMVIXL(instruction), successor_(successor) {}
399 if (successor_ == nullptr) {
402 __ B(arm_codegen->GetLabelOf(successor_));
407 DCHECK(successor_ == nullptr);
412 return successor_;
419 HBasicBlock* const successor_; member in class:art::arm::SuspendCheckSlowPathARMVIXL
421 // If `successor_` is null, the label to branch to after the suspend check.
    [all...]
code_generator_x86.cc 184 : SlowPathCode(instruction), successor_(successor) {}
194 if (successor_ == nullptr) {
197 __ jmp(x86_codegen->GetLabelOf(successor_));
202 DCHECK(successor_ == nullptr);
207 return successor_;
213 HBasicBlock* const successor_; member in class:art::x86::SuspendCheckSlowPathX86
    [all...]
code_generator_x86_64.cc 141 : SlowPathCode(instruction), successor_(successor) {}
151 if (successor_ == nullptr) {
154 __ jmp(x86_64_codegen->GetLabelOf(successor_));
159 DCHECK(successor_ == nullptr);
164 return successor_;
170 HBasicBlock* const successor_; member in class:art::x86_64::SuspendCheckSlowPathX86_64
    [all...]
code_generator_mips.cc 434 : SlowPathCodeMIPS(instruction), successor_(successor) {}
444 if (successor_ == nullptr) {
447 __ B(mips_codegen->GetLabelOf(successor_));
452 DCHECK(successor_ == nullptr);
460 HBasicBlock* const successor_; member in class:art::mips::SuspendCheckSlowPathMIPS
462 // If `successor_` is null, the label to branch to after the suspend check.
    [all...]

Completed in 87 milliseconds