File: WasmTypes.swift

package info (click to toggle)
swiftlang 6.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,856,264 kB
  • sloc: cpp: 9,995,718; ansic: 2,234,019; asm: 1,092,167; python: 313,940; objc: 82,726; f90: 80,126; lisp: 38,373; pascal: 25,580; sh: 20,378; ml: 5,058; perl: 4,751; makefile: 4,725; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (425 lines) | stat: -rw-r--r-- 11,863 bytes parent folder | download
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
import WasmTypes

/// Function code in a module
/// > Note:
/// <https://webassembly.github.io/spec/core/binary/modules.html#binary-code>
public struct Code {
    /// Local variables in the function
    public let locals: [ValueType]
    /// Expression body of the function
    public let expression: ArraySlice<UInt8>

    // Parser state used to parse the expression body lazily
    @usableFromInline
    internal let offset: Int
    @usableFromInline
    internal let features: WasmFeatureSet

    @inlinable
    init(locals: [ValueType], expression: ArraySlice<UInt8>, offset: Int, features: WasmFeatureSet) {
        self.locals = locals
        self.expression = expression
        self.offset = offset
        self.features = features
    }
}

extension Code: Equatable {
    public static func == (lhs: Code, rhs: Code) -> Bool {
        return lhs.locals == rhs.locals && lhs.expression == rhs.expression
    }
}

public struct MemArg: Equatable {
    public let offset: UInt64
    public let align: UInt32

    public init(offset: UInt64, align: UInt32) {
        self.offset = offset
        self.align = align
    }
}

public enum BlockType: Equatable {
    case empty
    case type(ValueType)
    case funcType(UInt32)
}

/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/types.html#limits>
public struct Limits: Equatable {
    public let min: UInt64
    public let max: UInt64?
    public let isMemory64: Bool
    public let shared: Bool

    public init(min: UInt64, max: UInt64? = nil, isMemory64: Bool = false, shared: Bool = false) {
        self.min = min
        self.max = max
        self.isMemory64 = isMemory64
        self.shared = shared
    }
}

/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/types.html#memory-types>
public typealias MemoryType = Limits

/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/types.html#table-types>
public struct TableType: Equatable {
    public let elementType: ReferenceType
    public let limits: Limits

    public init(elementType: ReferenceType, limits: Limits) {
        self.elementType = elementType
        self.limits = limits
    }
}

/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/types.html#global-types>
public enum Mutability: Equatable {
    case constant
    case variable
}

/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/types.html#global-types>
public struct GlobalType: Equatable {
    public let mutability: Mutability
    public let valueType: ValueType

    public init(mutability: Mutability, valueType: ValueType) {
        self.mutability = mutability
        self.valueType = valueType
    }
}

/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/types.html#external-types>
public enum ExternalType {
    case function(FunctionType)
    case table(TableType)
    case memory(MemoryType)
    case global(GlobalType)
}

public enum IEEE754 {
    public struct Float32: Equatable {
        public let bitPattern: UInt32

        public init(bitPattern: UInt32) {
            self.bitPattern = bitPattern
        }
    }
    public struct Float64: Equatable {
        public let bitPattern: UInt64

        public init(bitPattern: UInt64) {
            self.bitPattern = bitPattern
        }
    }
}

public struct BrTable: Equatable {
    public let labelIndices: [UInt32]
    public let defaultIndex: UInt32

    public init(labelIndices: [UInt32], defaultIndex: UInt32) {
        self.labelIndices = labelIndices
        self.defaultIndex = defaultIndex
    }
}

/// A custom section in a module
public struct CustomSection: Equatable {
    public let name: String
    public let bytes: ArraySlice<UInt8>
}

/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/modules.html#syntax-typeidx>

/// Index type for function types within a module
public typealias TypeIndex = UInt32
/// Index type for tables within a module
public typealias FunctionIndex = UInt32
/// Index type for tables within a module
public typealias TableIndex = UInt32
/// Index type for memories within a module
public typealias MemoryIndex = UInt32
/// Index type for globals within a module
public typealias GlobalIndex = UInt32
/// Index type for elements within a module
public typealias ElementIndex = UInt32
/// Index type for data segments within a module
public typealias DataIndex = UInt32

public typealias ConstExpression = [Instruction]

/// Table entry in a module
/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/modules.html#tables>
public struct Table: Equatable {
    public let type: TableType

    public init(type: TableType) {
        self.type = type
    }
}

/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/modules.html#memories>
public struct Memory: Equatable {
    public let type: MemoryType
}

/// Global entry in a module
/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/modules.html#globals>
public struct Global: Equatable {
    public let type: GlobalType
    public let initializer: ConstExpression
}

/// Segment of elements that are initialized in a table
/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/modules.html#element-segments>
public struct ElementSegment: Equatable {
    @usableFromInline
    struct Flag: OptionSet {
        @usableFromInline let rawValue: UInt32

        @inlinable
        init(rawValue: UInt32) {
            self.rawValue = rawValue
        }

        @inlinable var segmentHasElemKind: Bool {
            !contains(.usesExpressions) && rawValue != 0
        }

        @inlinable var segmentHasRefType: Bool {
            contains(.usesExpressions) && rawValue != 4
        }

        @usableFromInline static let isPassiveOrDeclarative = Flag(rawValue: 1 << 0)
        @usableFromInline static let isDeclarative = Flag(rawValue: 1 << 1)
        @usableFromInline static let hasTableIndex = Flag(rawValue: 1 << 1)
        @usableFromInline static let usesExpressions = Flag(rawValue: 1 << 2)
    }

