-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathVMGen.swift
482 lines (403 loc) · 16.6 KB
/
VMGen.swift
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
import Foundation
/// A utility to generate internal VM instruction related code.
enum VMGen {
static func camelCase(pascalCase: String) -> String {
let first = pascalCase.first!.lowercased()
return first + pascalCase.dropFirst()
}
static func pascalCase(camelCase: String) -> String {
let first = camelCase.first!.uppercased()
return first + camelCase.dropFirst()
}
static func snakeCase(pascalCase: String) -> String {
var result = ""
for (i, c) in pascalCase.enumerated() {
if i > 0, c.isUppercase {
result += "_"
}
result.append(c.lowercased())
}
return result
}
static func alignUp(_ size: Int, to alignment: Int) -> Int {
(size + alignment - 1) / alignment * alignment
}
static func generateDispatcher(instructions: [Instruction]) -> String {
let doExecuteParams: [Instruction.Parameter] =
[("opcode", "OpcodeID", false)]
+ ExecutionParameter.allCases.map { ($0.label, $0.type, true) }
var output = """
extension Execution {
/// Execute an instruction identified by the opcode.
/// Note: This function is only used when using token threading model.
@inline(__always)
mutating func doExecute(_ \(doExecuteParams.map { "\($0.label): \($0.isInout ? "inout " : "")\($0.type)" }.joined(separator: ", "))) throws -> CodeSlot {
switch opcode {
"""
for (opcode, inst) in instructions.enumerated() {
let tryPrefix = inst.mayThrow ? "try " : ""
let args = ExecutionParameter.allCases.map { "\($0.label): &\($0.label)" }
output += """
case \(opcode): return \(tryPrefix)self.execute_\(inst.name)(\(args.joined(separator: ", ")))
"""
}
output += """
default: preconditionFailure("Unknown instruction!?")
}
}
}
"""
return output
}
static func generateBasicInstImplementations() -> [String: String] {
var inlineImpls: [String: String] = [:]
for op in intBinOps + floatBinOps {
inlineImpls[op.instruction.name] = """
sp.pointee[\(op.resultType): immediate.result] = \(op.mayThrow ? "try " : "")sp.pointee[\(op.lhsType): immediate.lhs].\(camelCase(pascalCase: op.op))(sp.pointee[\(op.rhsType): immediate.rhs])
"""
}
for op in intUnaryInsts + floatUnaryOps {
inlineImpls[op.instruction.name] = """
sp.pointee[\(op.resultType): immediate.result] = \(op.mayThrow ? "try " : "")sp.pointee[\(op.inputType): immediate.input].\(camelCase(pascalCase: op.op))
"""
}
for op in memoryLoadOps {
inlineImpls[op.instruction.name] = """
try memoryLoad(sp: sp.pointee, md: md.pointee, ms: ms.pointee, loadOperand: immediate, loadAs: \(op.loadAs).self, castToValue: { \(op.castToValue) })
"""
}
for op in memoryStoreOps {
inlineImpls[op.instruction.name] = """
try memoryStore(sp: sp.pointee, md: md.pointee, ms: ms.pointee, storeOperand: immediate, castFromValue: { \(op.castFromValue) })
"""
}
return inlineImpls
}
static func instMethodDecl(_ inst: Instruction) -> String {
let throwsKwd = inst.mayThrow ? " throws" : ""
let returnClause = inst.mayUpdatePc ? " -> (Pc, CodeSlot)" : ""
let args = inst.parameters
return "func \(inst.name)(\(args.map { "\($0.label): \($0.isInout ? "inout " : "")\($0.type)" }.joined(separator: ", ")))\(throwsKwd)\(returnClause)"
}
static func generatePrototype(instructions: [Instruction]) -> String {
var output = """
extension Execution {
"""
for inst in instructions {
output += """
mutating \(instMethodDecl(inst)) {
fatalError("Unimplemented instruction: \(inst.name)")
}
"""
}
output += """
}
"""
return output
}
static func replaceInstMethodSignature(_ inst: Instruction, sourceRoot: URL) throws {
func tryReplace(file: URL) throws -> Bool {
let originalContent = try String(contentsOf: file)
var contents = originalContent
guard contents.contains("func \(inst.name)(") else {
return false
}
// Replace the found line with the new signature
var lines = contents.split(separator: "\n", omittingEmptySubsequences: false)
for (i, line) in lines.enumerated() {
if let range = line.range(of: "func \(inst.name)(") {
lines[i] = lines[i][..<range.lowerBound] + instMethodDecl(inst) + " {"
break
}
}
contents = lines.joined(separator: "\n")
if contents == originalContent {
return true
}
try contents.write(to: file, atomically: true, encoding: .utf8)
print("Replaced \(inst.name) in \(file.lastPathComponent)")
return true
}
let files = try FileManager.default.contentsOfDirectory(at: sourceRoot.appendingPathComponent("Sources/WasmKit/Execution/Instructions"), includingPropertiesForKeys: nil)
for file in files {
guard file.lastPathComponent != "InstructionSupport.swift" else {
continue
}
if try tryReplace(file: file) {
return
}
}
}
static func replaceMethodSignature(instructions: [Instruction], sourceRoot: URL) throws {
for inst in instructions {
try replaceInstMethodSignature(inst, sourceRoot: sourceRoot)
}
}
static func generateEnumDefinition(instructions: [Instruction]) -> String {
var output = """
/// An internal VM instruction.
///
/// NOTE: This enum representation is just for modeling purposes. The actual
/// runtime representation can be different.
enum Instruction: Equatable {
"""
for inst in instructions {
if let documentation = inst.documentation {
for line in documentation.split(separator: "\n", omittingEmptySubsequences: false) {
output += " /// \(line)\n"
}
}
output += " case \(inst.name)"
if let immediate = inst.immediate {
output += "("
if let name = immediate.name {
output += name + ": " + immediate.type
} else {
output += immediate.type
}
output += ")"
}
output += "\n"
}
output += "}\n"
output += generateImmediateDefinitions(instructions: instructions)
output += "\n"
output += """
extension Instruction {
var rawImmediate: (any InstructionImmediate)? {
switch self {
"""
for inst in instructions {
guard let immediate = inst.immediate else { continue }
output += " case .\(inst.name)(let \(immediate.label)): return \(immediate.label)\n"
}
output += """
default: return nil
}
}
}
"""
output += "\n\n"
output += """
extension Instruction {
/// The opcode ID of the instruction.
var opcodeID: OpcodeID {
switch self {
"""
for (i, inst) in instructions.enumerated() {
output += " case .\(inst.name): return \(i)\n"
}
output += """
}
}
}
"""
output += """
extension Instruction {
/// Load an instruction from the given program counter.
/// - Parameter pc: The program counter to read from.
/// - Returns: The instruction read from the program counter.
/// - Precondition: The instruction sequence must be compiled with token threading model.
static func load(from pc: inout Pc) -> Instruction {
let opcode = pc.read(UInt64.self)
switch opcode {
"""
for (i, inst) in instructions.enumerated() {
if let immediate = inst.immediate {
let maybeLabel = immediate.name.map { "\($0): " } ?? ""
output += " case \(i): return .\(inst.name)(\(maybeLabel)\(immediate.type).load(from: &pc))\n"
} else {
output += " case \(i): return .\(inst.name)\n"
}
}
output += """
default: fatalError("Unknown instruction opcode: \\(opcode)")
}
}
}
"""
output += """
#if EngineStats
extension Instruction {
/// The name of the instruction.
/// - Parameter opcode: The opcode ID of the instruction.
/// - Returns: The name of the instruction.
///
/// NOTE: This function is used for debugging purposes.
static func name(opcode: OpcodeID) -> String {
switch opcode {
"""
for (i, inst) in instructions.enumerated() {
output += """
case \(i): return "\(inst.name)"
"""
}
output += """
default: fatalError("Unknown instruction index: \\(opcode)")
}
}
}
#endif // EngineStats
"""
return output
}
static func generateImmediateDefinitions(instructions: [Instruction]) -> String {
var output = ""
output += """
extension Instruction {
// MARK: - Instruction Immediates
"""
var emittedImmediateTypes = Set<String>()
for inst in instructions {
guard let layout = inst.immediateLayout else { continue }
guard emittedImmediateTypes.insert(layout.name).inserted else { continue }
let definition = layout.buildDeclaration()
output += "\n"
for line in definition.split(separator: "\n") {
output += " " + line + "\n"
}
}
output += "}\n"
return output
}
static func generateDirectThreadedCode(instructions: [Instruction], inlineImpls: [String: String]) -> String {
var output = """
extension Execution {
"""
for inst in instructions {
let args = inst.parameters.map { label, _, isInout in
let isExecParam = ExecutionParameter.allCases.contains { $0.label == label }
if isExecParam {
return "\(label): \(isInout ? "&" : "")\(label).pointee"
} else {
return "\(label): \(isInout ? "&" : "")\(label)"
}
}.joined(separator: ", ")
let throwsKwd = inst.mayThrow ? " throws" : ""
let tryKwd = inst.mayThrow ? "try " : ""
output += """
@_silgen_name("wasmkit_execute_\(inst.name)") @inline(__always)
mutating func execute_\(inst.name)(\(ExecutionParameter.allCases.map { "\($0.label): UnsafeMutablePointer<\($0.type)>" }.joined(separator: ", ")))\(throwsKwd) -> CodeSlot {
"""
if let immediate = inst.immediate {
output += """
let \(immediate.label) = \(immediate.type).load(from: &pc.pointee)
"""
}
let call = "\(tryKwd)self.\(inst.name)(\(args))"
if inst.mayUpdatePc {
output += """
let next: CodeSlot
(pc.pointee, next) = \(call)
"""
} else {
output += """
\(inlineImpls[inst.name] ?? call)
let next = pc.pointee.pointee
pc.pointee = pc.pointee.advanced(by: 1)
"""
}
output += """
return next
}
"""
}
output += """
}
"""
return output
}
static func generateDirectThreadedCodeOfCPart(instructions: [Instruction]) -> String {
var output = ""
func handlerName(_ inst: Instruction) -> String {
"wasmkit_tc_\(inst.name)"
}
for inst in instructions {
let params = ExecutionParameter.allCases
output += """
SWIFT_CC(swiftasync) static inline void \(handlerName(inst))(\(params.map { "\($0.type) \($0.label)" }.joined(separator: ", ")), SWIFT_CONTEXT void *state) {
SWIFT_CC(swift) uint64_t wasmkit_execute_\(inst.name)(\(params.map { "\($0.type) *\($0.label)" }.joined(separator: ", ")), SWIFT_CONTEXT void *state, SWIFT_ERROR_RESULT void **error);
void * _Nullable error = NULL; uint64_t next;
INLINE_CALL next = wasmkit_execute_\(inst.name)(\(params.map { "&\($0.label)" }.joined(separator: ", ")), state, &error);\n
"""
if inst.mayThrow {
output += " if (error) return wasmkit_execution_state_set_error(error, sp, state);\n"
}
output += """
return ((wasmkit_tc_exec)next)(sp, pc, md, ms, state);
}
"""
}
output += """
static const uintptr_t wasmkit_tc_exec_handlers[] = {
"""
for inst in instructions {
output += " (uintptr_t)((wasmkit_tc_exec)&\(handlerName(inst))),\n"
}
output += """
};
"""
return output
}
static func main(arguments: [String]) throws {
let sourceRoot = URL(fileURLWithPath: #filePath).deletingLastPathComponent().deletingLastPathComponent().deletingLastPathComponent()
if arguments.count > 1 {
switch arguments[1] {
case "prototype":
print(generatePrototype(instructions: instructions))
return
case "replace":
try replaceMethodSignature(instructions: instructions, sourceRoot: sourceRoot)
default: break
}
}
let header = """
// swift-format-ignore-file
//// Automatically generated by Utilities/Sources/VMGen.swift
//// DO NOT EDIT DIRECTLY
"""
let projectSources = ["Sources"]
let inlineImpls = generateBasicInstImplementations()
let generatedFiles = [
GeneratedFile(
projectSources + ["WasmKit", "Execution", "DispatchInstruction.swift"],
header
+ """
// Include the C inline code to codegen together with the Swift code.
import _CWasmKit.InlineCode
// MARK: - Token Threaded Code
"""
+ generateDispatcher(instructions: instructions)
+ """
// MARK: - Direct Threaded Code
"""
+ generateDirectThreadedCode(instructions: instructions, inlineImpls: inlineImpls)
+ """
extension Instruction {
/// The tail-calling execution handler for the instruction.
var handler: UInt {
return withUnsafePointer(to: wasmkit_tc_exec_handlers) {
let count = MemoryLayout.size(ofValue: wasmkit_tc_exec_handlers) / MemoryLayout<wasmkit_tc_exec>.size
return $0.withMemoryRebound(to: UInt.self, capacity: count) {
$0[Int(self.opcodeID)]
}
}
}
}
"""
),
GeneratedFile(
projectSources + ["_CWasmKit", "include", "DirectThreadedCode.inc"],
header + generateDirectThreadedCodeOfCPart(instructions: instructions)
),
GeneratedFile(
projectSources + ["WasmKit", "Execution", "Instructions", "Instruction.swift"],
header + generateEnumDefinition(instructions: instructions)
),
]
for file in generatedFiles {
try file.writeIfChanged(sourceRoot: sourceRoot)
}
try replaceMethodSignature(instructions: instructions, sourceRoot: sourceRoot)
}
}