[Lldb-commits] [PATCH] D74743: [lldb] Make header guards consistent across LLDB

Jonas Devlieghere via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 17 15:30:55 PST 2020


JDevlieghere created this revision.
JDevlieghere added reviewers: labath, teemperor.
Herald added subscribers: usaxena95, jsji, jfb, arphaman, atanasyan, MaskRay, kbarton, aheejin, sbc100, ki.stfu, nemanjai, sdardis, emaste.
Herald added a reviewer: espindola.
Herald added a project: LLDB.

LLDB has a few different styles of header guards and they're not very consistent because things get moved around and copy pasted. This unifies the header guards across LLDB and converts everything to match LLVM's style.


Repository:
  rLLDB LLDB

https://reviews.llvm.org/D74743

Files:
  lldb/include/lldb/API/LLDB.h
  lldb/include/lldb/API/SBAddress.h
  lldb/include/lldb/API/SBAttachInfo.h
  lldb/include/lldb/API/SBBlock.h
  lldb/include/lldb/API/SBBreakpoint.h
  lldb/include/lldb/API/SBBreakpointLocation.h
  lldb/include/lldb/API/SBBreakpointName.h
  lldb/include/lldb/API/SBBroadcaster.h
  lldb/include/lldb/API/SBCommandInterpreter.h
  lldb/include/lldb/API/SBCommandReturnObject.h
  lldb/include/lldb/API/SBCommunication.h
  lldb/include/lldb/API/SBCompileUnit.h
  lldb/include/lldb/API/SBData.h
  lldb/include/lldb/API/SBDebugger.h
  lldb/include/lldb/API/SBDeclaration.h
  lldb/include/lldb/API/SBDefines.h
  lldb/include/lldb/API/SBError.h
  lldb/include/lldb/API/SBEvent.h
  lldb/include/lldb/API/SBExecutionContext.h
  lldb/include/lldb/API/SBExpressionOptions.h
  lldb/include/lldb/API/SBFile.h
  lldb/include/lldb/API/SBFileSpec.h
  lldb/include/lldb/API/SBFileSpecList.h
  lldb/include/lldb/API/SBFrame.h
  lldb/include/lldb/API/SBFunction.h
  lldb/include/lldb/API/SBHostOS.h
  lldb/include/lldb/API/SBInstruction.h
  lldb/include/lldb/API/SBInstructionList.h
  lldb/include/lldb/API/SBLanguageRuntime.h
  lldb/include/lldb/API/SBLaunchInfo.h
  lldb/include/lldb/API/SBLineEntry.h
  lldb/include/lldb/API/SBListener.h
  lldb/include/lldb/API/SBMemoryRegionInfo.h
  lldb/include/lldb/API/SBMemoryRegionInfoList.h
  lldb/include/lldb/API/SBModule.h
  lldb/include/lldb/API/SBModuleSpec.h
  lldb/include/lldb/API/SBPlatform.h
  lldb/include/lldb/API/SBProcess.h
  lldb/include/lldb/API/SBProcessInfo.h
  lldb/include/lldb/API/SBQueue.h
  lldb/include/lldb/API/SBQueueItem.h
  lldb/include/lldb/API/SBSection.h
  lldb/include/lldb/API/SBSourceManager.h
  lldb/include/lldb/API/SBStream.h
  lldb/include/lldb/API/SBStringList.h
  lldb/include/lldb/API/SBStructuredData.h
  lldb/include/lldb/API/SBSymbol.h
  lldb/include/lldb/API/SBSymbolContext.h
  lldb/include/lldb/API/SBSymbolContextList.h
  lldb/include/lldb/API/SBTarget.h
  lldb/include/lldb/API/SBThread.h
  lldb/include/lldb/API/SBThreadCollection.h
  lldb/include/lldb/API/SBThreadPlan.h
  lldb/include/lldb/API/SBTrace.h
  lldb/include/lldb/API/SBTraceOptions.h
  lldb/include/lldb/API/SBType.h
  lldb/include/lldb/API/SBTypeCategory.h
  lldb/include/lldb/API/SBTypeEnumMember.h
  lldb/include/lldb/API/SBTypeFilter.h
  lldb/include/lldb/API/SBTypeFormat.h
  lldb/include/lldb/API/SBTypeNameSpecifier.h
  lldb/include/lldb/API/SBTypeSummary.h
  lldb/include/lldb/API/SBTypeSynthetic.h
  lldb/include/lldb/API/SBUnixSignals.h
  lldb/include/lldb/API/SBValue.h
  lldb/include/lldb/API/SBValueList.h
  lldb/include/lldb/API/SBVariablesOptions.h
  lldb/include/lldb/API/SBWatchpoint.h
  lldb/include/lldb/Breakpoint/Breakpoint.h
  lldb/include/lldb/Breakpoint/BreakpointID.h
  lldb/include/lldb/Breakpoint/BreakpointIDList.h
  lldb/include/lldb/Breakpoint/BreakpointList.h
  lldb/include/lldb/Breakpoint/BreakpointLocation.h
  lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
  lldb/include/lldb/Breakpoint/BreakpointLocationList.h
  lldb/include/lldb/Breakpoint/BreakpointName.h
  lldb/include/lldb/Breakpoint/BreakpointOptions.h
  lldb/include/lldb/Breakpoint/BreakpointPrecondition.h
  lldb/include/lldb/Breakpoint/BreakpointResolver.h
  lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
  lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
  lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
  lldb/include/lldb/Breakpoint/BreakpointResolverName.h
  lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
  lldb/include/lldb/Breakpoint/BreakpointSite.h
  lldb/include/lldb/Breakpoint/BreakpointSiteList.h
  lldb/include/lldb/Breakpoint/Stoppoint.h
  lldb/include/lldb/Breakpoint/StoppointCallbackContext.h
  lldb/include/lldb/Breakpoint/StoppointLocation.h
  lldb/include/lldb/Breakpoint/Watchpoint.h
  lldb/include/lldb/Breakpoint/WatchpointList.h
  lldb/include/lldb/Breakpoint/WatchpointOptions.h
  lldb/include/lldb/Core/Address.h
  lldb/include/lldb/Core/AddressRange.h
  lldb/include/lldb/Core/AddressResolver.h
  lldb/include/lldb/Core/AddressResolverFileLine.h
  lldb/include/lldb/Core/AddressResolverName.h
  lldb/include/lldb/Core/Communication.h
  lldb/include/lldb/Core/Debugger.h
  lldb/include/lldb/Core/Disassembler.h
  lldb/include/lldb/Core/EmulateInstruction.h
  lldb/include/lldb/Core/FileLineResolver.h
  lldb/include/lldb/Core/FileSpecList.h
  lldb/include/lldb/Core/FormatEntity.h
  lldb/include/lldb/Core/Highlighter.h
  lldb/include/lldb/Core/IOHandler.h
  lldb/include/lldb/Core/IOHandlerCursesGUI.h
  lldb/include/lldb/Core/LoadedModuleInfoList.h
  lldb/include/lldb/Core/Mangled.h
  lldb/include/lldb/Core/MappedHash.h
  lldb/include/lldb/Core/Module.h
  lldb/include/lldb/Core/ModuleChild.h
  lldb/include/lldb/Core/ModuleList.h
  lldb/include/lldb/Core/ModuleSpec.h
  lldb/include/lldb/Core/Opcode.h
  lldb/include/lldb/Core/PluginInterface.h
  lldb/include/lldb/Core/PluginManager.h
  lldb/include/lldb/Core/RichManglingContext.h
  lldb/include/lldb/Core/SearchFilter.h
  lldb/include/lldb/Core/Section.h
  lldb/include/lldb/Core/SourceManager.h
  lldb/include/lldb/Core/StreamAsynchronousIO.h
  lldb/include/lldb/Core/StreamBuffer.h
  lldb/include/lldb/Core/StreamFile.h
  lldb/include/lldb/Core/StructuredDataImpl.h
  lldb/include/lldb/Core/ThreadSafeDenseMap.h
  lldb/include/lldb/Core/ThreadSafeValue.h
  lldb/include/lldb/Core/UniqueCStringMap.h
  lldb/include/lldb/Core/UserSettingsController.h
  lldb/include/lldb/Core/Value.h
  lldb/include/lldb/Core/ValueObject.h
  lldb/include/lldb/Core/ValueObjectCast.h
  lldb/include/lldb/Core/ValueObjectChild.h
  lldb/include/lldb/Core/ValueObjectConstResult.h
  lldb/include/lldb/Core/ValueObjectConstResultCast.h
  lldb/include/lldb/Core/ValueObjectConstResultChild.h
  lldb/include/lldb/Core/ValueObjectConstResultImpl.h
  lldb/include/lldb/Core/ValueObjectDynamicValue.h
  lldb/include/lldb/Core/ValueObjectList.h
  lldb/include/lldb/Core/ValueObjectMemory.h
  lldb/include/lldb/Core/ValueObjectRegister.h
  lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
  lldb/include/lldb/Core/ValueObjectVariable.h
  lldb/include/lldb/Core/dwarf.h
  lldb/include/lldb/DataFormatters/CXXFunctionPointer.h
  lldb/include/lldb/DataFormatters/DataVisualization.h
  lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
  lldb/include/lldb/DataFormatters/FormatCache.h
  lldb/include/lldb/DataFormatters/FormatClasses.h
  lldb/include/lldb/DataFormatters/FormatManager.h
  lldb/include/lldb/DataFormatters/FormattersContainer.h
  lldb/include/lldb/DataFormatters/FormattersHelpers.h
  lldb/include/lldb/DataFormatters/LanguageCategory.h
  lldb/include/lldb/DataFormatters/StringPrinter.h
  lldb/include/lldb/DataFormatters/TypeCategory.h
  lldb/include/lldb/DataFormatters/TypeCategoryMap.h
  lldb/include/lldb/DataFormatters/TypeFormat.h
  lldb/include/lldb/DataFormatters/TypeSummary.h
  lldb/include/lldb/DataFormatters/TypeSynthetic.h
  lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
  lldb/include/lldb/DataFormatters/VectorIterator.h
  lldb/include/lldb/DataFormatters/VectorType.h
  lldb/include/lldb/Expression/DWARFExpression.h
  lldb/include/lldb/Expression/DiagnosticManager.h
  lldb/include/lldb/Expression/DynamicCheckerFunctions.h
  lldb/include/lldb/Expression/Expression.h
  lldb/include/lldb/Expression/ExpressionParser.h
  lldb/include/lldb/Expression/ExpressionSourceCode.h
  lldb/include/lldb/Expression/ExpressionTypeSystemHelper.h
  lldb/include/lldb/Expression/ExpressionVariable.h
  lldb/include/lldb/Expression/FunctionCaller.h
  lldb/include/lldb/Expression/IRExecutionUnit.h
  lldb/include/lldb/Expression/IRInterpreter.h
  lldb/include/lldb/Expression/IRMemoryMap.h
  lldb/include/lldb/Expression/LLVMUserExpression.h
  lldb/include/lldb/Expression/Materializer.h
  lldb/include/lldb/Expression/REPL.h
  lldb/include/lldb/Expression/UserExpression.h
  lldb/include/lldb/Expression/UtilityFunction.h
  lldb/include/lldb/Host/ConnectionFileDescriptor.h
  lldb/include/lldb/Host/Debug.h
  lldb/include/lldb/Host/Editline.h
  lldb/include/lldb/Host/File.h
  lldb/include/lldb/Host/FileCache.h
  lldb/include/lldb/Host/FileSystem.h
  lldb/include/lldb/Host/HostGetOpt.h
  lldb/include/lldb/Host/HostInfo.h
  lldb/include/lldb/Host/HostInfoBase.h
  lldb/include/lldb/Host/HostNativeProcess.h
  lldb/include/lldb/Host/HostNativeProcessBase.h
  lldb/include/lldb/Host/HostNativeThread.h
  lldb/include/lldb/Host/HostNativeThreadBase.h
  lldb/include/lldb/Host/HostNativeThreadForward.h
  lldb/include/lldb/Host/HostProcess.h
  lldb/include/lldb/Host/HostThread.h
  lldb/include/lldb/Host/LZMA.h
  lldb/include/lldb/Host/LockFile.h
  lldb/include/lldb/Host/LockFileBase.h
  lldb/include/lldb/Host/MainLoop.h
  lldb/include/lldb/Host/MainLoopBase.h
  lldb/include/lldb/Host/MonitoringProcessLauncher.h
  lldb/include/lldb/Host/OptionParser.h
  lldb/include/lldb/Host/Pipe.h
  lldb/include/lldb/Host/PipeBase.h
  lldb/include/lldb/Host/PosixApi.h
  lldb/include/lldb/Host/ProcessLaunchInfo.h
  lldb/include/lldb/Host/ProcessLauncher.h
  lldb/include/lldb/Host/ProcessRunLock.h
  lldb/include/lldb/Host/PseudoTerminal.h
  lldb/include/lldb/Host/SafeMachO.h
  lldb/include/lldb/Host/Socket.h
  lldb/include/lldb/Host/SocketAddress.h
  lldb/include/lldb/Host/StringConvert.h
  lldb/include/lldb/Host/TaskPool.h
  lldb/include/lldb/Host/Terminal.h
  lldb/include/lldb/Host/ThreadLauncher.h
  lldb/include/lldb/Host/Time.h
  lldb/include/lldb/Host/XML.h
  lldb/include/lldb/Host/common/GetOptInc.h
  lldb/include/lldb/Host/common/NativeBreakpointList.h
  lldb/include/lldb/Host/common/NativeProcessProtocol.h
  lldb/include/lldb/Host/common/NativeRegisterContext.h
  lldb/include/lldb/Host/common/NativeThreadProtocol.h
  lldb/include/lldb/Host/common/NativeWatchpointList.h
  lldb/include/lldb/Host/common/TCPSocket.h
  lldb/include/lldb/Host/common/UDPSocket.h
  lldb/include/lldb/Host/macosx/HostInfoMacOSX.h
  lldb/include/lldb/Host/macosx/HostThreadMacOSX.h
  lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
  lldb/include/lldb/Host/posix/DomainSocket.h
  lldb/include/lldb/Host/posix/HostInfoPosix.h
  lldb/include/lldb/Host/posix/HostProcessPosix.h
  lldb/include/lldb/Host/posix/HostThreadPosix.h
  lldb/include/lldb/Host/posix/LockFilePosix.h
  lldb/include/lldb/Host/posix/PipePosix.h
  lldb/include/lldb/Host/posix/ProcessLauncherPosixFork.h
  lldb/include/lldb/Initialization/SystemInitializer.h
  lldb/include/lldb/Initialization/SystemInitializerCommon.h
  lldb/include/lldb/Initialization/SystemLifetimeManager.h
  lldb/include/lldb/Interpreter/CommandAlias.h
  lldb/include/lldb/Interpreter/CommandCompletions.h
  lldb/include/lldb/Interpreter/CommandHistory.h
  lldb/include/lldb/Interpreter/CommandInterpreter.h
  lldb/include/lldb/Interpreter/CommandObject.h
  lldb/include/lldb/Interpreter/CommandObjectMultiword.h
  lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
  lldb/include/lldb/Interpreter/CommandOptionValidators.h
  lldb/include/lldb/Interpreter/CommandReturnObject.h
  lldb/include/lldb/Interpreter/OptionGroupArchitecture.h
  lldb/include/lldb/Interpreter/OptionGroupBoolean.h
  (639 more files...)





More information about the lldb-commits mailing list