blob: 40a6e97248c120d3f285508940b6ee3258f90edf [file] [log] [blame]
/*
* Copyright (C) 2011 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.dx.gen;
import com.android.dx.rop.code.Rop;
import com.android.dx.rop.code.Rops;
import com.android.dx.rop.type.TypeList;
/**
* A comparison between two values of the same type.
*/
public enum Comparison {
/** {@code a < b} */
LT() {
@Override Rop rop(TypeList types) {
return Rops.opIfLt(types);
}
},
/** {@code a <= b} */
LE() {
@Override Rop rop(TypeList types) {
return Rops.opIfLe(types);
}
},
/** {@code a == b} */
EQ() {
@Override Rop rop(TypeList types) {
return Rops.opIfEq(types);
}
},
/** {@code a >= b} */
GE() {
@Override Rop rop(TypeList types) {
return Rops.opIfGe(types);
}
},
/** {@code a > b} */
GT() {
@Override Rop rop(TypeList types) {
return Rops.opIfGt(types);
}
},
/** {@code a != b} */
NE() {
@Override Rop rop(TypeList types) {
return Rops.opIfNe(types);
}
};
abstract Rop rop(TypeList types);
}