/Linux-v5.15/drivers/bcma/ |
D | driver_chipcommon.c | 18 static inline u32 bcma_cc_write32_masked(struct bcma_drv_cc *cc, u16 offset, in bcma_cc_write32_masked() argument 22 value |= bcma_cc_read32(cc, offset) & ~mask; in bcma_cc_write32_masked() 23 bcma_cc_write32(cc, offset, value); in bcma_cc_write32_masked() 28 u32 bcma_chipco_get_alp_clock(struct bcma_drv_cc *cc) in bcma_chipco_get_alp_clock() argument 30 if (cc->capabilities & BCMA_CC_CAP_PMU) in bcma_chipco_get_alp_clock() 31 return bcma_pmu_get_alp_clock(cc); in bcma_chipco_get_alp_clock() 37 static bool bcma_core_cc_has_pmu_watchdog(struct bcma_drv_cc *cc) in bcma_core_cc_has_pmu_watchdog() argument 39 struct bcma_bus *bus = cc->core->bus; in bcma_core_cc_has_pmu_watchdog() 41 if (cc->capabilities & BCMA_CC_CAP_PMU) { in bcma_core_cc_has_pmu_watchdog() 45 * be enabled but timer can't be bumped. Use CC one in bcma_core_cc_has_pmu_watchdog() [all …]
|
D | driver_chipcommon_pmu.c | 16 u32 bcma_chipco_pll_read(struct bcma_drv_cc *cc, u32 offset) in bcma_chipco_pll_read() argument 18 bcma_pmu_write32(cc, BCMA_CC_PMU_PLLCTL_ADDR, offset); in bcma_chipco_pll_read() 19 bcma_pmu_read32(cc, BCMA_CC_PMU_PLLCTL_ADDR); in bcma_chipco_pll_read() 20 return bcma_pmu_read32(cc, BCMA_CC_PMU_PLLCTL_DATA); in bcma_chipco_pll_read() 24 void bcma_chipco_pll_write(struct bcma_drv_cc *cc, u32 offset, u32 value) in bcma_chipco_pll_write() argument 26 bcma_pmu_write32(cc, BCMA_CC_PMU_PLLCTL_ADDR, offset); in bcma_chipco_pll_write() 27 bcma_pmu_read32(cc, BCMA_CC_PMU_PLLCTL_ADDR); in bcma_chipco_pll_write() 28 bcma_pmu_write32(cc, BCMA_CC_PMU_PLLCTL_DATA, value); in bcma_chipco_pll_write() 32 void bcma_chipco_pll_maskset(struct bcma_drv_cc *cc, u32 offset, u32 mask, in bcma_chipco_pll_maskset() argument 35 bcma_pmu_write32(cc, BCMA_CC_PMU_PLLCTL_ADDR, offset); in bcma_chipco_pll_maskset() [all …]
|
D | driver_gpio.c | 22 struct bcma_drv_cc *cc = gpiochip_get_data(chip); in bcma_gpio_get_value() local 24 return !!bcma_chipco_gpio_in(cc, 1 << gpio); in bcma_gpio_get_value() 30 struct bcma_drv_cc *cc = gpiochip_get_data(chip); in bcma_gpio_set_value() local 32 bcma_chipco_gpio_out(cc, 1 << gpio, value ? 1 << gpio : 0); in bcma_gpio_set_value() 37 struct bcma_drv_cc *cc = gpiochip_get_data(chip); in bcma_gpio_direction_input() local 39 bcma_chipco_gpio_outen(cc, 1 << gpio, 0); in bcma_gpio_direction_input() 46 struct bcma_drv_cc *cc = gpiochip_get_data(chip); in bcma_gpio_direction_output() local 48 bcma_chipco_gpio_outen(cc, 1 << gpio, 1 << gpio); in bcma_gpio_direction_output() 49 bcma_chipco_gpio_out(cc, 1 << gpio, value ? 1 << gpio : 0); in bcma_gpio_direction_output() 55 struct bcma_drv_cc *cc = gpiochip_get_data(chip); in bcma_gpio_request() local [all …]
|
D | bcma_private.h | 45 void bcma_core_chipcommon_early_init(struct bcma_drv_cc *cc); 46 void bcma_core_chipcommon_init(struct bcma_drv_cc *cc); 47 void bcma_chipco_bcm4331_ext_pa_lines_ctl(struct bcma_drv_cc *cc, bool enable); 49 void bcma_chipco_serial_init(struct bcma_drv_cc *cc); 57 void bcma_pmu_early_init(struct bcma_drv_cc *cc); 58 void bcma_pmu_init(struct bcma_drv_cc *cc); 59 u32 bcma_pmu_get_alp_clock(struct bcma_drv_cc *cc); 60 u32 bcma_pmu_get_cpu_clock(struct bcma_drv_cc *cc); 68 int bcma_pflash_init(struct bcma_drv_cc *cc); 70 static inline int bcma_pflash_init(struct bcma_drv_cc *cc) in bcma_pflash_init() argument [all …]
|
/Linux-v5.15/drivers/ssb/ |
D | driver_chipcommon.c | 32 static inline u32 chipco_write32_masked(struct ssb_chipcommon *cc, u16 offset, in chipco_write32_masked() argument 36 value |= chipco_read32(cc, offset) & ~mask; in chipco_write32_masked() 37 chipco_write32(cc, offset, value); in chipco_write32_masked() 42 void ssb_chipco_set_clockmode(struct ssb_chipcommon *cc, in ssb_chipco_set_clockmode() argument 45 struct ssb_device *ccdev = cc->dev; in ssb_chipco_set_clockmode() 57 if (cc->capabilities & SSB_CHIPCO_CAP_PMU) in ssb_chipco_set_clockmode() 69 if (!(cc->capabilities & SSB_CHIPCO_CAP_PCTL)) in ssb_chipco_set_clockmode() 74 tmp = chipco_read32(cc, SSB_CHIPCO_SLOWCLKCTL); in ssb_chipco_set_clockmode() 76 chipco_write32(cc, SSB_CHIPCO_SLOWCLKCTL, tmp); in ssb_chipco_set_clockmode() 81 tmp = chipco_read32(cc, SSB_CHIPCO_SLOWCLKCTL); in ssb_chipco_set_clockmode() [all …]
|
D | driver_chipcommon_pmu.c | 22 static u32 ssb_chipco_pll_read(struct ssb_chipcommon *cc, u32 offset) in ssb_chipco_pll_read() argument 24 chipco_write32(cc, SSB_CHIPCO_PLLCTL_ADDR, offset); in ssb_chipco_pll_read() 25 return chipco_read32(cc, SSB_CHIPCO_PLLCTL_DATA); in ssb_chipco_pll_read() 28 static void ssb_chipco_pll_write(struct ssb_chipcommon *cc, in ssb_chipco_pll_write() argument 31 chipco_write32(cc, SSB_CHIPCO_PLLCTL_ADDR, offset); in ssb_chipco_pll_write() 32 chipco_write32(cc, SSB_CHIPCO_PLLCTL_DATA, value); in ssb_chipco_pll_write() 35 static void ssb_chipco_regctl_maskset(struct ssb_chipcommon *cc, in ssb_chipco_regctl_maskset() argument 40 chipco_read32(cc, SSB_CHIPCO_REGCTL_ADDR); in ssb_chipco_regctl_maskset() 41 chipco_write32(cc, SSB_CHIPCO_REGCTL_ADDR, offset); in ssb_chipco_regctl_maskset() 42 chipco_read32(cc, SSB_CHIPCO_REGCTL_ADDR); in ssb_chipco_regctl_maskset() [all …]
|
/Linux-v5.15/arch/s390/pci/ |
D | pci_insn.c | 20 static inline void zpci_err_insn(u8 cc, u8 status, u64 req, u64 offset) in zpci_err_insn() argument 25 u8 cc; in zpci_err_insn() member 27 } __packed data = {req, offset, cc, status}; in zpci_err_insn() 35 u8 cc; in __mpcifc() local 39 " ipm %[cc]\n" in __mpcifc() 40 " srl %[cc],28\n" in __mpcifc() 41 : [cc] "=d" (cc), [req] "+d" (req), [fib] "+Q" (*fib) in __mpcifc() 42 : : "cc"); in __mpcifc() 44 return cc; in __mpcifc() 49 u8 cc; in zpci_mod_fc() local [all …]
|
D | pci_mmio.c | 17 static inline void zpci_err_mmio(u8 cc, u8 status, u64 offset) in zpci_err_mmio() argument 21 u8 cc; in zpci_err_mmio() member 23 } data = {offset, cc, status}; in zpci_err_mmio() 32 int cc = -ENXIO; in __pcistb_mio_inuser() local 37 "1: ipm %[cc]\n" in __pcistb_mio_inuser() 38 " srl %[cc],28\n" in __pcistb_mio_inuser() 41 : [cc] "+d" (cc), [len] "+d" (len) in __pcistb_mio_inuser() 43 : "cc", "memory"); in __pcistb_mio_inuser() 45 return cc; in __pcistb_mio_inuser() 53 int cc = -ENXIO; in __pcistg_mio_inuser() local [all …]
|
/Linux-v5.15/drivers/md/ |
D | dm-crypt.c | 68 struct crypt_config *cc; member 94 int (*ctr)(struct crypt_config *cc, struct dm_target *ti, 96 void (*dtr)(struct crypt_config *cc); 97 int (*init)(struct crypt_config *cc); 98 int (*wipe)(struct crypt_config *cc); 99 int (*generator)(struct crypt_config *cc, u8 *iv, 101 int (*post)(struct crypt_config *cc, u8 *iv, 236 static struct scatterlist *crypt_get_sg_data(struct crypt_config *cc, 239 static bool crypt_integrity_aead(struct crypt_config *cc); 244 static struct crypto_skcipher *any_tfm(struct crypt_config *cc) in any_tfm() argument [all …]
|
/Linux-v5.15/fs/f2fs/ |
D | compress.c | 51 int (*init_compress_ctx)(struct compress_ctx *cc); 52 void (*destroy_compress_ctx)(struct compress_ctx *cc); 53 int (*compress_pages)(struct compress_ctx *cc); 59 static unsigned int offset_in_cluster(struct compress_ctx *cc, pgoff_t index) in offset_in_cluster() argument 61 return index & (cc->cluster_size - 1); in offset_in_cluster() 64 static pgoff_t cluster_idx(struct compress_ctx *cc, pgoff_t index) in cluster_idx() argument 66 return index >> cc->log_cluster_size; in cluster_idx() 69 static pgoff_t start_idx_of_cluster(struct compress_ctx *cc) in start_idx_of_cluster() argument 71 return cc->cluster_idx << cc->log_cluster_size; in start_idx_of_cluster() 98 static void f2fs_drop_rpages(struct compress_ctx *cc, int len, bool unlock) in f2fs_drop_rpages() argument [all …]
|
/Linux-v5.15/mm/ |
D | compaction.c | 221 static inline bool isolation_suitable(struct compact_control *cc, in isolation_suitable() argument 224 if (cc->ignore_skip_hint) in isolation_suitable() 402 static bool test_and_set_skip(struct compact_control *cc, struct page *page, in test_and_set_skip() argument 408 if (cc->ignore_skip_hint) in test_and_set_skip() 415 if (!skip && !cc->no_set_skip_hint) in test_and_set_skip() 421 static void update_cached_migrate(struct compact_control *cc, unsigned long pfn) in update_cached_migrate() argument 423 struct zone *zone = cc->zone; in update_cached_migrate() 428 if (cc->no_set_skip_hint) in update_cached_migrate() 433 if (cc->mode != MIGRATE_ASYNC && in update_cached_migrate() 442 static void update_pageblock_skip(struct compact_control *cc, in update_pageblock_skip() argument [all …]
|
/Linux-v5.15/drivers/s390/cio/ |
D | ioasm.c | 25 "0: ipm %[cc]\n" in __stsch() 26 " srl %[cc],28\n" in __stsch() 29 : [cc] "+&d" (ccode), [addr] "=Q" (*addr) in __stsch() 31 : "cc", "1"); in __stsch() 54 "0: ipm %[cc]\n" in __msch() 55 " srl %[cc],28\n" in __msch() 58 : [cc] "+&d" (ccode) in __msch() 60 : "cc", "1"); in __msch() 82 " ipm %[cc]\n" in __tsch() 83 " srl %[cc],28" in __tsch() [all …]
|
D | trace.h | 25 TP_PROTO(struct subchannel_id schid, struct schib *schib, int cc), 26 TP_ARGS(schid, schib, cc), 44 __field(int, cc) 63 __entry->cc = cc; 65 TP_printk("schid=%x.%x.%04x cc=%d ena=%d st=%d dnv=%d dev=%04x " 68 __entry->cssid, __entry->ssid, __entry->schno, __entry->cc, 82 * @cc: Condition code 85 TP_PROTO(struct subchannel_id schid, struct schib *schib, int cc), 86 TP_ARGS(schid, schib, cc) 93 * @cc: Condition code [all …]
|
/Linux-v5.15/crypto/ |
D | rmd160.c | 51 u32 aa, bb, cc, dd, ee, aaa, bbb, ccc, ddd, eee; in rmd160_transform() local 56 cc = state[2]; in rmd160_transform() 68 ROUND(aa, bb, cc, dd, ee, F1, K1, in[0], 11); in rmd160_transform() 69 ROUND(ee, aa, bb, cc, dd, F1, K1, in[1], 14); in rmd160_transform() 70 ROUND(dd, ee, aa, bb, cc, F1, K1, in[2], 15); in rmd160_transform() 71 ROUND(cc, dd, ee, aa, bb, F1, K1, in[3], 12); in rmd160_transform() 72 ROUND(bb, cc, dd, ee, aa, F1, K1, in[4], 5); in rmd160_transform() 73 ROUND(aa, bb, cc, dd, ee, F1, K1, in[5], 8); in rmd160_transform() 74 ROUND(ee, aa, bb, cc, dd, F1, K1, in[6], 7); in rmd160_transform() 75 ROUND(dd, ee, aa, bb, cc, F1, K1, in[7], 9); in rmd160_transform() [all …]
|
/Linux-v5.15/drivers/media/usb/gspca/ |
D | zc3xx.c | 131 {0xa0, 0x01, ZC3XX_R000_SYSTEMCONTROL}, /* 00,00,01,cc */ 132 {0xa0, 0x04, ZC3XX_R002_CLOCKSELECT}, /* 00,02,04,cc */ 133 {0xa0, 0x00, ZC3XX_R008_CLOCKSETTING}, /* 00,08,03,cc */ 134 {0xa0, 0x0a, ZC3XX_R010_CMOSSENSORSELECT}, /* 00,10,0a,cc */ 135 {0xa0, 0xd3, ZC3XX_R08B_I2CDEVICEADDR}, /* 00,8b,d3,cc */ 136 {0xa0, 0x02, ZC3XX_R003_FRAMEWIDTHHIGH}, /* 00,03,02,cc */ 137 {0xa0, 0x80, ZC3XX_R004_FRAMEWIDTHLOW}, /* 00,04,80,cc */ 138 {0xa0, 0x01, ZC3XX_R005_FRAMEHEIGHTHIGH}, /* 00,05,01,cc */ 139 {0xa0, 0xd8, ZC3XX_R006_FRAMEHEIGHTLOW}, /* 00,06,d8,cc */ 140 {0xa0, 0x01, ZC3XX_R001_SYSTEMOPERATING}, /* 00,01,01,cc */ [all …]
|
/Linux-v5.15/drivers/clk/sprd/ |
D | composite.c | 15 struct sprd_comp *cc = hw_to_sprd_comp(hw); in sprd_comp_round_rate() local 17 return sprd_div_helper_round_rate(&cc->common, &cc->div, in sprd_comp_round_rate() 24 struct sprd_comp *cc = hw_to_sprd_comp(hw); in sprd_comp_recalc_rate() local 26 return sprd_div_helper_recalc_rate(&cc->common, &cc->div, parent_rate); in sprd_comp_recalc_rate() 32 struct sprd_comp *cc = hw_to_sprd_comp(hw); in sprd_comp_set_rate() local 34 return sprd_div_helper_set_rate(&cc->common, &cc->div, in sprd_comp_set_rate() 40 struct sprd_comp *cc = hw_to_sprd_comp(hw); in sprd_comp_get_parent() local 42 return sprd_mux_helper_get_parent(&cc->common, &cc->mux); in sprd_comp_get_parent() 47 struct sprd_comp *cc = hw_to_sprd_comp(hw); in sprd_comp_set_parent() local 49 return sprd_mux_helper_set_parent(&cc->common, &cc->mux, index); in sprd_comp_set_parent()
|
/Linux-v5.15/kernel/time/ |
D | timecounter.c | 9 const struct cyclecounter *cc, in timecounter_init() argument 12 tc->cc = cc; in timecounter_init() 13 tc->cycle_last = cc->read(cc); in timecounter_init() 15 tc->mask = (1ULL << cc->shift) - 1; in timecounter_init() 37 cycle_now = tc->cc->read(tc->cc); in timecounter_read_delta() 40 cycle_delta = (cycle_now - tc->cycle_last) & tc->cc->mask; in timecounter_read_delta() 43 ns_offset = cyclecounter_cyc2ns(tc->cc, cycle_delta, in timecounter_read_delta() 69 static u64 cc_cyc2ns_backwards(const struct cyclecounter *cc, in cc_cyc2ns_backwards() argument 74 ns = ((ns * cc->mult) - frac) >> cc->shift; in cc_cyc2ns_backwards() 82 u64 delta = (cycle_tstamp - tc->cycle_last) & tc->cc->mask; in timecounter_cyc2time() [all …]
|
/Linux-v5.15/scripts/ |
D | Makefile.compiler | 3 # cc-cross-prefix 4 # Usage: CROSS_COMPILE := $(call cc-cross-prefix, m68k-linux-gnu- m68k-linux-) 12 cc-cross-prefix = $(firstword $(foreach c, $(1), \ 19 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise) 35 $(CC) $(KBUILD_CFLAGS) $(1) -c -x assembler /dev/null -o "$$TMP",$(1),$(2)) 41 printf "%b\n" "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -x assembler -o "$$TMP" -,$(2),$(3)) 44 # Usage: MY_CFLAGS += $(call __cc-option,$(CC),$(MY_CFLAGS),-march=winchip-c6,-march=i586) 48 # cc-option 49 # Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586) 51 cc-option = $(call __cc-option, $(CC),\ [all …]
|
D | Kconfig.include | 26 # $(cc-option,<flag>) 28 cc-option = $(success,mkdir .tmp_$$$$; trap "rm -rf .tmp_$$$$" EXIT; $(CC) -Werror $(CLANG_FLAGS) $… 36 as-instr = $(success,printf "%b\n" "$(1)" | $(CC) $(CLANG_FLAGS) -c -x assembler -o /dev/null -) 38 # check if $(CC) and $(LD) exist 39 $(error-if,$(failure,command -v $(CC)),compiler '$(CC)' not found) 43 cc-info := $(shell,$(srctree)/scripts/cc-version.sh $(CC)) 44 $(error-if,$(success,test -z "$(cc-info)"),Sorry$(comma) this compiler is not supported.) 45 cc-name := $(shell,set -- $(cc-info) && echo $1) 46 cc-version := $(shell,set -- $(cc-info) && echo $2) 49 as-info := $(shell,$(srctree)/scripts/as-version.sh $(CC) $(CLANG_FLAGS)) [all …]
|
D | Makefile.kasan | 5 cc-param = $(call cc-option, -mllvm -$(1), $(call cc-option, --param $(1))) 24 CFLAGS_KASAN_SHADOW := $(call cc-option, -fsanitize=kernel-address \ 26 $(call cc-option, -fsanitize=kernel-address \ 34 $(call cc-param,asan-globals=1) \ 35 $(call cc-param,asan-instrumentation-with-call-threshold=$(call_threshold)) \ 36 $(call cc-param,asan-instrument-allocas=1) 39 CFLAGS_KASAN += $(call cc-param,asan-stack=$(stack_enable)) 46 instrumentation_flags := $(call cc-param,hwasan-mapping-offset=$(KASAN_SHADOW_OFFSET)) 48 instrumentation_flags := $(call cc-param,hwasan-instrument-with-calls=1) 52 $(call cc-param,hwasan-instrument-stack=$(stack_enable)) \ [all …]
|
D | Makefile.kcsan | 2 # GCC and Clang accept backend options differently. Do not wrap in cc-option, 5 cc-param = -mllvm -$(1) 7 cc-param = --param $(1) 13 $(call cc-option,$(call cc-param,tsan-instrument-func-entry-exit=0) -fno-optimize-sibling-calls) \ 14 …$(call cc-option,$(call cc-param,tsan-compound-read-before-write=1),$(call cc-option,$(call cc-par… 15 $(call cc-param,tsan-distinguish-volatile=1)
|
/Linux-v5.15/arch/x86/include/asm/ |
D | rmwcc.h | 18 #define __GEN_RMWcc(fullop, _var, cc, clobbers, ...) \ argument 21 asm_volatile_goto (fullop "; j" #cc " %l[cc_label]" \ 34 #define __GEN_RMWcc(fullop, _var, cc, clobbers, ...) \ argument 37 asm volatile (fullop CC_SET(cc) \ 38 : [var] "+m" (_var), CC_OUT(cc) (c) \ 45 #define GEN_UNARY_RMWcc_4(op, var, cc, arg0) \ argument 46 __GEN_RMWcc(op " " arg0, var, cc, __CLOBBERS_MEM()) 48 #define GEN_UNARY_RMWcc_3(op, var, cc) \ argument 49 GEN_UNARY_RMWcc_4(op, var, cc, "%[var]") 53 #define GEN_BINARY_RMWcc_6(op, var, cc, vcon, _val, arg0) \ argument [all …]
|
/Linux-v5.15/drivers/mtd/nand/raw/bcm47xxnflash/ |
D | ops_bcm4706.c | 43 static int bcm47xxnflash_ops_bcm4706_ctl_cmd(struct bcma_drv_cc *cc, u32 code) in bcm47xxnflash_ops_bcm4706_ctl_cmd() argument 47 bcma_cc_write32(cc, BCMA_CC_NFLASH_CTL, NCTL_START | code); in bcm47xxnflash_ops_bcm4706_ctl_cmd() 49 if (!(bcma_cc_read32(cc, BCMA_CC_NFLASH_CTL) & NCTL_START)) { in bcm47xxnflash_ops_bcm4706_ctl_cmd() 61 static int bcm47xxnflash_ops_bcm4706_poll(struct bcma_drv_cc *cc) in bcm47xxnflash_ops_bcm4706_poll() argument 66 if (bcma_cc_read32(cc, BCMA_CC_NFLASH_CTL) & NCTL_READY) { in bcm47xxnflash_ops_bcm4706_poll() 67 if (bcma_cc_read32(cc, BCMA_CC_NFLASH_CTL) & in bcm47xxnflash_ops_bcm4706_poll() 105 bcma_cc_write32(b47n->cc, BCMA_CC_NFLASH_COL_ADDR, in bcm47xxnflash_ops_bcm4706_read() 107 bcma_cc_write32(b47n->cc, BCMA_CC_NFLASH_ROW_ADDR, in bcm47xxnflash_ops_bcm4706_read() 114 if (bcm47xxnflash_ops_bcm4706_ctl_cmd(b47n->cc, ctlcode)) in bcm47xxnflash_ops_bcm4706_read() 116 if (bcm47xxnflash_ops_bcm4706_poll(b47n->cc)) in bcm47xxnflash_ops_bcm4706_read() [all …]
|
/Linux-v5.15/tools/arch/x86/include/asm/ |
D | rmwcc.h | 7 #define __GEN_RMWcc(fullop, var, cc, ...) \ argument 9 asm_volatile_goto (fullop "; j" cc " %l[cc_label]" \ 17 #define GEN_UNARY_RMWcc(op, var, arg0, cc) \ argument 18 __GEN_RMWcc(op " " arg0, var, cc) 20 #define GEN_BINARY_RMWcc(op, var, vcon, val, arg0, cc) \ argument 21 __GEN_RMWcc(op " %1, " arg0, var, cc, vcon (val)) 25 #define __GEN_RMWcc(fullop, var, cc, ...) \ argument 28 asm volatile (fullop "; set" cc " %1" \ 34 #define GEN_UNARY_RMWcc(op, var, arg0, cc) \ argument 35 __GEN_RMWcc(op " " arg0, var, cc) [all …]
|
/Linux-v5.15/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 …]
|