Home
last modified time | relevance | path

Searched refs:ps (Results 1 – 25 of 287) sorted by relevance

12345678910>>...12

/llvm-project-15.0.7/polly/lib/External/ppcg/
H A Dppcg.c466 ps->dep_flow = isl_union_map_copy(ps->tagged_dep_flow); in derive_flow_dep_from_tagged_flow_dep()
621 ps->dep_forced = isl_union_map_subtract(ps->dep_forced, in compute_forced_dependences()
805 ps->domain = isl_union_set_intersect(ps->domain, in eliminate_dead_code()
838 if (!ps) in ppcg_scop_free()
865 free(ps); in ppcg_scop_free()
888 if (!ps) in ppcg_scop_from_pet_scop()
900 ps->context = isl_set_intersect(ps->context, nn); in ppcg_scop_from_pet_scop()
923 if (!ps->context || !ps->domain || !ps->call || !ps->reads || in ppcg_scop_from_pet_scop()
924 !ps->may_writes || !ps->must_writes || !ps->tagged_must_kills || in ppcg_scop_from_pet_scop()
925 !ps->must_kills || !ps->schedule || !ps->independence || !ps->names) in ppcg_scop_from_pet_scop()
[all …]
H A Dcpu.c615 struct ppcg_scop *ps) in construct_cpu_schedule_constraints() argument
628 if (ps->options->openmp) { in construct_cpu_schedule_constraints()
637 if (ps->options->openmp) in construct_cpu_schedule_constraints()
640 if (ps->options->openmp) in construct_cpu_schedule_constraints()
660 if (!ps) in compute_cpu_schedule()
667 schedule = ppcg_compute_schedule(sc, ps->schedule, ps->options); in compute_cpu_schedule()
677 struct ppcg_scop *ps = user; in optionally_compute_schedule() local
679 if (!ps) in optionally_compute_schedule()
695 if (!ps) in get_schedule()
701 if (ps->options->tile) in get_schedule()
[all …]
/llvm-project-15.0.7/clang/test/OpenMP/
H A Dtarget_map_names.cpp42 struct S2 *ps; member
51 S2 *ps; in foo() local
77 #pragma omp target map(to: s.ps->ps) in foo()
79 #pragma omp target map(s.ps->ps->ps) in foo()
81 #pragma omp target map(to: s.ps->ps->s.f[:22]) in foo()
83 #pragma omp target map(ps) in foo()
93 #pragma omp target map(ps->ps) in foo()
95 #pragma omp target map(from: ps->ps->s.i) in foo()
97 #pragma omp target map(from: ps->ps->ps) in foo()
99 #pragma omp target map(ps->ps->ps->ps) in foo()
[all …]
H A Dtarget_map_names_attr.cpp42 struct S2 *ps; member
51 S2 *ps; in foo() local
77 [[omp::directive(target map(to: s.ps->ps))]] in foo()
79 [[omp::directive(target map(s.ps->ps->ps))]] in foo()
81 [[omp::directive(target map(to: s.ps->ps->s.f[:22]))]] in foo()
83 [[omp::directive(target map(ps))]] in foo()
93 [[omp::directive(target map(ps->ps))]] in foo()
95 [[omp::directive(target map(from: ps->ps->s.i))]] in foo()
97 [[omp::directive(target map(from: ps->ps->ps))]] in foo()
99 [[omp::directive(target map(ps->ps->ps->ps))]] in foo()
[all …]
H A Dtarget_has_device_addr_messages.cpp150 S6 *ps; in tmain() local
187 #pragma omp target map(ps) has_device_addr(ps) // expected-error{{variable already marked as mapped… in tmain()
189 #pragma omp target has_device_addr(ps) map(ps) // expected-error{{variable already marked as mapped… in tmain()
191 #pragma omp target map(ps->a) has_device_addr(ps) // expected-error{{variable already marked as map… in tmain()
193 #pragma omp target has_device_addr(ps) map(ps->a) // expected-error{{pointer cannot be mapped along… in tmain()
199 #pragma omp target has_device_addr(ps) private(ps) // expected-error{{private variable cannot be in… in tmain()
219 S6 *ps; in main() local
256 #pragma omp target map(ps) has_device_addr(ps) // expected-error{{variable already marked as mapped… in main()
258 #pragma omp target has_device_addr(ps) map(ps) // expected-error{{variable already marked as mapped… in main()
260 #pragma omp target map(ps->a) has_device_addr(ps) // expected-error{{variable already marked as map… in main()
[all …]
H A Dtarget_is_device_ptr_messages.cpp149 S6 *ps; in tmain() local
186 #pragma omp target map(ps) is_device_ptr(ps) // expected-error{{variable already marked as mapped i… in tmain()
188 #pragma omp target is_device_ptr(ps) map(ps) // expected-error{{variable already marked as mapped i… in tmain()
190 #pragma omp target map(ps->a) is_device_ptr(ps) // expected-error{{variable already marked as mappe… in tmain()
192 #pragma omp target is_device_ptr(ps) map(ps->a) // expected-error{{pointer cannot be mapped along w… in tmain()
198 #pragma omp target is_device_ptr(ps) private(ps) // expected-error{{private variable cannot be in a… in tmain()
218 S6 *ps; in main() local
255 #pragma omp target map(ps) is_device_ptr(ps) // expected-error{{variable already marked as mapped i… in main()
257 #pragma omp target is_device_ptr(ps) map(ps) // expected-error{{variable already marked as mapped i… in main()
259 #pragma omp target map(ps->a) is_device_ptr(ps) // expected-error{{variable already marked as mappe… in main()
[all …]
H A Dtarget_parallel_is_device_ptr_messages.cpp149 S6 *ps; in tmain() local
186 #pragma omp target parallel map(ps) is_device_ptr(ps) // expected-error{{variable already marked as… in tmain()
188 #pragma omp target parallel is_device_ptr(ps) map(ps) // expected-error{{variable already marked as… in tmain()
190 #pragma omp target parallel map(ps->a) is_device_ptr(ps) // expected-error{{variable already marked… in tmain()
192 #pragma omp target parallel is_device_ptr(ps) map(ps->a) // expected-error{{pointer cannot be mappe… in tmain()
198 #pragma omp target parallel is_device_ptr(ps) private(ps) // omp4-error{{private variable cannot be… in tmain()
218 S6 *ps; in main() local
255 #pragma omp target parallel map(ps) is_device_ptr(ps) // expected-error{{variable already marked as… in main()
257 #pragma omp target parallel is_device_ptr(ps) map(ps) // expected-error{{variable already marked as… in main()
259 #pragma omp target parallel map(ps->a) is_device_ptr(ps) // expected-error{{variable already marked… in main()
[all …]
H A Dtarget_teams_is_device_ptr_messages.cpp149 S6 *ps; in tmain() local
186 #pragma omp target teams map(ps) is_device_ptr(ps) // expected-error{{variable already marked as ma… in tmain()
188 #pragma omp target teams is_device_ptr(ps) map(ps) // expected-error{{variable already marked as ma… in tmain()
190 #pragma omp target teams map(ps->a) is_device_ptr(ps) // expected-error{{variable already marked as… in tmain()
192 #pragma omp target teams is_device_ptr(ps) map(ps->a) // expected-error{{pointer cannot be mapped a… in tmain()
198 #pragma omp target teams is_device_ptr(ps) private(ps) // omp4-error{{private variable cannot be in… in tmain()
218 S6 *ps; in main() local
255 #pragma omp target teams map(ps) is_device_ptr(ps) // expected-error{{variable already marked as ma… in main()
257 #pragma omp target teams is_device_ptr(ps) map(ps) // expected-error{{variable already marked as ma… in main()
259 #pragma omp target teams map(ps->a) is_device_ptr(ps) // expected-error{{variable already marked as… in main()
[all …]
H A Dtarget_parallel_for_simd_is_device_ptr_messages.cpp167 S6 *ps; in tmain() local
222 #pragma omp target parallel for simd map(ps) is_device_ptr(ps) // expected-error{{variable already … in tmain()
225 #pragma omp target parallel for simd is_device_ptr(ps) map(ps) // expected-error{{variable already … in tmain()
228 #pragma omp target parallel for simd map(ps->a) is_device_ptr(ps) // expected-error{{variable alrea… in tmain()
231 #pragma omp target parallel for simd is_device_ptr(ps) map(ps->a) // expected-error{{pointer cannot… in tmain()
240 #pragma omp target parallel for simd is_device_ptr(ps) private(ps) // omp4-error{{private variable … in tmain()
262 S6 *ps; in main() local
317 #pragma omp target parallel for simd map(ps) is_device_ptr(ps) // expected-error{{variable already … in main()
320 #pragma omp target parallel for simd is_device_ptr(ps) map(ps) // expected-error{{variable already … in main()
323 #pragma omp target parallel for simd map(ps->a) is_device_ptr(ps) // expected-error{{variable alrea… in main()
[all …]
/llvm-project-15.0.7/llvm/test/MC/Mips/mips4/
H A Dinvalid-mips5-wrong-error.s9 abs.ps $f22,$f8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
10 alnv.ps $f12,$f18,$f30,$t0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
11 c.eq.ps $fcc5,$f0,$f9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
12 c.f.ps $fcc6,$f11,$f11 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
13 c.le.ps $fcc1,$f7,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
14 c.lt.ps $f19,$f5 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
15 c.nge.ps $f1,$f26 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
16 c.ngl.ps $f21,$f30 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 c.ngle.ps $fcc7,$f12,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
18 c.ngt.ps $fcc5,$f30,$f6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
[all …]
/llvm-project-15.0.7/llvm/test/MC/Mips/mips3/
H A Dinvalid-mips5-wrong-error.s9 abs.ps $f22,$f8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
10 alnv.ps $f12,$f18,$f30,$t0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
11 c.eq.ps $fcc5,$f0,$f9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
12 c.f.ps $fcc6,$f11,$f11 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
13 c.le.ps $fcc1,$f7,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
14 c.lt.ps $f19,$f5 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
15 c.nge.ps $f1,$f26 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
16 c.ngl.ps $f21,$f30 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 c.ngle.ps $fcc7,$f12,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
18 c.ngt.ps $fcc5,$f30,$f6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
[all …]
/llvm-project-15.0.7/llvm/test/MC/Mips/mips2/
H A Dinvalid-mips5-wrong-error.s9 abs.ps $f22,$f8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
10 alnv.ps $f12,$f18,$f30,$t0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
11 c.eq.ps $fcc5,$f0,$f9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
12 c.f.ps $fcc6,$f11,$f11 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
13 c.le.ps $fcc1,$f7,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
14 c.lt.ps $f19,$f5 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
15 c.nge.ps $f1,$f26 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
16 c.ngl.ps $f21,$f30 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 c.ngle.ps $fcc7,$f12,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
18 c.ngt.ps $fcc5,$f30,$f6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
[all …]
/llvm-project-15.0.7/clang/test/Analysis/
H A Dptr-arith.c341 struct s ss = *ps; in struct_pointer_canon()
348 clang_analyzer_eval((*ps).v == ps[0].v); // expected-warning{{TRUE}} in struct_pointer_canon()
349 clang_analyzer_eval((*ps).v == ps->v); // expected-warning{{TRUE}} in struct_pointer_canon()
350 clang_analyzer_eval(ps[0].v == ps->v); // expected-warning{{TRUE}} in struct_pointer_canon()
361 T2 ss = *ps; in struct_pointer_canon_typedef()
368 clang_analyzer_eval((*ps).v == ps[0].v); // expected-warning{{TRUE}} in struct_pointer_canon_typedef()
369 clang_analyzer_eval((*ps).v == ps->v); // expected-warning{{TRUE}} in struct_pointer_canon_typedef()
370 clang_analyzer_eval(ps[0].v == ps->v); // expected-warning{{TRUE}} in struct_pointer_canon_typedef()
374 T2 ss = **ps; in struct_pointer_canon_bidim_typedef()
379 struct s ss = *ps; in struct_pointer_canon_const()
[all …]
/llvm-project-15.0.7/llvm/test/MC/Mips/mips64r6/
H A Dinvalid-mips5-wrong-error.s8 … abs.ps $f22,$f8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
9 … alnv.ps $f12,$f18,$f30,$12 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
14 … c.eq.ps $fcc5,$f0,$f9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
15 … c.f.ps $fcc6,$f11,$f11 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
16 … c.le.ps $fcc1,$f7,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 … c.lt.ps $f19,$f5 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
18 … c.nge.ps $f1,$f26 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
19 … c.ngl.ps $f21,$f30 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
20 … c.ngle.ps $fcc7,$f12,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
21 … c.ngt.ps $fcc5,$f30,$f6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
[all …]
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DSMInstructions.td57 class SM_Real <SM_Pseudo ps, string opName = ps.Mnemonic>
58 : InstSI<ps.OutOperandList, ps.InOperandList, opName # ps.AsmOperands> {
78 let TSFlags = ps.TSFlags;
482 : SM_Real<ps>
531 : SM_Real<ps>
546 !if(ps.has_offset, ps.has_soffset, !if(ps.has_soffset, 0, ?)),
790 SM_Real<ps>,
818 : SM_Real<ps>
984 SM_Real<ps, opName>, SIMCInstr<ps.PseudoInstr, subtarget>, Enc64 {
997 : SMEM_Real_10Plus_common<op, ps, ps.Mnemonic, SIEncodingFamily.GFX10,
[all …]
H A DVOPInstructions.td159 VOP_Real <ps>,
160 InstSI <ps.OutOperandList, ps.InOperandList, asm_name # ps.AsmOperands, []>,
582 InstSI <ps.OutOperandList, ps.InOperandList, ps.Mnemonic # ps.AsmOperands, []>,
590 let Defs = ps.Defs;
591 let Uses = ps.Uses;
614 InstSI <ps.OutOperandList, ps.InOperandList, ps.Mnemonic # ps.AsmOperands9, []> {
621 let Defs = ps.Defs;
622 let Uses = ps.Uses;
812 InstSI <ps.OutOperandList, ps.InOperandList, ps.Mnemonic # ps.AsmOperands, []>,
820 let Defs = ps.Defs;
[all …]
/llvm-project-15.0.7/llvm/test/MC/Disassembler/Mips/mips64/
H A Dvalid-mips64-xfail.txt31 0x46 0xc0 0x45 0x85 # CHECK: abs.ps $f22, $f8
32 0x46 0xcd 0xde 0x40 # CHECK: add.ps $f25, $f27, $f13
34 0x46 0xc9 0x05 0x32 # CHECK: c.eq.ps $fcc5, $f0, $f9
37 0x46 0xc5 0x98 0x3c # CHECK: c.lt.ps $f19, $f5
38 0x46 0xda 0x08 0x3d # CHECK: c.nge.ps $f1, $f26
39 0x46 0xde 0xa8 0x3b # CHECK: c.ngl.ps $f21, $f30
56 0x46 0xc0 0x8d 0x86 # CHECK: mov.ps $f22, $f17
60 0x46 0xdf 0x8c 0x92 # CHECK: movz.ps $f18, $f17, ra
64 0x46 0xd0 0x03 0x82 # CHECK: mul.ps $f14, $f0, $f16
65 0x46 0xc0 0x6c 0xc7 # CHECK: neg.ps $f19, $f13
[all …]
/llvm-project-15.0.7/libcxx/include/
H A D__bsd_locale_defaults.h24 #define __libcpp_wcsnrtombs_l(dst, src, nwc, len, ps, loc) wcsnrtombs_l(dst, src, nwc, len, ps, lo… argument
25 #define __libcpp_wcrtomb_l(src, wc, ps, loc) wcrtomb_l(src, wc, ps, loc) argument
26 #define __libcpp_mbsnrtowcs_l(dst, src, nms, len, ps, loc) mbsnrtowcs_l(dst, src, nms, len, ps, lo… argument
27 #define __libcpp_mbrtowc_l(pwc, s, n, ps, l) mbrtowc_l(pwc, s, n, ps, l) argument
29 #define __libcpp_mbrlen_l(s, n, ps, l) mbrlen_l(s, n, ps, l) argument
31 #define __libcpp_mbsrtowcs_l(dest, src, len, ps, l) mbsrtowcs_l(dest, src, len, ps, l) argument
/llvm-project-15.0.7/llvm/test/MC/Mips/mips1/
H A Dinvalid-mips5-wrong-error.s9 abs.ps $f22,$f8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
10 alnv.ps $f12,$f18,$f30,$t0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
11 c.eq.ps $fcc5,$f0,$f9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
12 c.f.ps $fcc6,$f11,$f11 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
13 c.le.ps $fcc1,$f7,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
14 c.lt.ps $f19,$f5 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
15 c.nge.ps $f1,$f26 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
16 c.ngl.ps $f21,$f30 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 c.ngle.ps $fcc7,$f12,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
18 c.ngt.ps $fcc5,$f30,$f6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
[all …]
/llvm-project-15.0.7/llvm/test/MC/Disassembler/Mips/mips32r3/
H A Dvalid-xfail-mips32r3.txt31 0x46 0xc0 0x45 0x85 # CHECK: abs.ps $f22, $f8
32 0x46 0xcc 0xc6 0x00 # CHECK: add.ps $f24, $f24, $f12
36 0x46 0xc4 0x90 0x3c # CHECK: c.lt.ps $f18, $f4
37 0x46 0xda 0x10 0x3d # CHECK: c.nge.ps $f2, $f26
38 0x46 0xde 0xb0 0x3b # CHECK: c.ngl.ps $f22, $f30
45 0x46 0xdc 0x20 0x33 # CHECK: c.ueq.ps $f4, $f28
59 0x46 0xc0 0x85 0x86 # CHECK: mov.ps $f22, $f16
61 0x46 0xd3 0xf7 0x93 # CHECK: movn.ps $f30, $f30, s3
63 0x46 0xdf 0x84 0x92 # CHECK: movz.ps $f18, $f16, ra
65 0x46 0xc0 0x64 0x87 # CHECK: neg.ps $f18, $f12
[all …]
/llvm-project-15.0.7/llvm/test/MC/Disassembler/Mips/mips32r5/
H A Dvalid-xfail-mips32r5.txt31 0x46 0xc0 0x45 0x85 # CHECK: abs.ps $f22, $f8
32 0x46 0xcc 0xc6 0x00 # CHECK: add.ps $f24, $f24, $f12
36 0x46 0xc4 0x90 0x3c # CHECK: c.lt.ps $f18, $f4
37 0x46 0xda 0x10 0x3d # CHECK: c.nge.ps $f2, $f26
38 0x46 0xde 0xb0 0x3b # CHECK: c.ngl.ps $f22, $f30
45 0x46 0xdc 0x20 0x33 # CHECK: c.ueq.ps $f4, $f28
59 0x46 0xc0 0x85 0x86 # CHECK: mov.ps $f22, $f16
61 0x46 0xd3 0xf7 0x93 # CHECK: movn.ps $f30, $f30, s3
63 0x46 0xdf 0x84 0x92 # CHECK: movz.ps $f18, $f16, ra
65 0x46 0xc0 0x64 0x87 # CHECK: neg.ps $f18, $f12
[all …]
/llvm-project-15.0.7/llvm/test/MC/Disassembler/Mips/mips32r2/
H A Dvalid-xfail-mips32r2.txt31 0x46 0xc0 0x45 0x85 # CHECK: abs.ps $f22, $f8
32 0x46 0xcc 0xc6 0x00 # CHECK: add.ps $f24, $f24, $f12
36 0x46 0xc4 0x90 0x3c # CHECK: c.lt.ps $f18, $f4
37 0x46 0xda 0x10 0x3d # CHECK: c.nge.ps $f2, $f26
38 0x46 0xde 0xb0 0x3b # CHECK: c.ngl.ps $f22, $f30
45 0x46 0xdc 0x20 0x33 # CHECK: c.ueq.ps $f4, $f28
59 0x46 0xc0 0x85 0x86 # CHECK: mov.ps $f22, $f16
61 0x46 0xd3 0xf7 0x93 # CHECK: movn.ps $f30, $f30, s3
63 0x46 0xdf 0x84 0x92 # CHECK: movz.ps $f18, $f16, ra
65 0x46 0xc0 0x64 0x87 # CHECK: neg.ps $f18, $f12
[all …]
/llvm-project-15.0.7/llvm/test/MC/Disassembler/Mips/mips64r2/
H A Dvalid-xfail-mips64r2.txt31 0x46 0xc0 0x45 0x85 # CHECK: abs.ps $f22, $f8
35 0x46 0xc4 0x90 0x3c # CHECK: c.lt.ps $f18, $f4
36 0x46 0xda 0x10 0x3d # CHECK: c.nge.ps $f2, $f26
37 0x46 0xde 0xb0 0x3b # CHECK: c.ngl.ps $f22, $f30
44 0x46 0xdc 0x20 0x33 # CHECK: c.ueq.ps $f4, $f28
52 0x46 0xc0 0x85 0x86 # CHECK: mov.ps $f22, $f16
54 0x46 0xd3 0xf7 0x93 # CHECK: movn.ps $f30, $f30, s3
56 0x46 0xdf 0x84 0x92 # CHECK: movz.ps $f18, $f16, ra
59 0x46 0xc0 0x64 0x87 # CHECK: neg.ps $f18, $f12
64 0x46 0xde 0x46 0x2c # CHECK: pll.ps $f24, $f8, $f30
[all …]
/llvm-project-15.0.7/llvm/test/MC/Disassembler/Mips/mips64r3/
H A Dvalid-xfail-mips64r3.txt31 0x46 0xc0 0x45 0x85 # CHECK: abs.ps $f22, $f8
35 0x46 0xc4 0x90 0x3c # CHECK: c.lt.ps $f18, $f4
36 0x46 0xda 0x10 0x3d # CHECK: c.nge.ps $f2, $f26
37 0x46 0xde 0xb0 0x3b # CHECK: c.ngl.ps $f22, $f30
44 0x46 0xdc 0x20 0x33 # CHECK: c.ueq.ps $f4, $f28
52 0x46 0xc0 0x85 0x86 # CHECK: mov.ps $f22, $f16
54 0x46 0xd3 0xf7 0x93 # CHECK: movn.ps $f30, $f30, s3
56 0x46 0xdf 0x84 0x92 # CHECK: movz.ps $f18, $f16, ra
59 0x46 0xc0 0x64 0x87 # CHECK: neg.ps $f18, $f12
64 0x46 0xde 0x46 0x2c # CHECK: pll.ps $f24, $f8, $f30
[all …]
/llvm-project-15.0.7/llvm/test/MC/Disassembler/Mips/mips64r5/
H A Dvalid-xfail-mips64r5.txt31 0x46 0xc0 0x45 0x85 # CHECK: abs.ps $f22, $f8
35 0x46 0xc4 0x90 0x3c # CHECK: c.lt.ps $f18, $f4
36 0x46 0xda 0x10 0x3d # CHECK: c.nge.ps $f2, $f26
37 0x46 0xde 0xb0 0x3b # CHECK: c.ngl.ps $f22, $f30
44 0x46 0xdc 0x20 0x33 # CHECK: c.ueq.ps $f4, $f28
52 0x46 0xc0 0x85 0x86 # CHECK: mov.ps $f22, $f16
54 0x46 0xd3 0xf7 0x93 # CHECK: movn.ps $f30, $f30, s3
56 0x46 0xdf 0x84 0x92 # CHECK: movz.ps $f18, $f16, ra
59 0x46 0xc0 0x64 0x87 # CHECK: neg.ps $f18, $f12
64 0x46 0xde 0x46 0x2c # CHECK: pll.ps $f24, $f8, $f30
[all …]

12345678910>>...12