• Home
  • Raw
  • Download

Lines Matching refs:ccode

277   ConditionCode ccode = mir->meta.ccode;  in GenSelect()  local
335 ConditionCode cc = true_zero_case ? NegateComparison(ccode) : ccode; in GenSelect()
372 OpCondRegReg(kOpCmov, NegateComparison(ccode), rl_result.reg, rl_false.reg); in GenSelect()
374 OpCondRegReg(kOpCmov, ccode, rl_result.reg, rl_true.reg); in GenSelect()
377 OpCondRegReg(kOpCmov, ccode, rl_result.reg, rl_true.reg); in GenSelect()
388 ConditionCode ccode = mir->meta.ccode; in GenFusedLongCmpBranch() local
392 ccode = FlipComparisonOrder(ccode); in GenFusedLongCmpBranch()
397 GenFusedLongCmpImmBranch(bb, rl_src1, val, ccode); in GenFusedLongCmpBranch()
406 OpCondBranch(ccode, taken); in GenFusedLongCmpBranch()
418 if (ccode == kCondLe || ccode == kCondGt) { in GenFusedLongCmpBranch()
427 switch (ccode) { in GenFusedLongCmpBranch()
433 ccode = kCondGe; in GenFusedLongCmpBranch()
436 ccode = kCondLt; in GenFusedLongCmpBranch()
442 LOG(FATAL) << "Unexpected ccode: " << ccode; in GenFusedLongCmpBranch()
444 OpCondBranch(ccode, taken); in GenFusedLongCmpBranch()
448 int64_t val, ConditionCode ccode) { in GenFusedLongCmpImmBranch() argument
453 bool is_equality_test = ccode == kCondEq || ccode == kCondNe; in GenFusedLongCmpImmBranch()
467 OpCondBranch(ccode, taken); in GenFusedLongCmpImmBranch()
489 OpCondBranch(ccode, taken); in GenFusedLongCmpImmBranch()
498 } else if (ccode == kCondLe || ccode == kCondGt) { in GenFusedLongCmpImmBranch()
504 ccode = (ccode == kCondLe) ? kCondGe : kCondLt; in GenFusedLongCmpImmBranch()
522 OpCondBranch(ccode, taken); in GenFusedLongCmpImmBranch()