]> git.cworth.org Git - apitrace/blob - specs/stdapi.py
Factor the proc address wrapping into gltrace.py
[apitrace] / specs / stdapi.py
1 ##########################################################################
2 #
3 # Copyright 2008-2010 VMware, Inc.
4 # All Rights Reserved.
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining a copy
7 # of this software and associated documentation files (the "Software"), to deal
8 # in the Software without restriction, including without limitation the rights
9 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 # copies of the Software, and to permit persons to whom the Software is
11 # furnished to do so, subject to the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included in
14 # all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 # THE SOFTWARE.
23 #
24 ##########################################################################/
25
26 """C basic types"""
27
28
29 import debug
30
31
32 class Type:
33     """Base class for all types."""
34
35     __tags = set()
36
37     def __init__(self, expr, tag = None):
38         self.expr = expr
39
40         # Generate a default tag, used when naming functions that will operate
41         # on this type, so it should preferrably be something representative of
42         # the type.
43         if tag is None:
44             if expr is not None:
45                 tag = ''.join([c for c in expr if c.isalnum() or c in '_'])
46             else:
47                 tag = 'anonynoums'
48         else:
49             for c in tag:
50                 assert c.isalnum() or c in '_'
51
52         # Ensure it is unique.
53         if tag in Type.__tags:
54             suffix = 1
55             while tag + str(suffix) in Type.__tags:
56                 suffix += 1
57             tag += str(suffix)
58
59         assert tag not in Type.__tags
60         Type.__tags.add(tag)
61
62         self.tag = tag
63
64     def __str__(self):
65         """Return the C/C++ type expression for this type."""
66         return self.expr
67
68     def visit(self, visitor, *args, **kwargs):
69         raise NotImplementedError
70
71     def mutable(self):
72         '''Return a mutable version of this type.
73
74         Convenience wrapper around MutableRebuilder.'''
75         visitor = MutableRebuilder()
76         return visitor.visit(self)
77
78
79 class _Void(Type):
80     """Singleton void type."""
81
82     def __init__(self):
83         Type.__init__(self, "void")
84
85     def visit(self, visitor, *args, **kwargs):
86         return visitor.visitVoid(self, *args, **kwargs)
87
88 Void = _Void()
89
90
91 class Literal(Type):
92     """Class to describe literal types.
93
94     Types which are not defined in terms of other types, such as integers and
95     floats."""
96
97     def __init__(self, expr, kind):
98         Type.__init__(self, expr)
99         self.kind = kind
100
101     def visit(self, visitor, *args, **kwargs):
102         return visitor.visitLiteral(self, *args, **kwargs)
103
104
105 class Const(Type):
106
107     def __init__(self, type):
108         # While "const foo" and "foo const" are synonymous, "const foo *" and
109         # "foo * const" are not quite the same, and some compilers do enforce
110         # strict const correctness.
111         if isinstance(type, String) or type is WString:
112             # For strings we never intend to say a const pointer to chars, but
113             # rather a point to const chars.
114             expr = "const " + type.expr
115         elif type.expr.startswith("const ") or '*' in type.expr:
116             expr = type.expr + " const"
117         else:
118             # The most legible
119             expr = "const " + type.expr
120
121         Type.__init__(self, expr, 'C' + type.tag)
122
123         self.type = type
124
125     def visit(self, visitor, *args, **kwargs):
126         return visitor.visitConst(self, *args, **kwargs)
127
128
129 class Pointer(Type):
130
131     def __init__(self, type):
132         Type.__init__(self, type.expr + " *", 'P' + type.tag)
133         self.type = type
134
135     def visit(self, visitor, *args, **kwargs):
136         return visitor.visitPointer(self, *args, **kwargs)
137
138
139 class IntPointer(Type):
140     '''Integer encoded as a pointer.'''
141
142     def visit(self, visitor, *args, **kwargs):
143         return visitor.visitIntPointer(self, *args, **kwargs)
144
145
146 class ObjPointer(Type):
147     '''Pointer to an object.'''
148
149     def __init__(self, type):
150         Type.__init__(self, type.expr + " *", 'P' + type.tag)
151         self.type = type
152
153     def visit(self, visitor, *args, **kwargs):
154         return visitor.visitObjPointer(self, *args, **kwargs)
155
156
157 class LinearPointer(Type):
158     '''Pointer to a linear range of memory.'''
159
160     def __init__(self, type, size = None):
161         Type.__init__(self, type.expr + " *", 'P' + type.tag)
162         self.type = type
163         self.size = size
164
165     def visit(self, visitor, *args, **kwargs):
166         return visitor.visitLinearPointer(self, *args, **kwargs)
167
168
169 class Reference(Type):
170     '''C++ references.'''
171
172     def __init__(self, type):
173         Type.__init__(self, type.expr + " &", 'R' + type.tag)
174         self.type = type
175
176     def visit(self, visitor, *args, **kwargs):
177         return visitor.visitReference(self, *args, **kwargs)
178
179
180 class Handle(Type):
181
182     def __init__(self, name, type, range=None, key=None):
183         Type.__init__(self, type.expr, 'P' + type.tag)
184         self.name = name
185         self.type = type
186         self.range = range
187         self.key = key
188
189     def visit(self, visitor, *args, **kwargs):
190         return visitor.visitHandle(self, *args, **kwargs)
191
192
193 def ConstPointer(type):
194     return Pointer(Const(type))
195
196
197 class Enum(Type):
198
199     __id = 0
200
201     def __init__(self, name, values):
202         Type.__init__(self, name)
203
204         self.id = Enum.__id
205         Enum.__id += 1
206
207         self.values = list(values)
208
209     def visit(self, visitor, *args, **kwargs):
210         return visitor.visitEnum(self, *args, **kwargs)
211
212
213 def FakeEnum(type, values):
214     return Enum(type.expr, values)
215
216
217 class Bitmask(Type):
218
219     __id = 0
220
221     def __init__(self, type, values):
222         Type.__init__(self, type.expr)
223
224         self.id = Bitmask.__id
225         Bitmask.__id += 1
226
227         self.type = type
228         self.values = values
229
230     def visit(self, visitor, *args, **kwargs):
231         return visitor.visitBitmask(self, *args, **kwargs)
232
233 Flags = Bitmask
234
235
236 class Array(Type):
237
238     def __init__(self, type, length):
239         Type.__init__(self, type.expr + " *")
240         self.type = type
241         self.length = length
242
243     def visit(self, visitor, *args, **kwargs):
244         return visitor.visitArray(self, *args, **kwargs)
245
246
247 class Blob(Type):
248
249     def __init__(self, type, size):
250         Type.__init__(self, type.expr + ' *')
251         self.type = type
252         self.size = size
253
254     def visit(self, visitor, *args, **kwargs):
255         return visitor.visitBlob(self, *args, **kwargs)
256
257
258 class Struct(Type):
259
260     __id = 0
261
262     def __init__(self, name, members):
263         Type.__init__(self, name)
264
265         self.id = Struct.__id
266         Struct.__id += 1
267
268         self.name = name
269         self.members = []
270
271         # Eliminate anonymous unions
272         for type, name in members:
273             if name is not None:
274                 self.members.append((type, name))
275             else:
276                 assert isinstance(type, Union)
277                 assert type.name is None
278                 self.members.extend(type.members)
279
280     def visit(self, visitor, *args, **kwargs):
281         return visitor.visitStruct(self, *args, **kwargs)
282
283
284 class Union(Type):
285
286     __id = 0
287
288     def __init__(self, name, members):
289         Type.__init__(self, name)
290
291         self.id = Union.__id
292         Union.__id += 1
293
294         self.name = name
295         self.members = members
296
297
298 class Alias(Type):
299
300     def __init__(self, expr, type):
301         Type.__init__(self, expr)
302         self.type = type
303
304     def visit(self, visitor, *args, **kwargs):
305         return visitor.visitAlias(self, *args, **kwargs)
306
307 class Arg:
308
309     def __init__(self, type, name, input=True, output=False):
310         self.type = type
311         self.name = name
312         self.input = input
313         self.output = output
314         self.index = None
315
316     def __str__(self):
317         return '%s %s' % (self.type, self.name)
318
319
320 def In(type, name):
321     return Arg(type, name, input=True, output=False)
322
323 def Out(type, name):
324     return Arg(type, name, input=False, output=True)
325
326 def InOut(type, name):
327     return Arg(type, name, input=True, output=True)
328
329
330 class Function:
331
332     # 0-3 are reserved to memcpy, malloc, free, and realloc
333     __id = 4
334
335     def __init__(self, type, name, args, call = '', fail = None, sideeffects=True):
336         self.id = Function.__id
337         Function.__id += 1
338
339         self.type = type
340         self.name = name
341
342         self.args = []
343         index = 0
344         for arg in args:
345             if not isinstance(arg, Arg):
346                 if isinstance(arg, tuple):
347                     arg_type, arg_name = arg
348                 else:
349                     arg_type = arg
350                     arg_name = "arg%u" % index
351                 arg = Arg(arg_type, arg_name)
352             arg.index = index
353             index += 1
354             self.args.append(arg)
355
356         self.call = call
357         self.fail = fail
358         self.sideeffects = sideeffects
359
360     def prototype(self, name=None):
361         if name is not None:
362             name = name.strip()
363         else:
364             name = self.name
365         s = name
366         if self.call:
367             s = self.call + ' ' + s
368         if name.startswith('*'):
369             s = '(' + s + ')'
370         s = self.type.expr + ' ' + s
371         s += "("
372         if self.args:
373             s += ", ".join(["%s %s" % (arg.type, arg.name) for arg in self.args])
374         else:
375             s += "void"
376         s += ")"
377         return s
378
379     def argNames(self):
380         return [arg.name for arg in self.args]
381
382
383 def StdFunction(*args, **kwargs):
384     kwargs.setdefault('call', '__stdcall')
385     return Function(*args, **kwargs)
386
387
388 def FunctionPointer(type, name, args, **kwargs):
389     # XXX: We should probably treat function pointers (callbacks or not) in a generic fashion
390     return Opaque(name)
391
392
393 class Interface(Type):
394
395     def __init__(self, name, base=None):
396         Type.__init__(self, name)
397         self.name = name
398         self.base = base
399         self.methods = []
400
401     def visit(self, visitor, *args, **kwargs):
402         return visitor.visitInterface(self, *args, **kwargs)
403
404     def iterMethods(self):
405         if self.base is not None:
406             for method in self.base.iterMethods():
407                 yield method
408         for method in self.methods:
409             yield method
410         raise StopIteration
411
412     def iterBases(self):
413         iface = self
414         while iface is not None:
415             yield iface
416             iface = iface.base
417         raise StopIteration
418
419     def iterBaseMethods(self):
420         if self.base is not None:
421             for iface, method in self.base.iterBaseMethods():
422                 yield iface, method
423         for method in self.methods:
424             yield self, method
425         raise StopIteration
426
427
428 class Method(Function):
429
430     def __init__(self, type, name, args, call = '__stdcall', const=False, sideeffects=True):
431         Function.__init__(self, type, name, args, call = call, sideeffects=sideeffects)
432         for index in range(len(self.args)):
433             self.args[index].index = index + 1
434         self.const = const
435
436     def prototype(self, name=None):
437         s = Function.prototype(self, name)
438         if self.const:
439             s += ' const'
440         return s
441
442
443 def StdMethod(*args, **kwargs):
444     kwargs.setdefault('call', '__stdcall')
445     return Method(*args, **kwargs)
446
447
448 class String(Type):
449
450     def __init__(self, expr = "char *", length = None, kind = 'String'):
451         Type.__init__(self, expr)
452         self.length = length
453         self.kind = kind
454
455     def visit(self, visitor, *args, **kwargs):
456         return visitor.visitString(self, *args, **kwargs)
457
458
459 class Opaque(Type):
460     '''Opaque pointer.'''
461
462     def __init__(self, expr):
463         Type.__init__(self, expr)
464
465     def visit(self, visitor, *args, **kwargs):
466         return visitor.visitOpaque(self, *args, **kwargs)
467
468
469 def OpaquePointer(type, *args):
470     return Opaque(type.expr + ' *')
471
472 def OpaqueArray(type, size):
473     return Opaque(type.expr + ' *')
474
475 def OpaqueBlob(type, size):
476     return Opaque(type.expr + ' *')
477
478
479 class Polymorphic(Type):
480
481     def __init__(self, defaultType, switchExpr, switchTypes):
482         Type.__init__(self, defaultType.expr)
483         self.defaultType = defaultType
484         self.switchExpr = switchExpr
485         self.switchTypes = switchTypes
486
487     def visit(self, visitor, *args, **kwargs):
488         return visitor.visitPolymorphic(self, *args, **kwargs)
489
490     def iterSwitch(self):
491         cases = [['default']]
492         types = [self.defaultType]
493
494         for expr, type in self.switchTypes:
495             case = 'case %s' % expr
496             try:
497                 i = types.index(type)
498             except ValueError:
499                 cases.append([case])
500                 types.append(type)
501             else:
502                 cases[i].append(case)
503
504         return zip(cases, types)
505
506
507 class Visitor:
508     '''Abstract visitor for the type hierarchy.'''
509
510     def visit(self, type, *args, **kwargs):
511         return type.visit(self, *args, **kwargs)
512
513     def visitVoid(self, void, *args, **kwargs):
514         raise NotImplementedError
515
516     def visitLiteral(self, literal, *args, **kwargs):
517         raise NotImplementedError
518
519     def visitString(self, string, *args, **kwargs):
520         raise NotImplementedError
521
522     def visitConst(self, const, *args, **kwargs):
523         raise NotImplementedError
524
525     def visitStruct(self, struct, *args, **kwargs):
526         raise NotImplementedError
527
528     def visitArray(self, array, *args, **kwargs):
529         raise NotImplementedError
530
531     def visitBlob(self, blob, *args, **kwargs):
532         raise NotImplementedError
533
534     def visitEnum(self, enum, *args, **kwargs):
535         raise NotImplementedError
536
537     def visitBitmask(self, bitmask, *args, **kwargs):
538         raise NotImplementedError
539
540     def visitPointer(self, pointer, *args, **kwargs):
541         raise NotImplementedError
542
543     def visitIntPointer(self, pointer, *args, **kwargs):
544         raise NotImplementedError
545
546     def visitObjPointer(self, pointer, *args, **kwargs):
547         raise NotImplementedError
548
549     def visitLinearPointer(self, pointer, *args, **kwargs):
550         raise NotImplementedError
551
552     def visitReference(self, reference, *args, **kwargs):
553         raise NotImplementedError
554
555     def visitHandle(self, handle, *args, **kwargs):
556         raise NotImplementedError
557
558     def visitAlias(self, alias, *args, **kwargs):
559         raise NotImplementedError
560
561     def visitOpaque(self, opaque, *args, **kwargs):
562         raise NotImplementedError
563
564     def visitInterface(self, interface, *args, **kwargs):
565         raise NotImplementedError
566
567     def visitPolymorphic(self, polymorphic, *args, **kwargs):
568         raise NotImplementedError
569         #return self.visit(polymorphic.defaultType, *args, **kwargs)
570
571
572 class OnceVisitor(Visitor):
573     '''Visitor that guarantees that each type is visited only once.'''
574
575     def __init__(self):
576         self.__visited = set()
577
578     def visit(self, type, *args, **kwargs):
579         if type not in self.__visited:
580             self.__visited.add(type)
581             return type.visit(self, *args, **kwargs)
582         return None
583
584
585 class Rebuilder(Visitor):
586     '''Visitor which rebuild types as it visits them.
587
588     By itself it is a no-op -- it is intended to be overwritten.
589     '''
590
591     def visitVoid(self, void):
592         return void
593
594     def visitLiteral(self, literal):
595         return literal
596
597     def visitString(self, string):
598         return string
599
600     def visitConst(self, const):
601         const_type = self.visit(const.type)
602         if const_type is const.type:
603             return const
604         else:
605             return Const(const_type)
606
607     def visitStruct(self, struct):
608         members = [(self.visit(type), name) for type, name in struct.members]
609         return Struct(struct.name, members)
610
611     def visitArray(self, array):
612         type = self.visit(array.type)
613         return Array(type, array.length)
614
615     def visitBlob(self, blob):
616         type = self.visit(blob.type)
617         return Blob(type, blob.size)
618
619     def visitEnum(self, enum):
620         return enum
621
622     def visitBitmask(self, bitmask):
623         type = self.visit(bitmask.type)
624         return Bitmask(type, bitmask.values)
625
626     def visitPointer(self, pointer):
627         pointer_type = self.visit(pointer.type)
628         if pointer_type is pointer.type:
629             return pointer
630         else:
631             return Pointer(pointer_type)
632
633     def visitIntPointer(self, pointer):
634         return pointer
635
636     def visitObjPointer(self, pointer):
637         pointer_type = self.visit(pointer.type)
638         if pointer_type is pointer.type:
639             return pointer
640         else:
641             return ObjPointer(pointer_type)
642
643     def visitLinearPointer(self, pointer):
644         pointer_type = self.visit(pointer.type)
645         if pointer_type is pointer.type:
646             return pointer
647         else:
648             return LinearPointer(pointer_type)
649
650     def visitReference(self, reference):
651         reference_type = self.visit(reference.type)
652         if reference_type is reference.type:
653             return reference
654         else:
655             return Reference(reference_type)
656
657     def visitHandle(self, handle):
658         handle_type = self.visit(handle.type)
659         if handle_type is handle.type:
660             return handle
661         else:
662             return Handle(handle.name, handle_type, range=handle.range, key=handle.key)
663
664     def visitAlias(self, alias):
665         alias_type = self.visit(alias.type)
666         if alias_type is alias.type:
667             return alias
668         else:
669             return Alias(alias.expr, alias_type)
670
671     def visitOpaque(self, opaque):
672         return opaque
673
674     def visitInterface(self, interface, *args, **kwargs):
675         return interface
676
677     def visitPolymorphic(self, polymorphic):
678         defaultType = self.visit(polymorphic.defaultType)
679         switchExpr = polymorphic.switchExpr
680         switchTypes = [(expr, self.visit(type)) for expr, type in polymorphic.switchTypes]
681         return Polymorphic(defaultType, switchExpr, switchTypes)
682
683
684 class MutableRebuilder(Rebuilder):
685     '''Type visitor which derives a mutable type.'''
686
687     def visitConst(self, const):
688         # Strip out const qualifier
689         return const.type
690
691     def visitAlias(self, alias):
692         # Tear the alias on type changes
693         type = self.visit(alias.type)
694         if type is alias.type:
695             return alias
696         return type
697
698     def visitReference(self, reference):
699         # Strip out references
700         return reference.type
701
702
703 class Traverser(Visitor):
704     '''Visitor which all types.'''
705
706     def visitVoid(self, void, *args, **kwargs):
707         pass
708
709     def visitLiteral(self, literal, *args, **kwargs):
710         pass
711
712     def visitString(self, string, *args, **kwargs):
713         pass
714
715     def visitConst(self, const, *args, **kwargs):
716         self.visit(const.type, *args, **kwargs)
717
718     def visitStruct(self, struct, *args, **kwargs):
719         for type, name in struct.members:
720             self.visit(type, *args, **kwargs)
721
722     def visitArray(self, array, *args, **kwargs):
723         self.visit(array.type, *args, **kwargs)
724
725     def visitBlob(self, array, *args, **kwargs):
726         pass
727
728     def visitEnum(self, enum, *args, **kwargs):
729         pass
730
731     def visitBitmask(self, bitmask, *args, **kwargs):
732         self.visit(bitmask.type, *args, **kwargs)
733
734     def visitPointer(self, pointer, *args, **kwargs):
735         self.visit(pointer.type, *args, **kwargs)
736
737     def visitIntPointer(self, pointer, *args, **kwargs):
738         pass
739
740     def visitObjPointer(self, pointer, *args, **kwargs):
741         self.visit(pointer.type, *args, **kwargs)
742
743     def visitLinearPointer(self, pointer, *args, **kwargs):
744         self.visit(pointer.type, *args, **kwargs)
745
746     def visitReference(self, reference, *args, **kwargs):
747         self.visit(reference.type, *args, **kwargs)
748
749     def visitHandle(self, handle, *args, **kwargs):
750         self.visit(handle.type, *args, **kwargs)
751
752     def visitAlias(self, alias, *args, **kwargs):
753         self.visit(alias.type, *args, **kwargs)
754
755     def visitOpaque(self, opaque, *args, **kwargs):
756         pass
757
758     def visitInterface(self, interface, *args, **kwargs):
759         if interface.base is not None:
760             self.visit(interface.base, *args, **kwargs)
761         for method in interface.iterMethods():
762             for arg in method.args:
763                 self.visit(arg.type, *args, **kwargs)
764             self.visit(method.type, *args, **kwargs)
765
766     def visitPolymorphic(self, polymorphic, *args, **kwargs):
767         self.visit(polymorphic.defaultType, *args, **kwargs)
768         for expr, type in polymorphic.switchTypes:
769             self.visit(type, *args, **kwargs)
770
771
772 class Collector(Traverser):
773     '''Visitor which collects all unique types as it traverses them.'''
774
775     def __init__(self):
776         self.__visited = set()
777         self.types = []
778
779     def visit(self, type):
780         if type in self.__visited:
781             return
782         self.__visited.add(type)
783         Visitor.visit(self, type)
784         self.types.append(type)
785
786
787
788 class API:
789     '''API abstraction.
790
791     Essentially, a collection of types, functions, and interfaces.
792     '''
793
794     def __init__(self, name = None):
795         self.name = name
796         self.headers = []
797         self.functions = []
798         self.interfaces = []
799
800     def getAllTypes(self):
801         collector = Collector()
802         for function in self.functions:
803             for arg in function.args:
804                 collector.visit(arg.type)
805             collector.visit(function.type)
806         for interface in self.interfaces:
807             collector.visit(interface)
808             for method in interface.iterMethods():
809                 for arg in method.args:
810                     collector.visit(arg.type)
811                 collector.visit(method.type)
812         return collector.types
813
814     def getAllInterfaces(self):
815         types = self.getAllTypes()
816         interfaces = [type for type in types if isinstance(type, Interface)]
817         for interface in self.interfaces:
818             if interface not in interfaces:
819                 interfaces.append(interface)
820         return interfaces
821
822     def addFunction(self, function):
823         self.functions.append(function)
824
825     def addFunctions(self, functions):
826         for function in functions:
827             self.addFunction(function)
828
829     def addInterface(self, interface):
830         self.interfaces.append(interface)
831
832     def addInterfaces(self, interfaces):
833         self.interfaces.extend(interfaces)
834
835     def addApi(self, api):
836         self.headers.extend(api.headers)
837         self.addFunctions(api.functions)
838         self.addInterfaces(api.interfaces)
839
840     def getFunctionByName(self, name):
841         for function in self.functions:
842             if function.name == name:
843                 return function
844         return None
845
846
847 Bool = Literal("bool", "Bool")
848 SChar = Literal("signed char", "SInt")
849 UChar = Literal("unsigned char", "UInt")
850 Short = Literal("short", "SInt")
851 Int = Literal("int", "SInt")
852 Long = Literal("long", "SInt")
853 LongLong = Literal("long long", "SInt")
854 UShort = Literal("unsigned short", "UInt")
855 UInt = Literal("unsigned int", "UInt")
856 ULong = Literal("unsigned long", "UInt")
857 ULongLong = Literal("unsigned long long", "UInt")
858 Float = Literal("float", "Float")
859 Double = Literal("double", "Double")
860 SizeT = Literal("size_t", "UInt")
861
862 # C string (i.e., zero terminated)
863 CString = String()
864 WString = String("wchar_t *", kind="WString")
865
866 Int8 = Literal("int8_t", "SInt")
867 UInt8 = Literal("uint8_t", "UInt")
868 Int16 = Literal("int16_t", "SInt")
869 UInt16 = Literal("uint16_t", "UInt")
870 Int32 = Literal("int32_t", "SInt")
871 UInt32 = Literal("uint32_t", "UInt")
872 Int64 = Literal("int64_t", "SInt")
873 UInt64 = Literal("uint64_t", "UInt")