Getting Started » History » Version 15
Sergey Smolov, 11/13/2018 04:26 PM
1 | 1 | Sergey Smolov | h1. Getting Started |
---|---|---|---|
2 | |||
3 | {{toc}} |
||
4 | |||
5 | 3 | Sergey Smolov | h2. General notes |
6 | |||
7 | 12 | Sergey Smolov | First of all, install the QEMU4V (follow the "instruction":https://forge.ispras.ru/projects/qemu4v/wiki/Installation). |
8 | 8 | Sergey Smolov | |
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 | 11 | Sergey Smolov | h2. PowerPC32 |
91 | 9 | Sergey Smolov | |
92 | 15 | Sergey Smolov | It is supposed that the following tools are already installed in your system: |
93 | - Toolchain for PowerPC32 assembler programs compilation, linking, etc. (we use "GNU C compiler":https://packages.debian.org/sid/gcc-powerpc-linux-gnu). |
||
94 | |||
95 | 10 | Maxim Chudnov | # Write a simple PowerPC program (it is called @p1.s@). Here it is: |
96 | <pre> |
||
97 | .section .text |
||
98 | addi 4,0,5 # bad |
||
99 | la 3,3(0) # very bad |
||
100 | la 3,0(3) |
||
101 | la 5,2500(3) |
||
102 | </pre> |
||
103 | # To compile the PowerPC assembler program, do the following: |
||
104 | <pre> |
||
105 | powerpc-linux-gnu-as p1.s -o p1.o |
||
106 | 13 | Maxim Chudnov | powerpc-linux-gnu-ld p1.o -Ttext 0x1000 -o p1.elf |
107 | 10 | Maxim Chudnov | </pre> |
108 | 14 | Maxim Chudnov | # Finally, run _QEMU4V_ emulator : |
109 | <pre> |
||
110 | qemu-system-ppc -M ppce500 -cpu e500 -d unimp,nochain,in_asm -nographic -singlestep -bios p1.elf |
||
111 | </pre> |
||
112 | # Wait for a while, then stop QEMU4V. The following trace should be generated: |
||
113 | <pre> |
||
114 | IN: |
||
115 | 0x00000000: li r4,5 |
||
116 | |||
117 | IN: |
||
118 | 0x00000004: li r3,3 |
||
119 | |||
120 | IN: |
||
121 | 0x00000008: addi r3,r3,0 |
||
122 | |||
123 | IN: |
||
124 | 0x0000000c: addi r5,r3,2500 |
||
125 | |||
126 | </pre> |
||
127 | 9 | Sergey Smolov | |
128 | 1 | Sergey Smolov | h2. RISC-V |
129 | |||
130 | 5 | Sergey Smolov | It is supposed that the following tools are already installed in your system: |
131 | 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). |
132 | |||
133 | 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: |
134 | 1 | Sergey Smolov | <pre> |
135 | .text |
||
136 | .globl _start |
||
137 | _start: |
||
138 | addi t1, zero, 0x18 |
||
139 | addi t2, zero, 0x21 |
||
140 | </pre> |
||
141 | 3 | Sergey Smolov | # To compile the RISC-V assembler program, do the following: |
142 | 1 | Sergey Smolov | <pre> |
143 | aarch64-linux-gnu-as sample.s -o sample.o |
||
144 | aarch64-linux-gnu-ld sample.o -Ttext 0x1000 -o sample.elf |
||
145 | </pre> |
||
146 | # Finally, run _QEMU4V_ emulator with enabled option of microprocessor execution trace logging (0x1000 value was used by linker because of QEMU-related features): |
||
147 | <pre> |
||
148 | 2 | Sergey Smolov | qemu-system-riscv64 -M spike_v1.10 -cpu any -d unimp,nochain,in_asm -nographic -singlestep -trace-log -kernel sample.elf |
149 | 1 | Sergey Smolov | </pre> |
150 | 6 | Sergey Smolov | # Wait for a while, then stop QEMU4V. The following trace should be generated: |
151 | 1 | Sergey Smolov | <pre> |
152 | 0 clk 0 IT (0) 0000000000001000 01800313 A svc_ns : li t1,24 |
||
153 | 1 clk R t1 0000000000000018 |
||
154 | 1 clk 0 IT (1) 0000000000001004 02100393 A svc_ns : li t2,33 |
||
155 | 2 clk R t2 0000000000000021 |
||
156 | 2 clk 0 IT (2) 0000000000001008 00000000 A svc_ns : unimp |
||
157 | 3 clk 0 IT (3) 0000000000001010 00000000 A svc_ns : unimp |
||
158 | 3 | Sergey Smolov | </pre> |
159 | |||
160 | 7 | Sergey Smolov | h2. X86 (8086 case) |
161 | 3 | Sergey Smolov | |
162 | 5 | Sergey Smolov | It is supposed that the following tools are already installed in your system: |
163 | 7 | Sergey Smolov | - Toolchain for X86 assembler programs compilation, linking, etc. (we use "GCC":https://gcc.gnu.org). |
164 | 1 | Sergey Smolov | |
165 | 7 | Sergey Smolov | # Write a simple X86 program (it is called @sample.s@) that performs some calculations: |
166 | 1 | Sergey Smolov | <pre> |
167 | 7 | Sergey Smolov | .code16 # tell the assembler that we're using 16 bit mode |
168 | .text |
||
169 | .global _start |
||
170 | 3 | Sergey Smolov | _start: |
171 | 7 | Sergey Smolov | mov $11, %AX |
172 | and $204, %BX |
||
173 | mov %AX, %CX |
||
174 | add %CX, %BX |
||
175 | sub %CX, %AX |
||
176 | .org 510 # magic bytes that tell BIOS that this is bootable |
||
177 | .word 0xaa55 # magic bytes that tell BIOS that this is bootable |
||
178 | 1 | Sergey Smolov | </pre> |
179 | # To compile the X86 GNU assembler program, do the following: |
||
180 | <pre> |
||
181 | x86_64-linux-gnu-as sample.s -o sample.o |
||
182 | 7 | Sergey Smolov | x86_64-linux-gnu-ld sample.o -T 0x7c00 --oformat binary -o sample.elf |
183 | 1 | Sergey Smolov | </pre> |
184 | # Finally, run _QEMU4V_ emulator: |
||
185 | <pre> |
||
186 | 7 | Sergey Smolov | qemu-system-i386 -M pc -cpu 486 -d unimp,nochain,in_asm -nographic -singlestep -D log.txt -hda sample.elf |
187 | 1 | Sergey Smolov | </pre> |
188 | 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): |
189 | 1 | Sergey Smolov | <pre> |
190 | 7 | Sergey Smolov | ---------------- |
191 | IN: |
||
192 | 0x00007c00: mov $0xb,%ax |
||
193 | |||
194 | ---------------- |
||
195 | IN: |
||
196 | 0x00007c03: and $0xcc,%bx |
||
197 | |||
198 | ---------------- |
||
199 | IN: |
||
200 | 0x00007c07: mov %ax,%cx |
||
201 | |||
202 | ---------------- |
||
203 | IN: |
||
204 | 0x00007c09: add %cx,%bx |
||
205 | |||
206 | ---------------- |
||
207 | IN: |
||
208 | 0x00007c0b: sub %cx,%ax |
||
209 | |||
210 | ---------------- |
||
211 | 1 | Sergey Smolov | </pre> |