Home
last modified time | relevance | path

Searched refs:coproc (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMInstrCDE.td53 : Thumb2XI<oops, !con((ins p_imm:$coproc), iops),
57 bits<3> coproc;
63 let Inst{10-8} = coproc{2-0};
219 def : Pat<(i32 (int_arm_cde_cx1 timm:$coproc, timm:$imm)),
220 (i32 (CDE_CX1 p_imm:$coproc, imm_13b:$imm))>;
237 def : Pat<(i32 (int_arm_cde_cx3a timm:$coproc,
241 (i32 (CDE_CX3A p_imm:$coproc,
299 iname#"\t$coproc, $Vd, $imm", params.Cstr> {
548 def : Pat<(f32 (int_arm_cde_vcx1 timm:$coproc, timm:$imm)),
549 (f32 (CDE_VCX1_fpsp p_imm:$coproc, imm_11b:$imm))>;
[all …]
H A DARMInstrMVE.td5866 // start of coproc mov
5967 // end of coproc mov
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Darm_acle.h775 #define __arm_ldc(coproc, CRd, p) __builtin_arm_ldc(coproc, CRd, p) argument
776 #define __arm_stc(coproc, CRd, p) __builtin_arm_stc(coproc, CRd, p) argument
784 #define __arm_ldcl(coproc, CRd, p) __builtin_arm_ldcl(coproc, CRd, p) argument
785 #define __arm_stcl(coproc, CRd, p) __builtin_arm_stcl(coproc, CRd, p) argument
791 #define __arm_ldcl(coproc, CRd, p) __builtin_arm_ldcl(coproc, CRd, p) argument
792 #define __arm_stcl(coproc, CRd, p) __builtin_arm_stcl(coproc, CRd, p) argument
800 #define __arm_ldc2(coproc, CRd, p) __builtin_arm_ldc2(coproc, CRd, p) argument
801 #define __arm_stc2(coproc, CRd, p) __builtin_arm_stc2(coproc, CRd, p) argument
802 #define __arm_ldc2l(coproc, CRd, p) __builtin_arm_ldc2l(coproc, CRd, p) argument
803 #define __arm_stc2l(coproc, CRd, p) __builtin_arm_stc2l(coproc, CRd, p) argument
[all …]
/freebsd/sys/arm/arm/
H A Dundefined.c118 install_coproc_handler(int coproc, undef_handler_t handler) in install_coproc_handler() argument
122 KASSERT(coproc >= 0 && coproc < MAX_COPROCS, ("bad coproc")); in install_coproc_handler()
128 install_coproc_handler_static(coproc, uh); in install_coproc_handler()
133 install_coproc_handler_static(int coproc, struct undefined_handler *uh) in install_coproc_handler_static() argument
136 LIST_INSERT_HEAD(&undefined_handlers[coproc], uh, uh_link); in install_coproc_handler_static()
H A Dvfp.c136 u_int coproc, vfp_arch; in vfp_init() local
138 coproc = get_coprocessorACR(); in vfp_init()
139 coproc |= COPROC10 | COPROC11; in vfp_init()
140 set_coprocessorACR(coproc); in vfp_init()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicsARM.td1400 !listconcat([llvm_i32_ty /* coproc */], args, [llvm_i32_ty /* imm */]),
1404 !listconcat([llvm_i32_ty /* coproc */, llvm_i32_ty /* acc */], args,
1410 !listconcat([llvm_i32_ty /* coproc */], args, [llvm_i32_ty /* imm */]),
1414 !listconcat([llvm_i32_ty /* coproc */, llvm_i32_ty /* acc_lo */,
1426 !listconcat([llvm_i32_ty /* coproc */], args, [llvm_i32_ty /* imm */]),
1430 !listconcat([llvm_i32_ty /* coproc */, LLVMMatchType<0> /* acc */],
1442 !listconcat([llvm_i32_ty /* coproc */], args, [llvm_i32_ty /* imm */]),
1446 !listconcat([llvm_i32_ty /* coproc */, llvm_v16i8_ty /* acc */],
1452 !listconcat([llvm_i32_ty /* coproc */, LLVMMatchType<0> /* inactive */],
1457 !listconcat([llvm_i32_ty /* coproc */, LLVMMatchType<0> /* acc */],
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp1867 unsigned coproc = fieldFromInstruction(Insn, 8, 4); in DecodeCopMemInstruction() local
1933 if (coproc == 0xA || coproc == 0xB || in DecodeCopMemInstruction()
1935 (coproc == 0x8 || coproc == 0x9 || coproc == 0xA || coproc == 0xB || in DecodeCopMemInstruction()
1936 coproc == 0xE || coproc == 0xF))) in DecodeCopMemInstruction()
1943 if (featureBits[ARM::HasV8Ops] && (coproc != 14)) in DecodeCopMemInstruction()
1946 Inst.addOperand(MCOperand::createImm(coproc)); in DecodeCopMemInstruction()