Home
last modified time | relevance | path

Searched refs:mcpu (Results 1 – 19 of 19) sorted by relevance

/Linux-v6.6/arch/m68k/
DMakefile41 cpuflags-$(CONFIG_M5441x) = $(call cc-option,-mcpu=54455,-mcfv4e)
42 cpuflags-$(CONFIG_M54xx) = $(call cc-option,-mcpu=5475,-m5200)
43 cpuflags-$(CONFIG_M5407) = $(call cc-option,-mcpu=5407,-m5200)
44 cpuflags-$(CONFIG_M532x) = $(call cc-option,-mcpu=532x,-m5307)
45 cpuflags-$(CONFIG_M537x) = $(call cc-option,-mcpu=537x,-m5307)
46 cpuflags-$(CONFIG_M5307) = $(call cc-option,-mcpu=5307,-m5200)
47 cpuflags-$(CONFIG_M528x) = $(call cc-option,-mcpu=528x,-m5307)
48 cpuflags-$(CONFIG_M5275) = $(call cc-option,-mcpu=5275,-m5307)
49 cpuflags-$(CONFIG_M5272) = $(call cc-option,-mcpu=5272,-m5307)
50 cpuflags-$(CONFIG_M5271) = $(call cc-option,-mcpu=5271,-m5307)
[all …]
/Linux-v6.6/arch/alpha/
DMakefile18 cpuflags-$(CONFIG_ALPHA_EV4) := -mcpu=ev4
19 cpuflags-$(CONFIG_ALPHA_EV5) := -mcpu=ev5
20 cpuflags-$(CONFIG_ALPHA_EV56) := -mcpu=ev56
21 cpuflags-$(CONFIG_ALPHA_POLARIS) := -mcpu=pca56
22 cpuflags-$(CONFIG_ALPHA_SX164) := -mcpu=pca56
23 cpuflags-$(CONFIG_ALPHA_EV6) := -mcpu=ev6
24 cpuflags-$(CONFIG_ALPHA_EV67) := -mcpu=ev67
29 cpuflags-$(CONFIG_ALPHA_GENERIC) := -mcpu=ev5
/Linux-v6.6/arch/arc/
DMakefile14 tune-mcpu-def-$(CONFIG_ISA_ARCOMPACT) := -mcpu=arc700
15 tune-mcpu-def-$(CONFIG_ISA_ARCV2) := -mcpu=hs38
18 cflags-y += $(tune-mcpu-def-y)
20 tune-mcpu := $(CONFIG_ARC_TUNE_MCPU)
21 ifneq ($(call cc-option,$(tune-mcpu)),)
22 cflags-y += $(tune-mcpu)
27 cflags-y += $(tune-mcpu-def-y)
DKconfig153 string "Override default -mcpu compiler flag"
156 Override default -mcpu=xxx compiler flag (which is set depending on
/Linux-v6.6/Documentation/bpf/
Dclang-notes.rst15 Clang can select the eBPF ISA version using ``-mcpu=v3`` for example to select version 3.
32 Clang can generate atomic instructions by default when ``-mcpu=v3`` is
33 enabled. If a lower version for ``-mcpu`` is set, the only atomic instruction
35 the atomics features, while keeping a lower ``-mcpu`` version, you can use
Dbpf_devel_QA.rst605 A: LLVM has a ``-mcpu`` selector for the BPF back end in order to allow
610 LLVM has an option to select ``-mcpu=probe`` where it will probe the host
616 $ llc -march bpf -mcpu=help
627 extensions such that ``-mcpu=probe`` users can benefit from the
633 By the way, the BPF kernel selftests run with ``-mcpu=probe`` for better
/Linux-v6.6/arch/sparc/
DMakefile32 KBUILD_CFLAGS += -m32 -mcpu=v8 -pipe -mno-fpu -fcall-used-g5 -fcall-used-g7
47 KBUILD_CFLAGS += -m64 -pipe -mno-fpu -mcpu=ultrasparc -mcmodel=medlow
51 KBUILD_AFLAGS += -m64 -mcpu=ultrasparc -Wa,--undeclared-regs
/Linux-v6.6/arch/csky/
DMakefile39 KBUILD_CFLAGS += -mcpu=$(CPUTYPE) -Wa,-mcpu=$(MCPU_STR)
/Linux-v6.6/tools/testing/selftests/tc-testing/
DMakefile10 PROBE := $(shell $(LLC) -march=bpf -mcpu=probe -filetype=null /dev/null 2>&1)
28 $(LLC) -march=bpf -mcpu=$(CPU) $(LLC_FLAGS) -filetype=obj -o $@
/Linux-v6.6/arch/powerpc/boot/
DMakefile46 BOOTTARGETFLAGS += -mcpu=$(CONFIG_TARGET_CPU)
49 BOOTTARGETFLAGS += -mcpu=powerpc64le
51 BOOTTARGETFLAGS += -mcpu=powerpc64
55 $(obj)/4xx.o: BOOTTARGETFLAGS += -mcpu=405
56 $(obj)/ebony.o: BOOTTARGETFLAGS += -mcpu=440
57 $(obj)/cuboot-hotfoot.o: BOOTTARGETFLAGS += -mcpu=405
58 $(obj)/cuboot-taishan.o: BOOTTARGETFLAGS += -mcpu=440
59 $(obj)/cuboot-katmai.o: BOOTTARGETFLAGS += -mcpu=440
60 $(obj)/cuboot-acadia.o: BOOTTARGETFLAGS += -mcpu=405
61 $(obj)/treeboot-iss4xx.o: BOOTTARGETFLAGS += -mcpu=405
[all …]
/Linux-v6.6/tools/testing/selftests/powerpc/copyloops/
DMakefile7 CFLAGS += -mcpu=power4
/Linux-v6.6/arch/x86/kernel/cpu/mce/
Dinject.c257 struct mce *mcpu = &per_cpu(injectm, cpu); in raise_mce() local
258 if (!mcpu->finished || in raise_mce()
259 MCJ_CTX(mcpu->inject_flags) != MCJ_CTX_RANDOM) in raise_mce()
/Linux-v6.6/tools/testing/selftests/hid/
DMakefile199 $(Q)$(CLANG) $3 -O2 --target=bpf -c $1 -mcpu=v3 -o $2
204 $(Q)$(CLANG) $3 -O2 --target=bpf -c $1 -mcpu=v2 -o $2
/Linux-v6.6/arch/powerpc/
DMakefile157 CFLAGS-$(CONFIG_TARGET_CPU_BOOL) += -mcpu=$(CONFIG_TARGET_CPU)
158 AFLAGS-$(CONFIG_TARGET_CPU_BOOL) += -mcpu=$(CONFIG_TARGET_CPU)
DKconfig8 def_bool PPC64 && $(cc-option, -mcpu=power10 -mprefixed)
16 def_bool PPC64 && CC_IS_GCC && $(cc-option, -mcpu=power10 -mpcrel)
/Linux-v6.6/arch/arm/kernel/
DMakefile84 AFLAGS_iwmmxt.o := -Wa,-mcpu=iwmmxt
/Linux-v6.6/tools/testing/selftests/bpf/
DMakefile42 ifneq ($(shell $(CLANG) --target=bpf -mcpu=help 2>&1 | grep 'v4'),)
391 $(Q)$(CLANG) $3 -O2 --target=bpf -c $1 -mcpu=v3 -o $2
396 $(Q)$(CLANG) $3 -O2 --target=bpf -c $1 -mcpu=v2 -o $2
401 $(Q)$(CLANG) $3 -O2 --target=bpf -c $1 -mcpu=v4 -o $2
/Linux-v6.6/crypto/
DMakefile114 aegis128-cflags-y := -ffreestanding -mcpu=generic+crypto
/Linux-v6.6/Documentation/kbuild/
Dmakefiles.rst397 AFLAGS_crunch-bits.o := -Wa,-mcpu=ep9312
398 AFLAGS_iwmmxt.o := -Wa,-mcpu=iwmmxt
1118 KBUILD_AFLAGS += -m64 -mcpu=ultrasparc