| Index: test/cctest/test-wasm-relocation-disasm-arm64.cc
|
| diff --git a/test/cctest/test-wasm-relocation-disasm-arm64.cc b/test/cctest/test-wasm-relocation-disasm-arm64.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..533d323e96fbb4d8949c1953635cbdad87a684d7
|
| --- /dev/null
|
| +++ b/test/cctest/test-wasm-relocation-disasm-arm64.cc
|
| @@ -0,0 +1,105 @@
|
| +// Copyright 2016 the V8 project authors. All rights reserved.
|
| +// Redistribution and use in source and binary forms, with or without
|
| +// modification, are permitted provided that the following conditions are
|
| +// met:
|
| +//
|
| +// * Redistributions of source code must retain the above copyright
|
| +// notice, this list of conditions and the following disclaimer.
|
| +// * Redistributions in binary form must reproduce the above
|
| +// copyright notice, this list of conditions and the following
|
| +// disclaimer in the documentation and/or other materials provided
|
| +// with the distribution.
|
| +// * Neither the name of Google Inc. nor the names of its
|
| +// contributors may be used to endorse or promote products derived
|
| +// from this software without specific prior written permission.
|
| +//
|
| +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
| +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
| +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
| +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
| +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
| +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
| +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
| +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
| +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| +
|
| +#include <iostream> // NOLINT(readability/streams)
|
| +
|
| +#include "src/v8.h"
|
| +#include "test/cctest/cctest.h"
|
| +
|
| +#include "src/arm64/simulator-arm64.h"
|
| +#include "src/arm64/utils-arm64.h"
|
| +#include "src/disassembler.h"
|
| +#include "src/factory.h"
|
| +#include "src/macro-assembler.h"
|
| +#include "src/ostreams.h"
|
| +#include "test/cctest/compiler/c-signature.h"
|
| +#include "test/cctest/compiler/call-tester.h"
|
| +
|
| +using namespace v8::base;
|
| +using namespace v8::internal;
|
| +using namespace v8::internal::compiler;
|
| +
|
| +#define __ masm.
|
| +
|
| +static int64_t DummyStaticFunction(Object* result) { return 1; }
|
| +
|
| +TEST(WasmRelocationArm64) {
|
| + CcTest::InitializeVM();
|
| + Isolate* isolate = CcTest::i_isolate();
|
| + HandleScope scope(isolate);
|
| + v8::internal::byte buffer[4096];
|
| + DummyStaticFunction(NULL);
|
| + int64_t imm = 1234567;
|
| +
|
| + MacroAssembler masm(isolate, buffer, sizeof buffer,
|
| + v8::internal::CodeObjectRequired::kYes);
|
| +
|
| + __ Mov(x0, Immediate(imm, RelocInfo::WASM_MEMORY_REFERENCE));
|
| + __ Ret();
|
| +
|
| + CodeDesc desc;
|
| + masm.GetCode(&desc);
|
| + Handle<Code> code = isolate->factory()->NewCode(
|
| + desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
|
| +
|
| + CSignature0<int64_t> csig;
|
| + CodeRunner<int64_t> runnable(isolate, code, &csig);
|
| + int64_t ret_value = runnable.Call();
|
| + CHECK_EQ(ret_value, imm);
|
| +
|
| +#ifdef DEBUG
|
| + OFStream os(stdout);
|
| + code->Print(os);
|
| + ::printf("f() = %ld\n\n", ret_value);
|
| +#endif
|
| + size_t offset = 1234;
|
| +
|
| + // Relocating reference by offset
|
| + int mode_mask = (1 << RelocInfo::WASM_MEMORY_REFERENCE);
|
| + for (RelocIterator it(*code, mode_mask); !it.done(); it.next()) {
|
| + RelocInfo::Mode mode = it.rinfo()->rmode();
|
| + if (RelocInfo::IsWasmMemoryReference(mode)) {
|
| + // Dummy values of size used here as the objective of the test is to
|
| + // verify that the immediate is patched correctly
|
| + it.rinfo()->update_wasm_memory_reference(
|
| + it.rinfo()->wasm_memory_reference(),
|
| + it.rinfo()->wasm_memory_reference() + offset, 1, 2,
|
| + SKIP_ICACHE_FLUSH);
|
| + }
|
| + }
|
| +
|
| + // Call into relocated code object
|
| + ret_value = runnable.Call();
|
| + CHECK_EQ((imm + offset), ret_value);
|
| +
|
| +#ifdef DEBUG
|
| + code->Print(os);
|
| + ::printf("f() = %ld\n\n", ret_value);
|
| +#endif
|
| +}
|
| +
|
| +#undef __
|
|
|