aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/unittests/diagnostics/eh-frame-iterator-unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/unittests/diagnostics/eh-frame-iterator-unittest.cc')
-rw-r--r--deps/v8/test/unittests/diagnostics/eh-frame-iterator-unittest.cc65
1 files changed, 65 insertions, 0 deletions
diff --git a/deps/v8/test/unittests/diagnostics/eh-frame-iterator-unittest.cc b/deps/v8/test/unittests/diagnostics/eh-frame-iterator-unittest.cc
new file mode 100644
index 0000000000..3a97c63553
--- /dev/null
+++ b/deps/v8/test/unittests/diagnostics/eh-frame-iterator-unittest.cc
@@ -0,0 +1,65 @@
+// Copyright 2016 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "src/diagnostics/eh-frame.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace v8 {
+namespace internal {
+
+// Test enabled only on supported architectures.
+#if defined(V8_TARGET_ARCH_X64) || defined(V8_TARGET_ARCH_ARM) || \
+ defined(V8_TARGET_ARCH_ARM64)
+
+namespace {
+
+class EhFrameIteratorTest : public testing::Test {};
+
+} // namespace
+
+TEST_F(EhFrameIteratorTest, Values) {
+ // Assuming little endian.
+ static const byte kEncoded[] = {0xDE, 0xC0, 0xAD, 0xDE, 0xEF, 0xBE, 0xFF};
+ EhFrameIterator iterator(&kEncoded[0], &kEncoded[0] + sizeof(kEncoded));
+ EXPECT_EQ(0xDEADC0DE, iterator.GetNextUInt32());
+ EXPECT_EQ(0xBEEF, iterator.GetNextUInt16());
+ EXPECT_EQ(0xFF, iterator.GetNextByte());
+ EXPECT_TRUE(iterator.Done());
+}
+
+TEST_F(EhFrameIteratorTest, Skip) {
+ static const byte kEncoded[] = {0xDE, 0xAD, 0xC0, 0xDE};
+ EhFrameIterator iterator(&kEncoded[0], &kEncoded[0] + sizeof(kEncoded));
+ iterator.Skip(2);
+ EXPECT_EQ(2, iterator.GetCurrentOffset());
+ EXPECT_EQ(0xC0, iterator.GetNextByte());
+ iterator.Skip(1);
+ EXPECT_TRUE(iterator.Done());
+}
+
+TEST_F(EhFrameIteratorTest, ULEB128Decoding) {
+ static const byte kEncoded[] = {0xE5, 0x8E, 0x26};
+ EhFrameIterator iterator(&kEncoded[0], &kEncoded[0] + sizeof(kEncoded));
+ EXPECT_EQ(624485u, iterator.GetNextULeb128());
+ EXPECT_TRUE(iterator.Done());
+}
+
+TEST_F(EhFrameIteratorTest, SLEB128DecodingPositive) {
+ static const byte kEncoded[] = {0xE5, 0x8E, 0x26};
+ EhFrameIterator iterator(&kEncoded[0], &kEncoded[0] + sizeof(kEncoded));
+ EXPECT_EQ(624485, iterator.GetNextSLeb128());
+ EXPECT_TRUE(iterator.Done());
+}
+
+TEST_F(EhFrameIteratorTest, SLEB128DecodingNegative) {
+ static const byte kEncoded[] = {0x9B, 0xF1, 0x59};
+ EhFrameIterator iterator(&kEncoded[0], &kEncoded[0] + sizeof(kEncoded));
+ EXPECT_EQ(-624485, iterator.GetNextSLeb128());
+ EXPECT_TRUE(iterator.Done());
+}
+
+#endif
+
+} // namespace internal
+} // namespace v8