mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 17:35:26 +00:00

PR-URL: https://github.com/nodejs/node/pull/49639 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
66 lines
2.1 KiB
C++
66 lines
2.1 KiB
C++
// 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 uint8_t 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 uint8_t 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 uint8_t 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 uint8_t 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 uint8_t 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
|