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};
116 !strconcat(iname, params.PAsm, "\t$coproc, $Rd, $imm"),
132 !strconcat(iname, params.PAsm, "\t$coproc, $Rd, $Rn, $imm"),
150 !strconcat(iname, params.PAsm, "\t$coproc, $Rd, $Rn, $Rm, $imm"),
219 def : Pat<(i32 (int_arm_cde_cx1 timm:$coproc, timm:$imm)),
220 (i32 (CDE_CX1 p_imm:$coproc, imm_13b:$imm))>;
221 def : Pat<(i32 (int_arm_cde_cx1a timm:$coproc, GPRwithAPSR_NZCVnosp:$acc,
223 (i32 (CDE_CX1A p_imm:$coproc, GPRwithAPSR_NZCVnosp:$acc,
[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.h779 #define __arm_cdp(coproc, opc1, CRd, CRn, CRm, opc2) \ argument
780 __builtin_arm_cdp(coproc, opc1, CRd, CRn, CRm, opc2)
783 #define __arm_ldc(coproc, CRd, p) __builtin_arm_ldc(coproc, CRd, p) argument
784 #define __arm_stc(coproc, CRd, p) __builtin_arm_stc(coproc, CRd, p) argument
786 #define __arm_mcr(coproc, opc1, value, CRn, CRm, opc2) \ argument
787 __builtin_arm_mcr(coproc, opc1, value, CRn, CRm, opc2)
788 #define __arm_mrc(coproc, opc1, CRn, CRm, opc2) \ argument
789 __builtin_arm_mrc(coproc, opc1, CRn, CRm, opc2)
792 #define __arm_ldcl(coproc, CRd, p) __builtin_arm_ldcl(coproc, CRd, p) argument
793 #define __arm_stcl(coproc, CRd, p) __builtin_arm_stcl(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.cpp1870 unsigned coproc = fieldFromInstruction(Insn, 8, 4); in DecodeCopMemInstruction() local
1936 if (coproc == 0xA || coproc == 0xB || in DecodeCopMemInstruction()
1938 (coproc == 0x8 || coproc == 0x9 || coproc == 0xA || coproc == 0xB || in DecodeCopMemInstruction()
1939 coproc == 0xE || coproc == 0xF))) in DecodeCopMemInstruction()
1946 if (featureBits[ARM::HasV8Ops] && (coproc != 14)) in DecodeCopMemInstruction()
1949 Inst.addOperand(MCOperand::createImm(coproc)); in DecodeCopMemInstruction()