Searched refs:IntImmediate (Results 1 – 1 of 1) sorted by relevance
274 private static class IntImmediate { class in BaseApfGenerator278 IntImmediate(int value, IntImmediateType type) { in IntImmediate() method in BaseApfGenerator.IntImmediate326 public static IntImmediate newSigned(int imm) { in newSigned()327 return new IntImmediate(imm, IntImmediateType.INDETERMINATE_SIZE_SIGNED); in newSigned()330 public static IntImmediate newUnsigned(long imm) { in newUnsigned()334 return new IntImmediate((int) imm, IntImmediateType.INDETERMINATE_SIZE_UNSIGNED); in newUnsigned()337 public static IntImmediate newTwosComplementUnsigned(long imm) { in newTwosComplementUnsigned()340 return new IntImmediate((int) imm, IntImmediateType.INDETERMINATE_SIZE_UNSIGNED); in newTwosComplementUnsigned()343 public static IntImmediate newTwosComplementSigned(long imm) { in newTwosComplementSigned()346 return new IntImmediate((int) imm, IntImmediateType.INDETERMINATE_SIZE_SIGNED); in newTwosComplementSigned()[all …]