@@ -1033,7 +1033,7 @@ default CodeBuilder aastore() {
1033
1033
* Generates an instruction to load a {@link TypeKind#REFERENCE reference}
1034
1034
* from a local variable.
1035
1035
* <p>
1036
- * This may also generate {@link Opcode#ALOAD_0 aload_<N> } and {@link
1036
+ * This may also generate {@link Opcode#ALOAD_0 aload_<N> } and {@link
1037
1037
* Opcode#ALOAD_W wide aload} instructions.
1038
1038
*
1039
1039
* @param slot the local variable slot
@@ -1103,8 +1103,8 @@ default CodeBuilder arraylength() {
1103
1103
* into a local variable. Such an instruction can also store a {@link
1104
1104
* TypeKind##returnAddress returnAddress}.
1105
1105
* <p>
1106
- * This may also generate {@link Opcode#ASTORE_0 astore_<N> } and {@link
1107
- * Opcode#ASTORE_W wide astore} instructions.
1106
+ * This may also generate {@link Opcode#ASTORE_0 astore_<N> } and
1107
+ * {@link Opcode#ASTORE_W wide astore} instructions.
1108
1108
*
1109
1109
* @param slot the local variable slot
1110
1110
* @return this builder
@@ -1359,7 +1359,7 @@ default CodeBuilder ddiv() {
1359
1359
* Generates an instruction to load a {@link TypeKind#DOUBLE double} from a
1360
1360
* local variable.
1361
1361
* <p>
1362
- * This may also generate {@link Opcode#DLOAD_0 dload_<N> } and {@link
1362
+ * This may also generate {@link Opcode#DLOAD_0 dload_<N> } and {@link
1363
1363
* Opcode#DLOAD_W wide dload} instructions.
1364
1364
*
1365
1365
* @param slot the local variable slot
@@ -1424,8 +1424,8 @@ default CodeBuilder dreturn() {
1424
1424
* Generates an instruction to store a {@link TypeKind#DOUBLE double} into a
1425
1425
* local variable.
1426
1426
* <p>
1427
- * This may also generate {@link Opcode#DSTORE_0 dstore_<N> } and {@link
1428
- * Opcode#DSTORE_W wide dstore} instructions.
1427
+ * This may also generate {@link Opcode#DSTORE_0 dstore_<N> } and
1428
+ * {@link Opcode#DSTORE_W wide dstore} instructions.
1429
1429
*
1430
1430
* @param slot the local variable slot
1431
1431
* @return this builder
@@ -1671,7 +1671,7 @@ default CodeBuilder fdiv() {
1671
1671
* Generates an instruction to load a {@link TypeKind#FLOAT float} from a
1672
1672
* local variable.
1673
1673
* <p>
1674
- * This may also generate {@link Opcode#FLOAD_0 fload_<N> } and {@link
1674
+ * This may also generate {@link Opcode#FLOAD_0 fload_<N> } and {@link
1675
1675
* Opcode#FLOAD_W wide fload} instructions.
1676
1676
*
1677
1677
* @param slot the local variable slot
@@ -1736,8 +1736,8 @@ default CodeBuilder freturn() {
1736
1736
* Generates an instruction to store a {@link TypeKind#FLOAT float} into a
1737
1737
* local variable.
1738
1738
* <p>
1739
- * This may also generate {@link Opcode#FSTORE_0 fstore_<N> } and {@link
1740
- * Opcode#FSTORE_W wide fstore} instructions.
1739
+ * This may also generate {@link Opcode#FSTORE_0 fstore_<N> } and
1740
+ * {@link Opcode#FSTORE_W wide fstore} instructions.
1741
1741
*
1742
1742
* @param slot the local variable slot
1743
1743
* @return this builder
@@ -2173,6 +2173,7 @@ default CodeBuilder if_icmpgt(Label target) {
2173
2173
* target} cannot be encoded as a BCI offset in {@code [-32768, 32767]}.
2174
2174
*
2175
2175
* @param target the branch target
2176
+ * @return this builder
2176
2177
* @see Opcode#IF_ICMPLE
2177
2178
* @see #branch(Opcode, Label)
2178
2179
* @see BranchInstruction
@@ -2190,6 +2191,7 @@ default CodeBuilder if_icmple(Label target) {
2190
2191
* target} cannot be encoded as a BCI offset in {@code [-32768, 32767]}.
2191
2192
*
2192
2193
* @param target the branch target
2194
+ * @return this builder
2193
2195
* @see Opcode#IF_ICMPLT
2194
2196
* @see #branch(Opcode, Label)
2195
2197
* @see BranchInstruction
@@ -2207,6 +2209,7 @@ default CodeBuilder if_icmplt(Label target) {
2207
2209
* target} cannot be encoded as a BCI offset in {@code [-32768, 32767]}.
2208
2210
*
2209
2211
* @param target the branch target
2212
+ * @return this builder
2210
2213
* @see Opcode#IF_ICMPNE
2211
2214
* @see #branch(Opcode, Label)
2212
2215
* @see BranchInstruction
@@ -2224,6 +2227,7 @@ default CodeBuilder if_icmpne(Label target) {
2224
2227
* target} cannot be encoded as a BCI offset in {@code [-32768, 32767]}.
2225
2228
*
2226
2229
* @param target the branch target
2230
+ * @return this builder
2227
2231
* @see Opcode#IFNONNULL
2228
2232
* @see #branch(Opcode, Label)
2229
2233
* @see BranchInstruction
@@ -2241,6 +2245,7 @@ default CodeBuilder ifnonnull(Label target) {
2241
2245
* target} cannot be encoded as a BCI offset in {@code [-32768, 32767]}.
2242
2246
*
2243
2247
* @param target the branch target
2248
+ * @return this builder
2244
2249
* @see Opcode#IFNULL
2245
2250
* @see #branch(Opcode, Label)
2246
2251
* @see BranchInstruction
@@ -2258,6 +2263,7 @@ default CodeBuilder ifnull(Label target) {
2258
2263
* target} cannot be encoded as a BCI offset in {@code [-32768, 32767]}.
2259
2264
*
2260
2265
* @param target the branch target
2266
+ * @return this builder
2261
2267
* @see Opcode#IFEQ
2262
2268
* @see #branch(Opcode, Label)
2263
2269
* @see BranchInstruction
@@ -2275,6 +2281,7 @@ default CodeBuilder ifeq(Label target) {
2275
2281
* target} cannot be encoded as a BCI offset in {@code [-32768, 32767]}.
2276
2282
*
2277
2283
* @param target the branch target
2284
+ * @return this builder
2278
2285
* @see Opcode#IFGE
2279
2286
* @see #branch(Opcode, Label)
2280
2287
* @see BranchInstruction
@@ -2292,6 +2299,7 @@ default CodeBuilder ifge(Label target) {
2292
2299
* target} cannot be encoded as a BCI offset in {@code [-32768, 32767]}.
2293
2300
*
2294
2301
* @param target the branch target
2302
+ * @return this builder
2295
2303
* @see Opcode#IFGT
2296
2304
* @see #branch(Opcode, Label)
2297
2305
* @see BranchInstruction
@@ -2309,6 +2317,7 @@ default CodeBuilder ifgt(Label target) {
2309
2317
* target} cannot be encoded as a BCI offset in {@code [-32768, 32767]}.
2310
2318
*
2311
2319
* @param target the branch target
2320
+ * @return this builder
2312
2321
* @see Opcode#IFLE
2313
2322
* @see #branch(Opcode, Label)
2314
2323
* @see BranchInstruction
@@ -2326,6 +2335,7 @@ default CodeBuilder ifle(Label target) {
2326
2335
* target} cannot be encoded as a BCI offset in {@code [-32768, 32767]}.
2327
2336
*
2328
2337
* @param target the branch target
2338
+ * @return this builder
2329
2339
* @see Opcode#IFLT
2330
2340
* @see #branch(Opcode, Label)
2331
2341
* @see BranchInstruction
@@ -2343,6 +2353,7 @@ default CodeBuilder iflt(Label target) {
2343
2353
* target} cannot be encoded as a BCI offset in {@code [-32768, 32767]}.
2344
2354
*
2345
2355
* @param target the branch target
2356
+ * @return this builder
2346
2357
* @see Opcode#IFNE
2347
2358
* @see #branch(Opcode, Label)
2348
2359
* @see BranchInstruction
@@ -2374,8 +2385,8 @@ default CodeBuilder iinc(int slot, int val) {
2374
2385
* Generates an instruction to load an {@link TypeKind#INT int} from a local
2375
2386
* variable.
2376
2387
* <p>
2377
- * This may also generate {@link Opcode#ILOAD_0 iload_<N> } and
2378
- * {@link Opcode#ILOAD_W wide iload} instructions.
2388
+ * This may also generate {@link Opcode#ILOAD_0 iload_<N> } and {@link
2389
+ * Opcode#ILOAD_W wide iload} instructions.
2379
2390
*
2380
2391
* @param slot the local variable slot
2381
2392
* @return this builder
@@ -2727,7 +2738,7 @@ default CodeBuilder ishr() {
2727
2738
* Generates an instruction to store an {@link TypeKind#INT int} into a
2728
2739
* local variable.
2729
2740
* <p>
2730
- * This may also generate {@link Opcode#ISTORE_0 istore_<N> } and
2741
+ * This may also generate {@link Opcode#ISTORE_0 istore_<N> } and
2731
2742
* {@link Opcode#ISTORE_W wide istore} instructions.
2732
2743
*
2733
2744
* @param slot the local variable slot
@@ -2965,8 +2976,8 @@ default CodeBuilder ldiv() {
2965
2976
* Generates an instruction to load a {@link TypeKind#LONG long} from a
2966
2977
* local variable.
2967
2978
* <p>
2968
- * This may also generate {@link Opcode#LLOAD_0 lload_<N> } and
2969
- * {@link Opcode#LLOAD_W wide lload} instructions.
2979
+ * This may also generate {@link Opcode#LLOAD_0 lload_<N> } and {@link
2980
+ * Opcode#LLOAD_W wide lload} instructions.
2970
2981
*
2971
2982
* @param slot the local variable slot
2972
2983
* @return this builder
@@ -3067,8 +3078,8 @@ default CodeBuilder lshr() {
3067
3078
* Generates an instruction to store a {@link TypeKind#LONG long} into a
3068
3079
* local variable.
3069
3080
* <p>
3070
- * This may also generate {@link Opcode#LSTORE_0 lstore_<N> } and {@link
3071
- * Opcode#LSTORE_W wide lstore} instructions.
3081
+ * This may also generate {@link Opcode#LSTORE_0 lstore_<N> } and
3082
+ * {@link Opcode#LSTORE_W wide lstore} instructions.
3072
3083
*
3073
3084
* @param slot the local variable slot
3074
3085
* @return this builder
0 commit comments