-
Notifications
You must be signed in to change notification settings - Fork 71
/
SlangMemoryRegion.class.st
138 lines (105 loc) · 2.8 KB
/
SlangMemoryRegion.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
Class {
#name : #SlangMemoryRegion,
#superclass : #Object,
#instVars : [
'start',
'memory',
'originallyRequestedMemory'
],
#category : #'Slang-Simulation'
}
{ #category : #'memory access' }
SlangMemoryRegion >> at: anInteger [
^ self byteAt: anInteger
]
{ #category : #'memory access' }
SlangMemoryRegion >> byteAt: anInteger [
"0 based offset"
^ memory at: anInteger
]
{ #category : #'memory access' }
SlangMemoryRegion >> doubleAt: anInteger [
"anInteger is 0 based offset"
^ memory float64AtOffset: anInteger
]
{ #category : #'memory access' }
SlangMemoryRegion >> doubleAt: anInteger put: aNumber [
"anInteger is 0 based offset"
^ memory float64AtOffset: anInteger put: aNumber
]
{ #category : #'memory access' }
SlangMemoryRegion >> floatAt: anInteger [
"anInteger is 0 based offset"
^ memory float32AtOffset: anInteger
]
{ #category : #'memory access' }
SlangMemoryRegion >> floatAt: anInteger put: aNumber [
"anInteger is 0 based offset"
^ memory float32AtOffset: anInteger put: aNumber
]
{ #category : #'memory access' }
SlangMemoryRegion >> integerAt: anInteger put: value size: nBytes signed: aBoolean [
"anInteger is 0 based offset"
^ memory
integerAt: anInteger + 1
put: value
size: nBytes
signed: aBoolean
]
{ #category : #'memory access' }
SlangMemoryRegion >> integerAt: anInteger size: nBytes signed: aBoolean [
"anInteger is 0 based offset"
^ memory
integerAt: anInteger + 1
size: nBytes
signed: aBoolean
]
{ #category : #accessing }
SlangMemoryRegion >> memory [
^ memory
]
{ #category : #accessing }
SlangMemoryRegion >> memory: anObject [
memory := anObject
]
{ #category : #accessing }
SlangMemoryRegion >> originallyRequestedMemory [
^ originallyRequestedMemory
]
{ #category : #accessing }
SlangMemoryRegion >> originallyRequestedMemory: anObject [
originallyRequestedMemory := anObject
]
{ #category : #printing }
SlangMemoryRegion >> printOn: aStream [
super printOn: aStream.
aStream
nextPut: $ ;
print: start;
nextPut: $-;
print: (start+originallyRequestedMemory)
]
{ #category : #'bulk-replace' }
SlangMemoryRegion >> replaceFrom: anInteger to: anInteger2 with: aSlangMemoryRegion [
^ memory replaceFrom: anInteger to: anInteger2 with: aSlangMemoryRegion
]
{ #category : #'bulk-replace' }
SlangMemoryRegion >> replaceFrom: anInteger to: anInteger2 with: aCArray startingAt: anInteger4 [
^ memory replaceFrom: anInteger to: anInteger2 with: aCArray startingAt: anInteger4
]
{ #category : #accessing }
SlangMemoryRegion >> requestedMemoryCopy [
^ memory copyFrom: 1 to: originallyRequestedMemory
]
{ #category : #accessing }
SlangMemoryRegion >> size [
^ self originallyRequestedMemory
]
{ #category : #accessing }
SlangMemoryRegion >> start [
^ start
]
{ #category : #accessing }
SlangMemoryRegion >> start: anObject [
start := anObject
]