    public enum Mode: Equatable {
        case active(table: UInt32, offset: ConstExpression)
        case declarative
        case passive
    }

    public let type: ReferenceType
    public let initializer: [ConstExpression]
    public let mode: Mode

    public init(type: ReferenceType, initializer: [ConstExpression], mode: Mode) {
        self.type = type
        self.initializer = initializer
        self.mode = mode
    }
}

/// Data segment in a module
/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/modules.html#data-segments>
public enum DataSegment: Equatable {
    public struct Active: Equatable {
        public let index: UInt32
        public let offset: ConstExpression
        public let initializer: ArraySlice<UInt8>

        @inlinable init(index: UInt32, offset: ConstExpression, initializer: ArraySlice<UInt8>) {
            self.index = index
            self.offset = offset
            self.initializer = initializer
        }
    }

    case passive(ArraySlice<UInt8>)
    case active(Active)
}

/// Exported entity in a module
/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/modules.html#exports>
public struct Export: Equatable {
    /// Name of the export
    public let name: String
    /// Descriptor of the export
    public let descriptor: ExportDescriptor

    public init(name: String, descriptor: ExportDescriptor) {
        self.name = name
        self.descriptor = descriptor
    }
}

/// Export descriptor
public enum ExportDescriptor: Equatable {
    /// Function export
    case function(FunctionIndex)
    /// Table export
    case table(TableIndex)
    /// Memory export
    case memory(MemoryIndex)
    /// Global export
    case global(GlobalIndex)
}

/// Import entity in a module
/// > Note:
/// <https://webassembly.github.io/spec/core/syntax/modules.html#imports>
public struct Import: Equatable {
    /// Module name imported from
    public let module: String
    /// Name of the import
    public let name: String
    /// Descriptor of the import
    public let descriptor: ImportDescriptor

    public init(module: String, name: String, descriptor: ImportDescriptor) {
        self.module = module
        self.name = name
        self.descriptor = descriptor
    }
}

/// Import descriptor
public enum ImportDescriptor: Equatable {
    /// Function import
    case function(TypeIndex)
    /// Table import
    case table(TableType)
    /// Memory import
    case memory(MemoryType)
    /// Global import
    case global(GlobalType)
}

@usableFromInline
protocol RawUnsignedInteger: FixedWidthInteger & UnsignedInteger {
    associatedtype Signed: RawSignedInteger where Signed.Unsigned == Self
    init(bitPattern: Signed)
}

@usableFromInline
protocol RawSignedInteger: FixedWidthInteger & SignedInteger {
    associatedtype Unsigned: RawUnsignedInteger where Unsigned.Signed == Self
    init(bitPattern: Unsigned)
}

extension UInt8: RawUnsignedInteger {
    @usableFromInline typealias Signed = Int8
}

extension UInt16: RawUnsignedInteger {
    @usableFromInline typealias Signed = Int16
}

extension UInt32: RawUnsignedInteger {
    @usableFromInline typealias Signed = Int32
}

extension UInt64: RawUnsignedInteger {
    @usableFromInline typealias Signed = Int64
}

extension Int8: RawSignedInteger {}
extension Int16: RawSignedInteger {}
extension Int32: RawSignedInteger {}
extension Int64: RawSignedInteger {}

extension RawUnsignedInteger {
    var signed: Signed {
        .init(bitPattern: self)
    }
}

extension Instruction.Load {
    /// The alignment to the storage size of the memory access
    /// in log2 form.
    @_alwaysEmitIntoClient
    public var naturalAlignment: Int {
        switch self {
        case .i32Load: return 2
        case .i64Load: return 3
        case .f32Load: return 2
        case .f64Load: return 3
        case .i32Load8S: return 0
        case .i32Load8U: return 0
        case .i32Load16S: return 1
        case .i32Load16U: return 1
        case .i64Load8S: return 0
        case .i64Load8U: return 0
        case .i64Load16S: return 1
        case .i64Load16U: return 1
        case .i64Load32S: return 2
        case .i64Load32U: return 2
        }
    }

    /// The type of the value loaded from memory
    @_alwaysEmitIntoClient
    public var type: ValueType {
        switch self {
        case .i32Load: return .i32
        case .i64Load: return .i64
        case .f32Load: return .f32
        case .f64Load: return .f64
        case .i32Load8S: return .i32
        case .i32Load8U: return .i32
        case .i32Load16S: return .i32
        case .i32Load16U: return .i32
        case .i64Load8S: return .i64
        case .i64Load8U: return .i64
        case .i64Load16S: return .i64
        case .i64Load16U: return .i64
        case .i64Load32S: return .i64
        case .i64Load32U: return .i64
        }
    }
}

extension Instruction.Store {
    /// The alignment to the storage size of the memory access
    /// in log2 form.
    @_alwaysEmitIntoClient
    public var naturalAlignment: Int {
        switch self {
        case .i32Store: return 2
        case .i64Store: return 3
        case .f32Store: return 2
        case .f64Store: return 3
        case .i32Store8: return 0
        case .i32Store16: return 1
        case .i64Store8: return 0
        case .i64Store16: return 1
        case .i64Store32: return 2
        }
    }

    /// The type of the value stored to memory
    @_alwaysEmitIntoClient
    public var type: ValueType {
        switch self {
        case .i32Store: return .i32
        case .i64Store: return .i64
        case .f32Store: return .f32
        case .f64Store: return .f64
        case .i32Store8: return .i32
        case .i32Store16: return .i32
        case .i64Store8: return .i64
        case .i64Store16: return .i64
        case .i64Store32: return .i64
        }
    }
}