-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpasm.php
4966 lines (4307 loc) · 129 KB
/
pasm.php
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
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php declare (strict_types = 1);
namespace pasm;
class PASM
{
public static $ZF = 0; // Comparison Flag for Exchanges
public static $OF = 0; // Overflow Flag
public static $CF = 0; // Carry Flag
public static $counter = 0; // Needed for loops
public static $chain = array(); // Chain of events in line use PASM::$end() to stop and start again
public static $args = array(); // Array to hold args for set variables
public static $stack = array(); // Stack
public static $array = array(); // array for stack formations
public static $sp; // Stack pointer
public static $ST0; // LAST STACK ELEMENT
public static $pdb = 1; // debug flag (DEFAULT FALSE)
// The stack is referenced under objects
// The pairing, is to be justified, with
// a simulacrum between the object and the
// variable. Inside and out. This is an image.
// You may make apps out of it. You may make
// such PHP wrappers as to create formidable
// language enhancements and have a fast,
// easy to see connection to low level speed
public static $tp; // holder for current bit
public static $ecx; // RHS, DECR, INC, COMPARATOR
public static $adx; // Registers
public static $bdx; //
public static $cdx; //
public static $ddx; //
public static $edx; //
public static $bitcmp; // TRUE or FALSE comparator bit
public static $ah; // LHS, COMPARATOR
public static $ldp; // The amount of commands to go back in loops and jmps
public static $rdx; // Holds answers to addition, and other math
public static $qword; // String Register
public static $RC; // Round to this decimal
public static $wait; // wait variable
public static $strp; // string pointer
public static $cl; // BOOL ANSWER FOR JMP
public static $string; // STRING register
public static $lop; // Place in $chain
public static $err; // Error No.
public static $err_str; // Error String
public static $jbl; // deprecated
public static $buffer; // socket buffer
public static $output; // output for run_pop and similar
public static $cnt; // Dedicated to counting for external arrays
public static $FUNC0; // Top of function stack
public static $fopen; // File Open Stack
public static $version; // Version of current PASM file
public static $checksum; // Current Checksum of file
public static function runTest()
{ // Useful for some testing
$method_del = explode("::", __METHOD__);
PASM::$chain[] = $method_del[1];// Will be easier to just play around
// However this verifies all methods work
$method_list_class_object = new static;
foreach (get_class_methods($method_list_class_object) as $method) {
if ($method == "runTest") {
continue;
}
$r = new \ReflectionMethod("PASM", $method);
$params = $r->getParameters();
$results = [];
$p = [];
foreach ($params as $param) {
//$param is an instance of ReflectionParameter
$p[] = $param->getName();
$results = $p;
//echo $param->isOptional();
}
$x = new PASM();
$y = "$" . implode(',$', $results);
try {
PASM::$ecx = 3;
PASM::$ah = 3;
PASM::$method();
} catch (\Exception $e) {
PASM::$ecx = "2";
PASM::$ah = "3";
PASM::$method();
} finally {
PASM::$ecx = [2];
PASM::$ah = [3];
PASM::$method();
}
}
}
public static function verified()
{
PASM::$version = "v2.0";
PASM::$checksum = "3e91da59a60ebbb625ba6d2a27704bccd81429b4a978b4e18815f555440117ac";
return new static;
}
/**
* @method get retrieves the given string as a variable
*
*/
public static function get(string $var = "ah")
{
yield PASM::${$var};
return new static;
}
/**
* @method var_p prints the given string as a variable
*
*/
public static function var_p(string $var = "ah")
{
$method_del = explode("::", __METHOD__);
{
PASM::$chain[PASM::$counter] = $method_del[1];
PASM::$args[PASM::$counter] = func_get_args() || null;
PASM::$counter++;
}
echo PASM::${$var};
return new static;
}
/**
* @method char_adjust_addition changes $rdx to 8 bits
*
*/
public static function char_adjust_addition()
{
PASM::setup_chain(__METHOD__);
PASM::$rdx = chr((PASM::$ecx + PASM::$ah)%256);
PASM::debug_loop_count();
return new static;
}
/**
* @method carry_add sets the $cl flag for carrying over on addition commands
*
*/
public static function carry_add()
{
PASM::setup_chain(__METHOD__);
PASM::$cl = PASM::$ah;
PASM::debug_loop_count();
return new static;
}
/**
* @method add uses addition to form $rdx from $ecx and $ah
*
*/
public static function add()
{
PASM::setup_chain(__METHOD__);
PASM::$rdx = PASM::$ecx + PASM::$ah;
PASM::debug_loop_count();
return new static;
}
/**
* @method and changes the $cl flag to the $ecx & $ah answer
*
*/
public static function and()
{
PASM::setup_chain(__METHOD__);
PASM::$cl = PASM::$ecx & PASM::$ah;
PASM::debug_loop_count();
return new static;
}
/**
* @method chmod uses $string as the first parameter
* and $ah as the second param for PHP's native chmod()
*
*/
public static function chmod()
{
PASM::setup_chain(__METHOD__);
chmod(PASM::$string, PASM::$ah);
PASM::debug_loop_count();
return new static;
}
/**
* @method bit_scan_fwd if $tp is null at current() it breaks up $qword into
* portions according to '1's from a binary string
* derived from the $qword and resets the $tp variable to the beginning.
*
* otherwise it will goto the next $tp in the array
*
*/
public static function bit_scan_fwd()
{
PASM::setup_chain(__METHOD__);
if (PASM::$tp == null) {
PASM::$tp = PASM::$qword; // qword is used to look through a string via bit scanning
PASM::$tp = decbin(PASM::$tp);
PASM::$tp = str_split(PASM::$tp, 1);
reset(PASM::$tp);
return new static;
}
next(PASM::$tp);
PASM::debug_loop_count();
return new static;
}
/**
* @method bit_scan_rvr if $tp is null at current() it breaks up $qword into
* portions according to '1's from a binary string
* derived from the $qword and resets the $tp variable to the end.
*
* otherwise it will goto the previous $tp in the array
*
*/
public static function bit_scan_rvr() // reverse of above
{
PASM::setup_chain(__METHOD__);
if (PASM::$tp == null) {
PASM::$tp = PASM::$qword;
PASM::$tp = decbin(PASM::$tp);
PASM::$tp = str_split(PASM::$tp, 1);
end(PASM::$tp);
return new static;
}
prev(PASM::$tp);
PASM::debug_loop_count();
return new static;
}
/**
* @method byte_rvr will reverse the given $ecx in binary
* then set it as $rdx
*
*/
public static function byte_rvr() // reverse byte
{
PASM::setup_chain(__METHOD__);
$temp = decbin(PASM::$ecx);
PASM::$rdx = strrev($temp);
PASM::$rdx = bindec(PASM::$rdx);
PASM::debug_loop_count();
return new static;
}
/**
* @method bit_test sets $bitcmp to the $ah'th bit
* just on or off
*
*/
public static function bit_test() // bit is filled in pointer
{
PASM::setup_chain(__METHOD__);
PASM::$bitcmp = PASM::$tp[PASM::$ah];
// v What is this for? v
// return new static;
}
/**
* @method bit_test_comp search through arbitrary $ecx for the $ahth bit
* and set $CF to it's returned value
*
* if given anything returned as true for a parameter, it will also set the $bitcmp flag
*
*/
public static function bit_test_comp(bool $bitc = false) // look through byte and see the $ah'th bit
{
PASM::setup_chain(__METHOD__);
$bo = decbin(PASM::$ecx);
$bo = $bo[PASM::$ah];
PASM::$CF = (bool)($bo);
PASM::$bitcmp = ($bitc) ? PASM::$CF : false;
PASM::debug_loop_count();
return new static;
}
/**
* bit_test_comp search through arbitrary $ecx for the $ahth bit
* and set $CF to it's returned value reset $ecx to 0
*
*/
public static function bit_test_reset() // Clear bit (ah) test flag
{
PASM::setup_chain(__METHOD__);
$bo = decbin(PASM::$ecx);
$bo = $bo[PASM::$ah];
PASM::$CF = (bool)($bo);
PASM::$ecx = 0;
PASM::debug_loop_count();
return new static;
}
/**
* @method bit_test_comp search through arbitrary $ecx for the $ahth bit
* and set $CF to it's returned value and ecx[$ah] to 1
*
*/
public static function bit_test_set() // Test bit
{
PASM::setup_chain(__METHOD__);
$bo = decbin(PASM::$ecx);
$bo = $bo[PASM::$ah];
PASM::$CF = (bool)($bo);
PASM::$ecx[PASM::$ah] = 1;
PASM::debug_loop_count();
return new static;
}
/**
* @method call is used to call a function from the stack
*
*/
public static function call() // call top of stack function
{
PASM::setup_chain(__METHOD__);
if (is_callable(PASM::$FUNC0)) {
return call_user_func_array(PASM::$FUNC0(), PASM::$string);
}
return new static;
}
/**
* @method cmp_mov_a compares the top of the stack '>' to $ah for true
* changes $ecx to $ah if $ah is
*
*/
public static function cmp_mov_a() // check ah against top of stack
{
PASM::setup_chain(__METHOD__);
PASM::$ecx = (PASM::$ah > PASM::$ST0) ? PASM::$ah : PASM::$ecx;
PASM::debug_loop_count();
return new static;
}
/**
* @method cmp_mov_ae compares the top of the stack '>=' to $ah for true
* changes $ecx to $ah if $ah is
*
*/
public static function cmp_mov_ae() // same (documenting will continue below)
{
PASM::setup_chain(__METHOD__);
PASM::$ecx = (PASM::$ah >= PASM::$ST0) ? PASM::$ah : PASM::$ecx;
PASM::debug_loop_count();
return new static;
}
/**
* @method cmp_mov_b compares the top of the stack '<' to $ah for true
* changes $ecx to $ah if $ah is
*
*/
public static function cmp_mov_b()
{
PASM::setup_chain(__METHOD__);
PASM::$ecx = (PASM::$ah < PASM::$ST0) ? PASM::$ah : PASM::$ecx;
PASM::debug_loop_count();
return new static;
}
/**
* @method cmp_mov_be compares the top of the stack '<=' to $ah for true
* changes $ecx to $ah if $ah is
*
*/
public static function cmp_mov_be()
{
PASM::setup_chain(__METHOD__);
PASM::$ecx = (PASM::$ah <= PASM::$ST0) ? PASM::$ah : PASM::$ecx;
PASM::debug_loop_count();
return new static;
}
/**
* @method cmp_mov_e compares the top of the stack '==' to $ah for true
* changes $ecx to $ah if $ah is
*
*/
public static function cmp_mov_e()
{
PASM::setup_chain(__METHOD__);
PASM::$ecx = (PASM::$ah == PASM::$ST0) ? PASM::$ah : PASM::$ecx;
PASM::debug_loop_count();
return new static;
}
/**
* @method cmp_mov_nz compares the top of the stack '==' to $ah for true
* and $CF needs to be equal to that annswer
* changes $ecx to $ah if it is
*
*/
public static function cmp_mov_nz()
{
PASM::setup_chain(__METHOD__);
PASM::$ecx = (PASM::$CF == 1 & PASM::$ah == PASM::$ST0) ? PASM::$ah : PASM::$ecx;
PASM::debug_loop_count();
return new static;
}
/**
* @method cmp_mov_pe compares the top of the stack '<' to $ah for true
* changes $ecx to $ah if $ah is higher
*
*/
public static function cmp_mov_pe()
{
PASM::setup_chain(__METHOD__);
PASM::$ecx = (PASM::$CF == 0) ? PASM::$ah : PASM::$ecx;
PASM::debug_loop_count();
return new static;
}
/**
* @method cmp_mov_po compares 1 '==' to $CF for true
* changes $ecx to $ah if $ah is
*
*/
public static function cmp_mov_po()
{
PASM::setup_chain(__METHOD__);
PASM::$ecx = (PASM::$CF == 1) ? PASM::$ah : PASM::$ecx;
PASM::debug_loop_count();
return new static;
}
/**
* @method cmp_mov_s compares 0 '<' to $ah for true
* changes $ecx to $ah if $ah is
*
*/
public static function cmp_mov_s()
{
PASM::setup_chain(__METHOD__);
PASM::$ecx = (PASM::$ah < 0) ? PASM::$ah : PASM::$ecx;
PASM::debug_loop_count();
return new static;
}
/**
* @method cmp_mov_a compares 0 '>' to $ah for true
* changes $ecx to $ah if $ah is
*
*/
public static function cmp_mov_z()
{
PASM::setup_chain(__METHOD__);
PASM::$ecx = (PASM::$ah > 0) ? PASM::$ah : PASM::$ecx;
PASM::debug_loop_count();
return new static;
}
/**
* @method mov copies $ah to $ecx
*
*/
public static function mov() // move ah to ecx. Same as mov_ah()
{
PASM::setup_chain(__METHOD__);
PASM::$ecx = PASM::$ah;
PASM::debug_loop_count();
return new static;
}
/**
* @method movabs pushes the current $ecx to $stack['movabs']
* then moves the ST0 pointer to the end of the stack
*
*/
public static function movabs() // copy $ecx to stack
{
PASM::setup_chain(__METHOD__);
array_push(PASM::$stack, array("movabs" => PASM::$ecx));
PASM::$ST0 = PASM::$stack[array_key_last(PASM::$stack)];
PASM::debug_loop_count();
return new static;
}
/**
* @method clear_carry sets CF to 0
*
*/
public static function clear_carry() // clear $CF
{
PASM::setup_chain(__METHOD__);
PASM::$CF = 0;
PASM::debug_loop_count();
return new static;
}
/**
* @method clear_registers clears all native PASM registers and $CF bit to 0
*
*/
public static function clear_registers() // make all registers 0
{
PASM::setup_chain(__METHOD__);
PASM::$CF = PASM::$adx = PASM::$bdx = PASM::$cdx = PASM::$ddx = PASM::$edx = PASM::$rdx = 0;
PASM::debug_loop_count();
return new static;
}
/**
* @method comp_carry negates the current status of $CF
*
*/
public static function comp_carry() // negate $CF
{
PASM::setup_chain(__METHOD__);
PASM::$CF = !(PASM::$CF);
PASM::debug_loop_count();
return new static;
}
/**
* @method cmp_e compares '==' $ecx to $ah and sets the $cl field accordingly
*
*/
public static function cmp_e() // bool of equality comparison (documentation continues below)
{
PASM::setup_chain(__METHOD__);
PASM::$cl = PASM::$ecx == PASM::$ah;
PASM::debug_loop_count();
return new static;
}
/**
* @method cmp_same compares '==' $ecx to $ah and sets the $cl field accordingly
*
*/
public static function cmp_same()
{
PASM::setup_chain(__METHOD__);
PASM::$cl = PASM::$ecx == PASM::$ah;
PASM::debug_loop_count();
return new static;
}
/**
* @method cmp_xchg compares '==' $ecx to $ah and sets the $ZF field accordingly
* as well, it switches $rdx and $ah
*
*/
public static function cmp_xchg()
{
PASM::setup_chain(__METHOD__);
PASM::$ZF = PASM::$ecx == PASM::$ah;
list(PASM::$rdx, PASM::$ah) = array(PASM::$ah, PASM::$rdx);
return new static;
}
/**
* @method xchg switches $rdx and $ah
*
*/
public static function xchg(&$x, &$y)
{
PASM::setup_chain(__METHOD__);
list(PASM::$rdx, PASM::$ah) = array(PASM::$ah, PASM::$rdx);
return new static;
}
/**
* @method decr decrements any variable via string (ie 'rdx')
* one integer value
*
*/
public static function decr(string $var = "ecx") // decrement ecx
{
PASM::setup_chain(__METHOD__);
PASM::${$var}--;
PASM::debug_loop_count();
return new static;
}
/**
* @method divide $ecx by $ah
*
*/
public static function divide() // $ecx/$ah
{
PASM::setup_chain(__METHOD__);
if (is_numeric(PASM::$ecx) && is_numeric(PASM::$ah)) {
PASM::$rdx = round(PASM::$ecx/PASM::$ah);
}
PASM::debug_loop_count();
return new static;
}
/**
* @method absf sets $rdx to the absolute value of ah
*
*/
public static function absf() // absolute value of $ah
{
PASM::setup_chain(__METHOD__);
PASM::$rdx = abs(PASM::$ah);
PASM::debug_loop_count();
return new static;
}
/**
* @method addf uses addition of $ecx and $ah to set $rdx
*
*/
public static function addf() // add $ecx and $ah
{
PASM::setup_chain(__METHOD__);
PASM::$rdx = PASM::$ecx + PASM::$ah;
PASM::debug_loop_count();
return new static;
}
/**
* @method addc uses addition of $ecx and $ah and current $rdx to set $rdx
*
*/
public static function addc() // add $ecx and $ah
{
PASM::setup_chain(__METHOD__);
PASM::$rdx += PASM::$ecx + PASM::$ah;
PASM::debug_loop_count();
return new static;
}
/**
* @method round uses the PHP native function round() with $ST0
* and the number in $RC for the number of decimal places
* to set the $stack
*
*/
public static function round() // round top stack to RC decimal
{
$method_del = explode("::", __METHOD__);
PASM::$chain[] = $method_del[1];
PASM::$ST0 = &PASM::$stack[array_key_last(PASM::$stack)];
PASM::$ST0 = round(PASM::$ST0, PASM::$RC);
PASM::debug_loop_count();
return new static;
}
/**
* @method round_pop uses the PHP native function round() with $ST0
* and the number in $RC for the number of decimal places
* to set the $ah register and pops the stack once
* it then sets $ST0 to the last element in the $stack
*
*/
public static function round_pop() // same but pop
{
$method_del = explode("::", __METHOD__);
PASM::$chain[] = $method_del[1];
PASM::$ah = &PASM::$stack[array_key_last(PASM::$stack)];
PASM::$ah = round(PASM::$ST0, PASM::$RC);
array_pop(PASM::$stack);
if (count(PASM::$stack) > 0) {
PASM::$ST0 = PASM::$stack[array_key_last(PASM::$stack)];
} else {
PASM::$ST0 = null;
}
PASM::debug_loop_count();
return new static;
}
/**
* @method neg inverts a positive number to a positive number
* or the reverse action, depending on the value. $ah
* is multiplied by -1 to set $rdx to the answer
*
*/
public static function neg() // negate $ah
{
PASM::setup_chain(__METHOD__);
if (is_numeric(PASM::$ah)) {
PASM::$rdx = PASM::$ah * (-1);
}
PASM::debug_loop_count();
return new static;
}
/**
* @method stack_cmov_b compares $ST0 '>' to $ah
* if true, it makes $rdx the value in $ah
*
*/
public static function stack_cmov_b() // move on comparison (begins again below)
{
PASM::setup_chain(__METHOD__);
if (count(PASM::$stack) > 0) {
PASM::$ST0 = PASM::$stack[array_key_last(PASM::$stack)];
} else {
PASM::$ST0 = null;
}
if (PASM::$ST0 != null && PASM::$ah < PASM::$ST0) {
PASM::$rdx = PASM::$ah;
}
PASM::debug_loop_count();
return new static;
}
/**
* @method stack_cmov_be compares $ST0 '>=' to $ah
* if true, it makes $rdx the value in $ah
*
*/
public static function stack_cmov_be()
{
PASM::setup_chain(__METHOD__);
if (count(PASM::$stack) > 0) {
PASM::$ST0 = PASM::$stack[array_key_last(PASM::$stack)];
} else {
PASM::$ST0 = null;
}
if (PASM::$ST0 != null && PASM::$ah <= PASM::$ST0) {
PASM::$rdx = PASM::$ah;
}
return new static;
}
/**
* @method stack_cmov_e compares $ST0 '==' to $ah
* if true, it makes $rdx the value in $ah
*
*/
public static function stack_cmov_e()
{
PASM::setup_chain(__METHOD__);
if (count(PASM::$stack) > 0) {
PASM::$ST0 = PASM::$stack[array_key_last(PASM::$stack)];
} else {
PASM::$ST0 = null;
}
if (PASM::$ST0 != null && PASM::$ah == PASM::$ST0) {
PASM::$rdx = PASM::$ah;
}
return new static;
}
/**
* @method stack_cmov_nb compares $ST0 '<' to $ah
* if true, it makes $rdx the value in $ah
*
*/
public static function stack_cmov_nb()
{
PASM::setup_chain(__METHOD__);
if (count(PASM::$stack) > 0) {
PASM::$ST0 = PASM::$stack[array_key_last(PASM::$stack)];
} else {
PASM::$ST0 = null;
}
if (PASM::$ST0 != null && PASM::$ah > PASM::$ST0) {
PASM::$rdx = PASM::$ah;
}
return new static;
}
/**
* @method stack_cmov_nbe compares $ST0 '<=' to $ah
* if true, it makes $rdx the value in $ah
*
*/
public static function stack_cmov_nbe()
{
PASM::setup_chain(__METHOD__);
if (count(PASM::$stack) > 0) {
PASM::$ST0 = PASM::$stack[array_key_last(PASM::$stack)];
} else {
PASM::$ST0 = null;
}
if (PASM::$ST0 != null && PASM::$ah >= PASM::$ST0) {
PASM::$rdx = PASM::$ah;
}
return new static;
}
/**
* @method stack_cmov_b compares $ST0 '!=' to $ah
* if true, it makes $rdx the value in $ah
*
*/
public static function stack_cmov_ne()
{
PASM::setup_chain(__METHOD__);
if (count(PASM::$stack) > 0) {
PASM::$ST0 = PASM::$stack[array_key_last(PASM::$stack)];
} else {
PASM::$ST0 = null;
}
if (PASM::$ST0 != null && PASM::$ah != PASM::$ST0) {
PASM::$rdx = PASM::$ah;
}
return new static;
}
/**
* @method fcomp subtracts the $ST0 stack pointer
* from $ah and pops its last value off
*
*/
public static function fcomp() // subtract top of stack from $ah and pop
{
PASM::setup_chain(__METHOD__);
if (!is_numeric(PASM::$ah) || !PASM::$stack[array_key_last(PASM::$stack)]) {
return new static;
}
PASM::$rdx = PASM::$ah - PASM::$stack[array_key_last(PASM::$stack)];
array_pop(PASM::$stack);
if (count(PASM::$stack) > 0) {
PASM::$ST0 = PASM::$stack[array_key_last(PASM::$stack)];
} else {
PASM::$ST0 = null;
}
if (PASM::$ST0 != null && PASM::$pdb == 1) {
echo PASM::$lop++ . " ";
}
return new static;
}
/**
* @method cosine sets the $ST0 pointer to the current $ST0
* wrapped in the PHP native mathematical function, cosine (cos)
*
*/
public static function cosine() // change top of stack to cosine of top of stack
{
PASM::setup_chain(__METHOD__);
PASM::$ST0 = &PASM::$stack[array_key_last(PASM::$stack)];
PASM::$ST0 = (PASM::$ST0 != null) ? cos(PASM::$ST0) : null;
PASM::debug_loop_count();
return new static;
}
/**
* @method stack_pnt_rev goes through the stack backward,
* in reverse, and sets the $sp variable to its position
*
*/
public static function stack_pnt_rev() // go traverse the stack backward
{
PASM::setup_chain(__METHOD__);
prev(PASM::$stack);
PASM::$sp = current(PASM::$stack);
PASM::debug_loop_count();
return new static;
}
/**
* @method fdiv divides $ecx by $ST0, the stack's last entry
* setting the value of $rdx
*
*/
public static function fdiv() // divide ST0 into $ecx
{
PASM::setup_chain(__METHOD__);
if (!is_numeric(PASM::$ecx) || !PASM::$stack[array_key_last(PASM::$stack)]) {
return new static;
}
PASM::$rdx = PASM::$ecx / PASM::$ST0;
PASM::debug_loop_count();
return new static;
}
/**
* @method fdiv_pop divides $ST0 by $ecx and sets the last element to $ST0 again
*
*/
public static function fdiv_pop() // opposite as above and pop
{
PASM::setup_chain(__METHOD__);
PASM::$rdx = PASM::$ST0 / PASM::$ecx;
array_pop(PASM::$stack);
PASM::$ST0 = PASM::$stack[array_key_last(PASM::$stack)];
PASM::debug_loop_count();
return new static;
}
/**
* @method fdiv_rev divides $ST0 by $ecx and sets the value at $rdx
*
*/
public static function fdiv_rev() // opposite of fdiv
{
PASM::setup_chain(__METHOD__);
PASM::$rdx = PASM::$ST0 / PASM::$ecx;
PASM::debug_loop_count();
return new static;
}
/**
* @method fdiv_rev divides $ecx by $ST0 and sets the value at $rdx
*
*/
public static function fdiv_rev_pop() // same as above with po
{
PASM::setup_chain(__METHOD__);
if (PASM::$ST0 == 0) {
echo "Denominator cannot be 0";
PASM::$cl = 0;
return new static;
}
PASM::$rdx = PASM::$ecx / PASM::$ST0;
array_pop(PASM::$stack);
PASM::$ST0 = PASM::$stack[array_key_last(PASM::$stack)];
PASM::debug_loop_count();
return new static;
}