Searched refs:target (Results 101 - 125 of 1558) sorted by path

1234567891011>>

/linux-master/arch/arc/include/asm/
H A Dentry-arcv2.h222 ld r10, [sp, PT_lpc] ; lp_count can't be target of LD
H A Djump_label.h67 jump_label_t target; member in struct:jump_entry
/linux-master/arch/arc/kernel/
H A Ddisasm.c77 state->target = fieldA + (addr & ~0x3);
97 state->target = fieldA + (addr & ~0x3);
183 state->target = fieldC;
187 state->target = get_reg(fieldC, regs, cregs);
203 state->target = fieldC;
304 state->target = get_reg(FIELD_S_B(state->words[0]),
318 state->target = get_reg(31, regs, cregs);
402 state->target = FIELD_S_s8(state->words[0]) + (addr & ~0x03);
411 state->target = fieldA + (addr & ~0x03);
417 state->target
[all...]
H A Djump_label.c46 static inline u32 arc_gen_branch(jump_label_t pc, jump_label_t target) argument
50 u32 u_offset = target - pcl;
91 instr = arc_gen_branch(entry->code, entry->target);
H A Dptrace.c102 static int genregs_get(struct task_struct *target, argument
106 const struct pt_regs *ptregs = task_pt_regs(target);
107 const struct callee_regs *cregs = task_callee_regs(target);
148 membuf_store(&to, target->thread.fault_address); // efa
151 stop_pc_val = target->thread.fault_address;
161 static int genregs_set(struct task_struct *target, argument
166 const struct pt_regs *ptregs = task_pt_regs(target);
167 const struct callee_regs *cregs = task_callee_regs(target);
241 static int arcv2regs_get(struct task_struct *target, argument
245 const struct pt_regs *regs = task_pt_regs(target);
259 arcv2regs_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
[all...]
/linux-master/arch/arm/include/asm/
H A Djump_label.h44 jump_label_t target; member in struct:jump_entry
/linux-master/arch/arm/kernel/
H A Dhw_breakpoint.c645 if (!bp->hw.target)
H A Djump_label.c15 insn = arm_gen_branch(entry->code, entry->target);
H A Dptrace.c544 static int gpr_get(struct task_struct *target, argument
548 return membuf_write(&to, task_pt_regs(target), sizeof(struct pt_regs));
551 static int gpr_set(struct task_struct *target, argument
557 struct pt_regs newregs = *task_pt_regs(target);
568 *task_pt_regs(target) = newregs;
572 static int fpa_get(struct task_struct *target, argument
576 return membuf_write(&to, &task_thread_info(target)->fpstate,
580 static int fpa_set(struct task_struct *target, argument
585 struct thread_info *thread = task_thread_info(target);
611 static int vfp_get(struct task_struct *target, argument
631 vfp_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
[all...]
H A Dsmp.c544 static void smp_cross_call(const struct cpumask *target, unsigned int ipinr);
706 static void smp_cross_call(const struct cpumask *target, unsigned int ipinr) argument
708 trace_ipi_raise(target, ipi_types[ipinr]);
709 __ipi_send_mask(ipi_desc[ipinr], target);
/linux-master/arch/arm/mach-imx/
H A Dmmdc.c220 int target; local
225 target = cpumask_any_but(cpu_online_mask, cpu);
226 if (target >= nr_cpu_ids)
229 perf_pmu_migrate_context(&pmu_mmdc->pmu, cpu, target);
230 cpumask_set_cpu(target, &pmu_mmdc->cpu);
/linux-master/arch/arm/mach-omap2/
H A Dsleep34xx.S117 * power domains states to the desired target power states.
124 * target state.
392 cmp r2, #0x0 @ Check if target power state was OFF or RET
/linux-master/arch/arm/net/
H A Dbpf_jit_32.c195 * target : final JITed code.
210 u32 *target; member in struct:jit_ctx
276 if (ctx->target != NULL)
277 ctx->target[ctx->idx] = inst;
415 if (ctx->target == NULL) {
435 ctx->target[offset / 4] = k;
458 if (ctx->target == NULL)
512 if (ctx->target == NULL)
2113 if (ctx->target == NULL)
2118 if (ctx->target
[all...]
/linux-master/arch/arm64/
H A DMakefile44 KBUILD_RUSTFLAGS += --target=aarch64-unknown-none -Ctarget-feature="-neon"
82 # Tell the assembler to support instructions from the latest target
115 # Prefer the baremetal ELF build target, but not all toolchains include
122 # Same as above, prefer ELF but fall back to linux target if needed.
154 # Default target when executing plain make
191 # In order to do that, we should use the archprepare target, but we can't since
/linux-master/arch/arm64/include/asm/
H A Dfpsimd.h99 extern void fpsimd_flush_task_state(struct task_struct *target);
/linux-master/arch/arm64/include/uapi/asm/
H A Dkvm.h61 * Supported CPU Targets - Adding a new target type is not recommended,
70 /* Generic ARM v8 target */
113 __u32 target; member in struct:kvm_vcpu_init
/linux-master/arch/arm64/kernel/
H A Dalternative.c49 * Check if the target PC is within an alternative block.
67 unsigned long target; local
69 target = (unsigned long)altinsnptr + offset;
76 if (branch_insn_requires_update(alt, target)) {
77 offset = target - (unsigned long)insnptr;
82 unsigned long target; local
90 target = align_down(altinsnptr, SZ_4K) + orig_offset;
91 new_offset = target - align_down(insnptr, SZ_4K);
H A Dhw_breakpoint.c163 struct task_struct *tsk = bp->hw.target;
570 if (hw->ctrl.privilege == AARCH64_BREAKPOINT_EL1 && bp->hw.target)
H A Dptrace.c473 static int hw_break_get(struct task_struct *target, argument
491 ret = ptrace_hbp_get_addr(note_type, target, idx, &addr);
494 ret = ptrace_hbp_get_ctrl(note_type, target, idx, &ctrl);
505 static int hw_break_set(struct task_struct *target, argument
528 ret = ptrace_hbp_set_addr(note_type, target, idx, addr);
539 ret = ptrace_hbp_set_ctrl(note_type, target, idx, ctrl);
554 static int gpr_get(struct task_struct *target, argument
558 struct user_pt_regs *uregs = &task_pt_regs(target)->user_regs;
562 static int gpr_set(struct task_struct *target, const struct user_regset *regset, argument
567 struct user_pt_regs newregs = task_pt_regs(target)
580 fpr_active(struct task_struct *target, const struct user_regset *regset) argument
590 __fpr_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
603 fpr_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
615 __fpr_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf, unsigned int start_pos) argument
642 fpr_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
661 tls_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
678 tls_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
700 fpmr_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
712 fpmr_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
733 system_call_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
740 system_call_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
758 sve_init_header_from_task(struct user_sve_header *header, struct task_struct *target, enum vec_type type) argument
811 sve_get_common(struct task_struct *target, const struct user_regset *regset, struct membuf to, enum vec_type type) argument
863 sve_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
873 sve_set_common(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf, enum vec_type type) argument
1010 sve_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
1026 ssve_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
1036 ssve_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
1048 za_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
1097 za_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
1182 zt_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
1202 zt_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
1239 pac_mask_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
1260 pac_enabled_keys_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
1272 pac_enabled_keys_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
1326 pac_address_keys_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
1341 pac_address_keys_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
1375 pac_generic_keys_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
1390 pac_generic_keys_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
1415 tagged_addr_ctrl_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
1427 tagged_addr_ctrl_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
1659 compat_gpr_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
1670 compat_gpr_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
1732 compat_vfp_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
1757 compat_vfp_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
1788 compat_tls_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) argument
1795 compat_tls_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
[all...]
H A Dsmp.c772 static void smp_cross_call(const struct cpumask *target, unsigned int ipinr);
954 static void smp_cross_call(const struct cpumask *target, unsigned int ipinr) argument
956 trace_ipi_raise(target, ipi_types[ipinr]);
957 __ipi_send_mask(ipi_desc[ipinr], target);
H A Dtraps.c1004 unsigned long target; local
1007 target = pt_regs_read_reg(regs, FIELD_GET(CFI_BRK_IMM_TARGET, esr));
1010 switch (report_cfi_failure(regs, regs->pc, &target, type)) {
/linux-master/arch/arm64/kernel/vdso32/
H A DMakefile11 CC_COMPAT += --target=arm-linux-gnueabi
/linux-master/arch/arm64/kvm/
H A Darm.c1387 if (init->target != KVM_ARM_TARGET_GENERIC_V8 &&
1388 init->target != kvm_target_cpu())
1719 .target = KVM_ARM_TARGET_GENERIC_V8,
H A Dinject_fault.c20 /* If not nesting, EL1 is the only possible exception target */
52 static bool match_target_el(struct kvm_vcpu *vcpu, unsigned long target) argument
54 return (vcpu_get_flag(vcpu, EXCEPT_MASK) == target);
/linux-master/arch/arm64/kvm/hyp/
H A Dhyp-entry.S125 .macro invalid_vector label, target = __guest_exit_panic
128 b \target
151 .macro valid_vect target
163 b \target
168 .macro invalid_vect target
176 b \target

Completed in 419 milliseconds

1234567891011>>