File: cache.s

package info (click to toggle)
binutils 2.28-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 271,848 kB
  • sloc: ansic: 1,419,727; asm: 623,424; cpp: 125,042; exp: 64,226; makefile: 56,536; sh: 21,234; lisp: 15,206; yacc: 14,889; perl: 2,111; ada: 1,681; lex: 1,645; pascal: 1,438; cs: 879; sed: 195; python: 154; xml: 95; awk: 25
file content (46 lines) | stat: -rw-r--r-- 758 bytes parent folder | download | duplicates (31)
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
# Source file to test offsets used with the CACHE and PREF instruction.

# By default test CACHE.

# If defined, test PREF.
	.ifdef	tpref
	.macro	cache ops:vararg
	pref	\ops
	.endm
	.endif

	.set	noreorder
	.set	noat

	.text
text_label:

	.ifdef r6
	cache	5, 255($2)
	cache	5, -256($3)
	.else
	cache	5, 2047($2)
	cache	5, -2048($3)

	# 12 bits accepted for microMIPS code.
	.ifdef	micromips
	.set	at
	.endif
	cache	5, 2048($4)
	cache	5, -2049($5)
	cache	5, 32767($6)
	cache	5, -32768($7)

	# 16 bits accepted for standard MIPS code.
	.ifndef	micromips
	.set	at
	.endif
	cache	5, 32768($8)
	cache	5, -32769($9)
	cache	5, 36864($10)
	cache	5, -36865($11)
	.endif

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