00001 package edu.ksu.cis.bandera.abstraction;
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 public abstract class Abstraction {
00036 public static final int FALSE = 0;
00037 public static final int TRUE = 1;
00038 public static final int TRUE_OR_FALSE = 2;
00039 public static final int NOTHING = 0;
00040
00041
00042 public final static int TOP_INT = 0;
00043 public final static byte TOP_BYTE = 0;
00044 public final static short TOP_SHORT = 0;
00045 public final static double TOP_DOUBLE = 0;
00046 public final static float TOP_FLOAT = 0;
00047 public final static long TOP_LONG = 0;
00048 public final static boolean TOP_BOOL = false;
00049 public final static char TOP_CHAR = '\0';
00050 public final static Object TOP_REF = null;
00051
00052
00053
00054
00055
00056 public static boolean choose() {
00057 return true;
00058 }
00059
00060
00061
00062
00063
00064 public static int choose(int values) {
00065 if (values == 0) {
00066 throw new RuntimeException("Abstraction.choose(int) called with 0-valued\n");
00067 }
00068 int value;
00069 for (value = 0; values != 1; value++, values >>= 1) {
00070 if ((values & 1) == 1) {
00071 if (choose()) {
00072 return value;
00073 }
00074 }
00075 }
00076 return value;
00077 }
00078
00079
00080
00081
00082
00083
00084
00085 public static int meetArith(int tokens1, int tokens2) {
00086 return tokens1 | tokens2;
00087 }
00088
00089
00090
00091
00092
00093
00094 public static byte meetTest(int tokens1, int tokens2) {
00095 switch (tokens1) {
00096 case FALSE: if (tokens2 == TRUE) return TRUE_OR_FALSE;
00097 return (byte) tokens2;
00098 case TRUE: if (tokens2 == FALSE) return TRUE_OR_FALSE;
00099 return (byte) tokens2;
00100 case TRUE_OR_FALSE: return TRUE_OR_FALSE;
00101 default : throw new RuntimeException();
00102 }
00103 }
00104
00105
00106
00107
00108 public abstract String toString();
00109 }