summaryrefslogtreecommitdiffstats
path: root/test/kvm-eviction_guest.S
blob: eb04d2a2b6dbaa87e898b465746d09264e0172e8 (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:
	movq (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: