forked from uxlfoundation/oneDNN
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathjit_generator.hpp
2502 lines (2247 loc) · 79.1 KB
/
jit_generator.hpp
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
/*******************************************************************************
* Copyright 2016-2022 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
#ifndef CPU_X64_JIT_GENERATOR_HPP
#define CPU_X64_JIT_GENERATOR_HPP
#include <limits.h>
#include "common/bit_cast.hpp"
#include "common/compiler_workarounds.hpp"
#include "common/type_helpers.hpp"
#include "common/utils.hpp"
#include "cpu/x64/cpu_isa_traits.hpp"
#include "cpu/jit_utils/jit_utils.hpp"
#if defined(_WIN32) && !defined(__GNUC__)
#define STRUCT_ALIGN(al, ...) __declspec(align(al)) __VA_ARGS__
#else
#define STRUCT_ALIGN(al, ...) __VA_ARGS__ __attribute__((__aligned__(al)))
#endif
#if defined(_WIN32)
#define OFFSET_SHADOWSPACE 0x28
#endif
#if GCC_WA_NO_TREE_DOMINATOR_OPTS
#define ATTRIBUTE_OPTIMIZE __attribute__((optimize("no-tree-dominator-opts")))
#else
#define ATTRIBUTE_OPTIMIZE
#endif
#define DECLARE_CPU_JIT_AUX_FUNCTIONS(jit_name) \
const char *name() const override { return STRINGIFY(jit_name); } \
const char *source_file() const override { return __FILE__; }
namespace dnnl {
namespace impl {
namespace cpu {
namespace x64 {
// TODO: move this to jit_generator class?
namespace {
typedef enum {
MAX_CODE_SIZE = 256 * 1024,
} max_code_size_t;
// TODO: move this somewhere else? Although this is only used by jit kernels
// (Roma)
static inline int float2int(float x) {
return utils::bit_cast<int>(x);
}
static inline void tc_configure_tile(
palette_config_t *tc, int t, int rows, int cols) {
const bool rows_ok = (size_t)t < sizeof(tc->rows) / sizeof(tc->rows[0]);
const bool cols_ok = (size_t)t < sizeof(tc->cols) / sizeof(tc->cols[0]);
if (rows_ok && cols_ok) {
tc->rows[t] = rows;
tc->cols[t] = cols;
} else {
assert(!"out of range");
}
}
// TODO: A GPR class that hides ABI details from the JIT kernels and allows
// numbering registers from 0 to 14 (x86_64) / 6 (x32) (gpr0, gpr1, ...) and
// stack register (sr).
//
// This will allow using syntax like this:
//
// param = gpr0;
// reg_input = gpr0;
// reg_output = gpr1;
// ...
//
// #ifndef XBYAK64
// mov(param, ptr[sr])
// #endif
//
// (Roma)
} // namespace
#ifdef XBYAK64
constexpr Xbyak::Operand::Code abi_save_gpr_regs[] = {
Xbyak::Operand::RBX,
Xbyak::Operand::RBP,
Xbyak::Operand::R12,
Xbyak::Operand::R13,
Xbyak::Operand::R14,
Xbyak::Operand::R15,
#ifdef _WIN32
Xbyak::Operand::RDI,
Xbyak::Operand::RSI,
#endif
};
constexpr Xbyak::Operand::Code abi_param_regs[] = {
#ifdef _WIN32
Xbyak::Operand::RCX, Xbyak::Operand::RDX, Xbyak::Operand::R8,
Xbyak::Operand::R9
#else
Xbyak::Operand::RDI, Xbyak::Operand::RSI, Xbyak::Operand::RDX,
Xbyak::Operand::RCX, Xbyak::Operand::R8, Xbyak::Operand::R9
#endif
};
constexpr Xbyak::Operand::Code abi_not_param_reg =
#ifdef _WIN32
Xbyak::Operand::RDI;
#else
Xbyak::Operand::RCX;
#endif
#define abi_param1 Xbyak::Reg64(abi_param_regs[0])
#define abi_param2 Xbyak::Reg64(abi_param_regs[1])
#define abi_param3 Xbyak::Reg64(abi_param_regs[2])
#define abi_param4 Xbyak::Reg64(abi_param_regs[3])
#define abi_param5 Xbyak::Reg64(abi_param_regs[4])
#define abi_param6 Xbyak::Reg64(abi_param_regs[5])
#define abi_not_param1 Xbyak::Reg64(abi_not_param_reg)
#endif
class jit_generator : public Xbyak::CodeGenerator, public c_compatible {
public:
using c_compatible::operator new;
using c_compatible::operator new[];
using c_compatible::operator delete;
using c_compatible::operator delete[];
private:
const size_t xmm_len = 16;
const size_t ymm_len = 32;
const size_t zmm_len = 64;
#ifdef _WIN32
const size_t xmm_to_preserve_start = 6;
const size_t xmm_to_preserve = 10;
#else
const size_t xmm_to_preserve_start = 0;
const size_t xmm_to_preserve = 0;
#endif
const size_t num_abi_save_gpr_regs
= sizeof(abi_save_gpr_regs) / sizeof(abi_save_gpr_regs[0]);
const size_t size_of_abi_save_regs
= num_abi_save_gpr_regs * rax.getBit() / 8
+ xmm_to_preserve * xmm_len;
public:
enum {
_cmp_eq_oq = 0u,
_cmp_lt_os = 1u,
_cmp_le_os = 2u,
_cmp_neq_uq = 4u,
_cmp_nlt_us = 5u,
_cmp_nle_us = 6u,
_op_near = 0u,
_op_floor = 1u,
_op_mxcsr = 4u,
};
Xbyak::Reg64 param1 = abi_param1;
const int EVEX_max_8b_offt = 0x200;
const Xbyak::Reg64 reg_EVEX_max_8b_offt = rbp;
inline size_t get_size_of_abi_save_regs() { return size_of_abi_save_regs; }
using Xbyak::CodeGenerator::push;
using Xbyak::CodeGenerator::pop;
inline void push(const Xbyak::Xmm &xmm) {
if (xmm.isXMM()) {
sub(rsp, xmm_len);
uni_vmovdqu(ptr[rsp], xmm);
} else if (xmm.isYMM()) {
sub(rsp, ymm_len);
uni_vmovdqu(ptr[rsp], Xbyak::Ymm{xmm.getIdx()});
} else if (xmm.isZMM()) {
sub(rsp, zmm_len);
uni_vmovdqu(ptr[rsp], Xbyak::Zmm{xmm.getIdx()});
}
}
inline void pop(const Xbyak::Xmm &xmm) {
if (xmm.isXMM()) {
uni_vmovdqu(xmm, ptr[rsp]);
add(rsp, xmm_len);
} else if (xmm.isYMM()) {
uni_vmovdqu(Xbyak::Ymm{xmm.getIdx()}, ptr[rsp]);
add(rsp, ymm_len);
} else if (xmm.isZMM()) {
uni_vmovdqu(Xbyak::Zmm{xmm.getIdx()}, ptr[rsp]);
add(rsp, zmm_len);
}
}
void preamble() {
if (xmm_to_preserve) {
sub(rsp, xmm_to_preserve * xmm_len);
for (size_t i = 0; i < xmm_to_preserve; ++i)
uni_vmovdqu(ptr[rsp + i * xmm_len],
Xbyak::Xmm(xmm_to_preserve_start + i));
}
for (size_t i = 0; i < num_abi_save_gpr_regs; ++i)
push(Xbyak::Reg64(abi_save_gpr_regs[i]));
if (is_valid_isa(avx512_core)) {
mov(reg_EVEX_max_8b_offt, 2 * EVEX_max_8b_offt);
}
}
// This function returns the address on the stack of the fist argument
// that is not passed by register
// By default it assumes to be called after the prologue
// Note: that we cannot use RBP inside as we override it in preamble
// for address computation in EVEX instructions
inline const Xbyak::RegExp get_stack_params_address(
bool after_prolog = true) {
int saved_regs_size = after_prolog ? get_size_of_abi_save_regs() : 0;
#ifdef _WIN32
// Using stack layout described in MS ABI
// (https://docs.microsoft.com/en-us/cpp/build/stack-usage?view=vs-2019)
// here, the return address and the first 4 parameters are allocated
// on the stack
int first_params_and_return_addr_size = 40;
#else
// In System V ABI, only the return address is stacked
// before the arguments
int first_params_and_return_addr_size = 8;
#endif
return rsp + saved_regs_size + first_params_and_return_addr_size;
}
void uni_vzeroupper() {
if (mayiuse(avx)) vzeroupper();
}
void postamble() {
for (size_t i = 0; i < num_abi_save_gpr_regs; ++i)
pop(Xbyak::Reg64(abi_save_gpr_regs[num_abi_save_gpr_regs - 1 - i]));
if (xmm_to_preserve) {
for (size_t i = 0; i < xmm_to_preserve; ++i)
uni_vmovdqu(Xbyak::Xmm(xmm_to_preserve_start + i),
ptr[rsp + i * xmm_len]);
add(rsp, xmm_to_preserve * xmm_len);
}
uni_vzeroupper();
ret();
}
template <typename T>
Xbyak::Address EVEX_compress_addr(
Xbyak::Reg64 base, T raw_offt, bool bcast = false) {
using Xbyak::Address;
using Xbyak::Reg64;
using Xbyak::RegExp;
using Xbyak::Zmm;
assert(raw_offt <= INT_MAX);
auto offt = static_cast<int>(raw_offt);
int scale = 0;
if (EVEX_max_8b_offt <= offt && offt < 3 * EVEX_max_8b_offt) {
offt = offt - 2 * EVEX_max_8b_offt;
scale = 1;
} else if (3 * EVEX_max_8b_offt <= offt
&& offt < 5 * EVEX_max_8b_offt) {
offt = offt - 4 * EVEX_max_8b_offt;
scale = 2;
}
auto re = RegExp() + base + offt;
if (scale) re = re + reg_EVEX_max_8b_offt * scale;
if (bcast)
return zword_b[re];
else
return zword[re];
}
Xbyak::Address make_safe_addr(const Xbyak::Reg64 ®_out, size_t offt,
const Xbyak::Reg64 &tmp_reg, bool bcast = false) {
if (offt > INT_MAX) {
mov(tmp_reg, offt);
return bcast ? ptr_b[reg_out + tmp_reg] : ptr[reg_out + tmp_reg];
} else {
return bcast ? ptr_b[reg_out + offt] : ptr[reg_out + offt];
}
}
Xbyak::Address EVEX_compress_addr_safe(const Xbyak::Reg64 &base,
size_t raw_offt, const Xbyak::Reg64 ®_offt, bool bcast = false) {
if (raw_offt > INT_MAX) {
return make_safe_addr(base, raw_offt, reg_offt, bcast);
} else {
return EVEX_compress_addr(base, raw_offt, bcast);
}
}
void safe_add(const Xbyak::Reg64 &base, size_t raw_offt,
const Xbyak::Reg64 ®_offt) {
if (raw_offt > INT_MAX) {
mov(reg_offt, raw_offt);
add(base, reg_offt);
} else {
add(base, raw_offt);
}
}
void safe_sub(const Xbyak::Reg64 &base, size_t raw_offt,
const Xbyak::Reg64 ®_offt) {
if (raw_offt > INT_MAX) {
mov(reg_offt, raw_offt);
sub(base, reg_offt);
} else {
sub(base, raw_offt);
}
}
// Disallow char-based labels completely
void L(const char *label) = delete;
void L(Xbyak::Label &label) { Xbyak::CodeGenerator::L(label); }
void L_aligned(Xbyak::Label &label, int alignment = 16) {
align(alignment);
L(label);
}
void uni_vpxor(const Xbyak::Xmm &x1, const Xbyak::Xmm &x2,
const Xbyak::Operand &op) {
if (is_valid_isa(avx512_core))
vpxord(x1, x2, op);
else if (is_valid_isa(avx))
vpxor(x1, x2, op);
else {
assert(x1.isEqualIfNotInherited(x2));
pxor(x2, op);
}
}
void uni_vpxor(const Xbyak::Ymm &x1, const Xbyak::Ymm &x2,
const Xbyak::Operand &op) {
if (is_valid_isa(avx512_core))
vpxord(x1, x2, op);
else if (is_valid_isa(avx2))
vpxor(x1, x2, op);
else
vxorps(x1, x2, op);
}
void uni_vpxor(const Xbyak::Zmm &x1, const Xbyak::Zmm &x2,
const Xbyak::Operand &op) {
vpxord(x1, x2, op);
}
void uni_vmovss(const Xbyak::Address &addr, const Xbyak::Xmm &x) {
if (is_valid_isa(avx))
vmovss(addr, x);
else
movss(addr, x);
}
void uni_vmovss(const Xbyak::Xmm &x, const Xbyak::Address &addr) {
if (is_valid_isa(avx))
vmovss(x, addr);
else
movss(x, addr);
}
void uni_vmovss(const Xbyak::Xmm &x1, const Xbyak::Xmm &x2) {
if (is_valid_isa(avx))
vmovss(x1, x1, x2);
else
movss(x1, x2);
}
void uni_vmovss(const Xbyak::Address &addr, const Xbyak::Ymm &x) {
vmovss(addr, Xbyak::Xmm(x.getIdx()));
}
void uni_vmovss(const Xbyak::Ymm &x, const Xbyak::Address &addr) {
vmovss(Xbyak::Xmm(x.getIdx()), addr);
}
void uni_vmovss(const Xbyak::Ymm &x1, const Xbyak::Ymm &x2) {
vmovss(Xbyak::Xmm(x1.getIdx()), Xbyak::Xmm(x2.getIdx()));
}
void uni_vmovsd(const Xbyak::Address &addr, const Xbyak::Xmm &x) {
if (is_valid_isa(avx))
vmovsd(addr, x);
else
movsd(addr, x);
}
void uni_vmovsd(const Xbyak::Address &addr, const Xbyak::Ymm &x) {
vmovsd(addr, x);
}
void uni_vmovsd(const Xbyak::Xmm &x, const Xbyak::Address &addr) {
if (is_valid_isa(avx))
vmovsd(x, addr);
else
movsd(x, addr);
}
void uni_vmovsd(const Xbyak::Ymm &x, const Xbyak::Address &addr) {
vmovsd(x, addr);
}
void uni_vmovlps(const Xbyak::Address &addr, const Xbyak::Xmm &x) {
if (is_valid_isa(avx))
vmovlps(addr, x);
else
movlps(addr, x);
}
void uni_vmovlps(const Xbyak::Address &addr, const Xbyak::Ymm &x) {
vmovlps(addr, x);
}
void uni_vmovlps(const Xbyak::Xmm &x, const Xbyak::Address &addr) {
if (is_valid_isa(avx))
vmovlps(x, addr);
else
movlps(x, addr);
}
void uni_vmovlps(const Xbyak::Ymm &x, const Xbyak::Address &addr) {
vmovlps(x, addr);
}
void uni_vmovdqu(const Xbyak::Address &addr, const Xbyak::Xmm &x) {
if (is_valid_isa(avx))
vmovdqu(addr, x);
else
movdqu(addr, x);
}
void uni_vmovdqu(const Xbyak::Address &addr, const Xbyak::Ymm &x) {
vmovdqu(addr, x);
}
void uni_vmovdqu(const Xbyak::Address &addr, const Xbyak::Zmm &x) {
vmovdqu32(addr, x);
}
void uni_vmovdqu(const Xbyak::Xmm &x, const Xbyak::Address &addr) {
if (is_valid_isa(avx))
vmovdqu(x, addr);
else
movdqu(x, addr);
}
void uni_vmovdqu(const Xbyak::Xmm &x1, const Xbyak::Xmm &x2) {
if (is_valid_isa(avx))
vmovdqu(x1, x2);
else
movdqu(x1, x2);
}
void uni_vmovdqu(const Xbyak::Ymm &x, const Xbyak::Address &addr) {
vmovdqu(x, addr);
}
void uni_vmovdqu(const Xbyak::Zmm &x, const Xbyak::Address &addr) {
vmovdqu32(x, addr);
}
void uni_vmovups(const Xbyak::Address &addr, const Xbyak::Xmm &x) {
if (is_valid_isa(avx))
vmovups(addr, x);
else
movups(addr, x);
}
void uni_vmovups(const Xbyak::Address &addr, const Xbyak::Ymm &x) {
vmovups(addr, x);
}
void uni_vmovups(const Xbyak::Xmm &x, const Xbyak::Operand &op) {
if (is_valid_isa(avx))
vmovups(x, op);
else
movups(x, op);
}
void uni_vmovups(const Xbyak::Ymm &x, const Xbyak::Operand &op) {
vmovups(x, op);
}
void uni_vmovups_tail(const Xbyak::Address &addr, const Xbyak::Ymm &mask,
const Xbyak::Ymm &x) {
vmaskmovps(addr, mask, x);
}
void uni_vmovups_tail(const Xbyak::Ymm &x, const Xbyak::Ymm &mask,
const Xbyak::Address &addr) {
vmaskmovps(x, mask, addr);
}
void uni_vmovups_tail(const Xbyak::Address &addr, const Xbyak::Opmask &mask,
const Xbyak::Zmm &x) {
vmovups(addr | mask, x);
}
void uni_vmovups_tail(const Xbyak::Zmm &x, const Xbyak::Opmask &mask,
const Xbyak::Address &addr) {
vmovups(x | mask | T_z, addr);
}
void uni_vmovntps(const Xbyak::Address &addr, const Xbyak::Xmm &x) {
if (is_valid_isa(avx))
vmovntps(addr, x);
else
movntps(addr, x);
}
void uni_vbroadcastss(const Xbyak::Xmm &x, const Xbyak::Operand &op) {
if (is_valid_isa(avx2) || (is_valid_isa(avx) && op.isMEM()))
vbroadcastss(x, op);
else if (is_valid_isa(avx)) {
vmovss(x, x, op);
vshufps(x, x, x, 0x0);
} else {
movss(x, op);
shufps(x, x, 0x0);
}
}
void uni_vbroadcastss(const Xbyak::Ymm &x, const Xbyak::Operand &op) {
if (op.isMEM() || is_valid_isa(avx2)) {
vbroadcastss(x, op);
} else {
Xbyak::Xmm t(x.getIdx());
if (!t.isEqualIfNotInherited(op)) movss(t, op);
vinsertf128(x, x, t, 1);
vshufps(x, x, x, 0);
}
}
void uni_vpbroadcastd(const Xbyak::Xmm &x, const Xbyak::Operand &op) {
if (is_valid_isa(avx2))
vpbroadcastd(x, op);
else if (is_valid_isa(avx)) {
if (op.isMEM())
vmovss(x, op.getAddress());
else
vmovss(x, x, op);
vpshufd(x, x, 0x0);
} else {
movss(x, op);
pshufd(x, x, 0x0);
}
}
void uni_vpbroadcastd(const Xbyak::Ymm &x, const Xbyak::Operand &op) {
if (is_valid_isa(avx2)) {
vpbroadcastd(x, op);
} else {
const Xbyak::Xmm t(x.getIdx());
if (!t.isEqualIfNotInherited(op)) {
if (op.isMEM())
vmovss(t, op.getAddress());
else
vmovss(t, t, op);
}
vinsertf128(x, x, t, 1);
vshufps(x, x, x, 0);
}
}
void uni_vshufps(const Xbyak::Xmm &x1, const Xbyak::Xmm &x2,
const Xbyak::Operand &op, Xbyak::uint8 imm) {
if (is_valid_isa(avx))
vshufps(x1, x2, op, imm);
else {
movups(x1, x2);
shufps(x1, op, imm);
}
}
void uni_vpshufd(
const Xbyak::Xmm &x1, const Xbyak::Operand &op, Xbyak::uint8 imm) {
if (is_valid_isa(avx))
vpshufd(x1, op, imm);
else {
pshufd(x1, op, imm);
}
}
void uni_vrcpss(const Xbyak::Xmm &x, const Xbyak::Operand &op) {
if (is_valid_isa(avx))
vrcpss(x, x, op);
else
rcpss(x, op);
}
void uni_vrcpss(const Xbyak::Ymm &x1, const Xbyak::Xmm &x2) {
Xbyak::Xmm x1_(x1.getIdx());
Xbyak::Xmm x2_(x2.getIdx());
vrcpss(x1_, x1_, x2_);
}
void uni_vrcpss(const Xbyak::Ymm &x, const Xbyak::Address &op) {
Xbyak::Xmm x_(x.getIdx());
vrcpss(x_, x_, op);
}
void uni_vrcpps(const Xbyak::Xmm &x, const Xbyak::Operand &op) {
if (is_valid_isa(avx))
vrcpps(x, op);
else
rcpps(x, op);
}
void uni_vrcpps(const Xbyak::Ymm &x, const Xbyak::Operand &op) {
vrcpps(x, op);
}
void uni_vrcpps(const Xbyak::Zmm &x, const Xbyak::Operand &op) {
vrcp14ps(x, op);
}
void uni_vdivps(const Xbyak::Xmm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2) {
if (is_valid_isa(avx))
vdivps(x, op1, op2);
else {
assert(x.isEqualIfNotInherited(op1));
divps(x, op2);
}
}
void uni_vdivps(const Xbyak::Ymm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2) {
vdivps(x, op1, op2);
}
void uni_vdivss(const Xbyak::Xmm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2) {
if (is_valid_isa(avx))
vdivss(x, op1, op2);
else {
assert(x.isEqualIfNotInherited(op1));
divss(x, op2);
}
}
void uni_vdivps(const Xbyak::Xmm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2, const Xbyak::Xmm &buf) {
if (is_valid_isa(avx)) {
vdivps(buf, op1, op2);
if (x.getIdx() != buf.getIdx()) { vmovups(x, buf); }
} else {
movups(buf, op1);
divps(buf, op2);
if (x.getIdx() != buf.getIdx()) { movups(x, buf); }
}
}
void uni_vdivps(const Xbyak::Ymm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2, const Xbyak::Ymm &buf) {
vdivps(x, op1, op2);
}
void uni_vaddps(const Xbyak::Xmm &x, const Xbyak::Xmm &op1,
const Xbyak::Operand &op2) {
if (is_valid_isa(avx))
vaddps(x, op1, op2);
else {
if (x.getIdx() == op1.getIdx()) {
addps(x, op2);
} else if (x.isEqualIfNotInherited(op2)) {
addps(x, op1);
} else {
movups(x, op1);
addps(x, op2);
}
}
}
void uni_vaddps(const Xbyak::Ymm &x, const Xbyak::Ymm &op1,
const Xbyak::Operand &op2) {
vaddps(x, op1, op2);
}
void uni_vaddss(const Xbyak::Xmm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2) {
if (is_valid_isa(avx))
vaddss(x, op1, op2);
else {
assert(x.isEqualIfNotInherited(op1));
addss(x, op2);
}
}
void uni_vaddss(const Xbyak::Ymm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2) {
vaddss(x, op1, op2);
}
void uni_vphaddd(const Xbyak::Xmm &x, const Xbyak::Xmm &x2,
const Xbyak::Operand &op) {
if (is_valid_isa(avx)) {
vphaddd(x, x2, op);
} else {
assert(x.isEqualIfNotInherited(op));
phaddd(x, op);
}
}
void uni_vhaddps(const Xbyak::Xmm &x, const Xbyak::Xmm &x2,
const Xbyak::Operand &op) {
if (is_valid_isa(avx)) {
vhaddps(x, x2, op);
} else {
if (!x.isEqualIfNotInherited(x2)) {
movups(x, x2);
}
haddps(x, op);
}
}
void uni_vhsubps(const Xbyak::Xmm &x, const Xbyak::Xmm &x2,
const Xbyak::Operand &op) {
if (is_valid_isa(avx)) {
vhsubps(x, x2, op);
} else {
if (!x.isEqualIfNotInherited(x2)) {
movups(x, x2);
}
hsubps(x, op);
}
}
void uni_vpsignd(const Xbyak::Xmm &x1, const Xbyak::Xmm &x2,
const Xbyak::Operand &op) {
if (is_valid_isa(avx))
vpsignd(x1, x2, op);
else {
assert(x1.getIdx() == x2.getIdx());
psignd(x1, op);
}
}
void uni_vpsignd(const Xbyak::Ymm &x1, const Xbyak::Ymm &x2,
const Xbyak::Operand &op) {
vpsignd(x1, x2, op);
}
void uni_vpsubd(const Xbyak::Xmm &x1, const Xbyak::Xmm &x2,
const Xbyak::Operand &op) {
if (is_valid_isa(avx))
vpsubd(x1, x2, op);
else {
assert(x1.getIdx() == x2.getIdx());
psubd(x1, op);
}
}
void uni_vpsubd(const Xbyak::Ymm &x1, const Xbyak::Ymm &x2,
const Xbyak::Operand &op) {
vpsubd(x1, x2, op);
}
void uni_vpsubb(const Xbyak::Xmm &x1, const Xbyak::Xmm &x2,
const Xbyak::Operand &op) {
if (is_valid_isa(avx))
vpsubb(x1, x2, op);
else {
assert(x1.getIdx() == x2.getIdx());
psubb(x1, op);
}
}
void uni_vpsubb(const Xbyak::Ymm &x1, const Xbyak::Ymm &x2,
const Xbyak::Operand &op) {
vpsubb(x1, x2, op);
}
void uni_vsubss(const Xbyak::Xmm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2) {
if (is_valid_isa(avx))
// previously there was "subps(x, op2)" for some reason
vsubss(x, op1, op2);
else {
assert(x.isEqualIfNotInherited(op1));
subss(x, op2);
}
}
void uni_vsubss(const Xbyak::Ymm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2) {
vsubss(x, Xbyak::Xmm(op1.getIdx()), Xbyak::Xmm(op2.getIdx()));
}
void uni_vsubps(const Xbyak::Xmm &x, const Xbyak::Xmm &op1,
const Xbyak::Operand &op2) {
if (is_valid_isa(avx))
vsubps(x, op1, op2);
else {
if (x.getIdx() == op1.getIdx()) {
subps(x, op2);
} else if (x.isEqualIfNotInherited(op2)) {
push(op1);
subps(op1, op2);
movups(x, op1);
pop(op1);
} else {
movups(x, op1);
subps(x, op2);
}
}
}
void uni_vsubps(const Xbyak::Ymm &x, const Xbyak::Ymm &op1,
const Xbyak::Operand &op2) {
vsubps(x, op1, op2);
}
void uni_vsubps(const Xbyak::Xmm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2, const Xbyak::Xmm &buf) {
if (is_valid_isa(avx)) {
vsubps(buf, op1, op2);
if (x.getIdx() != buf.getIdx()) { vmovups(x, buf); }
} else {
movups(buf, op1);
subps(buf, op2);
if (x.getIdx() != buf.getIdx()) { movups(x, buf); }
}
}
void uni_vsubps(const Xbyak::Ymm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2, const Xbyak::Ymm &buf) {
vsubps(x, op1, op2);
}
void uni_vaddsubps(const Xbyak::Xmm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2) {
if (is_valid_isa(avx)) {
vaddsubps(x, op1, op2);
} else {
if (!x.isEqualIfNotInherited(op1)) {
movups(x, op1);
}
addsubps(x, op2);
}
}
void uni_vpmulld(const Xbyak::Xmm &x, const Xbyak::Xmm &op1,
const Xbyak::Operand &op2) {
if (is_valid_isa(avx)) {
vpmulld(x, op1, op2);
} else {
if (x.getIdx() == op1.getIdx()) {
pmulld(x, op2);
} else if (x.isEqualIfNotInherited(op2)) {
pmulld(x, op1);
} else {
movdqa(x, op1);
pmulld(x, op2);
}
}
}
void uni_vpmulld(const Xbyak::Ymm &x1, const Xbyak::Ymm &x2,
const Xbyak::Operand &op) {
vpmulld(x1, x2, op);
}
void uni_vmulps(const Xbyak::Xmm &x, const Xbyak::Xmm &op1,
const Xbyak::Operand &op2) {
if (is_valid_isa(avx))
vmulps(x, op1, op2);
else {
if (x.getIdx() == op1.getIdx()) {
mulps(x, op2);
} else if (x.isEqualIfNotInherited(op2)) {
mulps(x, op1);
} else {
movups(x, op1);
mulps(x, op2);
}
}
}
void uni_vmulps(const Xbyak::Ymm &x, const Xbyak::Ymm &op1,
const Xbyak::Operand &op2) {
vmulps(x, op1, op2);
}
void uni_vmulss(const Xbyak::Xmm &x, const Xbyak::Operand &op1,
const Xbyak::Operand &op2) {
if (is_valid_isa(avx))
vmulss(x, op1, op2);
else {
assert(x.isEqualIfNotInherited(op1));
mulss(x, op2);
}
}
void uni_vmulss(const Xbyak::Ymm &x, const Xbyak::Operand &op1,
const Xbyak::Address &op2) {
vmulss(x, Xbyak::Xmm(op1.getIdx()), op2);
}
void uni_vmulss(const Xbyak::Ymm &x, const Xbyak::Operand &op1,
const Xbyak::Ymm &op2) {
vmulss(x, Xbyak::Xmm(op1.getIdx()), Xbyak::Xmm(op2.getIdx()));
}
void uni_vfmadd132ps(const Xbyak::Xmm &x1, const Xbyak::Xmm &x2,
const Xbyak::Operand &op) {
// Note: x1 gets overriden by x1*op
// This is incorrect if x1 == x2
if (is_valid_isa(avx2))
vfmadd132ps(x1, x2, op);
else if (is_valid_isa(avx)) {
assert(x1.getIdx() != x2.getIdx());
vmulps(x1, x1, op);
vaddps(x1, x1, x2);
} else {
assert(x1.getIdx() != x2.getIdx());
mulps(x1, op);
addps(x1, x2);
}
}
void uni_vfmadd132ps(const Xbyak::Ymm &x1, const Xbyak::Ymm &x2,
const Xbyak::Operand &op) {
if (is_valid_isa(avx2))
vfmadd132ps(x1, x2, op);
else {
// Note: x1 gets overriden by x1*op
// This is incorrect if x1 == x2
assert(x1.getIdx() != x2.getIdx());
vmulps(x1, x1, op);
vaddps(x1, x1, x2);
}
}
void uni_vfmadd213ps(const Xbyak::Xmm &x1, const Xbyak::Xmm &x2,
const Xbyak::Operand &op) {
// Note: x1 gets overriden by x1*x2
// This is incorrect if x1 == op
if (is_valid_isa(avx2))
vfmadd213ps(x1, x2, op);
else if (is_valid_isa(avx)) {
assert(!x1.isEqualIfNotInherited(op));
vmulps(x1, x1, x2);
vaddps(x1, x1, op);
} else {
assert(!x1.isEqualIfNotInherited(op));
mulps(x1, x2);
addps(x1, op);
}
}
void uni_vfmadd213ps(const Xbyak::Ymm &x1, const Xbyak::Ymm &x2,
const Xbyak::Operand &op) {
if (is_valid_isa(avx2))
vfmadd213ps(x1, x2, op);
else {
// Note: x1 gets overriden by x1*x2
// This is incorrect if x1 == op
assert(!x1.isEqualIfNotInherited(op));
vmulps(x1, x1, x2);
vaddps(x1, x1, op);
}
}
void uni_vfmadd213ss(const Xbyak::Xmm &x1, const Xbyak::Xmm &x2,
const Xbyak::Operand &op) {
// Note: x1 gets overriden by x1*x2
// This is incorrect if x1 == op
if (is_valid_isa(avx2))
vfmadd213ss(x1, x2, op);
else if (is_valid_isa(avx)) {
assert(!x1.isEqualIfNotInherited(op));
vmulss(x1, x1, x2);
vaddss(x1, x1, op);
} else {
assert(!x1.isEqualIfNotInherited(op));
mulss(x1, x2);
addss(x1, op);
}
}
void uni_vfmadd213ss(const Xbyak::Ymm &x1, const Xbyak::Ymm &x2,
const Xbyak::Operand &op) {
if (is_valid_isa(avx2))
vfmadd213ss(x1, x2, op);
else {
// Note: x1 gets overriden by x1*x2
// This is incorrect if x1 == op
assert(!x1.isEqualIfNotInherited(op));
vmulss(x1, x1, x2);
vaddss(x1, x1, op);
}
}
void uni_vfmadd231ps(const Xbyak::Xmm &x1, const Xbyak::Xmm &x2,
const Xbyak::Operand &op) {
// Note: x2 gets overriden by x2*op
// This is incorrect if x1 == x2
if (is_valid_isa(avx2))
vfmadd231ps(x1, x2, op);
else if (is_valid_isa(avx)) {
assert(x1.getIdx() != x2.getIdx());
vmulps(x2, x2, op);
vaddps(x1, x1, x2);
} else {
assert(x1.getIdx() != x2.getIdx());
mulps(x2, op);
addps(x1, x2);
}
}
void uni_vfmadd231ps(const Xbyak::Ymm &x1, const Xbyak::Ymm &x2,
const Xbyak::Operand &op) {
if (is_valid_isa(avx2))