File: 24k-triple-stores-1.s

package info (click to toggle)
binutils-avr 2.26.20160125%2BAtmel3.6.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 365,552 kB
  • sloc: ansic: 2,480,046; asm: 892,807; exp: 188,218; cpp: 133,829; makefile: 63,886; sh: 32,212; yacc: 26,783; lisp: 16,709; xml: 7,490; perl: 6,449; python: 4,555; ada: 4,318; pascal: 3,174; lex: 2,250; cs: 879; sed: 334; f90: 298; awk: 168; objc: 134; java: 73; fortran: 43
file content (90 lines) | stat: -rw-r--r-- 1,488 bytes parent folder | download | duplicates (30)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# integer stores

foo:
	sb      $2,0($sp)
	sb      $3,8($sp)
	sb      $4,16($sp)
	sb      $5,24($sp)
	sb      $6,32($sp)

	sh      $2,0($sp)
	sh      $3,8($sp)
	sh      $4,16($sp)
	sh      $5,24($sp)
	sh      $6,32($sp)

	sw      $2,0($sp)
	sw      $3,8($sp)
	sw      $4,16($sp)
	sw      $5,24($sp)
	sw      $6,32($sp)

	.ifndef r6
	swr     $2,0($sp)
	swr     $3,8($sp)
	swr     $4,16($sp)
	swr     $5,24($sp)
	swr     $6,32($sp)

	swl     $2,0($sp)
	swl     $3,8($sp)
	swl     $4,16($sp)
	swl     $5,24($sp)
	swl     $6,32($sp)
	.endif

	sc      $2,0($sp)
	sc      $3,8($sp)
	sc      $4,16($sp)
	sc      $5,24($sp)
	sc      $6,32($sp)

# floating point stores

	swc1    $2,0($sp)
	swc1    $3,8($sp)
	swc1    $4,16($sp)
	swc1    $5,24($sp)
	swc1    $6,32($sp)

	swc2    $2,0($sp)
	swc2    $3,8($sp)
	swc2    $4,16($sp)
	swc2    $5,24($sp)
	swc2    $6,32($sp)

	sdc1    $2,0($sp)
	sdc1    $3,8($sp)
	sdc1    $4,16($sp)
	sdc1    $5,24($sp)
	sdc1    $6,32($sp)

	sdc2    $2,0($sp)
	sdc2    $3,8($sp)
	sdc2    $4,16($sp)
	sdc2    $5,24($sp)
	sdc2    $6,32($sp)

	.ifndef r6
	swxc1   $f0,$9($8)
	swxc1   $f1,$10($8)
	swxc1   $f2,$11($8)
	swxc1   $f3,$12($8)
	swxc1   $f4,$13($8)

	sdxc1   $f0,$9($8)
	sdxc1   $f2,$10($8)
	sdxc1   $f4,$11($8)
	sdxc1   $f6,$12($8)
	sdxc1   $f8,$13($8)

	suxc1   $f0,$9($8)
	suxc1   $f2,$10($8)
	suxc1   $f4,$11($8)
	suxc1   $f6,$12($8)
	suxc1   $f8,$13($8)
	.endif

# Force at least 8 (non-delay-slot) zero bytes,to make 'objdump' print ...
	.align	2
	.space	8