summaryrefslogtreecommitdiffstats
path: root/test/kvm-eviction_guest.S
blob: ce696cdcf6ab3809e7bdcd7e5866fd170f42ea9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "test/kvm-eviction.h"
#include "cachepc/const.h"

.global guest_with_start
.global guest_with_stop

.global guest_without_start
.global guest_without_stop

guest_with_start:
	mov (L1_LINESIZE * (TARGET_SET + L1_SETS)), %rbx
	hlt
	jmp guest_with_start
guest_with_stop:

guest_without_start:
	hlt
	jmp guest_without_start
guest_without_stop: