Home | History | Annotate | Download | only in x64

Lines Matching defs:cc

847   // This list must be in sync with BinaryOpPatch() behavior in ic.cc.
3198 static int NegativeComparisonResult(Condition cc) {
3199 ASSERT(cc != equal);
3200 ASSERT((cc == less) || (cc == less_equal)
3201 || (cc == greater) || (cc == greater_equal));
3202 return (cc == greater || cc == greater_equal) ? LESS : GREATER;
3240 Condition cc = GetCondition();
3269 if (cc != equal) {
3275 __ Set(rax, NegativeComparisonResult(cc));
3287 if (cc != equal) {
3305 if (cc == greater_equal || cc == greater) {
3313 if (cc == equal) { // Both strict and non-strict.
3388 // The cc is never not-equal.
3390 ASSERT(cc != not_equal);
3391 if (cc == less || cc == less_equal) {
3403 if (cc == equal) {
3421 if (cc == equal) {
3442 if (cc == equal && !strict()) {
3482 if (cc == equal) {
3486 __ Push(Smi::FromInt(NegativeComparisonResult(cc)));