diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-02-17 14:37:52 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-03-25 00:34:11 +0700 |
commit | 9e185cfabd1e207339aae1fa5ad6247000e4c613 (patch) | |
tree | 92a0b44834b08325cd208e70faa4c91887fd3f4e | |
parent | 59ff5a6a3c3e1f5255c5cf29f98df633a77b89b3 (diff) |
update libcxxabi.
-rw-r--r-- | system/lib/libcxxabi/CREDITS.TXT | 4 | ||||
-rw-r--r-- | system/lib/libcxxabi/LICENSE.TXT | 4 | ||||
-rw-r--r-- | system/lib/libcxxabi/readme.txt | 2 | ||||
-rw-r--r-- | system/lib/libcxxabi/src/cxa_exception.cpp | 4 | ||||
-rw-r--r-- | system/lib/libcxxabi/src/cxa_exception_storage.cpp | 2 | ||||
-rw-r--r-- | system/lib/libcxxabi/src/cxa_handlers.hpp | 2 | ||||
-rw-r--r-- | system/lib/libcxxabi/src/cxa_personality.cpp | 10 | ||||
-rw-r--r-- | system/lib/libcxxabi/src/cxa_vector.cpp | 2 | ||||
-rw-r--r-- | system/lib/libcxxabi/src/private_typeinfo.cpp | 4 |
9 files changed, 19 insertions, 15 deletions
diff --git a/system/lib/libcxxabi/CREDITS.TXT b/system/lib/libcxxabi/CREDITS.TXT index 231dfd33..5446562a 100644 --- a/system/lib/libcxxabi/CREDITS.TXT +++ b/system/lib/libcxxabi/CREDITS.TXT @@ -32,3 +32,7 @@ D: Minor patches and fixes N: Nowar Gu E: wenhan.gu@gmail.com D: Minor patches and fixes + +N: Bruce Mitchener, Jr. +E: bruce.mitchener@gmail.com +D: Minor typo fixes diff --git a/system/lib/libcxxabi/LICENSE.TXT b/system/lib/libcxxabi/LICENSE.TXT index 40ce7c7d..b04ba2c9 100644 --- a/system/lib/libcxxabi/LICENSE.TXT +++ b/system/lib/libcxxabi/LICENSE.TXT @@ -14,7 +14,7 @@ Full text of the relevant licenses is included below. University of Illinois/NCSA Open Source License -Copyright (c) 2009-2010 by the contributors listed in CREDITS.TXT +Copyright (c) 2009-2013 by the contributors listed in CREDITS.TXT All rights reserved. @@ -55,7 +55,7 @@ SOFTWARE. ============================================================================== -Copyright (c) 2009-2010 by the contributors listed in CREDITS.TXT +Copyright (c) 2009-2013 by the contributors listed in CREDITS.TXT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/system/lib/libcxxabi/readme.txt b/system/lib/libcxxabi/readme.txt index fde423c0..f55da87c 100644 --- a/system/lib/libcxxabi/readme.txt +++ b/system/lib/libcxxabi/readme.txt @@ -1 +1 @@ -These files are from libcxxabi, svn revision 169402, Dec 10 2012 +These files are from libcxxabi, svn revision 175275, Feb 15, 2013. diff --git a/system/lib/libcxxabi/src/cxa_exception.cpp b/system/lib/libcxxabi/src/cxa_exception.cpp index 1c362993..f8c38c07 100644 --- a/system/lib/libcxxabi/src/cxa_exception.cpp +++ b/system/lib/libcxxabi/src/cxa_exception.cpp @@ -524,7 +524,7 @@ __cxa_decrement_exception_refcount(void* thrown_object) throw() /* Returns a pointer to the thrown object (if any) at the top of the - caughtExceptions stack. Atommically increment the exception's referenceCount. + caughtExceptions stack. Atomically increment the exception's referenceCount. If there is no such thrown object or if the thrown object is foreign, returns null. @@ -573,7 +573,7 @@ dependent_exception_cleanup(_Unwind_Reason_Code reason, _Unwind_Exception* unwin } /* - If thrown_object is not null, allocate, initialize and thow a dependent + If thrown_object is not null, allocate, initialize and throw a dependent exception. */ void diff --git a/system/lib/libcxxabi/src/cxa_exception_storage.cpp b/system/lib/libcxxabi/src/cxa_exception_storage.cpp index 2c269c7f..b0b55240 100644 --- a/system/lib/libcxxabi/src/cxa_exception_storage.cpp +++ b/system/lib/libcxxabi/src/cxa_exception_storage.cpp @@ -75,7 +75,7 @@ extern "C" { } // Note that this implementation will reliably return NULL if not - // preceeded by a call to __cxa_get_globals(). This is an extension + // preceded by a call to __cxa_get_globals(). This is an extension // to the Itanium ABI and is taken advantage of in several places in // libc++abi. __cxa_eh_globals * __cxa_get_globals_fast () { diff --git a/system/lib/libcxxabi/src/cxa_handlers.hpp b/system/lib/libcxxabi/src/cxa_handlers.hpp index 64994ac7..ce567ec1 100644 --- a/system/lib/libcxxabi/src/cxa_handlers.hpp +++ b/system/lib/libcxxabi/src/cxa_handlers.hpp @@ -45,7 +45,7 @@ extern void (*__cxa_new_handler)(); extern std::atomic<std::new_handler> __cxa_new_handler; This change will not impact their ABI. But it will allow for a - portible performance optimization. + portable performance optimization. */ diff --git a/system/lib/libcxxabi/src/cxa_personality.cpp b/system/lib/libcxxabi/src/cxa_personality.cpp index b2efe2aa..97e58001 100644 --- a/system/lib/libcxxabi/src/cxa_personality.cpp +++ b/system/lib/libcxxabi/src/cxa_personality.cpp @@ -39,7 +39,7 @@ +-----------------+--------+ | lpStartEncoding | (char) | +---------+-------+--------+---------------+-----------------------+ -| lpStart | (encoded wtih lpStartEncoding) | defaults to funcStart | +| lpStart | (encoded with lpStartEncoding) | defaults to funcStart | +---------+-----+--------+-----------------+---------------+-------+ | ttypeEncoding | (char) | Encoding of the type_info table | +---------------+-+------+----+----------------------------+----------------+ @@ -187,7 +187,7 @@ readULEB128(const uint8_t** data) } /// Read a sleb128 encoded value and advance pointer -/// See Variable Length Data Applendix C in: +/// See Variable Length Data Appendix C in: /// @link http://dwarfstd.org/Dwarf4.pdf @unlink /// @param data reference variable holding memory pointer to decode from /// @returns decoded value @@ -344,7 +344,7 @@ get_shim_type_info(uint64_t ttypeIndex, const uint8_t* classInfo, } /* - This is checking a thrown exception type, excpType, against a posibly empty + This is checking a thrown exception type, excpType, against a possibly empty list of catchType's which make up an exception spec. An exception spec acts like a catch handler, but in reverse. This "catch @@ -489,7 +489,7 @@ scan_eh_tab(scan_results& results, _Unwind_Action actions, bool native_exception return; } } - else // Niether _UA_SEARCH_PHASE nor _UA_CLEANUP_PHASE is set + else // Neither _UA_SEARCH_PHASE nor _UA_CLEANUP_PHASE is set { // One of these should be set. // Client error @@ -1038,7 +1038,7 @@ __cxa_call_unexpected(void* arg) { // We need to __cxa_end_catch for both the old exception and the // new exception. Technically we should do it in that order. - // But it is expedent to do it in the opposite order: + // But it is expedient to do it in the opposite order: // Call __cxa_end_catch for new_exception_header __cxa_end_catch(); // Throw std::bad_exception will __cxa_end_catch for diff --git a/system/lib/libcxxabi/src/cxa_vector.cpp b/system/lib/libcxxabi/src/cxa_vector.cpp index 926c01dd..c2292ef2 100644 --- a/system/lib/libcxxabi/src/cxa_vector.cpp +++ b/system/lib/libcxxabi/src/cxa_vector.cpp @@ -32,7 +32,7 @@ namespace { // A pair of classes to simplify exception handling and control flow. // They get passed a block of memory in the constructor, and unless the // 'release' method is called, they deallocate the memory in the destructor. -// Prefered usage is to allocate some memory, attach it to one of these objects, +// Preferred usage is to allocate some memory, attach it to one of these objects, // and then, when all the operations to set up the memory block have succeeded, // call 'release'. If any of the setup operations fail, or an exception is // thrown, then the block is automatically deallocated. diff --git a/system/lib/libcxxabi/src/private_typeinfo.cpp b/system/lib/libcxxabi/src/private_typeinfo.cpp index 44b084ae..216f796d 100644 --- a/system/lib/libcxxabi/src/private_typeinfo.cpp +++ b/system/lib/libcxxabi/src/private_typeinfo.cpp @@ -16,13 +16,13 @@ // When _LIBCXX_DYNAMIC_FALLBACK is defined, and only in the case where // there is a detected inconsistency in the type_info hierarchy during a // dynamic_cast, then the equality operation will fall back to using strcmp -// on type_info names to determin type_info equality. +// on type_info names to determine type_info equality. // // This change happens *only* under dynamic_cast, and only when // dynamic_cast is faced with the choice: abort, or possibly give back the // wrong answer. If when the dynamic_cast is done with this fallback // algorithm and an inconsistency is still detected, dynamic_cast will call -// abort with an approriate message. +// abort with an appropriate message. // // The current implementation of _LIBCXX_DYNAMIC_FALLBACK requires a // printf-like function called syslog: |