summaryrefslogtreecommitdiff
path: root/bindings/ada/llvm/llvm.ads
blob: a41451b94b71d896733a83370f401544785f5967 (plain)
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
483
484
485
486
487
488
489
490
491
492
493
494
495
-- This file is generated by SWIG. Do *not* modify by hand.
--

with Interfaces.C.Extensions;


package llvm is

   -- LLVMCtxt
   --
   type LLVMCtxt is new Interfaces.C.Extensions.opaque_structure_def;

   type LLVMCtxt_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMCtxt;

   type LLVMCtxt_view is access all llvm.LLVMCtxt;

   -- LLVMContextRef
   --
   type LLVMContextRef is access all llvm.LLVMCtxt;

   type LLVMContextRef_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMContextRef;

   type LLVMContextRef_view is access all llvm.LLVMContextRef;

   -- LLVMOpaqueModule
   --
   type LLVMOpaqueModule is new Interfaces.C.Extensions.opaque_structure_def;

   type LLVMOpaqueModule_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMOpaqueModule;

   type LLVMOpaqueModule_view is access all llvm.LLVMOpaqueModule;

   -- LLVMModuleRef
   --
   type LLVMModuleRef is access all llvm.LLVMOpaqueModule;

   type LLVMModuleRef_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMModuleRef;

   type LLVMModuleRef_view is access all llvm.LLVMModuleRef;

   -- LLVMOpaqueType
   --
   type LLVMOpaqueType is new Interfaces.C.Extensions.opaque_structure_def;

   type LLVMOpaqueType_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMOpaqueType;

   type LLVMOpaqueType_view is access all llvm.LLVMOpaqueType;

   -- LLVMTypeRef
   --
   type LLVMTypeRef is access all llvm.LLVMOpaqueType;

   type LLVMTypeRef_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMTypeRef;

   type LLVMTypeRef_view is access all llvm.LLVMTypeRef;

   -- LLVMOpaqueTypeHandle
   --
   type LLVMOpaqueTypeHandle is new
     Interfaces.C.Extensions.opaque_structure_def;

   type LLVMOpaqueTypeHandle_array is
     array (Interfaces.C.size_t range <>)
            of aliased llvm.LLVMOpaqueTypeHandle;

   type LLVMOpaqueTypeHandle_view is access all llvm.LLVMOpaqueTypeHandle;

   -- LLVMTypeHandleRef
   --
   type LLVMTypeHandleRef is access all llvm.LLVMOpaqueTypeHandle;

   type LLVMTypeHandleRef_array is
     array (Interfaces.C.size_t range <>)
            of aliased llvm.LLVMTypeHandleRef;

   type LLVMTypeHandleRef_view is access all llvm.LLVMTypeHandleRef;

   -- LLVMOpaqueValue
   --
   type LLVMOpaqueValue is new Interfaces.C.Extensions.opaque_structure_def;

   type LLVMOpaqueValue_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMOpaqueValue;

   type LLVMOpaqueValue_view is access all llvm.LLVMOpaqueValue;

   -- LLVMValueRef
   --
   type LLVMValueRef is access all llvm.LLVMOpaqueValue;

   type LLVMValueRef_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMValueRef;

   type LLVMValueRef_view is access all llvm.LLVMValueRef;

   -- LLVMOpaqueBasicBlock
   --
   type LLVMOpaqueBasicBlock is new
     Interfaces.C.Extensions.opaque_structure_def;

   type LLVMOpaqueBasicBlock_array is
     array (Interfaces.C.size_t range <>)
            of aliased llvm.LLVMOpaqueBasicBlock;

   type LLVMOpaqueBasicBlock_view is access all llvm.LLVMOpaqueBasicBlock;

   -- LLVMBasicBlockRef
   --
   type LLVMBasicBlockRef is access all llvm.LLVMOpaqueBasicBlock;

   type LLVMBasicBlockRef_array is
     array (Interfaces.C.size_t range <>)
            of aliased llvm.LLVMBasicBlockRef;

   type LLVMBasicBlockRef_view is access all llvm.LLVMBasicBlockRef;

   -- LLVMOpaqueBuilder
   --
   type LLVMOpaqueBuilder is new Interfaces.C.Extensions.opaque_structure_def;

   type LLVMOpaqueBuilder_array is
     array (Interfaces.C.size_t range <>)
            of aliased llvm.LLVMOpaqueBuilder;

   type LLVMOpaqueBuilder_view is access all llvm.LLVMOpaqueBuilder;

   -- LLVMBuilderRef
   --
   type LLVMBuilderRef is access all llvm.LLVMOpaqueBuilder;

   type LLVMBuilderRef_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMBuilderRef;

   type LLVMBuilderRef_view is access all llvm.LLVMBuilderRef;

   -- LLVMOpaqueModuleProvider
   --
   type LLVMOpaqueModuleProvider is new
     Interfaces.C.Extensions.opaque_structure_def;

   type LLVMOpaqueModuleProvider_array is
     array (Interfaces.C.size_t range <>)
            of aliased llvm.LLVMOpaqueModuleProvider;

   type LLVMOpaqueModuleProvider_view is access all
     llvm.LLVMOpaqueModuleProvider;

   -- LLVMModuleProviderRef
   --
   type LLVMModuleProviderRef is access all llvm.LLVMOpaqueModuleProvider;

   type LLVMModuleProviderRef_array is
     array (Interfaces.C.size_t range <>)
            of aliased llvm.LLVMModuleProviderRef;

   type LLVMModuleProviderRef_view is access all llvm.LLVMModuleProviderRef;

   -- LLVMOpaqueMemoryBuffer
   --
   type LLVMOpaqueMemoryBuffer is new
     Interfaces.C.Extensions.opaque_structure_def;

   type LLVMOpaqueMemoryBuffer_array is
     array (Interfaces.C.size_t range <>)
            of aliased llvm.LLVMOpaqueMemoryBuffer;

   type LLVMOpaqueMemoryBuffer_view is access all llvm.LLVMOpaqueMemoryBuffer;

   -- LLVMMemoryBufferRef
   --
   type LLVMMemoryBufferRef is access all llvm.LLVMOpaqueMemoryBuffer;

   type LLVMMemoryBufferRef_array is
     array (Interfaces.C.size_t range <>)
            of aliased llvm.LLVMMemoryBufferRef;

   type LLVMMemoryBufferRef_view is access all llvm.LLVMMemoryBufferRef;

   -- LLVMOpaquePassManager
   --
   type LLVMOpaquePassManager is new
     Interfaces.C.Extensions.opaque_structure_def;

   type LLVMOpaquePassManager_array is
     array (Interfaces.C.size_t range <>)
            of aliased llvm.LLVMOpaquePassManager;

   type LLVMOpaquePassManager_view is access all llvm.LLVMOpaquePassManager;

   -- LLVMPassManagerRef
   --
   type LLVMPassManagerRef is access all llvm.LLVMOpaquePassManager;

   type LLVMPassManagerRef_array is
     array (Interfaces.C.size_t range <>)
            of aliased llvm.LLVMPassManagerRef;

   type LLVMPassManagerRef_view is access all llvm.LLVMPassManagerRef;

   -- LLVMAttribute
   --
   type LLVMAttribute is (
      LLVMZExtAttribute,
      LLVMSExtAttribute,
      LLVMNoReturnAttribute,
      LLVMInRegAttribute,
      LLVMStructRetAttribute,
      LLVMNoUnwindAttribute,
      LLVMNoAliasAttribute,
      LLVMByValAttribute,
      LLVMNestAttribute,
      LLVMReadNoneAttribute,
      LLVMReadOnlyAttribute,
      LLVMNoInlineAttribute,
      LLVMAlwaysInlineAttribute,
      LLVMOptimizeForSizeAttribute,
      LLVMStackProtectAttribute,
      LLVMStackProtectReqAttribute,
      LLVMNoCaptureAttribute,
      LLVMNoRedZoneAttribute,
      LLVMNoImplicitFloatAttribute,
      LLVMNakedAttribute);

   for LLVMAttribute use
     (LLVMZExtAttribute            => 1,
      LLVMSExtAttribute            => 2,
      LLVMNoReturnAttribute        => 4,
      LLVMInRegAttribute           => 8,
      LLVMStructRetAttribute       => 16,
      LLVMNoUnwindAttribute        => 32,
      LLVMNoAliasAttribute         => 64,
      LLVMByValAttribute           => 128,
      LLVMNestAttribute            => 256,
      LLVMReadNoneAttribute        => 512,
      LLVMReadOnlyAttribute        => 1024,
      LLVMNoInlineAttribute        => 2048,
      LLVMAlwaysInlineAttribute    => 4096,
      LLVMOptimizeForSizeAttribute => 8192,
      LLVMStackProtectAttribute    => 16384,
      LLVMStackProtectReqAttribute => 32768,
      LLVMNoCaptureAttribute       => 2097152,
      LLVMNoRedZoneAttribute       => 4194304,
      LLVMNoImplicitFloatAttribute => 8388608,
      LLVMNakedAttribute           => 16777216);

   pragma Convention (C, LLVMAttribute);

   type LLVMAttribute_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMAttribute;

   type LLVMAttribute_view is access all llvm.LLVMAttribute;

   -- LLVMTypeKind
   --
   type LLVMTypeKind is (
      LLVMVoidTypeKind,
      LLVMFloatTypeKind,
      LLVMDoubleTypeKind,
      LLVMX86_FP80TypeKind,
      LLVMFP128TypeKind,
      LLVMPPC_FP128TypeKind,
      LLVMLabelTypeKind,
      LLVMIntegerTypeKind,
      LLVMFunctionTypeKind,
      LLVMStructTypeKind,
      LLVMArrayTypeKind,
      LLVMPointerTypeKind,
      LLVMOpaqueTypeKind,
      LLVMVectorTypeKind,
      LLVMMetadataTypeKind);

   for LLVMTypeKind use
     (LLVMVoidTypeKind      => 0,
      LLVMFloatTypeKind     => 1,
      LLVMDoubleTypeKind    => 2,
      LLVMX86_FP80TypeKind  => 3,
      LLVMFP128TypeKind     => 4,
      LLVMPPC_FP128TypeKind => 5,
      LLVMLabelTypeKind     => 6,
      LLVMIntegerTypeKind   => 7,
      LLVMFunctionTypeKind  => 8,
      LLVMStructTypeKind    => 9,
      LLVMArrayTypeKind     => 10,
      LLVMPointerTypeKind   => 11,
      LLVMOpaqueTypeKind    => 12,
      LLVMVectorTypeKind    => 13,
      LLVMMetadataTypeKind  => 14);

   pragma Convention (C, LLVMTypeKind);

   type LLVMTypeKind_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMTypeKind;

   type LLVMTypeKind_view is access all llvm.LLVMTypeKind;

   -- LLVMLinkage
   --
   type LLVMLinkage is (
      LLVMExternalLinkage,
      LLVMAvailableExternallyLinkage,
      LLVMLinkOnceAnyLinkage,
      LLVMLinkOnceODRLinkage,
      LLVMWeakAnyLinkage,
      LLVMWeakODRLinkage,
      LLVMAppendingLinkage,
      LLVMInternalLinkage,
      LLVMPrivateLinkage,
      LLVMDLLImportLinkage,
      LLVMDLLExportLinkage,
      LLVMExternalWeakLinkage,
      LLVMGhostLinkage,
      LLVMCommonLinkage,
      LLVMLinkerPrivateLinkage,
      LLVMLinkerWeakLinkage);

   for LLVMLinkage use
     (LLVMExternalLinkage            => 0,
      LLVMAvailableExternallyLinkage => 1,
      LLVMLinkOnceAnyLinkage         => 2,
      LLVMLinkOnceODRLinkage         => 3,
      LLVMWeakAnyLinkage             => 4,
      LLVMWeakODRLinkage             => 5,
      LLVMAppendingLinkage           => 6,
      LLVMInternalLinkage            => 7,
      LLVMPrivateLinkage             => 8,
      LLVMDLLImportLinkage           => 9,
      LLVMDLLExportLinkage           => 10,
      LLVMExternalWeakLinkage        => 11,
      LLVMGhostLinkage               => 12,
      LLVMCommonLinkage              => 13,
      LLVMLinkerPrivateLinkage       => 14,
      LLVMLinkerWeakLinkage          => 15);

   pragma Convention (C, LLVMLinkage);

   type LLVMLinkage_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMLinkage;

   type LLVMLinkage_view is access all llvm.LLVMLinkage;

   -- LLVMVisibility
   --
   type LLVMVisibility is (
      LLVMDefaultVisibility,
      LLVMHiddenVisibility,
      LLVMProtectedVisibility);

   for LLVMVisibility use
     (LLVMDefaultVisibility   => 0,
      LLVMHiddenVisibility    => 1,
      LLVMProtectedVisibility => 2);

   pragma Convention (C, LLVMVisibility);

   type LLVMVisibility_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMVisibility;

   type LLVMVisibility_view is access all llvm.LLVMVisibility;

   -- LLVMCallConv
   --
   type LLVMCallConv is (
      LLVMCCallConv,
      LLVMFastCallConv,
      LLVMColdCallConv,
      LLVMX86StdcallCallConv,
      LLVMX86FastcallCallConv);

   for LLVMCallConv use
     (LLVMCCallConv           => 0,
      LLVMFastCallConv        => 8,
      LLVMColdCallConv        => 9,
      LLVMX86StdcallCallConv  => 64,
      LLVMX86FastcallCallConv => 65);

   pragma Convention (C, LLVMCallConv);

   type LLVMCallConv_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMCallConv;

   type LLVMCallConv_view is access all llvm.LLVMCallConv;

   -- LLVMIntPredicate
   --
   type LLVMIntPredicate is (
      LLVMIntEQ,
      LLVMIntNE,
      LLVMIntUGT,
      LLVMIntUGE,
      LLVMIntULT,
      LLVMIntULE,
      LLVMIntSGT,
      LLVMIntSGE,
      LLVMIntSLT,
      LLVMIntSLE);

   for LLVMIntPredicate use
     (LLVMIntEQ  => 32,
      LLVMIntNE  => 33,
      LLVMIntUGT => 34,
      LLVMIntUGE => 35,
      LLVMIntULT => 36,
      LLVMIntULE => 37,
      LLVMIntSGT => 38,
      LLVMIntSGE => 39,
      LLVMIntSLT => 40,
      LLVMIntSLE => 41);

   pragma Convention (C, LLVMIntPredicate);

   type LLVMIntPredicate_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.LLVMIntPredicate;

   type LLVMIntPredicate_view is access all llvm.LLVMIntPredicate;

   -- LLVMRealPredicate
   --
   type LLVMRealPredicate is (
      LLVMRealPredicateFalse,
      LLVMRealOEQ,
      LLVMRealOGT,
      LLVMRealOGE,
      LLVMRealOLT,
      LLVMRealOLE,
      LLVMRealONE,
      LLVMRealORD,
      LLVMRealUNO,
      LLVMRealUEQ,
      LLVMRealUGT,
      LLVMRealUGE,
      LLVMRealULT,
      LLVMRealULE,
      LLVMRealUNE,
      LLVMRealPredicateTrue);

   for LLVMRealPredicate use
     (LLVMRealPredicateFalse => 0,
      LLVMRealOEQ            => 1,
      LLVMRealOGT            => 2,
      LLVMRealOGE            => 3,
      LLVMRealOLT            => 4,
      LLVMRealOLE            => 5,
      LLVMRealONE            => 6,
      LLVMRealORD            => 7,
      LLVMRealUNO            => 8,
      LLVMRealUEQ            => 9,
      LLVMRealUGT            => 10,
      LLVMRealUGE            => 11,
      LLVMRealULT            => 12,
      LLVMRealULE            => 13,
      LLVMRealUNE            => 14,
      LLVMRealPredicateTrue  => 15);

   pragma Convention (C, LLVMRealPredicate);

   type LLVMRealPredicate_array is
     array (Interfaces.C.size_t range <>)
            of aliased llvm.LLVMRealPredicate;

   type LLVMRealPredicate_view is access all llvm.LLVMRealPredicate;

   -- ModuleProvider
   --
   type ModuleProvider is new Interfaces.C.Extensions.incomplete_class_def;

   type ModuleProvider_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.ModuleProvider;

   type ModuleProvider_view is access all llvm.ModuleProvider;

   -- MemoryBuffer
   --
   type MemoryBuffer is new Interfaces.C.Extensions.incomplete_class_def;

   type MemoryBuffer_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.MemoryBuffer;

   type MemoryBuffer_view is access all llvm.MemoryBuffer;

   -- PassManagerBase
   --
   type PassManagerBase is new Interfaces.C.Extensions.incomplete_class_def;

   type PassManagerBase_array is
     array (Interfaces.C.size_t range <>) of aliased llvm.PassManagerBase;

   type PassManagerBase_view is access all llvm.PassManagerBase;

end llvm;