lldb-enumerations.h revision 4968ad817597891cc02c195d4b3e7c3cde1fc391
1//===-- lldb-enumerations.h -------------------------------------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLDB_lldb_enumerations_h_
11#define LLDB_lldb_enumerations_h_
12
13namespace lldb {
14
15    //----------------------------------------------------------------------
16    // Process and Thread States
17    //----------------------------------------------------------------------
18    typedef enum StateType
19    {
20        eStateInvalid = 0,
21        eStateUnloaded,     ///< Process is object is valid, but not currently loaded
22        eStateConnected,    ///< Process is connected to remote debug services, but not launched or attached to anything yet
23        eStateAttaching,    ///< Process is currently trying to attach
24        eStateLaunching,    ///< Process is in the process of launching
25        eStateStopped,      ///< Process or thread is stopped and can be examined.
26        eStateRunning,      ///< Process or thread is running and can't be examined.
27        eStateStepping,     ///< Process or thread is in the process of stepping and can not be examined.
28        eStateCrashed,      ///< Process or thread has crashed and can be examined.
29        eStateDetached,     ///< Process has been detached and can't be examined.
30        eStateExited,       ///< Process has exited and can't be examined.
31        eStateSuspended     ///< Process or thread is in a suspended state as far
32                            ///< as the debugger is concerned while other processes
33                            ///< or threads get the chance to run.
34    } StateType;
35
36    //----------------------------------------------------------------------
37    // Launch Flags
38    //----------------------------------------------------------------------
39    typedef enum LaunchFlags
40    {
41        eLaunchFlagNone         = 0u,
42        eLaunchFlagExec         = (1u << 0),  ///< Exec when launching and turn the calling process into a new process
43        eLaunchFlagDebug        = (1u << 1),  ///< Stop as soon as the process launches to allow the process to be debugged
44        eLaunchFlagStopAtEntry  = (1u << 2),  ///< Stop at the program entry point instead of auto-continuing when launching or attaching at entry point
45        eLaunchFlagDisableASLR  = (1u << 3),  ///< Disable Address Space Layout Randomization
46        eLaunchFlagDisableSTDIO = (1u << 4),  ///< Disable stdio for inferior process (e.g. for a GUI app)
47        eLaunchFlagLaunchInTTY  = (1u << 5),  ///< Launch the process in a new TTY if supported by the host
48        eLaunchFlagLaunchInShell= (1u << 6),   ///< Launch the process inside a shell to get shell expansion
49        eLaunchFlagLaunchInSeparateProcessGroup = (1u << 7) ///< Launch the process in a separate process group
50    } LaunchFlags;
51
52    //----------------------------------------------------------------------
53    // Thread Run Modes
54    //----------------------------------------------------------------------
55    typedef enum RunMode {
56        eOnlyThisThread,
57        eAllThreads,
58        eOnlyDuringStepping
59    } RunMode;
60
61    //----------------------------------------------------------------------
62    // Byte ordering definitions
63    //----------------------------------------------------------------------
64    typedef enum ByteOrder
65    {
66        eByteOrderInvalid   = 0,
67        eByteOrderBig       = 1,
68        eByteOrderPDP       = 2,
69        eByteOrderLittle    = 4
70    } ByteOrder;
71
72    //----------------------------------------------------------------------
73    // Register encoding definitions
74    //----------------------------------------------------------------------
75    typedef enum Encoding
76    {
77        eEncodingInvalid = 0,
78        eEncodingUint,               // unsigned integer
79        eEncodingSint,               // signed integer
80        eEncodingIEEE754,            // float
81        eEncodingVector              // vector registers
82    } Encoding;
83
84    //----------------------------------------------------------------------
85    // Display format definitions
86    //----------------------------------------------------------------------
87    typedef enum Format
88    {
89        eFormatDefault = 0,
90        eFormatInvalid = 0,
91        eFormatBoolean,
92        eFormatBinary,
93        eFormatBytes,
94        eFormatBytesWithASCII,
95        eFormatChar,
96        eFormatCharPrintable,   // Only printable characters, space if not printable
97        eFormatComplex,         // Floating point complex type
98        eFormatComplexFloat = eFormatComplex,
99        eFormatCString,         // NULL terminated C strings
100        eFormatDecimal,
101        eFormatEnum,
102        eFormatHex,
103        eFormatHexUppercase,
104        eFormatFloat,
105        eFormatOctal,
106        eFormatOSType,          // OS character codes encoded into an integer 'PICT' 'text' etc...
107        eFormatUnicode16,
108        eFormatUnicode32,
109        eFormatUnsigned,
110        eFormatPointer,
111        eFormatVectorOfChar,
112        eFormatVectorOfSInt8,
113        eFormatVectorOfUInt8,
114        eFormatVectorOfSInt16,
115        eFormatVectorOfUInt16,
116        eFormatVectorOfSInt32,
117        eFormatVectorOfUInt32,
118        eFormatVectorOfSInt64,
119        eFormatVectorOfUInt64,
120        eFormatVectorOfFloat32,
121        eFormatVectorOfFloat64,
122        eFormatVectorOfUInt128,
123        eFormatComplexInteger,      // Integer complex type
124        eFormatCharArray,           // Print characters with no single quotes, used for character arrays that can contain non printable characters
125        eFormatAddressInfo,         // Describe what an address points to (func + offset with file/line, symbol + offset, data, etc)
126        eFormatHexFloat,            // ISO C99 hex float string
127        eFormatInstruction,         // Disassemble an opcode
128        eFormatVoid,                // Do not print this
129        kNumFormats
130    } Format;
131
132    //----------------------------------------------------------------------
133    // Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls
134    //----------------------------------------------------------------------
135    typedef enum DescriptionLevel
136    {
137        eDescriptionLevelBrief = 0,
138        eDescriptionLevelFull,
139        eDescriptionLevelVerbose,
140        eDescriptionLevelInitial,
141        kNumDescriptionLevels
142    } DescriptionLevel;
143
144    //----------------------------------------------------------------------
145    // Script interpreter types
146    //----------------------------------------------------------------------
147    typedef enum ScriptLanguage
148    {
149        eScriptLanguageNone,
150        eScriptLanguagePython,
151        eScriptLanguageDefault = eScriptLanguagePython
152    } ScriptLanguage;
153
154    //----------------------------------------------------------------------
155    // Register numbering types
156    //----------------------------------------------------------------------
157    typedef enum RegisterKind
158    {
159        eRegisterKindGCC = 0,    // the register numbers seen in eh_frame
160        eRegisterKindDWARF,      // the register numbers seen DWARF
161        eRegisterKindGeneric,    // insn ptr reg, stack ptr reg, etc not specific to any particular target
162        eRegisterKindGDB,        // the register numbers gdb uses (matches stabs numbers?)
163        eRegisterKindLLDB,       // lldb's internal register numbers
164        kNumRegisterKinds
165    } RegisterKind;
166
167    //----------------------------------------------------------------------
168    // Thread stop reasons
169    //----------------------------------------------------------------------
170    typedef enum StopReason
171    {
172        eStopReasonInvalid = 0,
173        eStopReasonNone,
174        eStopReasonTrace,
175        eStopReasonBreakpoint,
176        eStopReasonWatchpoint,
177        eStopReasonSignal,
178        eStopReasonException,
179        eStopReasonExec,        // Program was re-exec'ed
180        eStopReasonPlanComplete,
181        eStopReasonThreadExiting
182    } StopReason;
183
184    //----------------------------------------------------------------------
185    // Command Return Status Types
186    //----------------------------------------------------------------------
187    typedef enum ReturnStatus
188    {
189        eReturnStatusInvalid,
190        eReturnStatusSuccessFinishNoResult,
191        eReturnStatusSuccessFinishResult,
192        eReturnStatusSuccessContinuingNoResult,
193        eReturnStatusSuccessContinuingResult,
194        eReturnStatusStarted,
195        eReturnStatusFailed,
196        eReturnStatusQuit
197    } ReturnStatus;
198
199
200    //----------------------------------------------------------------------
201    // Connection Status Types
202    //----------------------------------------------------------------------
203    typedef enum ConnectionStatus
204    {
205        eConnectionStatusSuccess,         // Success
206        eConnectionStatusEndOfFile,       // End-of-file encountered
207        eConnectionStatusError,           // Check GetError() for details
208        eConnectionStatusTimedOut,        // Request timed out
209        eConnectionStatusNoConnection,    // No connection
210        eConnectionStatusLostConnection   // Lost connection while connected to a valid connection
211    } ConnectionStatus;
212
213    typedef enum ErrorType
214    {
215        eErrorTypeInvalid,
216        eErrorTypeGeneric,      ///< Generic errors that can be any value.
217        eErrorTypeMachKernel,   ///< Mach kernel error codes.
218        eErrorTypePOSIX         ///< POSIX error codes.
219    } ErrorType;
220
221
222    typedef enum ValueType
223    {
224        eValueTypeInvalid           = 0,
225        eValueTypeVariableGlobal    = 1,    // globals variable
226        eValueTypeVariableStatic    = 2,    // static variable
227        eValueTypeVariableArgument  = 3,    // function argument variables
228        eValueTypeVariableLocal     = 4,    // function local variables
229        eValueTypeRegister          = 5,    // stack frame register value
230        eValueTypeRegisterSet       = 6,    // A collection of stack frame register values
231        eValueTypeConstResult       = 7     // constant result variables
232    } ValueType;
233
234    //----------------------------------------------------------------------
235    // Token size/granularities for Input Readers
236    //----------------------------------------------------------------------
237
238    typedef enum InputReaderGranularity
239    {
240        eInputReaderGranularityInvalid = 0,
241        eInputReaderGranularityByte,
242        eInputReaderGranularityWord,
243        eInputReaderGranularityLine,
244        eInputReaderGranularityAll
245    } InputReaderGranularity;
246
247    //------------------------------------------------------------------
248    /// These mask bits allow a common interface for queries that can
249    /// limit the amount of information that gets parsed to only the
250    /// information that is requested. These bits also can indicate what
251    /// actually did get resolved during query function calls.
252    ///
253    /// Each definition corresponds to a one of the member variables
254    /// in this class, and requests that that item be resolved, or
255    /// indicates that the member did get resolved.
256    //------------------------------------------------------------------
257    typedef enum SymbolContextItem
258    {
259        eSymbolContextTarget     = (1u << 0), ///< Set when \a target is requested from a query, or was located in query results
260        eSymbolContextModule     = (1u << 1), ///< Set when \a module is requested from a query, or was located in query results
261        eSymbolContextCompUnit   = (1u << 2), ///< Set when \a comp_unit is requested from a query, or was located in query results
262        eSymbolContextFunction   = (1u << 3), ///< Set when \a function is requested from a query, or was located in query results
263        eSymbolContextBlock      = (1u << 4), ///< Set when the deepest \a block is requested from a query, or was located in query results
264        eSymbolContextLineEntry  = (1u << 5), ///< Set when \a line_entry is requested from a query, or was located in query results
265        eSymbolContextSymbol     = (1u << 6), ///< Set when \a symbol is requested from a query, or was located in query results
266        eSymbolContextEverything = ((eSymbolContextSymbol << 1) - 1u)  ///< Indicates to try and lookup everything up during a query.
267    } SymbolContextItem;
268
269    typedef enum Permissions
270    {
271        ePermissionsWritable    = (1u << 0),
272        ePermissionsReadable    = (1u << 1),
273        ePermissionsExecutable  = (1u << 2)
274    } Permissions;
275
276    typedef enum InputReaderAction
277    {
278        eInputReaderActivate,   // reader is newly pushed onto the reader stack
279        eInputReaderAsynchronousOutputWritten, // an async output event occurred; the reader may want to do something
280        eInputReaderReactivate, // reader is on top of the stack again after another reader was popped off
281        eInputReaderDeactivate, // another reader was pushed on the stack
282        eInputReaderGotToken,   // reader got one of its tokens (granularity)
283        eInputReaderInterrupt,  // reader received an interrupt signal (probably from a control-c)
284        eInputReaderEndOfFile,  // reader received an EOF char (probably from a control-d)
285        eInputReaderDone        // reader was just popped off the stack and is done
286    } InputReaderAction;
287
288    typedef enum BreakpointEventType
289    {
290        eBreakpointEventTypeInvalidType         = (1u << 0),
291        eBreakpointEventTypeAdded               = (1u << 1),
292        eBreakpointEventTypeRemoved             = (1u << 2),
293        eBreakpointEventTypeLocationsAdded      = (1u << 3),  // Locations added doesn't get sent when the breakpoint is created
294        eBreakpointEventTypeLocationsRemoved    = (1u << 4),
295        eBreakpointEventTypeLocationsResolved   = (1u << 5),
296        eBreakpointEventTypeEnabled             = (1u << 6),
297        eBreakpointEventTypeDisabled            = (1u << 7),
298        eBreakpointEventTypeCommandChanged      = (1u << 8),
299        eBreakpointEventTypeConditionChanged    = (1u << 9),
300        eBreakpointEventTypeIgnoreChanged       = (1u << 10),
301        eBreakpointEventTypeThreadChanged       = (1u << 11)
302    } BreakpointEventType;
303
304    typedef enum WatchpointEventType
305    {
306        eWatchpointEventTypeInvalidType         = (1u << 0),
307        eWatchpointEventTypeAdded               = (1u << 1),
308        eWatchpointEventTypeRemoved             = (1u << 2),
309        eWatchpointEventTypeEnabled             = (1u << 6),
310        eWatchpointEventTypeDisabled            = (1u << 7),
311        eWatchpointEventTypeCommandChanged      = (1u << 8),
312        eWatchpointEventTypeConditionChanged    = (1u << 9),
313        eWatchpointEventTypeIgnoreChanged       = (1u << 10),
314        eWatchpointEventTypeThreadChanged       = (1u << 11),
315        eWatchpointEventTypeTypeChanged         = (1u << 12)
316    } WatchpointEventType;
317
318
319    //----------------------------------------------------------------------
320    /// Programming language type.
321    ///
322    /// These enumerations use the same language enumerations as the DWARF
323    /// specification for ease of use and consistency.
324    /// The enum -> string code is in LanguageRuntime.cpp, don't change this
325    /// table without updating that code as well.
326    //----------------------------------------------------------------------
327    typedef enum LanguageType
328    {
329        eLanguageTypeUnknown         = 0x0000,   ///< Unknown or invalid language value.
330        eLanguageTypeC89             = 0x0001,   ///< ISO C:1989.
331        eLanguageTypeC               = 0x0002,   ///< Non-standardized C, such as K&R.
332        eLanguageTypeAda83           = 0x0003,   ///< ISO Ada:1983.
333        eLanguageTypeC_plus_plus     = 0x0004,   ///< ISO C++:1998.
334        eLanguageTypeCobol74         = 0x0005,   ///< ISO Cobol:1974.
335        eLanguageTypeCobol85         = 0x0006,   ///< ISO Cobol:1985.
336        eLanguageTypeFortran77       = 0x0007,   ///< ISO Fortran 77.
337        eLanguageTypeFortran90       = 0x0008,   ///< ISO Fortran 90.
338        eLanguageTypePascal83        = 0x0009,   ///< ISO Pascal:1983.
339        eLanguageTypeModula2         = 0x000a,   ///< ISO Modula-2:1996.
340        eLanguageTypeJava            = 0x000b,   ///< Java.
341        eLanguageTypeC99             = 0x000c,   ///< ISO C:1999.
342        eLanguageTypeAda95           = 0x000d,   ///< ISO Ada:1995.
343        eLanguageTypeFortran95       = 0x000e,   ///< ISO Fortran 95.
344        eLanguageTypePLI             = 0x000f,   ///< ANSI PL/I:1976.
345        eLanguageTypeObjC            = 0x0010,   ///< Objective-C.
346        eLanguageTypeObjC_plus_plus  = 0x0011,   ///< Objective-C++.
347        eLanguageTypeUPC             = 0x0012,   ///< Unified Parallel C.
348        eLanguageTypeD               = 0x0013,   ///< D.
349        eLanguageTypePython          = 0x0014,   ///< Python.
350        eNumLanguageTypes
351    } LanguageType;
352
353    typedef enum DynamicValueType
354    {
355        eNoDynamicValues = 0,
356        eDynamicCanRunTarget    = 1,
357        eDynamicDontRunTarget   = 2
358    } DynamicValueType;
359
360    typedef enum AccessType
361    {
362        eAccessNone,
363        eAccessPublic,
364        eAccessPrivate,
365        eAccessProtected,
366        eAccessPackage
367    } AccessType;
368
369    typedef enum CommandArgumentType
370    {
371        eArgTypeAddress = 0,
372        eArgTypeAddressOrExpression,
373        eArgTypeAliasName,
374        eArgTypeAliasOptions,
375        eArgTypeArchitecture,
376        eArgTypeBoolean,
377        eArgTypeBreakpointID,
378        eArgTypeBreakpointIDRange,
379        eArgTypeByteSize,
380        eArgTypeClassName,
381        eArgTypeCommandName,
382        eArgTypeCount,
383        eArgTypeDirectoryName,
384        eArgTypeEndAddress,
385        eArgTypeExpression,
386        eArgTypeExpressionPath,
387        eArgTypeExprFormat,
388        eArgTypeFilename,
389        eArgTypeFormat,
390        eArgTypeFrameIndex,
391        eArgTypeFullName,
392        eArgTypeFunctionName,
393        eArgTypeFunctionOrSymbol,
394        eArgTypeGDBFormat,
395        eArgTypeIndex,
396        eArgTypeLanguage,
397        eArgTypeLineNum,
398        eArgTypeLogCategory,
399        eArgTypeLogChannel,
400        eArgTypeMethod,
401        eArgTypeName,
402        eArgTypeNewPathPrefix,
403        eArgTypeNumLines,
404        eArgTypeNumberPerLine,
405        eArgTypeOffset,
406        eArgTypeOldPathPrefix,
407        eArgTypeOneLiner,
408        eArgTypePid,
409        eArgTypePlugin,
410        eArgTypeProcessName,
411        eArgTypePythonClass,
412        eArgTypePythonFunction,
413        eArgTypePythonScript,
414        eArgTypeQueueName,
415        eArgTypeRegisterName,
416        eArgTypeRegularExpression,
417        eArgTypeRunArgs,
418        eArgTypeRunMode,
419        eArgTypeScriptedCommandSynchronicity,
420        eArgTypeScriptLang,
421        eArgTypeSearchWord,
422        eArgTypeSelector,
423        eArgTypeSettingIndex,
424        eArgTypeSettingKey,
425        eArgTypeSettingPrefix,
426        eArgTypeSettingVariableName,
427        eArgTypeShlibName,
428        eArgTypeSourceFile,
429        eArgTypeSortOrder,
430        eArgTypeStartAddress,
431        eArgTypeSummaryString,
432        eArgTypeSymbol,
433        eArgTypeThreadID,
434        eArgTypeThreadIndex,
435        eArgTypeThreadName,
436        eArgTypeUnsignedInteger,
437        eArgTypeUnixSignal,
438        eArgTypeVarName,
439        eArgTypeValue,
440        eArgTypeWidth,
441        eArgTypeNone,
442        eArgTypePlatform,
443        eArgTypeWatchpointID,
444        eArgTypeWatchpointIDRange,
445        eArgTypeWatchType,
446        eArgTypeLastArg  // Always keep this entry as the last entry in this enumeration!!
447    } CommandArgumentType;
448
449    //----------------------------------------------------------------------
450    // Symbol types
451    //----------------------------------------------------------------------
452    typedef enum SymbolType
453    {
454        eSymbolTypeAny = 0,
455        eSymbolTypeInvalid = 0,
456        eSymbolTypeAbsolute,
457        eSymbolTypeCode,
458        eSymbolTypeData,
459        eSymbolTypeTrampoline,
460        eSymbolTypeRuntime,
461        eSymbolTypeException,
462        eSymbolTypeSourceFile,
463        eSymbolTypeHeaderFile,
464        eSymbolTypeObjectFile,
465        eSymbolTypeCommonBlock,
466        eSymbolTypeBlock,
467        eSymbolTypeLocal,
468        eSymbolTypeParam,
469        eSymbolTypeVariable,
470        eSymbolTypeVariableType,
471        eSymbolTypeLineEntry,
472        eSymbolTypeLineHeader,
473        eSymbolTypeScopeBegin,
474        eSymbolTypeScopeEnd,
475        eSymbolTypeAdditional, // When symbols take more than one entry, the extra entries get this type
476        eSymbolTypeCompiler,
477        eSymbolTypeInstrumentation,
478        eSymbolTypeUndefined,
479        eSymbolTypeObjCClass,
480        eSymbolTypeObjCMetaClass,
481        eSymbolTypeObjCIVar
482    } SymbolType;
483
484    typedef enum SectionType
485    {
486        eSectionTypeInvalid,
487        eSectionTypeCode,
488        eSectionTypeContainer,              // The section contains child sections
489        eSectionTypeData,
490        eSectionTypeDataCString,            // Inlined C string data
491        eSectionTypeDataCStringPointers,    // Pointers to C string data
492        eSectionTypeDataSymbolAddress,      // Address of a symbol in the symbol table
493        eSectionTypeData4,
494        eSectionTypeData8,
495        eSectionTypeData16,
496        eSectionTypeDataPointers,
497        eSectionTypeDebug,
498        eSectionTypeZeroFill,
499        eSectionTypeDataObjCMessageRefs,    // Pointer to function pointer + selector
500        eSectionTypeDataObjCCFStrings,      // Objective C const CFString/NSString objects
501        eSectionTypeDWARFDebugAbbrev,
502        eSectionTypeDWARFDebugAranges,
503        eSectionTypeDWARFDebugFrame,
504        eSectionTypeDWARFDebugInfo,
505        eSectionTypeDWARFDebugLine,
506        eSectionTypeDWARFDebugLoc,
507        eSectionTypeDWARFDebugMacInfo,
508        eSectionTypeDWARFDebugPubNames,
509        eSectionTypeDWARFDebugPubTypes,
510        eSectionTypeDWARFDebugRanges,
511        eSectionTypeDWARFDebugStr,
512        eSectionTypeDWARFAppleNames,
513        eSectionTypeDWARFAppleTypes,
514        eSectionTypeDWARFAppleNamespaces,
515        eSectionTypeDWARFAppleObjC,
516        eSectionTypeEHFrame,
517        eSectionTypeOther
518
519    } SectionType;
520
521    typedef enum EmulateInstructionOptions
522    {
523        eEmulateInstructionOptionNone               = (0u),
524        eEmulateInstructionOptionAutoAdvancePC      = (1u << 0),
525        eEmulateInstructionOptionIgnoreConditions   = (1u << 1)
526    } EmulateInstructionOptions;
527
528    typedef enum FunctionNameType
529    {
530        eFunctionNameTypeNone       = 0u,
531        eFunctionNameTypeAuto       = (1u << 1),    // Automatically figure out which FunctionNameType
532                                                    // bits to set based on the function name.
533        eFunctionNameTypeFull       = (1u << 2),    // The function name.
534                                                    // For C this is the same as just the name of the function
535                                                    // For C++ this is the mangled or demangled version of the mangled name.
536                                                    // For ObjC this is the full function signature with the + or
537                                                    // - and the square brackets and the class and selector
538        eFunctionNameTypeBase       = (1u << 3),    // The function name only, no namespaces or arguments and no class
539                                                    // methods or selectors will be searched.
540        eFunctionNameTypeMethod     = (1u << 4),    // Find function by method name (C++) with no namespace or arguments
541        eFunctionNameTypeSelector   = (1u << 5),    // Find function by selector name (ObjC) names
542        eFunctionNameTypeAny        = (eFunctionNameTypeFull     |
543                                       eFunctionNameTypeBase     |
544                                       eFunctionNameTypeMethod   |
545                                       eFunctionNameTypeSelector )
546    } FunctionNameType;
547
548
549    //----------------------------------------------------------------------
550    // Basic types enumeration for the public API SBType::GetBasicType()
551    //----------------------------------------------------------------------
552    typedef enum BasicType
553    {
554		eBasicTypeInvalid = 0,
555        eBasicTypeVoid = 1,
556        eBasicTypeChar,
557        eBasicTypeSignedChar,
558        eBasicTypeUnsignedChar,
559        eBasicTypeWChar,
560        eBasicTypeSignedWChar,
561        eBasicTypeUnsignedWChar,
562        eBasicTypeChar16,
563        eBasicTypeChar32,
564        eBasicTypeShort,
565        eBasicTypeUnsignedShort,
566        eBasicTypeInt,
567        eBasicTypeUnsignedInt,
568        eBasicTypeLong,
569        eBasicTypeUnsignedLong,
570        eBasicTypeLongLong,
571        eBasicTypeUnsignedLongLong,
572        eBasicTypeInt128,
573        eBasicTypeUnsignedInt128,
574        eBasicTypeBool,
575        eBasicTypeHalf,
576        eBasicTypeFloat,
577        eBasicTypeDouble,
578        eBasicTypeLongDouble,
579        eBasicTypeFloatComplex,
580        eBasicTypeDoubleComplex,
581        eBasicTypeLongDoubleComplex,
582        eBasicTypeObjCID,
583        eBasicTypeObjCClass,
584        eBasicTypeObjCSel,
585        eBasicTypeNullPtr,
586        eBasicTypeOther
587    } BasicType;
588
589    typedef enum TypeClass
590    {
591        eTypeClassInvalid           = (0u),
592        eTypeClassArray             = (1u << 0),
593        eTypeClassBlockPointer      = (1u << 1),
594        eTypeClassBuiltin           = (1u << 2),
595        eTypeClassClass             = (1u << 3),
596        eTypeClassComplexFloat      = (1u << 4),
597        eTypeClassComplexInteger    = (1u << 5),
598        eTypeClassEnumeration       = (1u << 6),
599        eTypeClassFunction          = (1u << 7),
600        eTypeClassMemberPointer     = (1u << 8),
601        eTypeClassObjCObject        = (1u << 9),
602        eTypeClassObjCInterface     = (1u << 10),
603        eTypeClassObjCObjectPointer = (1u << 11),
604        eTypeClassPointer           = (1u << 12),
605        eTypeClassReference         = (1u << 13),
606        eTypeClassStruct            = (1u << 14),
607        eTypeClassTypedef           = (1u << 15),
608        eTypeClassUnion             = (1u << 16),
609        eTypeClassVector            = (1u << 17),
610        // Define the last type class as the MSBit of a 32 bit value
611        eTypeClassOther             = (1u << 31),
612        // Define a mask that can be used for any type when finding types
613        eTypeClassAny               = (0xffffffffu)
614    }TypeClass;
615
616    typedef enum TemplateArgumentKind
617    {
618        eTemplateArgumentKindNull = 0,
619        eTemplateArgumentKindType,
620        eTemplateArgumentKindDeclaration,
621        eTemplateArgumentKindIntegral,
622        eTemplateArgumentKindTemplate,
623        eTemplateArgumentKindTemplateExpansion,
624        eTemplateArgumentKindExpression,
625        eTemplateArgumentKindPack
626
627    } TemplateArgumentKind;
628
629    //----------------------------------------------------------------------
630    // Options that can be set for a formatter to alter its behavior
631    // Not all of these are applicable to all formatter types
632    //----------------------------------------------------------------------
633    typedef enum TypeOptions
634    {
635        eTypeOptionNone            = (0u),
636        eTypeOptionCascade         = (1u << 0),
637        eTypeOptionSkipPointers    = (1u << 1),
638        eTypeOptionSkipReferences  = (1u << 2),
639        eTypeOptionHideChildren    = (1u << 3),
640        eTypeOptionHideValue       = (1u << 4),
641        eTypeOptionShowOneLiner    = (1u << 5),
642        eTypeOptionHideNames       = (1u << 6)
643    } TypeOptions;
644
645   //----------------------------------------------------------------------
646   // This is the return value for frame comparisons.  When frame A pushes
647   // frame B onto the stack, frame A is OLDER than frame B.
648   //----------------------------------------------------------------------
649   typedef enum FrameComparison
650   {
651       eFrameCompareInvalid,
652       eFrameCompareUnknown,
653       eFrameCompareEqual,
654       eFrameCompareYounger,
655       eFrameCompareOlder
656   } FrameComparison;
657
658    //----------------------------------------------------------------------
659    // Address Class
660    //
661    // A way of classifying an address used for disassembling and setting
662    // breakpoints. Many object files can track exactly what parts of their
663    // object files are code, data and other information. This is of course
664    // above and beyond just looking at the section types. For example, code
665    // might contain PC relative data and the object file might be able to
666    // tell us that an address in code is data.
667    //----------------------------------------------------------------------
668    typedef enum AddressClass
669    {
670        eAddressClassInvalid,
671        eAddressClassUnknown,
672        eAddressClassCode,
673        eAddressClassCodeAlternateISA,
674        eAddressClassData,
675        eAddressClassDebug,
676        eAddressClassRuntime
677    } AddressClass;
678
679} // namespace lldb
680
681
682#endif  // LLDB_lldb_enumerations_h_
683