Searched refs:IntImmediate (Results 1 – 1 of 1) sorted by relevance
233 private static class IntImmediate { class in BaseApfGenerator237 IntImmediate(int value, IntImmediateType type) { in IntImmediate() method in BaseApfGenerator.IntImmediate285 public static IntImmediate newSigned(int imm) { in newSigned()286 return new IntImmediate(imm, IntImmediateType.INDETERMINATE_SIZE_SIGNED); in newSigned()289 public static IntImmediate newUnsigned(long imm) { in newUnsigned()293 return new IntImmediate((int) imm, IntImmediateType.INDETERMINATE_SIZE_UNSIGNED); in newUnsigned()296 public static IntImmediate newTwosComplementUnsigned(long imm) { in newTwosComplementUnsigned()299 return new IntImmediate((int) imm, IntImmediateType.INDETERMINATE_SIZE_UNSIGNED); in newTwosComplementUnsigned()302 public static IntImmediate newTwosComplementSigned(long imm) { in newTwosComplementSigned()305 return new IntImmediate((int) imm, IntImmediateType.INDETERMINATE_SIZE_SIGNED); in newTwosComplementSigned()[all …]