-- 5a5dba4252e764e6737070bf0a31074bf23a3b41 by Abseil Team <absl-team@google.com>: Internal change. PiperOrigin-RevId: 244898913 -- 3eb7d5b445ffbf08a104e39cd15aecf568417333 by Matt Calabrese <calabrese@google.com>: Introduce absl::is_trivially_move_constructible and absl::is_trivially_move_assignable, and update the absl::is_trivially_copy_constructible and absl::is_trivially_copy_assignable traits to use similar techniques (should now be closer to the standard behavior). PiperOrigin-RevId: 244859015 -- 7da05a24fa786cab3985de0c39a186d73dcbcfb5 by Abseil Team <absl-team@google.com>: Fix misspellings in comments in raw_hash_set.h. PiperOrigin-RevId: 244754700 -- 5c057be96048f21473d5ec45005ab4dcd8dd354f by Derek Mauro <dmauro@google.com>: Internal change PiperOrigin-RevId: 244744239 -- 592394e3c2e98f1238d3fb6fcb0d20c3e3739ba9 by Derek Mauro <dmauro@google.com>: Limit the raw_hash_set prefetch test to x86-64. PiperOrigin-RevId: 244737534 -- 99ebe4e003633c8ff7838b035b31a827994879ef by Derek Mauro <dmauro@google.com>: Workaround warning 4091 in an MSVC header. PiperOrigin-RevId: 244701744 -- 0aa23f09a32efe7985ee55b0217190f08da42477 by Abseil Team <absl-team@google.com>: Fix comment typo. PiperOrigin-RevId: 244659371 -- c6cdb87e9f28062c8daa29b3d8d68182ecc16383 by Derek Mauro <dmauro@google.com>: Fix -Wundef warnings and support -Wundef. PiperOrigin-RevId: 244244968 -- 06b81245f7696b20c3c63b0618d33ac25e29cad6 by Abseil Team <absl-team@google.com>: Fix a typo in inlined_vector.h. PiperOrigin-RevId: 244230809 -- 94877a2125d2cfe837384240e4d6551f39d737e4 by Greg Falcon <gfalcon@google.com>: Fix sysinfo_test for emscripten. PiperOrigin-RevId: 244198804 -- ec7783531ef7f9df2da37d341d61f7cb2bf843f0 by Shaindel Schwartz <shaindel@google.com>: Import of CCTZ from GitHub. Fixes #291. PiperOrigin-RevId: 244184598 -- b652c14fa95ea206c217487ee713b11f5d1762b3 by Matt Calabrese <calabrese@google.com>: Emulate the `in_place_index` and `in_place_type` variable templates such that they are syntactically usable in C++11 with `any` and `variant`. Also pull in the variable templates from namespace std when available. The main observable differences here are: 1) The types of `in_place_index_t<I>` and `in_place_type_t<T>` become function pointer types rather than structs when using the implementation that is not an alias of the std equivalents. 2) The types of `in_place_index<I>` and `in_place_type<T>` are not directly `in_place_index_t<I>` and `in_place_type_t<T>`, but rather they become function types that decay to the corresponding function pointer types. 3) The default constructor for `in_place_index_t` and `in_place_type_t` instantiations is no longer explicit, but for these templates I think that's less important than for something like `in_place_t` since the _type_t and _index_t versions basically never have their template parameter non-deduced when participating in overload resolution with conflicting candidates. 4) While idiomatic usage of `in_place_type_t` and `in_place_index_t` with std::variant and std::any should not be affected, there is the possibility that strange, non-idiomatic uses may be affected in the wild. 5) Default construction (rather than value-initialization) leads to a default-constructed pointer. PiperOrigin-RevId: 244180003 -- b9ac5a96581837ffa24532117b7ea302a5569751 by Derek Mauro <dmauro@google.com>: Fix MSVC debug assertion. isprint is undefined for values not representable as unsigned char or EOF. PiperOrigin-RevId: 244083005 -- 41758be6137c2f25e84b50f23938e49484be2903 by Shaindel Schwartz <shaindel@google.com>: Update config settings for Apple platforms. PiperOrigin-RevId: 244040587 -- c90df6a26db94b0305a0c954455a621542a89d91 by Abseil Team <absl-team@google.com>: Internal change PiperOrigin-RevId: 244024427 -- c71e9ceb89495354eca7d02bd905ffeaa9029aec by Derek Mauro <dmauro@google.com>: Adds missing ABSL_DEFAULT_COPTS and ABSL_TEST_COPTS to CMakeLists.txt Don't error on deprecated declarations in tests. It is completely reasonable to test that code marked deprecated still works. PiperOrigin-RevId: 244003941 -- e1326a96527a8ba9b8d120161545260da9c4562e by Abseil Team <absl-team@google.com>: Internal change. PiperOrigin-RevId: 243990623 -- 90b8e12934c7711e1bfcc0117d21288bf9220dee by Abseil Team <absl-team@google.com>: Add variation of absl::Base64Escape/WebSafeBase64Escape that directly returns its result. PiperOrigin-RevId: 243894308 -- 317fef3344481ebc5c35712d42f5d8a0fa64dff4 by Abseil Team <absl-team@google.com>: Enable raw logging in Emscripten builds. PiperOrigin-RevId: 243893705 GitOrigin-RevId: 5a5dba4252e764e6737070bf0a31074bf23a3b41 Change-Id: I19293aab73cc98d9e9bf6a9fdc30819764adb9db
		
			
				
	
	
		
			193 lines
		
	
	
	
		
			7.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			193 lines
		
	
	
	
		
			7.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright 2018 The Abseil Authors.
 | |
