Content deleted Content added
No edit summary |
|||
Line 109:
<tr><td><tt>goto_w</tt><td><center>c8</center><td>goes to another instruction
<tr><td><br>
<tr><td><tt>i2b</tt><td><center>91</center><td>converts an int into a byte
<tr><td><tt>i2c</tt><td><center>92</center><td>converts an int into a character
<tr><td><tt>i2d</tt><td><center>87</center><td>converts an int into a double
<tr><td><tt>i2f</tt><td><center>86</center><td>converts an int into a float
<tr><td><tt>i2l</tt><td><center>85</center><td>converts an int into a long
<tr><td><tt>i2s</tt><td><center>93</center><td>converts an int into a short
<tr><td><tt>iadd</tt><td><center>60</center><td>adds two ints together
<tr><td><tt>iaload</tt><td><center>2e</center><td>loads an int from an array
<tr><td><tt>iand</tt><td><center>7e</center><td>performs a logical and on two integers
<tr><td><tt>iastore</tt><td><center>4f</center><td>stores an int into an array
<tr><td><tt>iconst_m1</tt><td><center>02</center><td>loads the int value -1 onto the stack
<tr><td><tt>iconst_0</tt><td><center>03</center><td>loads the int value 0 onto the stack
<tr><td><tt>iconst_1</tt><td><center>04</center><td>loads the int value 1 onto the stack
<tr><td><tt>iconst_2</tt><td><center>05</center><td>loads the int value 2 onto the stack
<tr><td><tt>iconst_3</tt><td><center>06</center><td>loads the int value 3 onto the stack
<tr><td><tt>iconst_4</tt><td><center>07</center><td>loads the int value 4 onto the stack
<tr><td><tt>iconst_5</tt><td><center>08</center><td>loads the int value 5 onto the stack
<tr><td><tt>idiv</tt><td><center>6c</center><td>divides two integers
<tr><td><tt>if_acmpeq</tt><td><center>a5</center><td>branch if reference comparision succeeds
<tr><td><tt>if_acmpne</tt><td><center>a6</center><td>branch if int comparison succeeds
<tr><td><tt>if_icmpeq</tt><td><center>9f</center><td>branch if int is value of comparator
<tr><td><tt>if_icmpne</tt><td><center>a0</center><td>branch if int is not value of comparator
<tr><td><tt>if_icmplt</tt><td><center>a1</center><td>branch if int is less than value of comparator
<tr><td><tt>if_icmpge</tt><td><center>a2</center><td>branch if int is greater than or equal to value of comparator
<tr><td><tt>if_icmpgt</tt><td><center>a3</center><td>branch if int is greater than value of comparator
<tr><td><tt>if_icmple</tt><td><center>a4</center><td>branch if int is less than or equal to value of comparator
<tr><td><tt>ifeq</tt><td><center>99</center><td>
<tr><td><tt>ifne</tt><td><center>9a</center><td>
|