lldb-enumerations.h revision 278f16e1dd4097bf3dd12b0f63f1fac0f11c4006
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        eArgTypeAliasName,
373        eArgTypeAliasOptions,
374        eArgTypeArchitecture,
375        eArgTypeBoolean,
376        eArgTypeBreakpointID,
377        eArgTypeBreakpointIDRange,
378        eArgTypeByteSize,
379        eArgTypeClassName,
380        eArgTypeCommandName,
381        eArgTypeCount,
382        eArgTypeDirectoryName,
383        eArgTypeEndAddress,
384        eArgTypeExpression,
385        eArgTypeExpressionPath,
386        eArgTypeExprFormat,
387        eArgTypeFilename,
388        eArgTypeFormat,
389        eArgTypeFrameIndex,
390        eArgTypeFullName,
391        eArgTypeFunctionName,
392        eArgTypeFunctionOrSymbol,
393        eArgTypeGDBFormat,
394        eArgTypeIndex,
395        eArgTypeLanguage,
396        eArgTypeLineNum,
397        eArgTypeLogCategory,
398        eArgTypeLogChannel,
399        eArgTypeMethod,
400        eArgTypeName,
401        eArgTypeNewPathPrefix,
402        eArgTypeNumLines,
403        eArgTypeNumberPerLine,
404        eArgTypeOffset,
405        eArgTypeOldPathPrefix,
406        eArgTypeOneLiner,
407        eArgTypePid,
408        eArgTypePlugin,
409        eArgTypeProcessName,
410        eArgTypePythonClass,
411        eArgTypePythonFunction,
412        eArgTypePythonScript,
413        eArgTypeQueueName,
414        eArgTypeRegisterName,
415        eArgTypeRegularExpression,
416        eArgTypeRunArgs,
417        eArgTypeRunMode,
418        eArgTypeScriptedCommandSynchronicity,
419        eArgTypeScriptLang,
420        eArgTypeSearchWord,
421        eArgTypeSelector,
422        eArgTypeSettingIndex,
423        eArgTypeSettingKey,
424        eArgTypeSettingPrefix,
425        eArgTypeSettingVariableName,
426        eArgTypeShlibName,
427        eArgTypeSourceFile,
428        eArgTypeSortOrder,
429        eArgTypeStartAddress,
430        eArgTypeSummaryString,
431        eArgTypeSymbol,
432        eArgTypeThreadID,
433        eArgTypeThreadIndex,
434        eArgTypeThreadName,
435        eArgTypeUnsignedInteger,
436        eArgTypeUnixSignal,
437        eArgTypeVarName,
438        eArgTypeValue,
439        eArgTypeWidth,
440        eArgTypeNone,
441        eArgTypePlatform,
442        eArgTypeWatchpointID,
443        eArgTypeWatchpointIDRange,
444        eArgTypeWatchType,
445        eArgTypeLastArg  // Always keep this entry as the last entry in this enumeration!!
446    } CommandArgumentType;
447
448    //----------------------------------------------------------------------
449    // Symbol types
450    //----------------------------------------------------------------------
451    typedef enum SymbolType
452    {
453        eSymbolTypeAny = 0,
454        eSymbolTypeInvalid = 0,
455        eSymbolTypeAbsolute,
456        eSymbolTypeCode,
457        eSymbolTypeData,
458        eSymbolTypeTrampoline,
459        eSymbolTypeRuntime,
460        eSymbolTypeException,
461        eSymbolTypeSourceFile,
462        eSymbolTypeHeaderFile,
463        eSymbolTypeObjectFile,
464        eSymbolTypeCommonBlock,
465        eSymbolTypeBlock,
466        eSymbolTypeLocal,
467        eSymbolTypeParam,
468        eSymbolTypeVariable,
469        eSymbolTypeVariableType,
470        eSymbolTypeLineEntry,
471        eSymbolTypeLineHeader,
472        eSymbolTypeScopeBegin,
473        eSymbolTypeScopeEnd,
474        eSymbolTypeAdditional, // When symbols take more than one entry, the extra entries get this type
475        eSymbolTypeCompiler,
476        eSymbolTypeInstrumentation,
477        eSymbolTypeUndefined,
478        eSymbolTypeObjCClass,
479        eSymbolTypeObjCMetaClass,
480        eSymbolTypeObjCIVar
481    } SymbolType;
482
483    typedef enum SectionType
484    {
485        eSectionTypeInvalid,
486        eSectionTypeCode,
487        eSectionTypeContainer,              // The section contains child sections
488        eSectionTypeData,
489        eSectionTypeDataCString,            // Inlined C string data
490        eSectionTypeDataCStringPointers,    // Pointers to C string data
491        eSectionTypeDataSymbolAddress,      // Address of a symbol in the symbol table
492        eSectionTypeData4,
493        eSectionTypeData8,
494        eSectionTypeData16,
495        eSectionTypeDataPointers,
496        eSectionTypeDebug,
497        eSectionTypeZeroFill,
498        eSectionTypeDataObjCMessageRefs,    // Pointer to function pointer + selector
499        eSectionTypeDataObjCCFStrings,      // Objective C const CFString/NSString objects
500        eSectionTypeDWARFDebugAbbrev,
501        eSectionTypeDWARFDebugAranges,
502        eSectionTypeDWARFDebugFrame,
503        eSectionTypeDWARFDebugInfo,
504        eSectionTypeDWARFDebugLine,
505        eSectionTypeDWARFDebugLoc,
506        eSectionTypeDWARFDebugMacInfo,
507        eSectionTypeDWARFDebugPubNames,
508        eSectionTypeDWARFDebugPubTypes,
509        eSectionTypeDWARFDebugRanges,
510        eSectionTypeDWARFDebugStr,
511        eSectionTypeDWARFAppleNames,
512        eSectionTypeDWARFAppleTypes,
513        eSectionTypeDWARFAppleNamespaces,
514        eSectionTypeDWARFAppleObjC,
515        eSectionTypeEHFrame,
516        eSectionTypeOther
517
518    } SectionType;
519
520    typedef enum EmulateInstructionOptions
521    {
522        eEmulateInstructionOptionNone               = (0u),
523        eEmulateInstructionOptionAutoAdvancePC      = (1u << 0),
524        eEmulateInstructionOptionIgnoreConditions   = (1u << 1)
525    } EmulateInstructionOptions;
526
527    typedef enum FunctionNameType
528    {
529        eFunctionNameTypeNone       = 0u,
530        eFunctionNameTypeAuto       = (1u << 1),    // Automatically figure out which FunctionNameType
531                                                    // bits to set based on the function name.
532        eFunctionNameTypeFull       = (1u << 2),    // The function name.
533                                                    // For C this is the same as just the name of the function
534                                                    // For C++ this is the mangled or demangled version of the mangled name.
535                                                    // For ObjC this is the full function signature with the + or
536                                                    // - and the square brackets and the class and selector
537        eFunctionNameTypeBase       = (1u << 3),    // The function name only, no namespaces or arguments and no class
538                                                    // methods or selectors will be searched.
539        eFunctionNameTypeMethod     = (1u << 4),    // Find function by method name (C++) with no namespace or arguments
540        eFunctionNameTypeSelector   = (1u << 5),    // Find function by selector name (ObjC) names
541        eFunctionNameTypeAny        = (eFunctionNameTypeFull     |
542                                       eFunctionNameTypeBase     |
543                                       eFunctionNameTypeMethod   |
544                                       eFunctionNameTypeSelector )
545    } FunctionNameType;
546
547
548    //----------------------------------------------------------------------
549    // Basic types enumeration for the public API SBType::GetBasicType()
550    //----------------------------------------------------------------------
551    typedef enum BasicType
552    {
553		eBasicTypeInvalid = 0,
554        eBasicTypeVoid = 1,
555        eBasicTypeChar,
556        eBasicTypeSignedChar,
557        eBasicTypeUnsignedChar,
558        eBasicTypeWChar,
559        eBasicTypeSignedWChar,
560        eBasicTypeUnsignedWChar,
561        eBasicTypeChar16,
562        eBasicTypeChar32,
563        eBasicTypeShort,
564        eBasicTypeUnsignedShort,
565        eBasicTypeInt,
566        eBasicTypeUnsignedInt,
567        eBasicTypeLong,
568        eBasicTypeUnsignedLong,
569        eBasicTypeLongLong,
570        eBasicTypeUnsignedLongLong,
571        eBasicTypeInt128,
572        eBasicTypeUnsignedInt128,
573        eBasicTypeBool,
574        eBasicTypeHalf,
575        eBasicTypeFloat,
576        eBasicTypeDouble,
577        eBasicTypeLongDouble,
578        eBasicTypeFloatComplex,
579        eBasicTypeDoubleComplex,
580        eBasicTypeLongDoubleComplex,
581        eBasicTypeObjCID,
582        eBasicTypeObjCClass,
583        eBasicTypeObjCSel,
584        eBasicTypeNullPtr,
585        eBasicTypeOther
586    } BasicType;
587
588    typedef enum TypeClass
589    {
590        eTypeClassInvalid           = (0u),
591        eTypeClassArray             = (1u << 0),
592        eTypeClassBlockPointer      = (1u << 1),
593        eTypeClassBuiltin           = (1u << 2),
594        eTypeClassClass             = (1u << 3),
595        eTypeClassComplexFloat      = (1u << 4),
596        eTypeClassComplexInteger    = (1u << 5),
597        eTypeClassEnumeration       = (1u << 6),
598        eTypeClassFunction          = (1u << 7),
599        eTypeClassMemberPointer     = (1u << 8),
600        eTypeClassObjCObject        = (1u << 9),
601        eTypeClassObjCInterface     = (1u << 10),
602        eTypeClassObjCObjectPointer = (1u << 11),
603        eTypeClassPointer           = (1u << 12),
604        eTypeClassReference         = (1u << 13),
605        eTypeClassStruct            = (1u << 14),
606        eTypeClassTypedef           = (1u << 15),
607        eTypeClassUnion             = (1u << 16),
608        eTypeClassVector            = (1u << 17),
609        // Define the last type class as the MSBit of a 32 bit value
610        eTypeClassOther             = (1u << 31),
611        // Define a mask that can be used for any type when finding types
612        eTypeClassAny               = (0xffffffffu)
613    }TypeClass;
614
615    typedef enum TemplateArgumentKind
616    {
617        eTemplateArgumentKindNull = 0,
618        eTemplateArgumentKindType,
619        eTemplateArgumentKindDeclaration,
620        eTemplateArgumentKindIntegral,
621        eTemplateArgumentKindTemplate,
622        eTemplateArgumentKindTemplateExpansion,
623        eTemplateArgumentKindExpression,
624        eTemplateArgumentKindPack
625
626    } TemplateArgumentKind;
627
628    //----------------------------------------------------------------------
629    // Options that can be set for a formatter to alter its behavior
630    // Not all of these are applicable to all formatter types
631    //----------------------------------------------------------------------
632    typedef enum TypeOptions
633    {
634        eTypeOptionNone            = (0u),
635        eTypeOptionCascade         = (1u << 0),
636        eTypeOptionSkipPointers    = (1u << 1),
637        eTypeOptionSkipReferences  = (1u << 2),
638        eTypeOptionHideChildren    = (1u << 3),
639        eTypeOptionHideValue       = (1u << 4),
640        eTypeOptionShowOneLiner    = (1u << 5),
641        eTypeOptionHideNames       = (1u << 6)
642    } TypeOptions;
643
644   //----------------------------------------------------------------------
645   // This is the return value for frame comparisons.  When frame A pushes
646   // frame B onto the stack, frame A is OLDER than frame B.
647   //----------------------------------------------------------------------
648   typedef enum FrameComparison
649   {
650       eFrameCompareInvalid,
651       eFrameCompareUnknown,
652       eFrameCompareEqual,
653       eFrameCompareYounger,
654       eFrameCompareOlder
655   } FrameComparison;
656
657    //----------------------------------------------------------------------
658    // Address Class
659    //
660    // A way of classifying an address used for disassembling and setting
661    // breakpoints. Many object files can track exactly what parts of their
662    // object files are code, data and other information. This is of course
663    // above and beyond just looking at the section types. For example, code
664    // might contain PC relative data and the object file might be able to
665    // tell us that an address in code is data.
666    //----------------------------------------------------------------------
667    typedef enum AddressClass
668    {
669        eAddressClassInvalid,
670        eAddressClassUnknown,
671        eAddressClassCode,
672        eAddressClassCodeAlternateISA,
673        eAddressClassData,
674        eAddressClassDebug,
675        eAddressClassRuntime
676    } AddressClass;
677
678} // namespace lldb
679
680
681#endif  // LLDB_lldb_enumerations_h_
682