Project

General

Profile

Getting Started » History » Version 9

Sergey Smolov, 11/08/2018 01:54 PM

1 1 Sergey Smolov
h1. Getting Started
2
3
{{toc}}
4
5 3 Sergey Smolov
h2. General notes
6
7 8 Sergey Smolov
First of all, install the QEMU4V with the help of the "instruction":https://forge.ispras.ru/projects/qemu4v/wiki/Installation
8
9 3 Sergey Smolov
It is possible to terminate QEMU by hands only. Neither Ctrl-C nor Ctrl-Z works, use _kill <process-id>_ or _killall qemu-system*_.
10
11 1 Sergey Smolov
h2. Aarch64
12
13 5 Sergey Smolov
It is supposed that the following tools are already installed in your system:
14 1 Sergey Smolov
- Toolchain for Aarch64 assembler programs compilation, linking, etc. (can be downloaded from "Linaro website":http://releases.linaro.org/components/toolchain/binaries or just below, installation instruction is "here":http://forge.ispras.ru/projects/microtesk-armv8/wiki/Toolchain).
15
16 3 Sergey Smolov
# Write a simple Aarch64 program (it is called @sample.s@) that does nothing but puts 0x10 value to X0 register and then halts. Here it is:
17 1 Sergey Smolov
<pre>
18
.text
19
	.globl _start
20
	bl _start
21
_start:
22
	movz x1, #0x10, LSL #0
23
	hlt #57005
24
</pre>
25 3 Sergey Smolov
# To compile the Aarch64 assembler program, do the following:
26 1 Sergey Smolov
<pre>
27
aarch64-linux-gnu-as sample.s -o sample.o
28
aarch64-linux-gnu-ld sample.o -o sample.elf
29
aarch64-linux-gnu-objcopy -O binary sample.elf sample.bin
30
</pre>
31
# Finally, run _QEMU4V_ emulator with enabled option of microprocessor execution trace logging:
32
<pre>
33
qemu-system-aarch64 -M virt -cpu cortex-a57 -bios sample.bin -d nochain,in_asm -singlestep -nographic -trace-log -D log-file.txt
34
</pre>
35 6 Sergey Smolov
# Wait for a while, then stop QEMU4V. The following @log-file.txt@ trace file should be generated:
36 1 Sergey Smolov
<pre>
37
0 clk IT (0) 0000000000000000 94000001 A svc_ns : bl #+0x4 (addr 0x4)
38
1 clk IT (1) 0000000000000004 d2800201 A svc_ns : movz x1, #0x10, LSL #0
39
2 clk IT (2) 0000000000000008 d45bd5a0 A svc_ns : hlt #57005
40
</pre>
41
42 4 Sergey Smolov
h2. MIPS32
43 3 Sergey Smolov
44 5 Sergey Smolov
It is supposed that the following tools are already installed in your system:
45 3 Sergey Smolov
- Toolchain for MIPS assembler programs compilation, linking, etc. (a list of toolchains is available "here":https://www.linux-mips.org/wiki/Toolchains).
46
47
# First of all, let's write a simple MIPS program (it is called @sample.s@) that stores 0x10 value at x12345678 address. Here it is:
48
<pre>
49
.text
50
	.globl _start
51
_start:
52
lui $1, 0x1234
53
ori $1, $1, 0x5678
54
addi $8, $0, 10
55
sw $8, 0($1)
56
</pre>
57 6 Sergey Smolov
# To compile the MIPS32 assembler program, do the following:
58 3 Sergey Smolov
<pre>
59
mips-linux-gnu-as sample.s -o sample.o
60
mips-linux-gnu-ld sample.o -Ttext 0xbfc00000 -o sample.elf
61
</pre>
62
# Finally, run _QEMU4V_ emulator:
63
<pre>
64
qemu-system-mips -M mips -cpu mips32r6-generic -d unimp,nochain,in_asm -nographic -singlestep -D log.txt -bios sample.elf
65
</pre>
66 6 Sergey Smolov
# Wait for a while, then stop QEMU4V. The following @log-file.txt@ trace file should be generated:
67 3 Sergey Smolov
<pre>
68
...
69
----------------
70
IN: 
71
0xbfc0fffc:  nop
72
73
----------------
74
IN: 
75
0xbfc10000:  lui	at,0x1234
76
77
----------------
78
IN: 
79
0xbfc10004:  ori	at,at,0x5678
80
81
----------------
82
IN: 
83
0xbfc10008:  beqzalc	zero,t0,0xbfc10034
84
85
----------------
86
IN: 
87
0xbfc10034:  cache	0x0,0(s8)
88
</pre>
89
90 9 Sergey Smolov
h2. PowerPC
91
92
TODO
93
94 1 Sergey Smolov
h2. RISC-V
95
96 5 Sergey Smolov
It is supposed that the following tools are already installed in your system:
97 1 Sergey Smolov
- Toolchain for RISC-V assembler programs compilation, linking, etc. (the source code and the installation guide are available "here":https://github.com/riscv/riscv-gnu-toolchain).
98
99 3 Sergey Smolov
# Write a simple RISC-V program (it is called @sample.s@) that does nothing but puts 0x18 value to @t1@ register and puts 0x21 value to @t2@ register. Here it is:
100 1 Sergey Smolov
<pre>
101
.text
102
.globl _start
103
_start:
104
 addi t1, zero, 0x18
105
 addi t2, zero, 0x21
106
</pre>
107 3 Sergey Smolov
# To compile the RISC-V assembler program, do the following:
108 1 Sergey Smolov
<pre>
109
aarch64-linux-gnu-as sample.s -o sample.o
110
aarch64-linux-gnu-ld sample.o -Ttext 0x1000 -o sample.elf
111
</pre>
112
# Finally, run _QEMU4V_ emulator with enabled option of microprocessor execution trace logging (0x1000 value was used by linker because of QEMU-related features):
113
<pre>
114 2 Sergey Smolov
qemu-system-riscv64 -M spike_v1.10 -cpu any -d unimp,nochain,in_asm -nographic -singlestep -trace-log -kernel sample.elf
115 1 Sergey Smolov
</pre>
116 6 Sergey Smolov
# Wait for a while, then stop QEMU4V. The following trace should be generated:
117 1 Sergey Smolov
<pre>
118
0 clk 0 IT (0) 0000000000001000 01800313 A svc_ns : li t1,24
119
1 clk R t1 0000000000000018
120
1 clk 0 IT (1) 0000000000001004 02100393 A svc_ns : li t2,33
121
2 clk R t2 0000000000000021
122
2 clk 0 IT (2) 0000000000001008 00000000 A svc_ns : unimp
123
3 clk 0 IT (3) 0000000000001010 00000000 A svc_ns : unimp
124 3 Sergey Smolov
</pre>
125
126 7 Sergey Smolov
h2. X86 (8086 case)
127 3 Sergey Smolov
128 5 Sergey Smolov
It is supposed that the following tools are already installed in your system:
129 7 Sergey Smolov
- Toolchain for X86 assembler programs compilation, linking, etc. (we use "GCC":https://gcc.gnu.org).
130 1 Sergey Smolov
131 7 Sergey Smolov
# Write a simple X86 program (it is called @sample.s@) that performs some calculations:
132 1 Sergey Smolov
<pre>
133 7 Sergey Smolov
.code16 # tell the assembler that we're using 16 bit mode
134
	.text
135
	.global _start
136 3 Sergey Smolov
_start:
137 7 Sergey Smolov
	mov $11, %AX
138
	and $204, %BX
139
	mov %AX, %CX
140
	add %CX, %BX
141
	sub %CX, %AX
142
.org 510 # magic bytes that tell BIOS that this is bootable
143
.word 0xaa55 # magic bytes that tell BIOS that this is bootable
144 1 Sergey Smolov
</pre>
145
# To compile the X86 GNU assembler program, do the following:
146
<pre>
147
x86_64-linux-gnu-as sample.s -o sample.o
148 7 Sergey Smolov
x86_64-linux-gnu-ld sample.o -T 0x7c00 --oformat binary -o sample.elf
149 1 Sergey Smolov
</pre>
150
# Finally, run _QEMU4V_ emulator:
151
<pre>
152 7 Sergey Smolov
qemu-system-i386 -M pc -cpu 486 -d unimp,nochain,in_asm -nographic -singlestep -D log.txt -hda sample.elf
153 1 Sergey Smolov
</pre>
154 7 Sergey Smolov
# Wait for a while, then stop QEMU4V. The following @log-file.txt@ trace file should be generated (go to the 0x7c00 address and see the program execution fragment):
155 1 Sergey Smolov
<pre>
156 7 Sergey Smolov
----------------
157
IN: 
158
0x00007c00:  mov    $0xb,%ax
159
160
----------------
161
IN: 
162
0x00007c03:  and    $0xcc,%bx
163
164
----------------
165
IN: 
166
0x00007c07:  mov    %ax,%cx
167
168
----------------
169
IN: 
170
0x00007c09:  add    %cx,%bx
171
172
----------------
173
IN: 
174
0x00007c0b:  sub    %cx,%ax
175
176
----------------
177 1 Sergey Smolov
</pre>