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

  /art/compiler/optimizing/
code_generator_mips64.cc 293 : 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.
    [all...]
code_generator_arm64.cc 393 : 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.
    [all...]
code_generator_mips.cc 340 : 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.
    [all...]
code_generator_arm.cc 116 : 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.
    [all...]
code_generator_x86.cc 168 : 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
    [all...]
code_generator_x86_64.cc 146 : 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
    [all...]

Completed in 53 milliseconds