Lines Matching refs:label
444 vixl32::Label* label, in CompareAndBranchIfZero() argument
446 if (!is_far_target && rn.IsLow() && !label->IsBound()) { in CompareAndBranchIfZero()
451 Cbz(rn, label); in CompareAndBranchIfZero()
455 B(eq, label, is_far_target); in CompareAndBranchIfZero()
459 vixl32::Label* label, in CompareAndBranchIfNonZero() argument
461 if (!is_far_target && rn.IsLow() && !label->IsBound()) { in CompareAndBranchIfNonZero()
462 Cbnz(rn, label); in CompareAndBranchIfNonZero()
466 B(ne, label, is_far_target); in CompareAndBranchIfNonZero()
469 void ArmVIXLMacroAssembler::B(vixl32::Label* label) { in B() argument
470 if (!label->IsBound()) { in B()
473 BPreferNear(label); in B()
476 MacroAssembler::B(label); in B()
479 void ArmVIXLMacroAssembler::B(vixl32::Condition cond, vixl32::Label* label, bool is_far_target) { in B() argument
480 if (!label->IsBound() && !is_far_target) { in B()
483 BPreferNear(cond, label); in B()
486 MacroAssembler::B(cond, label); in B()