-
Notifications
You must be signed in to change notification settings - Fork 71
/
VMContextAccessTest.class.st
122 lines (78 loc) · 3.06 KB
/
VMContextAccessTest.class.st
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
Class {
#name : #VMContextAccessTest,
#superclass : #VMSimpleStackBasedCogitAbstractTest,
#category : #'VMMakerTests-JitTests'
}
{ #category : #'as yet unclassified' }
VMContextAccessTest >> assertContext: newContext equals: contextOop onInstVar: anIndex [
| originalPC copiedPC |
interpreter longPrintOop: contextOop.
interpreter longPrintOop: newContext.
originalPC := interpreter instVar: anIndex ofContext: contextOop.
copiedPC := interpreter instVar: anIndex ofContext: newContext.
self assert: copiedPC equals: originalPC
]
{ #category : #tests }
VMContextAccessTest >> pushActiveContext [
interpreter pushActiveContextBytecode.
^ interpreter stackTop
]
{ #category : #running }
VMContextAccessTest >> setUp [
"taken from VMSimpleStackBasedCogitBytecodeTest >> #setup"
| newMethod ctx page |
super setUp.
"Create the root context with a valid method"
"Let's create a method with enough size. It should have at least a literal (4 or 8 bytes depending the word size) and some bytecodes, so we can put the IP inside the method"
newMethod := methodBuilder newMethod buildMethod.
"The context has 5 (in 32 bits) or 9 (in 64 bits) as initial IP, as method has at least one literal"
ctx := self
newSmallContextReceiver: memory nilObject
method: newMethod
arguments: #( )
temporaries: #( )
ip: self wordSize + 1.
"The base context has a trampoline as the savedIP so it can return to a context that is in the heap"
cogit ceBaseFrameReturnTrampoline: 16rAABBCCDD.
page := interpreter makeBaseFrameFor: ctx.
interpreter setStackPointersFromPage: page.
interpreter setStackPageAndLimit: page.
interpreter instructionPointer: interpreter popStack.
self setUpScheduler.
self setContextClassIntoClassTable.
self initializeOldSpaceForFullGC
]
{ #category : #tests }
VMContextAccessTest >> testCloningTopContextHasCorrectPC [
| contextOop newContext |
contextOop := self pushActiveContext.
interpreter primitiveClone.
newContext := interpreter popStack.
self assertContext: newContext equals: contextOop onInstVar: InstructionPointerIndex.
]
{ #category : #tests }
VMContextAccessTest >> testCloningTopContextHasCorrectPCAfterFullGC [
| contextOop newContext |
contextOop := self pushActiveContext.
CloneOnGC := false.
memory fullGC.
interpreter primitiveClone.
newContext := interpreter popStack.
self assertContext: newContext equals: contextOop onInstVar: InstructionPointerIndex.
]
{ #category : #tests }
VMContextAccessTest >> testCloningTopContextHasCorrectReceiver [
| contextOop newContext |
contextOop := self pushActiveContext.
interpreter primitiveClone.
newContext := interpreter popStack.
self assertContext: newContext equals: contextOop onInstVar: ReceiverIndex.
]
{ #category : #tests }
VMContextAccessTest >> testCloningTopContextHasCorrectSenderWhenItIsNil [
| contextOop newContext |
contextOop := self pushActiveContext.
interpreter primitiveClone.
newContext := interpreter popStack.
self assertContext: newContext equals: contextOop onInstVar: SenderIndex.
]