| //
 | |
| // Licensed under the Apache License, Version 2.0 (the "License");
 | |
| // you may not use this file except in compliance with the License.
 | |
| // You may obtain a copy of the License at
 | |
| //
 | |
| //      https://www.apache.org/licenses/LICENSE-2.0
 | |
| //
 | |
| // Unless required by applicable law or agreed to in writing, software
 | |
| // distributed under the License is distributed on an "AS IS" BASIS,
 | |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| // See the License for the specific language governing permissions and
 | |
| // limitations under the License.
 | |
| 
 | |
| #include "absl/debugging/internal/demangle.h"
 | |
| 
 | |
| #include <cstdlib>
 | |
| #include <string>
 | |
| 
 | |
| #include "gtest/gtest.h"
 | |
| #include "absl/base/internal/raw_logging.h"
 | |
| #include "absl/debugging/internal/stack_consumption.h"
 | |
| #include "absl/memory/memory.h"
 | |
| 
 | |
| namespace absl {
 | |
| namespace debugging_internal {
 | |
| namespace {
 | |
| 
 | |
| // A wrapper function for Demangle() to make the unit test simple.
 | |
| static const char *DemangleIt(const char * const mangled) {
 | |
|   static char demangled[4096];
 | |
|   if (Demangle(mangled, demangled, sizeof(demangled))) {
 | |
|     return demangled;
 | |
|   } else {
 | |
|     return mangled;
 | |
|   }
 | |
| }
 | |
| 
 | |
| // Test corner cases of bounary conditions.
 | |
| TEST(Demangle, CornerCases) {
 | |
|   char tmp[10];
 | |
|   EXPECT_TRUE(Demangle("_Z6foobarv", tmp, sizeof(tmp)));
 | |
|   // sizeof("foobar()") == 9
 | |
|   EXPECT_STREQ("foobar()", tmp);
 | |
|   EXPECT_TRUE(Demangle("_Z6foobarv", tmp, 9));
 | |
|   EXPECT_STREQ("foobar()", tmp);
 | |
|   EXPECT_FALSE(Demangle("_Z6foobarv", tmp, 8));  // Not enough.
 | |
|   EXPECT_FALSE(Demangle("_Z6foobarv", tmp, 1));
 | |
|   EXPECT_FALSE(Demangle("_Z6foobarv", tmp, 0));
 | |
|   EXPECT_FALSE(Demangle("_Z6foobarv", nullptr, 0));  // Should not cause SEGV.
 | |
|   EXPECT_FALSE(Demangle("_Z1000000", tmp, 9));
 | |
| }
 | |
| 
 | |
| // Test handling of functions suffixed with .clone.N, which is used
 | |
| // by GCC 4.5.x (and our locally-modified version of GCC 4.4.x), and
 | |
| // .constprop.N and .isra.N, which are used by GCC 4.6.x.  These
 | |
| // suffixes are used to indicate functions which have been cloned
 | |
| // during optimization.  We ignore these suffixes.
 | |
| TEST(Demangle, Clones) {
 | |
|   char tmp[20];
 | |
|   EXPECT_TRUE(Demangle("_ZL3Foov", tmp, sizeof(tmp)));
 | |
|   EXPECT_STREQ("Foo()", tmp);
 | |
|   EXPECT_TRUE(Demangle("_ZL3Foov.clone.3", tmp, sizeof(tmp)));
 | |
|   EXPECT_STREQ("Foo()", tmp);
 | |
|   EXPECT_TRUE(Demangle("_ZL3Foov.constprop.80", tmp, sizeof(tmp)));
 | |
|   EXPECT_STREQ("Foo()", tmp);
 | |
|   EXPECT_TRUE(Demangle("_ZL3Foov.isra.18", tmp, sizeof(tmp)));
 | |
|   EXPECT_STREQ("Foo()", tmp);
 | |
|   EXPECT_TRUE(Demangle("_ZL3Foov.isra.2.constprop.18", tmp, sizeof(tmp)));
 | |
|   EXPECT_STREQ("Foo()", tmp);
 | |
|   // Invalid (truncated), should not demangle.
 | |
|   EXPECT_FALSE(Demangle("_ZL3Foov.clo", tmp, sizeof(tmp)));
 | |
|   // Invalid (.clone. not followed by number), should not demangle.
 | |
|   EXPECT_FALSE(Demangle("_ZL3Foov.clone.", tmp, sizeof(tmp)));
 | |
|   // Invalid (.clone. followed by non-number), should not demangle.
 | |
|   EXPECT_FALSE(Demangle("_ZL3Foov.clone.foo", tmp, sizeof(tmp)));
 | |
|   // Invalid (.constprop. not followed by number), should not demangle.
 | |
|   EXPECT_FALSE(Demangle("_ZL3Foov.isra.2.constprop.", tmp, sizeof(tmp)));
 | |
| }
 | |
| 
 | |
| // Tests that verify that Demangle footprint is within some limit.
 | |
| // They are not to be run under sanitizers as the sanitizers increase
 | |
| // stack consumption by about 4x.
 | |
| #if defined(ABSL_INTERNAL_HAVE_DEBUGGING_STACK_CONSUMPTION) &&   \
 | |
|     !defined(ADDRESS_SANITIZER) && !defined(MEMORY_SANITIZER) && \
 | |
|     !defined(THREAD_SANITIZER)
 | |
| 
 | |
| static const char *g_mangled;
 | |
| static char g_demangle_buffer[4096];
 | |
| static char *g_demangle_result;
 | |
| 
 | |
| static void DemangleSignalHandler(int signo) {
 | |
|   if (Demangle(g_mangled, g_demangle_buffer, sizeof(g_demangle_buffer))) {
 | |
|     g_demangle_result = g_demangle_buffer;
 | |
|   } else {
 | |
|     g_demangle_result = nullptr;
 | |
|   }
 | |
| }
 | |
| 
 | |
| // Call Demangle and figure out the stack footprint of this call.
 | |
| static const char *DemangleStackConsumption(const char *mangled,
 | |
|                                             int *stack_consumed) {
 | |
|   g_mangled = mangled;
 | |
|   *stack_consumed = GetSignalHandlerStackConsumption(DemangleSignalHandler);
 | |
|   ABSL_RAW_LOG(INFO, "Stack consumption of Demangle: %d", *stack_consumed);
 | |
|   return g_demangle_result;
 | |
| }
 | |
| 
 | |
| // Demangle stack consumption should be within 8kB for simple mangled names
 | |
| // with some level of nesting. With alternate signal stack we have 64K,
 | |
| // but some signal handlers run on thread stack, and could have arbitrarily
 | |
| // little space left (so we don't want to make this number too large).
 | |
| const int kStackConsumptionUpperLimit = 8192;
 | |
| 
 | |
| // Returns a mangled name nested to the given depth.
 | |
| static std::string NestedMangledName(int depth) {
 | |
|   std::string mangled_name = "_Z1a";
 | |
|   if (depth > 0) {
 | |
|     mangled_name += "IXL";
 | |
|     mangled_name += NestedMangledName(depth - 1);
 | |
|     mangled_name += "EEE";
 | |
|   }
 | |
|   return mangled_name;
 | |
| }
 | |
| 
 | |
| TEST(Demangle, DemangleStackConsumption) {
 | |
|   // Measure stack consumption of Demangle for nested mangled names of varying
 | |
|   // depth.  Since Demangle is implemented as a recursive descent parser,
 | |
|   // stack consumption will grow as the nesting depth increases.  By measuring
 | |
|   // the stack consumption for increasing depths, we can see the growing
 | |
|   // impact of any stack-saving changes made to the code for Demangle.
 | |
|   int stack_consumed = 0;
 | |
| 
 | |
|   const char *demangled =
 | |
|       DemangleStackConsumption("_Z6foobarv", &stack_consumed);
 | |
|   EXPECT_STREQ("foobar()", demangled);
 | |
|   EXPECT_GT(stack_consumed, 0);
 | |
|   EXPECT_LT(stack_consumed, kStackConsumptionUpperLimit);
 | |
| 
 | |
|   const std::string nested_mangled_name0 = NestedMangledName(0);
 | |
|   demangled = DemangleStackConsumption(nested_mangled_name0.c_str(),
 | |
|                                        &stack_consumed);
 | |
|   EXPECT_STREQ("a", demangled);
 | |
|   EXPECT_GT(stack_consumed, 0);
 | |
|   EXPECT_LT(stack_consumed, kStackConsumptionUpperLimit);
 | |
| 
 | |
|   const std::string nested_mangled_name1 = NestedMangledName(1);
 | |
|   demangled = DemangleStackConsumption(nested_mangled_name1.c_str(),
 | |
|                                        &stack_consumed);
 | |
|   EXPECT_STREQ("a<>", demangled);
 | |
|   EXPECT_GT(stack_consumed, 0);
 | |
|   EXPECT_LT(stack_consumed, kStackConsumptionUpperLimit);
 | |
| 
 | |
|   const std::string nested_mangled_name2 = NestedMangledName(2);
 | |
|   demangled = DemangleStackConsumption(nested_mangled_name2.c_str(),
 | |
|                                        &stack_consumed);
 | |
|   EXPECT_STREQ("a<>", demangled);
 | |
|   EXPECT_GT(stack_consumed, 0);
 | |
|   EXPECT_LT(stack_consumed, kStackConsumptionUpperLimit);
 | |
| 
 | |
|   const std::string nested_mangled_name3 = NestedMangledName(3);
 | |
|   demangled = DemangleStackConsumption(nested_mangled_name3.c_str(),
 | |
|                                        &stack_consumed);
 | |
|   EXPECT_STREQ("a<>", demangled);
 | |
|   EXPECT_GT(stack_consumed, 0);
 | |
|   EXPECT_LT(stack_consumed, kStackConsumptionUpperLimit);
 | |
| }
 | |
| 
 | |
| #endif  // Stack consumption tests
 | |
| 
 | |
| static void TestOnInput(const char* input) {
 | |
|   static const int kOutSize = 1048576;
 | |
|   auto out = absl::make_unique<char[]>(kOutSize);
 | |
|   Demangle(input, out.get(), kOutSize);
 | |
| }
 | |
| 
 | |
| TEST(DemangleRegression, NegativeLength) {
 | |
|   TestOnInput("_ZZn4");
 | |
| }
 | |
| 
 | |
| TEST(DemangleRegression, DeeplyNestedArrayType) {
 | |
|   const int depth = 100000;
 | |
|   std::string data = "_ZStI";
 | |
|   data.reserve(data.size() + 3 * depth + 1);
 | |
|   for (int i = 0; i < depth; i++) {
 | |
|     data += "A1_";
 | |
|   }
 | |
|   TestOnInput(data.c_str());
 | |
| }
 | |
| 
 | |
| }  // namespace
 | |
| }  // namespace debugging_internal
 | |
| }  // namespace absl
 |