summaryrefslogtreecommitdiff
path: root/deps/v8/test/cctest/test-macro-assembler-mips.cc
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2017-02-14 11:27:26 +0100
committerMichaël Zasso <targos@protonmail.com>2017-02-22 15:55:42 +0100
commit7a77daf24344db7942e34c962b0f1ee729ab7af5 (patch)
treee7cbe7bf4e2f4b802a8f5bc18336c546cd6a0d7f /deps/v8/test/cctest/test-macro-assembler-mips.cc
parent5f08871ee93ea739148cc49e0f7679e33c70295a (diff)
downloadnode-new-7a77daf24344db7942e34c962b0f1ee729ab7af5.tar.gz
deps: update V8 to 5.6.326.55
PR-URL: https://github.com/nodejs/node/pull/10992 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'deps/v8/test/cctest/test-macro-assembler-mips.cc')
-rw-r--r--deps/v8/test/cctest/test-macro-assembler-mips.cc91
1 files changed, 0 insertions, 91 deletions
diff --git a/deps/v8/test/cctest/test-macro-assembler-mips.cc b/deps/v8/test/cctest/test-macro-assembler-mips.cc
index 9561db691e..2f3edee7da 100644
--- a/deps/v8/test/cctest/test-macro-assembler-mips.cc
+++ b/deps/v8/test/cctest/test-macro-assembler-mips.cc
@@ -44,22 +44,6 @@ typedef Object* (*F3)(void* p, int p1, int p2, int p3, int p4);
#define __ masm->
-
-static byte to_non_zero(int n) {
- return static_cast<unsigned>(n) % 255 + 1;
-}
-
-
-static bool all_zeroes(const byte* beg, const byte* end) {
- CHECK(beg);
- CHECK(beg <= end);
- while (beg < end) {
- if (*beg++ != 0)
- return false;
- }
- return true;
-}
-
TEST(BYTESWAP) {
CcTest::InitializeVM();
Isolate* isolate = CcTest::i_isolate();
@@ -126,81 +110,6 @@ TEST(BYTESWAP) {
CHECK_EQ(static_cast<int32_t>(0xDE2C0000), t.r5);
}
-TEST(CopyBytes) {
- CcTest::InitializeVM();
- Isolate* isolate = CcTest::i_isolate();
- HandleScope handles(isolate);
-
- const int data_size = 1 * KB;
- size_t act_size;
-
- // Allocate two blocks to copy data between.
- byte* src_buffer =
- static_cast<byte*>(v8::base::OS::Allocate(data_size, &act_size, 0));
- CHECK(src_buffer);
- CHECK(act_size >= static_cast<size_t>(data_size));
- byte* dest_buffer =
- static_cast<byte*>(v8::base::OS::Allocate(data_size, &act_size, 0));
- CHECK(dest_buffer);
- CHECK(act_size >= static_cast<size_t>(data_size));
-
- // Storage for a0 and a1.
- byte* a0_;
- byte* a1_;
-
- MacroAssembler assembler(isolate, NULL, 0,
- v8::internal::CodeObjectRequired::kYes);
- MacroAssembler* masm = &assembler;
-
- // Code to be generated: The stuff in CopyBytes followed by a store of a0 and
- // a1, respectively.
- __ CopyBytes(a0, a1, a2, a3);
- __ li(a2, Operand(reinterpret_cast<int>(&a0_)));
- __ li(a3, Operand(reinterpret_cast<int>(&a1_)));
- __ sw(a0, MemOperand(a2));
- __ jr(ra);
- __ sw(a1, MemOperand(a3));
-
- CodeDesc desc;
- masm->GetCode(&desc);
- Handle<Code> code = isolate->factory()->NewCode(
- desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
-
- ::F f = FUNCTION_CAST< ::F>(code->entry());
-
- // Initialise source data with non-zero bytes.
- for (int i = 0; i < data_size; i++) {
- src_buffer[i] = to_non_zero(i);
- }
-
- const int fuzz = 11;
-
- for (int size = 0; size < 600; size++) {
- for (const byte* src = src_buffer; src < src_buffer + fuzz; src++) {
- for (byte* dest = dest_buffer; dest < dest_buffer + fuzz; dest++) {
- memset(dest_buffer, 0, data_size);
- CHECK(dest + size < dest_buffer + data_size);
- (void)CALL_GENERATED_CODE(isolate, f, reinterpret_cast<int>(src),
- reinterpret_cast<int>(dest), size, 0, 0);
- // a0 and a1 should point at the first byte after the copied data.
- CHECK_EQ(src + size, a0_);
- CHECK_EQ(dest + size, a1_);
- // Check that we haven't written outside the target area.
- CHECK(all_zeroes(dest_buffer, dest));
- CHECK(all_zeroes(dest + size, dest_buffer + data_size));
- // Check the target area.
- CHECK_EQ(0, memcmp(src, dest, size));
- }
- }
- }
-
- // Check that the source data hasn't been clobbered.
- for (int i = 0; i < data_size; i++) {
- CHECK(src_buffer[i] == to_non_zero(i));
- }
-}
-
-
static void TestNaN(const char *code) {
// NaN value is different on MIPS and x86 architectures, and TEST(NaNx)
// tests checks the case where a x86 NaN value is serialized into the