Searched refs:B100 (Results 1 - 25 of 61) sorted by relevance

123

/haiku-buildtools/gcc/gcc/testsuite/gcc.target/xstormy16/bss_below100/
H A D01_const_to_b100b.c2 /* { dg-final { scan-assembler "mov.b B100,#18" } } */
5 unsigned char B100 __attribute__ ((__BELOW100__)); variable
6 unsigned char *p = &B100;
11 B100 = 0x12;
H A D02_const_to_b100w.c2 /* { dg-final { scan-assembler "mov.w B100,#4660" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)); variable
6 unsigned short *p = &B100;
11 B100 = 0x1234;
H A D03_var_to_b100b.c2 /* { dg-final { scan-assembler "mov.b B100,r" } } */
5 unsigned char B100 __attribute__ ((__BELOW100__)); variable
6 unsigned char *p = &B100;
13 B100 = yData;
H A D04_var_to_b100w.c2 /* { dg-final { scan-assembler "mov.w B100,r" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)); variable
6 unsigned short *p = &B100;
13 B100 = wData;
H A D05_b100b_to_var.c2 /* { dg-final { scan-assembler "mov.b r., *B100" } } */
5 unsigned char B100 __attribute__ ((__BELOW100__)); variable
6 unsigned char *p = &B100;
13 yData = B100;
H A D06_b100w_to_var.c2 /* { dg-final { scan-assembler "mov.w r.,B100" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)); variable
6 unsigned short *p = &B100;
13 wData = B100;
H A D10_set_b100b_bit_0.c2 /* { dg-final { scan-assembler "set1 B100,#0" } } */
5 unsigned char B100 __attribute__ ((__BELOW100__)); variable
6 unsigned char *p = &B100;
11 B100 |= 0x01;
H A D10_set_b100b_bit_7.c2 /* { dg-final { scan-assembler "set1 B100,#7" } } */
5 unsigned char B100 __attribute__ ((__BELOW100__)); variable
6 unsigned char *p = &B100;
11 B100 |= 0x80;
H A D11_clr_b100b_bit_0.c2 /* { dg-final { scan-assembler "clr1 B100,#0" } } */
5 unsigned char B100 __attribute__ ((__BELOW100__)); variable
6 unsigned char *p = &B100;
11 B100 &= ~0x01;
H A D11_clr_b100b_bit_7.c2 /* { dg-final { scan-assembler "clr1 B100,#7" } } */
5 unsigned char B100 __attribute__ ((__BELOW100__)); variable
6 unsigned char *p = &B100;
11 B100 &= ~0x80;
H A D14_set_b100w_bit_0.c2 /* { dg-final { scan-assembler "set1 B100,#0" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)); variable
6 unsigned short *p = &B100;
11 B100 |= 0x0001;
H A D14_set_b100w_bit_7.c2 /* { dg-final { scan-assembler "set1 B100,#7" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)); variable
6 unsigned short *p = &B100;
11 B100 |= 0x0080;
H A D14_set_b100w_bit_8.c2 /* { dg-final { scan-assembler "set1 B100\\+1,#0" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)); variable
6 unsigned short *p = &B100;
11 B100 |= 0x0100;
H A D14_set_b100w_bit_f.c2 /* { dg-final { scan-assembler "set1 B100\\+1,#7" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)); variable
6 unsigned short *p = &B100;
11 B100 |= 0x8000;
H A D15_clr_b100w_bit_0.c2 /* { dg-final { scan-assembler "clr1 B100,#0" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)); variable
6 unsigned short *p = &B100;
11 B100 &= ~0x0001;
H A D15_clr_b100w_bit_7.c2 /* { dg-final { scan-assembler "clr1 B100,#7" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)); variable
6 unsigned short *p = &B100;
11 B100 &= ~0x0080;
H A D15_clr_b100w_bit_8.c2 /* { dg-final { scan-assembler "clr1 B100\\+1,#0" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)); variable
6 unsigned short *p = &B100;
11 B100 &= ~0x0100;
H A D15_clr_b100w_bit_f.c2 /* { dg-final { scan-assembler "clr1 B100\\+1,#7" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)); variable
6 unsigned short *p = &B100;
11 B100 &= ~0x8000;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/xstormy16/data_below100/
H A D01_const_to_b100b.c2 /* { dg-final { scan-assembler "mov.b B100,#18" } } */
5 unsigned char B100 __attribute__ ((__BELOW100__)) = 0x34; variable
6 unsigned char *p = &B100;
11 B100 = 0x12;
H A D02_const_to_b100w.c2 /* { dg-final { scan-assembler "mov.w B100,#4660" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)) = 0x9876; variable
6 unsigned short *p = &B100;
11 B100 = 0x1234;
H A D03_var_to_b100b.c2 /* { dg-final { scan-assembler "mov.b B100,r" } } */
5 unsigned char B100 __attribute__ ((__BELOW100__)) = 0x34; variable
6 unsigned char *p = &B100;
13 B100 = yData;
H A D04_var_to_b100w.c2 /* { dg-final { scan-assembler "mov.w B100,r" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)) = 0x9876; variable
6 unsigned short *p = &B100;
13 B100 = wData;
H A D05_b100b_to_var.c2 /* { dg-final { scan-assembler "mov.b r., *B100" } } */
5 unsigned char B100 __attribute__ ((__BELOW100__)) = 0x34; variable
6 unsigned char *p = &B100;
13 yData = B100;
H A D06_b100w_to_var.c2 /* { dg-final { scan-assembler "mov.w r.,B100" } } */
5 unsigned short B100 __attribute__ ((__BELOW100__)) = 0x3456; variable
6 unsigned short *p = &B100;
13 wData = B100;
H A D10_set_b100b_bit_0.c2 /* { dg-final { scan-assembler "set1 B100,#0" } } */
5 unsigned char B100 __attribute__ ((__BELOW100__)) = 0x34; variable
6 unsigned char *p = &B100;
11 B100 |= 0x01;

Completed in 115 milliseconds

123