QueueDrainHelper.smali
19.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
.class public final Lio/reactivex/internal/util/QueueDrainHelper;
.super Ljava/lang/Object;
.source "QueueDrainHelper.java"
# static fields
.field static final COMPLETED_MASK:J = -0x8000000000000000L
.field static final REQUESTED_MASK:J = 0x7fffffffffffffffL
# direct methods
.method private constructor <init>()V
.locals 2
.line 32
invoke-direct {p0}, Ljava/lang/Object;-><init>()V
.line 33
new-instance v0, Ljava/lang/IllegalStateException;
const-string v1, "No instances!"
invoke-direct {v0, v1}, Ljava/lang/IllegalStateException;-><init>(Ljava/lang/String;)V
throw v0
.end method
.method public static checkTerminated(ZZLio/reactivex/Observer;ZLio/reactivex/internal/fuseable/SimpleQueue;Lio/reactivex/disposables/Disposable;Lio/reactivex/internal/util/ObservableQueueDrain;)Z
.locals 2
.annotation system Ldalvik/annotation/Signature;
value = {
"<T:",
"Ljava/lang/Object;",
"U:",
"Ljava/lang/Object;",
">(ZZ",
"Lio/reactivex/Observer<",
"*>;Z",
"Lio/reactivex/internal/fuseable/SimpleQueue<",
"*>;",
"Lio/reactivex/disposables/Disposable;",
"Lio/reactivex/internal/util/ObservableQueueDrain<",
"TT;TU;>;)Z"
}
.end annotation
.line 162
invoke-interface {p6}, Lio/reactivex/internal/util/ObservableQueueDrain;->cancelled()Z
move-result v0
const/4 v1, 0x1
if-eqz v0, :cond_0
.line 163
invoke-interface {p4}, Lio/reactivex/internal/fuseable/SimpleQueue;->clear()V
.line 164
invoke-interface {p5}, Lio/reactivex/disposables/Disposable;->dispose()V
return v1
:cond_0
if-eqz p0, :cond_7
if-eqz p3, :cond_3
if-eqz p1, :cond_7
if-eqz p5, :cond_1
.line 172
invoke-interface {p5}, Lio/reactivex/disposables/Disposable;->dispose()V
.line 174
:cond_1
invoke-interface {p6}, Lio/reactivex/internal/util/ObservableQueueDrain;->error()Ljava/lang/Throwable;
move-result-object p0
if-eqz p0, :cond_2
.line 176
invoke-interface {p2, p0}, Lio/reactivex/Observer;->onError(Ljava/lang/Throwable;)V
goto :goto_0
.line 178
:cond_2
invoke-interface {p2}, Lio/reactivex/Observer;->onComplete()V
:goto_0
return v1
.line 183
:cond_3
invoke-interface {p6}, Lio/reactivex/internal/util/ObservableQueueDrain;->error()Ljava/lang/Throwable;
move-result-object p0
if-eqz p0, :cond_5
.line 185
invoke-interface {p4}, Lio/reactivex/internal/fuseable/SimpleQueue;->clear()V
if-eqz p5, :cond_4
.line 187
invoke-interface {p5}, Lio/reactivex/disposables/Disposable;->dispose()V
.line 189
:cond_4
invoke-interface {p2, p0}, Lio/reactivex/Observer;->onError(Ljava/lang/Throwable;)V
return v1
:cond_5
if-eqz p1, :cond_7
if-eqz p5, :cond_6
.line 194
invoke-interface {p5}, Lio/reactivex/disposables/Disposable;->dispose()V
.line 196
:cond_6
invoke-interface {p2}, Lio/reactivex/Observer;->onComplete()V
return v1
:cond_7
const/4 p0, 0x0
return p0
.end method
.method public static checkTerminated(ZZLorg/reactivestreams/Subscriber;ZLio/reactivex/internal/fuseable/SimpleQueue;Lio/reactivex/internal/util/QueueDrain;)Z
.locals 2
.annotation system Ldalvik/annotation/Signature;
value = {
"<T:",
"Ljava/lang/Object;",
"U:",
"Ljava/lang/Object;",
">(ZZ",
"Lorg/reactivestreams/Subscriber<",
"*>;Z",
"Lio/reactivex/internal/fuseable/SimpleQueue<",
"*>;",
"Lio/reactivex/internal/util/QueueDrain<",
"TT;TU;>;)Z"
}
.end annotation
.line 95
invoke-interface {p5}, Lio/reactivex/internal/util/QueueDrain;->cancelled()Z
move-result v0
const/4 v1, 0x1
if-eqz v0, :cond_0
.line 96
invoke-interface {p4}, Lio/reactivex/internal/fuseable/SimpleQueue;->clear()V
return v1
:cond_0
if-eqz p0, :cond_4
if-eqz p3, :cond_2
if-eqz p1, :cond_4
.line 103
invoke-interface {p5}, Lio/reactivex/internal/util/QueueDrain;->error()Ljava/lang/Throwable;
move-result-object p0
if-eqz p0, :cond_1
.line 105
invoke-interface {p2, p0}, Lorg/reactivestreams/Subscriber;->onError(Ljava/lang/Throwable;)V
goto :goto_0
.line 107
:cond_1
invoke-interface {p2}, Lorg/reactivestreams/Subscriber;->onComplete()V
:goto_0
return v1
.line 112
:cond_2
invoke-interface {p5}, Lio/reactivex/internal/util/QueueDrain;->error()Ljava/lang/Throwable;
move-result-object p0
if-eqz p0, :cond_3
.line 114
invoke-interface {p4}, Lio/reactivex/internal/fuseable/SimpleQueue;->clear()V
.line 115
invoke-interface {p2, p0}, Lorg/reactivestreams/Subscriber;->onError(Ljava/lang/Throwable;)V
return v1
:cond_3
if-eqz p1, :cond_4
.line 119
invoke-interface {p2}, Lorg/reactivestreams/Subscriber;->onComplete()V
return v1
:cond_4
const/4 p0, 0x0
return p0
.end method
.method public static createQueue(I)Lio/reactivex/internal/fuseable/SimpleQueue;
.locals 1
.annotation system Ldalvik/annotation/Signature;
value = {
"<T:",
"Ljava/lang/Object;",
">(I)",
"Lio/reactivex/internal/fuseable/SimpleQueue<",
"TT;>;"
}
.end annotation
if-gez p0, :cond_0
.line 215
new-instance v0, Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
neg-int p0, p0
invoke-direct {v0, p0}, Lio/reactivex/internal/queue/SpscLinkedArrayQueue;-><init>(I)V
return-object v0
.line 217
:cond_0
new-instance v0, Lio/reactivex/internal/queue/SpscArrayQueue;
invoke-direct {v0, p0}, Lio/reactivex/internal/queue/SpscArrayQueue;-><init>(I)V
return-object v0
.end method
.method public static drainLoop(Lio/reactivex/internal/fuseable/SimplePlainQueue;Lio/reactivex/Observer;ZLio/reactivex/disposables/Disposable;Lio/reactivex/internal/util/ObservableQueueDrain;)V
.locals 11
.annotation system Ldalvik/annotation/Signature;
value = {
"<T:",
"Ljava/lang/Object;",
"U:",
"Ljava/lang/Object;",
">(",
"Lio/reactivex/internal/fuseable/SimplePlainQueue<",
"TT;>;",
"Lio/reactivex/Observer<",
"-TU;>;Z",
"Lio/reactivex/disposables/Disposable;",
"Lio/reactivex/internal/util/ObservableQueueDrain<",
"TT;TU;>;)V"
}
.end annotation
const/4 v0, 0x1
move v1, v0
.line 133
:cond_0
invoke-interface {p4}, Lio/reactivex/internal/util/ObservableQueueDrain;->done()Z
move-result v2
invoke-interface {p0}, Lio/reactivex/internal/fuseable/SimplePlainQueue;->isEmpty()Z
move-result v3
move-object v4, p1
move v5, p2
move-object v6, p0
move-object v7, p3
move-object v8, p4
invoke-static/range {v2 .. v8}, Lio/reactivex/internal/util/QueueDrainHelper;->checkTerminated(ZZLio/reactivex/Observer;ZLio/reactivex/internal/fuseable/SimpleQueue;Lio/reactivex/disposables/Disposable;Lio/reactivex/internal/util/ObservableQueueDrain;)Z
move-result v2
if-eqz v2, :cond_1
return-void
.line 138
:cond_1
:goto_0
invoke-interface {p4}, Lio/reactivex/internal/util/ObservableQueueDrain;->done()Z
move-result v3
.line 139
invoke-interface {p0}, Lio/reactivex/internal/fuseable/SimplePlainQueue;->poll()Ljava/lang/Object;
move-result-object v2
if-nez v2, :cond_2
move v10, v0
goto :goto_1
:cond_2
const/4 v4, 0x0
move v10, v4
:goto_1
move v4, v10
move-object v5, p1
move v6, p2
move-object v7, p0
move-object v8, p3
move-object v9, p4
.line 142
invoke-static/range {v3 .. v9}, Lio/reactivex/internal/util/QueueDrainHelper;->checkTerminated(ZZLio/reactivex/Observer;ZLio/reactivex/internal/fuseable/SimpleQueue;Lio/reactivex/disposables/Disposable;Lio/reactivex/internal/util/ObservableQueueDrain;)Z
move-result v3
if-eqz v3, :cond_3
return-void
:cond_3
if-eqz v10, :cond_4
neg-int v1, v1
.line 153
invoke-interface {p4, v1}, Lio/reactivex/internal/util/ObservableQueueDrain;->leave(I)I
move-result v1
if-nez v1, :cond_0
return-void
.line 150
:cond_4
invoke-interface {p4, p1, v2}, Lio/reactivex/internal/util/ObservableQueueDrain;->accept(Lio/reactivex/Observer;Ljava/lang/Object;)V
goto :goto_0
.end method
.method public static drainMaxLoop(Lio/reactivex/internal/fuseable/SimplePlainQueue;Lorg/reactivestreams/Subscriber;ZLio/reactivex/disposables/Disposable;Lio/reactivex/internal/util/QueueDrain;)V
.locals 10
.annotation system Ldalvik/annotation/Signature;
value = {
"<T:",
"Ljava/lang/Object;",
"U:",
"Ljava/lang/Object;",
">(",
"Lio/reactivex/internal/fuseable/SimplePlainQueue<",
"TT;>;",
"Lorg/reactivestreams/Subscriber<",
"-TU;>;Z",
"Lio/reactivex/disposables/Disposable;",
"Lio/reactivex/internal/util/QueueDrain<",
"TT;TU;>;)V"
}
.end annotation
const/4 v0, 0x1
move v1, v0
.line 52
:cond_0
:goto_0
invoke-interface {p4}, Lio/reactivex/internal/util/QueueDrain;->done()Z
move-result v2
.line 54
invoke-interface {p0}, Lio/reactivex/internal/fuseable/SimplePlainQueue;->poll()Ljava/lang/Object;
move-result-object v8
if-nez v8, :cond_1
move v9, v0
goto :goto_1
:cond_1
const/4 v3, 0x0
move v9, v3
:goto_1
move v3, v9
move-object v4, p1
move v5, p2
move-object v6, p0
move-object v7, p4
.line 58
invoke-static/range {v2 .. v7}, Lio/reactivex/internal/util/QueueDrainHelper;->checkTerminated(ZZLorg/reactivestreams/Subscriber;ZLio/reactivex/internal/fuseable/SimpleQueue;Lio/reactivex/internal/util/QueueDrain;)Z
move-result v2
if-eqz v2, :cond_3
if-eqz p3, :cond_2
.line 60
invoke-interface {p3}, Lio/reactivex/disposables/Disposable;->dispose()V
:cond_2
return-void
:cond_3
if-eqz v9, :cond_4
neg-int v1, v1
.line 86
invoke-interface {p4, v1}, Lio/reactivex/internal/util/QueueDrain;->leave(I)I
move-result v1
if-nez v1, :cond_0
return-void
.line 69
:cond_4
invoke-interface {p4}, Lio/reactivex/internal/util/QueueDrain;->requested()J
move-result-wide v2
const-wide/16 v4, 0x0
cmp-long v4, v2, v4
if-eqz v4, :cond_5
.line 71
invoke-interface {p4, p1, v8}, Lio/reactivex/internal/util/QueueDrain;->accept(Lorg/reactivestreams/Subscriber;Ljava/lang/Object;)Z
move-result v4
if-eqz v4, :cond_0
const-wide v4, 0x7fffffffffffffffL
cmp-long v2, v2, v4
if-eqz v2, :cond_0
const-wide/16 v2, 0x1
.line 73
invoke-interface {p4, v2, v3}, Lio/reactivex/internal/util/QueueDrain;->produced(J)J
goto :goto_0
.line 77
:cond_5
invoke-interface {p0}, Lio/reactivex/internal/fuseable/SimplePlainQueue;->clear()V
if-eqz p3, :cond_6
.line 79
invoke-interface {p3}, Lio/reactivex/disposables/Disposable;->dispose()V
.line 81
:cond_6
new-instance p0, Lio/reactivex/exceptions/MissingBackpressureException;
const-string p2, "Could not emit value due to lack of requests."
invoke-direct {p0, p2}, Lio/reactivex/exceptions/MissingBackpressureException;-><init>(Ljava/lang/String;)V
invoke-interface {p1, p0}, Lorg/reactivestreams/Subscriber;->onError(Ljava/lang/Throwable;)V
return-void
.end method
.method static isCancelled(Lio/reactivex/functions/BooleanSupplier;)Z
.locals 0
.line 283
:try_start_0
invoke-interface {p0}, Lio/reactivex/functions/BooleanSupplier;->getAsBoolean()Z
move-result p0
:try_end_0
.catch Ljava/lang/Throwable; {:try_start_0 .. :try_end_0} :catch_0
return p0
:catch_0
move-exception p0
.line 285
invoke-static {p0}, Lio/reactivex/exceptions/Exceptions;->throwIfFatal(Ljava/lang/Throwable;)V
const/4 p0, 0x1
return p0
.end method
.method public static postComplete(Lorg/reactivestreams/Subscriber;Ljava/util/Queue;Ljava/util/concurrent/atomic/AtomicLong;Lio/reactivex/functions/BooleanSupplier;)V
.locals 14
.annotation system Ldalvik/annotation/Signature;
value = {
"<T:",
"Ljava/lang/Object;",
">(",
"Lorg/reactivestreams/Subscriber<",
"-TT;>;",
"Ljava/util/Queue<",
"TT;>;",
"Ljava/util/concurrent/atomic/AtomicLong;",
"Lio/reactivex/functions/BooleanSupplier;",
")V"
}
.end annotation
.line 400
invoke-interface {p1}, Ljava/util/Queue;->isEmpty()Z
move-result v0
if-eqz v0, :cond_0
.line 401
invoke-interface {p0}, Lorg/reactivestreams/Subscriber;->onComplete()V
return-void
.line 405
:cond_0
invoke-virtual/range {p2 .. p2}, Ljava/util/concurrent/atomic/AtomicLong;->get()J
move-result-wide v1
move-object v3, p0
move-object v4, p1
move-object/from16 v5, p2
move-object/from16 v6, p3
invoke-static/range {v1 .. v6}, Lio/reactivex/internal/util/QueueDrainHelper;->postCompleteDrain(JLorg/reactivestreams/Subscriber;Ljava/util/Queue;Ljava/util/concurrent/atomic/AtomicLong;Lio/reactivex/functions/BooleanSupplier;)Z
move-result v0
if-eqz v0, :cond_1
return-void
.line 410
:cond_1
invoke-virtual/range {p2 .. p2}, Ljava/util/concurrent/atomic/AtomicLong;->get()J
move-result-wide v0
const-wide/high16 v2, -0x8000000000000000L
and-long v4, v0, v2
const-wide/16 v6, 0x0
cmp-long v4, v4, v6
if-eqz v4, :cond_2
return-void
:cond_2
or-long v8, v0, v2
move-object/from16 v2, p2
.line 418
invoke-virtual {v2, v0, v1, v8, v9}, Ljava/util/concurrent/atomic/AtomicLong;->compareAndSet(JJ)Z
move-result v3
if-eqz v3, :cond_1
cmp-long v0, v0, v6
if-eqz v0, :cond_3
move-object v10, p0
move-object v11, p1
move-object/from16 v12, p2
move-object/from16 v13, p3
.line 421
invoke-static/range {v8 .. v13}, Lio/reactivex/internal/util/QueueDrainHelper;->postCompleteDrain(JLorg/reactivestreams/Subscriber;Ljava/util/Queue;Ljava/util/concurrent/atomic/AtomicLong;Lio/reactivex/functions/BooleanSupplier;)Z
:cond_3
return-void
.end method
.method static postCompleteDrain(JLorg/reactivestreams/Subscriber;Ljava/util/Queue;Ljava/util/concurrent/atomic/AtomicLong;Lio/reactivex/functions/BooleanSupplier;)Z
.locals 8
.annotation system Ldalvik/annotation/Signature;
value = {
"<T:",
"Ljava/lang/Object;",
">(J",
"Lorg/reactivestreams/Subscriber<",
"-TT;>;",
"Ljava/util/Queue<",
"TT;>;",
"Ljava/util/concurrent/atomic/AtomicLong;",
"Lio/reactivex/functions/BooleanSupplier;",
")Z"
}
.end annotation
const-wide/high16 v0, -0x8000000000000000L
and-long v2, p0, v0
:cond_0
:goto_0
cmp-long v4, v2, p0
const/4 v5, 0x1
if-eqz v4, :cond_3
.line 331
invoke-static {p5}, Lio/reactivex/internal/util/QueueDrainHelper;->isCancelled(Lio/reactivex/functions/BooleanSupplier;)Z
move-result v4
if-eqz v4, :cond_1
return v5
.line 335
:cond_1
invoke-interface {p3}, Ljava/util/Queue;->poll()Ljava/lang/Object;
move-result-object v4
if-nez v4, :cond_2
.line 338
invoke-interface {p2}, Lorg/reactivestreams/Subscriber;->onComplete()V
return v5
.line 342
:cond_2
invoke-interface {p2, v4}, Lorg/reactivestreams/Subscriber;->onNext(Ljava/lang/Object;)V
const-wide/16 v4, 0x1
add-long/2addr v2, v4
goto :goto_0
.line 346
:cond_3
invoke-static {p5}, Lio/reactivex/internal/util/QueueDrainHelper;->isCancelled(Lio/reactivex/functions/BooleanSupplier;)Z
move-result p0
if-eqz p0, :cond_4
return v5
.line 350
:cond_4
invoke-interface {p3}, Ljava/util/Queue;->isEmpty()Z
move-result p0
if-eqz p0, :cond_5
.line 351
invoke-interface {p2}, Lorg/reactivestreams/Subscriber;->onComplete()V
return v5
.line 355
:cond_5
invoke-virtual {p4}, Ljava/util/concurrent/atomic/AtomicLong;->get()J
move-result-wide p0
cmp-long v4, p0, v2
if-nez v4, :cond_0
const-wide p0, 0x7fffffffffffffffL
and-long/2addr v2, p0
neg-long v2, v2
.line 359
invoke-virtual {p4, v2, v3}, Ljava/util/concurrent/atomic/AtomicLong;->addAndGet(J)J
move-result-wide v2
and-long/2addr p0, v2
const-wide/16 v4, 0x0
cmp-long p0, p0, v4
if-nez p0, :cond_6
const/4 p0, 0x0
return p0
:cond_6
and-long p0, v2, v0
move-wide v6, p0
move-wide p0, v2
move-wide v2, v6
goto :goto_0
.end method
.method public static postCompleteRequest(JLorg/reactivestreams/Subscriber;Ljava/util/Queue;Ljava/util/concurrent/atomic/AtomicLong;Lio/reactivex/functions/BooleanSupplier;)Z
.locals 14
.annotation system Ldalvik/annotation/Signature;
value = {
"<T:",
"Ljava/lang/Object;",
">(J",
"Lorg/reactivestreams/Subscriber<",
"-TT;>;",
"Ljava/util/Queue<",
"TT;>;",
"Ljava/util/concurrent/atomic/AtomicLong;",
"Lio/reactivex/functions/BooleanSupplier;",
")Z"
}
.end annotation
move-wide v0, p0
.line 258
:cond_0
invoke-virtual/range {p4 .. p4}, Ljava/util/concurrent/atomic/AtomicLong;->get()J
move-result-wide v2
const-wide v4, 0x7fffffffffffffffL
and-long/2addr v4, v2
const-wide/high16 v6, -0x8000000000000000L
and-long v8, v2, v6
.line 264
invoke-static {v4, v5, p0, p1}, Lio/reactivex/internal/util/BackpressureHelper;->addCap(JJ)J
move-result-wide v4
or-long/2addr v4, v8
move-object/from16 v12, p4
.line 266
invoke-virtual {v12, v2, v3, v4, v5}, Ljava/util/concurrent/atomic/AtomicLong;->compareAndSet(JJ)Z
move-result v4
if-eqz v4, :cond_0
cmp-long v2, v2, v6
if-nez v2, :cond_1
or-long v8, v0, v6
move-object/from16 v10, p2
move-object/from16 v11, p3
move-object/from16 v12, p4
move-object/from16 v13, p5
.line 270
invoke-static/range {v8 .. v13}, Lio/reactivex/internal/util/QueueDrainHelper;->postCompleteDrain(JLorg/reactivestreams/Subscriber;Ljava/util/Queue;Ljava/util/concurrent/atomic/AtomicLong;Lio/reactivex/functions/BooleanSupplier;)Z
const/4 v0, 0x1
return v0
:cond_1
const/4 v0, 0x0
return v0
.end method
.method public static request(Lorg/reactivestreams/Subscription;I)V
.locals 2
if-gez p1, :cond_0
const-wide v0, 0x7fffffffffffffffL
goto :goto_0
:cond_0
int-to-long v0, p1
.line 227
:goto_0
invoke-interface {p0, v0, v1}, Lorg/reactivestreams/Subscription;->request(J)V
return-void
.end method