Author: brucem Date: Tue Jul 21 19:16:02 2015 New Revision: 242856 URL: http://llvm.org/viewvc/llvm-project?rev=242856&view=rev Log: Fix typos.
Summary: Fix a bunch of typos. Reviewers: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D11386 Modified: lldb/trunk/examples/darwin/heap_find/heap/heap_find.cpp lldb/trunk/include/lldb/Core/Connection.h lldb/trunk/include/lldb/Core/Log.h lldb/trunk/include/lldb/Core/Timer.h lldb/trunk/include/lldb/Host/Mutex.h lldb/trunk/source/Core/FastDemangle.cpp lldb/trunk/source/Core/ModuleList.cpp lldb/trunk/source/Core/RegisterValue.cpp lldb/trunk/source/Host/common/XML.cpp lldb/trunk/source/Host/windows/ConnectionGenericFileWindows.cpp lldb/trunk/source/Host/windows/EditLineWin.cpp lldb/trunk/source/Interpreter/Args.cpp lldb/trunk/source/Interpreter/CommandObject.cpp lldb/trunk/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp lldb/trunk/source/Plugins/Process/elf-core/ProcessElfCore.h lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp lldb/trunk/source/Symbol/ClangASTContext.cpp lldb/trunk/source/Symbol/CompactUnwindInfo.cpp lldb/trunk/source/Symbol/DWARFCallFrameInfo.cpp lldb/trunk/source/Symbol/LineTable.cpp lldb/trunk/source/Symbol/SymbolVendor.cpp lldb/trunk/source/Symbol/TypeList.cpp lldb/trunk/source/Target/ThreadList.cpp lldb/trunk/source/Utility/JSON.cpp lldb/trunk/source/Utility/SharingPtr.cpp lldb/trunk/test/functionalities/thread/break_after_join/TestBreakAfterJoin.py lldb/trunk/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py lldb/trunk/test/python_api/event/TestEvents.py lldb/trunk/www/cpp_reference/html/SBListener_8h_source.html Modified: lldb/trunk/examples/darwin/heap_find/heap/heap_find.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/darwin/heap_find/heap/heap_find.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/examples/darwin/heap_find/heap/heap_find.cpp (original) +++ lldb/trunk/examples/darwin/heap_find/heap/heap_find.cpp Tue Jul 21 19:16:02 2015 @@ -144,7 +144,7 @@ range_info_callback (task_t task, uint64_t ptr_size); //---------------------------------------------------------------------- -// Redefine private gloval variables prototypes from +// Redefine private global variables prototypes from // "/usr/local/include/stack_logging.h" //---------------------------------------------------------------------- @@ -556,7 +556,7 @@ private: static int compare_bytes (const Entry *a, const Entry *b) { - // Reverse the comparisong to most bytes entries end up at top of list + // Reverse the comparison to most bytes entries end up at top of list if (a->bytes > b->bytes) return -1; if (a->bytes < b->bytes) return +1; return 0; @@ -565,7 +565,7 @@ private: static int compare_count (const Entry *a, const Entry *b) { - // Reverse the comparisong to most count entries end up at top of list + // Reverse the comparison to most count entries end up at top of list if (a->count > b->count) return -1; if (a->count < b->count) return +1; return 0; @@ -659,7 +659,7 @@ foreach_zone_in_this_process (range_call // dump_malloc_block_callback // // A simple callback that will dump each malloc block and all available -// info from the enumeration callback perpective. +// info from the enumeration callback perspective. //---------------------------------------------------------------------- static void dump_malloc_block_callback (task_t task, void *baton, unsigned type, uint64_t ptr_addr, uint64_t ptr_size) Modified: lldb/trunk/include/lldb/Core/Connection.h URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/Connection.h?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/include/lldb/Core/Connection.h (original) +++ lldb/trunk/include/lldb/Core/Connection.h Tue Jul 21 19:16:02 2015 @@ -58,7 +58,7 @@ public: /// /// @param[out] error_ptr /// A pointer to an error object that should be given an - /// approriate error value if this method returns false. This + /// appropriate error value if this method returns false. This /// value can be NULL if the error value should be ignored. /// /// @return @@ -77,7 +77,7 @@ public: /// /// @param[out] error_ptr /// A pointer to an error object that should be given an - /// approriate error value if this method returns false. This + /// appropriate error value if this method returns false. This /// value can be NULL if the error value should be ignored. /// /// @return @@ -115,12 +115,12 @@ public: /// The number of microseconds to wait for the data. /// /// @param[out] status - /// On return, indicates whether the call was sucessful or terminated + /// On return, indicates whether the call was successful or terminated /// due to some error condition. /// /// @param[out] error_ptr /// A pointer to an error object that should be given an - /// approriate error value if this method returns zero. This + /// appropriate error value if this method returns zero. This /// value can be NULL if the error value should be ignored. /// /// @return @@ -151,7 +151,7 @@ public: /// /// @param[out] error_ptr /// A pointer to an error object that should be given an - /// approriate error value if this method returns zero. This + /// appropriate error value if this method returns zero. This /// value can be NULL if the error value should be ignored. /// /// @return @@ -182,7 +182,7 @@ public: /// operation). /// /// @return - /// Returns true is the interrupt request was sucessful. + /// Returns true is the interrupt request was successful. //------------------------------------------------------------------ virtual bool InterruptRead() = 0; Modified: lldb/trunk/include/lldb/Core/Log.h URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/Log.h?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/include/lldb/Core/Log.h (original) +++ lldb/trunk/include/lldb/Core/Log.h Tue Jul 21 19:16:02 2015 @@ -192,7 +192,7 @@ public: static lldb::LogChannelSP FindPlugin(const char *plugin_name); - // categories is a an array of chars that ends with a NULL element. + // categories is an array of chars that ends with a NULL element. virtual void Disable(const char **categories, Stream *feedback_strm) = 0; virtual bool Enable( Modified: lldb/trunk/include/lldb/Core/Timer.h URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/Timer.h?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/include/lldb/Core/Timer.h (original) +++ lldb/trunk/include/lldb/Core/Timer.h Tue Jul 21 19:16:02 2015 @@ -43,7 +43,7 @@ public: Timer(const char *category, const char *format, ...) __attribute__ ((format (printf, 3, 4))); //-------------------------------------------------------------- - /// Desstructor + /// Destructor //-------------------------------------------------------------- ~Timer(); Modified: lldb/trunk/include/lldb/Host/Mutex.h URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Host/Mutex.h?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/include/lldb/Host/Mutex.h (original) +++ lldb/trunk/include/lldb/Host/Mutex.h Tue Jul 21 19:16:02 2015 @@ -85,7 +85,7 @@ public: Locker(Mutex* m); //-------------------------------------------------------------- - /// Desstructor + /// Destructor /// /// Unlocks any valid pthread_mutex_t that this object may /// contain. @@ -120,7 +120,7 @@ public: /// will not take ownership of the mutex. /// /// @return - /// Returns \b true if the lock was aquired and the this + /// Returns \b true if the lock was acquired and the this /// object will unlock the mutex when it goes out of scope, /// returns \b false otherwise. //-------------------------------------------------------------- Modified: lldb/trunk/source/Core/FastDemangle.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/FastDemangle.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Core/FastDemangle.cpp (original) +++ lldb/trunk/source/Core/FastDemangle.cpp Tue Jul 21 19:16:02 2015 @@ -161,7 +161,7 @@ public: /// the Itanium C++ ABI mangling specification as implemented by Clang /// /// @result Newly allocated null-terminated demangled name when demangling - /// is succesful, and nullptr when demangling fails. The caller is + /// is successful, and nullptr when demangling fails. The caller is /// responsible for freeing the allocated memory. char * Modified: lldb/trunk/source/Core/ModuleList.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/ModuleList.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Core/ModuleList.cpp (original) +++ lldb/trunk/source/Core/ModuleList.cpp Tue Jul 21 19:16:02 2015 @@ -70,7 +70,7 @@ ModuleList::operator= (const ModuleList& // That's probably me nit-picking, but in theoretical situation: // // * that two threads A B and - // * two ModuleList's x y do opposite assignemnts ie.: + // * two ModuleList's x y do opposite assignments ie.: // // in thread A: | in thread B: // x = y; | y = x; @@ -684,7 +684,7 @@ ModuleList::FindTypes (const SymbolConte { // Search the module if the module is not equal to the one in the symbol // context "sc". If "sc" contains a empty module shared pointer, then - // the comparisong will always be true (valid_module_ptr != NULL). + // the comparison will always be true (valid_module_ptr != NULL). if (sc.module_sp.get() != (*pos).get()) total_matches += (*pos)->FindTypes (world_sc, name, name_is_fully_qualified, max_matches, types); Modified: lldb/trunk/source/Core/RegisterValue.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/RegisterValue.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Core/RegisterValue.cpp (original) +++ lldb/trunk/source/Core/RegisterValue.cpp Tue Jul 21 19:16:02 2015 @@ -119,7 +119,7 @@ RegisterValue::GetAsMemoryData (const Re return 0; } - // ReadRegister should have already been called on tgus object prior to + // ReadRegister should have already been called on this object prior to // calling this. if (GetType() == eTypeInvalid) { @@ -217,7 +217,7 @@ RegisterValue::SetFromMemoryData (const { m_data.buffer.byte_order = src_byte_order; // Make sure to set the buffer length of the destination buffer to avoid - // problems due to uninitalized variables. + // problems due to uninitialized variables. m_data.buffer.length = src_len; } Modified: lldb/trunk/source/Host/common/XML.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/common/XML.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Host/common/XML.cpp (original) +++ lldb/trunk/source/Host/common/XML.cpp Tue Jul 21 19:16:02 2015 @@ -329,7 +329,7 @@ XMLNode::ForEachSiblingElementWithName ( else { if (node->name) - continue; // nullptr name specified and this elemnt has a name, ignore this one + continue; // nullptr name specified and this element has a name, ignore this one } if (callback(XMLNode(node)) == false) Modified: lldb/trunk/source/Host/windows/ConnectionGenericFileWindows.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/windows/ConnectionGenericFileWindows.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Host/windows/ConnectionGenericFileWindows.cpp (original) +++ lldb/trunk/source/Host/windows/ConnectionGenericFileWindows.cpp Tue Jul 21 19:16:02 2015 @@ -21,7 +21,7 @@ using namespace lldb_private; namespace { // This is a simple helper class to package up the information needed to return from a Read/Write -// operation function. Since there is alot of code to be run before exit regardless of whether the +// operation function. Since there is a lot of code to be run before exit regardless of whether the // operation succeeded or failed, combined with many possible return paths, this is the cleanest // way to represent it. class ReturnInfo @@ -251,7 +251,7 @@ ConnectionGenericFile::Read(void *dst, s } else { - // An unknown error occured. Fail out. + // An unknown error occurred. Fail out. return_info.Set(0, eConnectionStatusError, ::GetLastError()); } goto finish; Modified: lldb/trunk/source/Host/windows/EditLineWin.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/windows/EditLineWin.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Host/windows/EditLineWin.cpp (original) +++ lldb/trunk/source/Host/windows/EditLineWin.cpp Tue Jul 21 19:16:02 2015 @@ -35,7 +35,7 @@ struct el_binding // stored key bindings static std::vector<el_binding*> _bindings; -//TODO: this should infact be related to the exact edit line context we create +//TODO: this should in fact be related to the exact edit line context we create static void *clientData = NULL; // store the current prompt string @@ -125,7 +125,7 @@ el_get_s (char *buffer, int chars) DWORD _read = 0; if ( ReadConsoleInputA( GetStdHandle( STD_INPUT_HANDLE ), &_record, 1, &_read ) == FALSE ) break; - // if we didnt read a key + // if we didn't read a key if ( _read == 0 ) continue; // only interested in key events @@ -179,7 +179,7 @@ el_get_s (char *buffer, int chars) } #endif -// edit line initalise +// edit line initialize EditLine * el_init (const char *, FILE *, FILE *, FILE *) { @@ -263,7 +263,7 @@ el_set (EditLine *el, int code, ...) case ( EL_HIST ): { // EL_HIST, History *(*fun)(History *, int op, ... ), const char *ptr - // defines which histroy function to use, which is usualy history(). Ptr should be the + // defines which history function to use, which is usually history(). Ptr should be the // value returned by history_init(). } break; @@ -271,7 +271,7 @@ el_set (EditLine *el, int code, ...) { // EL_ADDFN, const char *name, const char *help, unsigned char (*func)(EditLine *e, int ch) // add a user defined function, func), referred to as 'name' which is invoked when a key which is bound to 'name' is - // entered. 'help' is a description of 'name'. at involcation time, 'ch' is the key which caused the invocation. the + // entered. 'help' is a description of 'name'. at invocation time, 'ch' is the key which caused the invocation. the // return value of 'func()' should be one of: // CC_NORM add a normal character // CC_NEWLINE end of line was entered @@ -280,8 +280,8 @@ el_set (EditLine *el, int code, ...) // CC_REFRESH refresh display. // CC_REFRESH_BEEP refresh display and beep. // CC_CURSOR cursor moved so update and perform CC_REFRESH - // CC_REDISPLAY redisplay entire input line. this is usefull if a key binding outputs extra information. - // CC_ERROR an error occured. beep and flush tty. + // CC_REDISPLAY redisplay entire input line. this is useful if a key binding outputs extra information. + // CC_ERROR an error occurred. beep and flush tty. // CC_FATAL fatal error, reset tty to known state. el_binding *binding = new el_binding; @@ -296,7 +296,7 @@ el_set (EditLine *el, int code, ...) case ( EL_BIND ): { // EL_BIND, const char *, ..., NULL - // perform the BIND buildin command. Refer to editrc(5) for more information. + // perform the BIND built-in command. Refer to editrc(5) for more information. const char *name = va_arg( vl, const char* ); Modified: lldb/trunk/source/Interpreter/Args.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/Args.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Interpreter/Args.cpp (original) +++ lldb/trunk/source/Interpreter/Args.cpp Tue Jul 21 19:16:02 2015 @@ -719,7 +719,7 @@ Args::StringToAddress (const ExecutionCo else { // Since the compiler can't handle things like "main + 12" we should - // try to do this for now. The compliler doesn't like adding offsets + // try to do this for now. The compiler doesn't like adding offsets // to function pointer types. static RegularExpression g_symbol_plus_offset_regex("^(.*)([-\\+])[[:space:]]*(0x[0-9A-Fa-f]+|[0-9]+)[[:space:]]*$"); RegularExpression::Match regex_match(3); Modified: lldb/trunk/source/Interpreter/CommandObject.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandObject.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Interpreter/CommandObject.cpp (original) +++ lldb/trunk/source/Interpreter/CommandObject.cpp Tue Jul 21 19:16:02 2015 @@ -395,7 +395,7 @@ CommandObject::HandleCompletion StringList &matches ) { - // Default implmentation of WantsCompletion() is !WantsRawCommandString(). + // Default implementation of WantsCompletion() is !WantsRawCommandString(). // Subclasses who want raw command string but desire, for example, // argument completion should override WantsCompletion() to return true, // instead. Modified: lldb/trunk/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp (original) +++ lldb/trunk/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp Tue Jul 21 19:16:02 2015 @@ -1731,7 +1731,7 @@ ObjectFileELF::CreateSections(SectionLis if (eSectionTypeOther == sect_type) { // the kalimba toolchain assumes that ELF section names are free-form. It does - // supports linkscripts which (can) give rise to various arbitarily named + // support linkscripts which (can) give rise to various arbitrarily named // sections being "Code" or "Data". sect_type = kalimbaSectionType(m_header, header); } @@ -2069,7 +2069,7 @@ ObjectFileELF::ParseSymbols (Symtab *sym Mangled mangled(ConstString(symbol_bare), is_mangled); // Now append the suffix back to mangled and unmangled names. Only do it if the - // demangling was sucessful (string is not empty). + // demangling was successful (string is not empty). if (has_suffix) { llvm::StringRef suffix = symbol_ref.substr(version_pos); @@ -2221,7 +2221,7 @@ ObjectFileELF::PLTRelocationType() } // Returns the size of the normal plt entries and the offset of the first normal plt entry. The -// 0th entry in the plt table is ususally a resolution entry which have different size in some +// 0th entry in the plt table is usually a resolution entry which have different size in some // architectures then the rest of the plt entries. static std::pair<uint64_t, uint64_t> GetPltEntrySizeAndOffset(const ELFSectionHeader* rel_hdr, const ELFSectionHeader* plt_hdr) @@ -2237,8 +2237,8 @@ GetPltEntrySizeAndOffset(const ELFSectio { // The linker haven't set the plt_hdr->sh_entsize field. Try to guess the size of the plt // entries based on the number of entries and the size of the plt section with the - // asumption that the size of the 0th entry is at least as big as the size of the normal - // entries and it isn't mutch bigger then that. + // assumption that the size of the 0th entry is at least as big as the size of the normal + // entries and it isn't much bigger then that. if (plt_hdr->sh_addralign) plt_entsize = plt_hdr->sh_size / plt_hdr->sh_addralign / (num_relocations + 1) * plt_hdr->sh_addralign; else Modified: lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp (original) +++ lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp Tue Jul 21 19:16:02 2015 @@ -649,17 +649,17 @@ PlatformDarwin::GetSoftwareBreakpointTra bool PlatformDarwin::GetProcessInfo (lldb::pid_t pid, ProcessInstanceInfo &process_info) { - bool sucess = false; + bool success = false; if (IsHost()) { - sucess = Platform::GetProcessInfo (pid, process_info); + success = Platform::GetProcessInfo (pid, process_info); } else { if (m_remote_platform_sp) - sucess = m_remote_platform_sp->GetProcessInfo (pid, process_info); + success = m_remote_platform_sp->GetProcessInfo (pid, process_info); } - return sucess; + return success; } uint32_t Modified: lldb/trunk/source/Plugins/Process/elf-core/ProcessElfCore.h URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/elf-core/ProcessElfCore.h?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Plugins/Process/elf-core/ProcessElfCore.h (original) +++ lldb/trunk/source/Plugins/Process/elf-core/ProcessElfCore.h Tue Jul 21 19:16:02 2015 @@ -10,7 +10,7 @@ // 2) The ELF file's PT_NOTE and PT_LOAD segments describes the program's // address space and thread contexts. // 3) PT_NOTE segment contains note entries which describes a thread context. -// 4) PT_LOAD segment describes a valid contigous range of process address +// 4) PT_LOAD segment describes a valid contiguous range of process address // space. //===----------------------------------------------------------------------===// Modified: lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp (original) +++ lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp Tue Jul 21 19:16:02 2015 @@ -782,7 +782,7 @@ GDBRemoteCommunicationClient::SendPacket Log *log (ProcessGDBRemoteLog::GetLogIfAllCategoriesSet (GDBR_LOG_PROCESS)); // In order to stop async notifications from being processed in the middle of the - // send/recieve sequence Hijack the broadcast. Then rebroadcast any events when we are done. + // send/receive sequence Hijack the broadcast. Then rebroadcast any events when we are done. static Listener hijack_listener("lldb.NotifyHijacker"); HijackBroadcaster(&hijack_listener, eBroadcastBitGdbReadThreadGotNotify); @@ -878,10 +878,10 @@ GDBRemoteCommunicationClient::SendPacket } } - // Remove our Hijacking listner from the broadcast. + // Remove our Hijacking listener from the broadcast. RestoreBroadcaster(); - // If a notification event occured, rebroadcast since it can now be processed safely. + // If a notification event occurred, rebroadcast since it can now be processed safely. EventSP event_sp; if (hijack_listener.GetNextEvent(event_sp)) BroadcastEvent(event_sp); Modified: lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h (original) +++ lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h Tue Jul 21 19:16:02 2015 @@ -376,7 +376,7 @@ protected: bool m_destroy_tried_resuming; lldb::CommandObjectSP m_command_sp; int64_t m_breakpoint_pc_offset; - lldb::tid_t m_initial_tid; // The inital thread ID, given by stub on attach + lldb::tid_t m_initial_tid; // The initial thread ID, given by stub on attach bool HandleNotifyPacket(StringExtractorGDBRemote &packet); Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp (original) +++ lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp Tue Jul 21 19:16:02 2015 @@ -3331,7 +3331,7 @@ SymbolFileDWARF::Index () s.Printf("\nObjective C class selectors:\n"); m_objc_class_selectors_index.Dump (&s); s.Printf("\nGlobals and statics:\n"); m_global_index.Dump (&s); s.Printf("\nTypes:\n"); m_type_index.Dump (&s); - s.Printf("\nNamepaces:\n"); m_namespace_index.Dump (&s); + s.Printf("\nNamespaces:\n") m_namespace_index.Dump (&s); #endif } } @@ -8014,7 +8014,7 @@ SymbolFileDWARF::DumpIndexes () s.Printf("\nObjective C class selectors:\n"); m_objc_class_selectors_index.Dump (&s); s.Printf("\nGlobals and statics:\n"); m_global_index.Dump (&s); s.Printf("\nTypes:\n"); m_type_index.Dump (&s); - s.Printf("\nNamepaces:\n"); m_namespace_index.Dump (&s); + s.Printf("\nNamespaces:\n"); m_namespace_index.Dump (&s); } void Modified: lldb/trunk/source/Symbol/ClangASTContext.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/ClangASTContext.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Symbol/ClangASTContext.cpp (original) +++ lldb/trunk/source/Symbol/ClangASTContext.cpp Tue Jul 21 19:16:02 2015 @@ -896,7 +896,7 @@ ClangASTContext::GetBuiltinTypeForDWARFE return ClangASTType (ast, ast->DoubleTy.getAsOpaquePtr()); if (streq(type_name, "long double") && QualTypeMatchesBitSize (bit_size, ast, ast->LongDoubleTy)) return ClangASTType (ast, ast->LongDoubleTy.getAsOpaquePtr()); - // Fall back to not requring a name match + // Fall back to not requiring a name match if (QualTypeMatchesBitSize (bit_size, ast, ast->FloatTy)) return ClangASTType (ast, ast->FloatTy.getAsOpaquePtr()); if (QualTypeMatchesBitSize (bit_size, ast, ast->DoubleTy)) Modified: lldb/trunk/source/Symbol/CompactUnwindInfo.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/CompactUnwindInfo.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Symbol/CompactUnwindInfo.cpp (original) +++ lldb/trunk/source/Symbol/CompactUnwindInfo.cpp Tue Jul 21 19:16:02 2015 @@ -297,7 +297,7 @@ CompactUnwindInfo::ScanIndex (const Proc Host::SystemLog (Host::eSystemLogError, "error: Invalid offset encountered in compact unwind info, skipping\n"); // don't trust anything from this compact_unwind section if it looks - // blatently invalid data in the header. + // blatantly invalid data in the header. m_indexes_computed = eLazyBoolNo; return; } Modified: lldb/trunk/source/Symbol/DWARFCallFrameInfo.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/DWARFCallFrameInfo.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Symbol/DWARFCallFrameInfo.cpp (original) +++ lldb/trunk/source/Symbol/DWARFCallFrameInfo.cpp Tue Jul 21 19:16:02 2015 @@ -342,7 +342,7 @@ DWARFCallFrameInfo::GetFDEIndex () "error: Invalid fde/cie next entry offset of 0x%x found in cie/fde at 0x%x\n", next_entry, current_entry); - // Don't trust anything in this eh_frame section if we find blatently + // Don't trust anything in this eh_frame section if we find blatantly // invalid data. m_fde_index.Clear(); m_fde_index_initialized = true; @@ -354,7 +354,7 @@ DWARFCallFrameInfo::GetFDEIndex () "error: Invalid cie offset of 0x%x found in cie/fde at 0x%x\n", cie_offset, current_entry); - // Don't trust anything in this eh_frame section if we find blatently + // Don't trust anything in this eh_frame section if we find blatantly // invalid data. m_fde_index.Clear(); m_fde_index_initialized = true; Modified: lldb/trunk/source/Symbol/LineTable.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/LineTable.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Symbol/LineTable.cpp (original) +++ lldb/trunk/source/Symbol/LineTable.cpp Tue Jul 21 19:16:02 2015 @@ -215,7 +215,7 @@ LineTable::FindLineEntryByAddress (const --pos; else if (pos->file_addr == search_entry.file_addr) { - // If this is a termination entry, it should't match since + // If this is a termination entry, it shouldn't match since // entries with the "is_terminal_entry" member set to true // are termination entries that define the range for the // previous entry. @@ -529,7 +529,7 @@ LineTable::LinkLineTable (const FileRang { entry_linked_file_addr = entry.file_addr - file_range_entry->GetRangeBase() + file_range_entry->data; // Determine if we need to terminate the previous entry when the previous - // entry was not contguous with this one after being linked. + // entry was not contiguous with this one after being linked. if (range_changed && prev_file_range_entry) { prev_end_entry_linked_file_addr = std::min<lldb::addr_t>(entry.file_addr, prev_file_range_entry->GetRangeEnd()) - prev_file_range_entry->GetRangeBase() + prev_file_range_entry->data; Modified: lldb/trunk/source/Symbol/SymbolVendor.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/SymbolVendor.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Symbol/SymbolVendor.cpp (original) +++ lldb/trunk/source/Symbol/SymbolVendor.cpp Tue Jul 21 19:16:02 2015 @@ -77,7 +77,7 @@ SymbolVendor::~SymbolVendor() } //---------------------------------------------------------------------- -// Add a represention given an object file. +// Add a representation given an object file. //---------------------------------------------------------------------- void SymbolVendor::AddSymbolFileRepresentation(const ObjectFileSP &objfile_sp) Modified: lldb/trunk/source/Symbol/TypeList.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/TypeList.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Symbol/TypeList.cpp (original) +++ lldb/trunk/source/Symbol/TypeList.cpp Tue Jul 21 19:16:02 2015 @@ -249,9 +249,9 @@ TypeList::RemoveMismatchedTypes (const s { if (type_scope_pos >= 2) { - // Our match scope ends with the type scope we were lookikng for, + // Our match scope ends with the type scope we were looking for, // but we need to make sure what comes before the matching - // type scope is a namepace boundary in case we are trying to match: + // type scope is a namespace boundary in case we are trying to match: // type_basename = "d" // type_scope = "b::c::" // We want to match: Modified: lldb/trunk/source/Target/ThreadList.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/ThreadList.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Target/ThreadList.cpp (original) +++ lldb/trunk/source/Target/ThreadList.cpp Tue Jul 21 19:16:02 2015 @@ -46,7 +46,7 @@ ThreadList::operator = (const ThreadList if (this != &rhs) { // Lock both mutexes to make sure neither side changes anyone on us - // while the assignement occurs + // while the assignment occurs Mutex::Locker locker(GetMutex()); m_process = rhs.m_process; m_stop_id = rhs.m_stop_id; @@ -750,7 +750,7 @@ ThreadList::Update (ThreadList &rhs) if (this != &rhs) { // Lock both mutexes to make sure neither side changes anyone on us - // while the assignement occurs + // while the assignment occurs Mutex::Locker locker(GetMutex()); m_process = rhs.m_process; m_stop_id = rhs.m_stop_id; Modified: lldb/trunk/source/Utility/JSON.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Utility/JSON.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Utility/JSON.cpp (original) +++ lldb/trunk/source/Utility/JSON.cpp Tue Jul 21 19:16:02 2015 @@ -392,7 +392,7 @@ JSONParser::GetToken (std::string &value case 'E': if (exp_index != 0) { - error.Printf("error: extra expenent character found at offset %" PRIu64, start_index); + error.Printf("error: extra exponent character found at offset %" PRIu64, start_index); value = std::move(error.GetString()); return Token::Error; } Modified: lldb/trunk/source/Utility/SharingPtr.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Utility/SharingPtr.cpp?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/source/Utility/SharingPtr.cpp (original) +++ lldb/trunk/source/Utility/SharingPtr.cpp Tue Jul 21 19:16:02 2015 @@ -11,7 +11,7 @@ #if defined (ENABLE_SP_LOGGING) -// If ENABLE_SP_LOGGING is defined, then log all shared pointer assignements +// If ENABLE_SP_LOGGING is defined, then log all shared pointer assignments // and allow them to be queried using a pointer by a call to: #include <execinfo.h> #include <map> Modified: lldb/trunk/test/functionalities/thread/break_after_join/TestBreakAfterJoin.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/break_after_join/TestBreakAfterJoin.py?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/test/functionalities/thread/break_after_join/TestBreakAfterJoin.py (original) +++ lldb/trunk/test/functionalities/thread/break_after_join/TestBreakAfterJoin.py Tue Jul 21 19:16:02 2015 @@ -59,7 +59,7 @@ class BreakpointAfterJoinTestCase(TestBa target = self.dbg.GetSelectedTarget() process = target.GetProcess() - # The exit probably occured during breakpoint handling, but it isn't + # The exit probably occurred during breakpoint handling, but it isn't # guaranteed. The main thing we're testing here is that the debugger # handles this cleanly is some way. Modified: lldb/trunk/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py (original) +++ lldb/trunk/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py Tue Jul 21 19:16:02 2015 @@ -59,7 +59,7 @@ class ExitDuringBreakpointTestCase(TestB target = self.dbg.GetSelectedTarget() process = target.GetProcess() - # The exit probably occured during breakpoint handling, but it isn't + # The exit probably occurred during breakpoint handling, but it isn't # guaranteed. The main thing we're testing here is that the debugger # handles this cleanly is some way. Modified: lldb/trunk/test/python_api/event/TestEvents.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/event/TestEvents.py?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/test/python_api/event/TestEvents.py (original) +++ lldb/trunk/test/python_api/event/TestEvents.py Tue Jul 21 19:16:02 2015 @@ -249,7 +249,7 @@ class EventAPITestCase(TestBase): # The finite state machine for our custom listening thread, with an - # initail state of None, which means no event has been received. + # initial state of None, which means no event has been received. # It changes to 'connected' after 'connected' event is received (for remote platforms) # It changes to 'running' after 'running' event is received (should happen only if the # currentstate is either 'None' or 'connected') Modified: lldb/trunk/www/cpp_reference/html/SBListener_8h_source.html URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/cpp_reference/html/SBListener_8h_source.html?rev=242856&r1=242855&r2=242856&view=diff ============================================================================== --- lldb/trunk/www/cpp_reference/html/SBListener_8h_source.html (original) +++ lldb/trunk/www/cpp_reference/html/SBListener_8h_source.html Tue Jul 21 19:16:02 2015 @@ -88,7 +88,7 @@ <div class="line"><a name="l00055"></a><span class="lineno"> 55</span>  <a class="code" href="classlldb_1_1SBListener.html#a40982b9b252a6c3a7e3a5315dbad42b4">StopListeningForEvents</a> (<span class="keyword">const</span> <a class="code" href="classlldb_1_1SBBroadcaster.html">lldb::SBBroadcaster</a>& broadcaster,</div> <div class="line"><a name="l00056"></a><span class="lineno"> 56</span>  uint32_t event_mask);</div> <div class="line"><a name="l00057"></a><span class="lineno"> 57</span> </div> -<div class="line"><a name="l00058"></a><span class="lineno"> 58</span>  <span class="comment">// Returns true if an event was recieved, false if we timed out.</span></div> +<div class="line"><a name="l00058"></a><span class="lineno"> 58</span>  <span class="comment">// Returns true if an event was received, false if we timed out.</span></div> <div class="line"><a name="l00059"></a><span class="lineno"> 59</span>  <span class="keywordtype">bool</span></div> <div class="line"><a name="l00060"></a><span class="lineno"> 60</span>  <a class="code" href="classlldb_1_1SBListener.html#a75d84b3582f798cfa1343bae4233f9d5">WaitForEvent</a> (uint32_t num_seconds,</div> <div class="line"><a name="l00061"></a><span class="lineno"> 61</span>  <a class="code" href="classlldb_1_1SBEvent.html">lldb::SBEvent</a> &event);</div> _______________________________________________ lldb-commits mailing list lldb-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits