• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.word/src/org/graalvm/compiler/word/

Lines Matching defs:unbox

129     protected abstract long unbox();
138 return unbox();
196 return box(unbox() + val.unbox());
219 return box(unbox() - val.unbox());
242 return box(unbox() * val.unbox());
259 return box(unbox() / val.unbox());
276 return box(Long.divideUnsigned(unbox(), val.unbox()));
293 return box(unbox() % val.unbox());
310 return box(Long.remainderUnsigned(unbox(), val.unbox()));
327 return box(unbox() << val.unbox());
344 return box(unbox() >> val.unbox());
361 return box(unbox() >>> val.unbox());
384 return box(unbox() & val.unbox());
407 return box(unbox() | val.unbox());
430 return box(unbox() ^ val.unbox());
436 return box(~unbox());
477 return unbox() == val.unbox();
506 return unbox() != val.unbox();
523 return unbox() < val.unbox();
540 return unbox() <= val.unbox();
557 return unbox() > val.unbox();
574 return unbox() >= val.unbox();
591 return UnsignedMath.belowThan(unbox(), val.unbox());
608 return UnsignedMath.belowOrEqual(unbox(), val.unbox());
625 return UnsignedMath.aboveThan(unbox(), val.unbox());
642 return UnsignedMath.aboveOrEqual(unbox(), val.unbox());
648 return UNSAFE.getByte(add((Word) offset).unbox());
654 return UNSAFE.getChar(add((Word) offset).unbox());
660 return UNSAFE.getShort(add((Word) offset).unbox());
666 return UNSAFE.getInt(add((Word) offset).unbox());
672 return UNSAFE.getLong(add((Word) offset).unbox());
678 return UNSAFE.getFloat(add((Word) offset).unbox());
684 return UNSAFE.getDouble(add((Word) offset).unbox());
690 return box(UNSAFE.getAddress(add((Word) offset).unbox()));
754 UNSAFE.putByte(add((Word) offset).unbox(), val);
760 UNSAFE.putChar(add((Word) offset).unbox(), val);
766 UNSAFE.putShort(add((Word) offset).unbox(), val);
772 UNSAFE.putInt(add((Word) offset).unbox(), val);
778 UNSAFE.putLong(add((Word) offset).unbox(), val);
784 UNSAFE.putFloat(add((Word) offset).unbox(), val);
790 UNSAFE.putDouble(add((Word) offset).unbox(), val);
796 UNSAFE.putAddress(add((Word) offset).unbox(), ((Word) val).unbox());
802 UNSAFE.putLong(add((Word) offset).unbox(), val);
872 return UNSAFE.getByte(add((Word) offset).unbox());
878 return UNSAFE.getChar(add((Word) offset).unbox());
884 return UNSAFE.getShort(add((Word) offset).unbox());
890 return UNSAFE.getInt(add((Word) offset).unbox());
896 return UNSAFE.getLong(add((Word) offset).unbox());
902 return UNSAFE.getFloat(add((Word) offset).unbox());
908 return UNSAFE.getDouble(add((Word) offset).unbox());
914 return box(UNSAFE.getAddress(add((Word) offset).unbox()));
986 UNSAFE.putByte(add((Word) offset).unbox(), val);
992 UNSAFE.putChar(add((Word) offset).unbox(), val);
998 UNSAFE.putShort(add((Word) offset).unbox(), val);
1004 UNSAFE.putInt(add((Word) offset).unbox(), val);
1010 UNSAFE.putLong(add((Word) offset).unbox(), val);
1016 UNSAFE.putFloat(add((Word) offset).unbox(), val);
1022 UNSAFE.putDouble(add((Word) offset).unbox(), val);
1044 return UNSAFE.compareAndSwapInt(this.toObject(), ((Word) offset).unbox(), expectedValue, newValue);
1050 return UNSAFE.compareAndSwapLong(this.toObject(), ((Word) offset).unbox(), expectedValue, newValue);
1060 return UNSAFE.compareAndSwapObject(this.toObject(), ((Word) offset).unbox(), expectedValue, newValue);
1066 UNSAFE.putAddress(add((Word) offset).unbox(), ((Word) val).unbox());
1225 protected long unbox() {