/arch/m68k/ |
D | Makefile | 37 cpuflags-$(CONFIG_M54xx) := $(call cc-option,-mcpu=5475,-m5200) 38 cpuflags-$(CONFIG_M5407) := $(call cc-option,-mcpu=5407,-m5200) 39 cpuflags-$(CONFIG_M532x) := $(call cc-option,-mcpu=532x,-m5307) 40 cpuflags-$(CONFIG_M5307) := $(call cc-option,-mcpu=5307,-m5200) 41 cpuflags-$(CONFIG_M528x) := $(call cc-option,-mcpu=528x,-m5307) 42 cpuflags-$(CONFIG_M5275) := $(call cc-option,-mcpu=5275,-m5307) 43 cpuflags-$(CONFIG_M5272) := $(call cc-option,-mcpu=5272,-m5307) 44 cpuflags-$(CONFIG_M5271) := $(call cc-option,-mcpu=5271,-m5307) 45 cpuflags-$(CONFIG_M523x) := $(call cc-option,-mcpu=523x,-m5307) 46 cpuflags-$(CONFIG_M5249) := $(call cc-option,-mcpu=5249,-m5200) [all …]
|
/arch/hexagon/ |
D | Makefile | 18 cflags-$(CONFIG_HEXAGON_ARCH_V1) += $(call cc-option,-mv1) 19 cflags-$(CONFIG_HEXAGON_ARCH_V2) += $(call cc-option,-mv2) 20 cflags-$(CONFIG_HEXAGON_ARCH_V3) += $(call cc-option,-mv3) 21 cflags-$(CONFIG_HEXAGON_ARCH_V4) += $(call cc-option,-mv4) 23 aflags-$(CONFIG_HEXAGON_ARCH_V1) += $(call cc-option,-mv1) 24 aflags-$(CONFIG_HEXAGON_ARCH_V2) += $(call cc-option,-mv2) 25 aflags-$(CONFIG_HEXAGON_ARCH_V3) += $(call cc-option,-mv3) 26 aflags-$(CONFIG_HEXAGON_ARCH_V4) += $(call cc-option,-mv4) 28 ldflags-$(CONFIG_HEXAGON_ARCH_V1) += $(call cc-option,-mv1) 29 ldflags-$(CONFIG_HEXAGON_ARCH_V2) += $(call cc-option,-mv2) [all …]
|
/arch/x86/ |
D | Makefile.um | 11 KBUILD_CFLAGS += $(call cc-option,-m32) 12 KBUILD_AFLAGS += $(call cc-option,-m32) 13 LINK-y += $(call cc-option,-m32) 24 cflags-y += $(call cc-option,-mpreferred-stack-boundary=2) 33 KBUILD_CFLAGS += $(shell if [ $(call cc-version) -lt 0400 ] ; then \ 34 echo $(call cc-option,-fno-unit-at-a-time); \ 35 else echo $(call cc-option,-funit-at-a-time); fi ;) 59 KBUILD_CFLAGS += $(call cc-option,-funit-at-a-time)
|
D | Makefile_32.cpu | 5 HAS_MTUNE := $(call cc-option-yn, -mtune=i386) 7 tune = $(call cc-option,-mtune=$(1),$(2)) 9 tune = $(call cc-option,-mcpu=$(1),$(2)) 12 align := $(cc-option-align) 27 cflags-$(CONFIG_MK8) += $(call cc-option,-march=k8,-march=athlon) 30 cflags-$(CONFIG_MWINCHIPC6) += $(call cc-option,-march=winchip-c6,-march=i586) 31 cflags-$(CONFIG_MWINCHIP3D) += $(call cc-option,-march=winchip2,-march=i586) 32 cflags-$(CONFIG_MCYRIXIII) += $(call cc-option,-march=c3,-march=i486) $(align)-functions=0 $(align)… 33 cflags-$(CONFIG_MVIAC3_2) += $(call cc-option,-march=c3-2,-march=i686) 36 cflags-$(CONFIG_MATOM) += $(call cc-option,-march=atom,$(call cc-option,-march=core2,-march=i686))… [all …]
|
D | Makefile | 20 biarch := $(call cc-option,-m32) 31 KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2) 35 KBUILD_CFLAGS += $(call cc-ifversion, -lt, 0400, \ 36 $(call cc-option,-fno-unit-at-a-time)) 53 cflags-$(CONFIG_MK8) += $(call cc-option,-march=k8) 54 cflags-$(CONFIG_MPSC) += $(call cc-option,-march=nocona) 57 $(call cc-option,-march=core2,$(call cc-option,-mtune=generic)) 58 cflags-$(CONFIG_MATOM) += $(call cc-option,-march=atom) \ 59 $(call cc-option,-mtune=atom,$(call cc-option,-mtune=generic)) 60 cflags-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mtune=generic) [all …]
|
/arch/s390/include/asm/ |
D | cpu_mf.h | 71 int cc; in lcctl() local 77 : "=d" (cc) : "m" (ctl) : "cc"); in lcctl() 78 return cc; in lcctl() 85 int cc; in ecctr() local 91 : "=d" (content), "=d" (cc) : "d" (ctr) : "cc"); in ecctr() 92 if (!cc) in ecctr() 94 return cc; in ecctr()
|
D | timex.h | 22 int cc; in set_clock() local 28 : "=d" (cc) : "Q" (time) : "cc"); in set_clock() 29 return cc; in set_clock() 34 int cc; in store_clock() local 40 : "=d" (cc), "=Q" (*time) : : "cc"); in store_clock() 41 return cc; in store_clock()
|
/arch/blackfin/mach-bf561/include/mach/ |
D | mem_map.h | 140 if cc jump 2f; \ 141 cc = preg == 0x0; \ 144 if !cc jump 3f; \ 147 cc = !cc; /* restore cc to 0 */ \ 150 cc = preg == 0x0; \ 153 if cc jump 4f; \ 155 cc = !cc; /* restore cc to 1 */ \ 166 cc = bittst(dreg, 0); \ 167 if !cc jump 1f; \
|
/arch/blackfin/kernel/ |
D | ftrace-entry.S | 41 cc = r3 == 0; define 42 if ! cc jump _ftrace_stub (bp); 91 cc = r3 == 0; define 92 if ! cc jump _ftrace_stub (bp); 106 cc = r2 == r3; define 107 if ! cc jump .Ldo_trace; 116 cc = r2 == r3; define 117 if ! cc jump _ftrace_graph_caller; 127 cc = r2 == r3; define 128 if ! cc jump _ftrace_graph_caller;
|
/arch/blackfin/mach-bf561/ |
D | atomic.S | 47 if cc jump .Ldone_corelock; 71 if cc jump .Ldone_corelock_noflush; 127 cc = r5 == 0; define 128 if cc jump 1f; 165 cc = r5 == 0; define 166 if cc jump 1f; 235 cc = r6 == 0; define 236 if cc jump .Lcache_synced 283 cc = bittst( r3, 0 ); define 284 r3 = cc; [all …]
|
/arch/m68k/ifpsp060/src/ |
D | itest.S | 174 mov.w &0x0000,%cc 179 mov.w %cc,SCCR(%a6) 198 mov.w &0x0000,%cc 203 mov.w %cc,SCCR(%a6) 221 mov.w &0x0000,%cc 226 mov.w %cc,SCCR(%a6) 244 mov.w &0x0000,%cc 249 mov.w %cc,SCCR(%a6) 268 mov.w &0x0000,%cc 273 mov.w %cc,SCCR(%a6) [all …]
|
/arch/s390/ |
D | Makefile | 38 cflags-$(CONFIG_MARCH_G5) += $(call cc-option,-march=g5) 39 cflags-$(CONFIG_MARCH_Z900) += $(call cc-option,-march=z900) 40 cflags-$(CONFIG_MARCH_Z990) += $(call cc-option,-march=z990) 41 cflags-$(CONFIG_MARCH_Z9_109) += $(call cc-option,-march=z9-109) 42 cflags-$(CONFIG_MARCH_Z10) += $(call cc-option,-march=z10) 43 cflags-$(CONFIG_MARCH_Z196) += $(call cc-option,-march=z196) 54 ifeq ($(call cc-option-yn,-mkernel-backchain),y) 65 ifeq ($(call cc-option-yn,-mpacked-stack),y) 75 ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y) 77 ifneq ($(call cc-option-yn,-mstack-size=8192),y) [all …]
|
/arch/blackfin/mach-common/ |
D | entry.S | 63 cc = r6 == r7; define 64 if !cc jump _bfin_return_from_exception; 68 cc = R6 == R7; define 69 if cc jump _ex_dcplb_miss (BP); 72 cc = R6 == R7; define 73 if cc jump _ex_dcplb_viol (BP); 140 cc = r7 == r6; define 141 if cc jump _bfin_return_from_exception; 148 cc = bittst(r6, 4); define 149 if cc jump _bfin_return_from_exception; [all …]
|
/arch/x86/kernel/acpi/realmode/ |
D | Makefile | 38 $(call cc-option, -ffreestanding) \ 39 $(call cc-option, -fno-toplevel-reorder,\ 40 $(call cc-option, -fno-unit-at-a-time)) \ 41 $(call cc-option, -fno-stack-protector) \ 42 $(call cc-option, -mpreferred-stack-boundary=2) 43 KBUILD_CFLAGS += $(call cc-option, -m32)
|
/arch/mips/ |
D | Makefile | 47 …CROSS_COMPILE := $(call cc-cross-prefix, $(tool-archpref)-linux- $(tool-archpref)-linux-gnu- $(t… 53 ifeq ($(call cc-option-yn,-mmcount-ra-address), y) 58 cflags-y += $(call cc-option, -mno-check-zero-division) 116 cflags-$(CONFIG_CPU_HAS_SMARTMIPS) += $(call cc-option,-msmartmips) 118 cflags-$(CONFIG_SB1XXX_CORELIS) += $(call cc-option,-mno-sched-prolog) \ 131 cflags-$(CONFIG_CPU_MIPS32_R1) += $(call cc-option,-march=mips32,-mips32 -U_MIPS_ISA -D_MIPS_ISA=_M… 133 cflags-$(CONFIG_CPU_MIPS32_R2) += $(call cc-option,-march=mips32r2,-mips32r2 -U_MIPS_ISA -D_MIPS_IS… 135 cflags-$(CONFIG_CPU_MIPS64_R1) += $(call cc-option,-march=mips64,-mips64 -U_MIPS_ISA -D_MIPS_ISA=_M… 137 cflags-$(CONFIG_CPU_MIPS64_R2) += $(call cc-option,-march=mips64r2,-mips64r2 -U_MIPS_ISA -D_MIPS_IS… 140 cflags-$(CONFIG_CPU_R5432) += $(call cc-option,-march=r5400,-march=r5000) \ [all …]
|
/arch/blackfin/lib/ |
D | divsi3.S | 48 cc = r0 < r1; define 49 if cc jump .Lret_zero; 51 cc = r2; define 52 if cc jump .Lidents; 54 cc = r2 <= r0; define 55 if cc jump .Lidents; 79 cc = bittst(r3, 30); define 80 if cc r0 = r1; 140 cc = bittst(r3,30); define 142 if !cc r0 = r2;
|
D | smulsi3_highpart.S | 23 cc = ac0; define 24 R2 = cc; 27 cc = ac0; define 32 R2 = cc;
|
D | strncmp.S | 34 if ! cc jump 3f; /* not equal, break out */ 36 if ! cc jump 4f; /* yes, all done */ 39 if ! cc jump 1b (bp); /* more to do, keep going */
|
/arch/openrisc/ |
D | Makefile | 30 KBUILD_CFLAGS += $(call cc-option,-mhard-mul) 32 KBUILD_CFLAGS += $(call cc-option,-msoft-mul) 36 KBUILD_CFLAGS += $(call cc-option,-mhard-div) 38 KBUILD_CFLAGS += $(call cc-option,-msoft-div)
|
/arch/alpha/kernel/ |
D | sys_jensen.c | 148 unsigned int cc; in jensen_device_interrupt() 150 __asm __volatile("rpcc %0" : "=r"(cc)); in jensen_device_interrupt() 153 if (cc - last_msg > ((JENSEN_CYCLES_PER_SEC) * 3) || in jensen_device_interrupt() 156 irq, count, cc-last_cc, get_irq_regs()->pc); in jensen_device_interrupt() 158 last_msg = cc; in jensen_device_interrupt() 161 last_cc = cc; in jensen_device_interrupt()
|
D | time.c | 255 validate_cc_value(unsigned long cc) in validate_cc_value() argument 290 return cc; in validate_cc_value() 294 return cc; in validate_cc_value() 296 if (cc < cpu_hz[index].min - deviation in validate_cc_value() 297 || cc > cpu_hz[index].max + deviation) in validate_cc_value() 300 return cc; in validate_cc_value() 315 int cc, count = 0; in calibrate_cc_with_pit() local 331 cc = rpcc(); in calibrate_cc_with_pit() 335 cc = rpcc() - cc; in calibrate_cc_with_pit() 341 return ((long)cc * PIT_TICK_RATE) / (CALIBRATE_LATCH + 1); in calibrate_cc_with_pit()
|
/arch/powerpc/ |
D | Makefile | 15 HAS_BIARCH := $(call cc-option-yn, -m32) 80 GCC_BROKEN_VEC := $(call cc-ifversion, -lt, 0400, y) 85 KBUILD_CFLAGS += $(call cc-option,-mcpu=970) 87 KBUILD_CFLAGS += $(call cc-option,-mcpu=power4) 90 KBUILD_CFLAGS += $(call cc-option,-mcpu=power4) 93 KBUILD_CFLAGS += $(call cc-option,-mtune=power4) 100 KBUILD_CFLAGS += $(call cc-option,-mtune=cell) 104 KBUILD_CFLAGS += $(call cc-option,-mno-altivec) 108 KBUILD_CFLAGS += $(call cc-option,-mno-spe) 109 KBUILD_CFLAGS += $(call cc-option,-mspe=no) [all …]
|
/arch/sh/ |
D | Makefile | 27 cflags-$(CONFIG_CPU_SH2) := $(call cc-option,-m2,) 28 cflags-$(CONFIG_CPU_SH2A) += $(call cc-option,-m2a,) \ 29 $(call cc-option,-m2a-nofpu,) 30 cflags-$(CONFIG_CPU_SH3) := $(call cc-option,-m3,) 31 cflags-$(CONFIG_CPU_SH4) := $(call cc-option,-m4,) \ 32 $(call cc-option,-mno-implicit-fp,-m4-nofpu) 33 cflags-$(CONFIG_CPU_SH4A) += $(call cc-option,-m4a,) \ 34 $(call cc-option,-m4a-nofpu,) 35 cflags-$(CONFIG_CPU_SH4AL_DSP) += $(call cc-option,-m4al,) 36 cflags-$(CONFIG_CPU_SH5) := $(call cc-option,-m5-32media-nofpu,) [all …]
|
/arch/arm/ |
D | Makefile | 23 KBUILD_CFLAGS +=$(call cc-option,-marm,) 26 KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm) 61 arch-$(CONFIG_CPU_32v7) :=-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7-a,-march=armv5t -Wa… 62 arch-$(CONFIG_CPU_32v6) :=-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6,-march=armv5t -Wa$(… 66 arch-$(CONFIG_CPU_32v6K) :=-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6k,-march=armv5t -Wa$… 68 arch-$(CONFIG_CPU_32v5) :=-D__LINUX_ARM_ARCH__=5 $(call cc-option,-march=armv5te,-march=armv4t) 81 tune-$(CONFIG_CPU_ARM946E) :=$(call cc-option,-mtune=arm9e,-mtune=arm9tdmi) 89 tune-$(CONFIG_CPU_XSCALE) :=$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale 90 tune-$(CONFIG_CPU_XSC3) :=$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale 91 tune-$(CONFIG_CPU_FEROCEON) :=$(call cc-option,-mtune=marvell-f,-mtune=xscale) [all …]
|
/arch/xtensa/include/asm/ |
D | coprocessor.h | 116 #define XCHAL_SA_REG(list,cc,abi,type,y,name,z,align,size,...) \ argument 117 __REG ## list (cc, abi, type, name, size, align) 119 #define __REG0(cc,abi,t,name,s,a) __REG0_ ## cc (abi,name) argument 120 #define __REG1(cc,abi,t,name,s,a) __REG1_ ## cc (name) argument 121 #define __REG2(cc,abi,type,...) __REG2_ ## type (__VA_ARGS__) argument
|