Searched refs:getIntBits (Results 1 – 21 of 21) sorted by relevance
42 public abstract int getIntBits(); in getIntBits() method in CstLiteralBits64 int bits = getIntBits(); in fitsIn16Bits()79 int bits = getIntBits(); in fitsIn8Bits()
72 int value = getIntBits(); in toString()89 return Integer.toString(getIntBits()); in toHuman()98 return (short) getIntBits(); in getValue()
71 int value = getIntBits(); in toString()88 return Integer.toString(getIntBits()); in toHuman()97 return (byte) getIntBits(); in getValue()
71 int value = getIntBits(); in toString()88 return Integer.toString(getIntBits()); in toHuman()97 return (char) getIntBits(); in getValue()
62 int bits = getIntBits(); in toString()80 return Float.toString(Float.intBitsToFloat(getIntBits())); in toHuman()89 return Float.intBitsToFloat(getIntBits()); in getValue()
88 int value = getIntBits(); in toString()105 return Integer.toString(getIntBits()); in toHuman()114 return getIntBits(); in getValue()
96 public int getIntBits() { in getIntBits() method in CstKnownNull
78 public final int getIntBits() { in getIntBits() method in CstLiteral32
78 public final int getIntBits() { in getIntBits() method in CstLiteral64
97 return (getIntBits() == 0) ? false : true; in getValue()
123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); in writeTo()130 out.writeShort((short) ((CstLiteral32) cst).getIntBits()); in writeTo()137 out.writeInt(((CstLiteral32) cst).getIntBits()); in writeTo()
284 bits = value.getIntBits(); in literalBitsComment()
86 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits()); in isCompatible()104 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
87 return cb.fitsInInt() && signedFitsInNibble(cb.getIntBits()); in isCompatible()105 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
88 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits()); in isCompatible()107 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
92 int bits = cb.getIntBits(); in isCompatible()119 bits = (short) (cb.getIntBits() >>> 16); in writeTo()
88 return cb.fitsInInt() && signedFitsInByte(cb.getIntBits()); in isCompatible()107 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
92 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits()); in isCompatible()111 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
102 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
491 int length = ((CstLiteralBits) lengthReg).getIntBits(); in scalarReplacement()579 index = indexReg.getIntBits(); in replaceUse()596 index = indexReg.getIntBits(); in replaceUse()
197 int value = ((CstBoolean) cst).getIntBits(); in writeConstant()