Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit fd94bba

Browse filesBrowse files
author
hborders
committed
Removed UnsignedComparisons because they are only used in the c1x compiler and are native methods.
1 parent c83af8f commit fd94bba
Copy full SHA for fd94bba

1 file changed

-22Lines changed: 0 additions & 22 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎JavaInJava/src/com/sun/cri/bytecode/Bytecodes.java‎

Copy file name to clipboardExpand all lines: JavaInJava/src/com/sun/cri/bytecode/Bytecodes.java
-22Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -666,28 +666,6 @@ public static class JniOp {
666666
*/
667667
public static final int J2N = 3;
668668
}
669-
670-
/**
671-
* Constants and {@link INTRINSIC} definitions for unsigned comparisons.
672-
*/
673-
public static class UnsignedComparisons {
674-
public static final int ABOVE_THAN = 1;
675-
public static final int ABOVE_EQUAL = 2;
676-
public static final int BELOW_THAN = 3;
677-
public static final int BELOW_EQUAL = 4;
678-
679-
@INTRINSIC(UCMP | (ABOVE_EQUAL << 8))
680-
public static native boolean aboveOrEqual(int x, int y);
681-
682-
@INTRINSIC(UCMP | (BELOW_EQUAL << 8))
683-
public static native boolean belowOrEqual(int x, int y);
684-
685-
@INTRINSIC(UCMP | (ABOVE_THAN << 8))
686-
public static native boolean aboveThan(int x, int y);
687-
688-
@INTRINSIC(UCMP | (BELOW_THAN << 8))
689-
public static native boolean belowThan(int x, int y);
690-
}
691669

692670
/**
693671
* Constants for memory barriers.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.