Index: test/cctest/test-wasm-relocation-disasm-ia32.cc |
diff --git a/test/cctest/test-wasm-relocation-disasm-ia32.cc b/test/cctest/test-wasm-relocation-disasm-ia32.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e5651472bf1ecfffb369370dd9857589a30a6676 |
--- /dev/null |
+++ b/test/cctest/test-wasm-relocation-disasm-ia32.cc |
@@ -0,0 +1,110 @@ |
+// 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 <stdlib.h> |
+ |
+#include "src/v8.h" |
+ |
+#include "src/debug/debug.h" |
+#include "src/disasm.h" |
+#include "src/disassembler.h" |
+#include "src/ia32/frames-ia32.h" |
+#include "src/ic/ic.h" |
+#include "src/macro-assembler.h" |
+#include "test/cctest/cctest.h" |
+#include "test/cctest/compiler/c-signature.h" |
+#include "test/cctest/compiler/call-tester.h" |
+ |
+using namespace v8::internal; |
+using namespace v8::internal::compiler; |
+ |
+#define __ assm. |
+ |
+static int32_t DummyStaticFunction(Object* result) { return 1; } |
+ |
+TEST(WasmRelocationIa32) { |
+ CcTest::InitializeVM(); |
+ Zone zone; |
+ Isolate* isolate = CcTest::i_isolate(); |
+ HandleScope scope(isolate); |
+ v8::internal::byte buffer[4096]; |
+ Assembler assm(isolate, buffer, sizeof buffer); |
+ DummyStaticFunction(NULL); |
+ int32_t imm = 1234567; |
+ |
+ __ mov(eax, Immediate(imm, RelocInfo::WASM_HEAP_OBJECT)); |
+ __ nop(); |
+ __ ret(0); |
+ |
+ CSignature0<int32_t> csig; |
+ CodeDesc desc; |
+ assm.GetCode(&desc); |
+ Handle<Code> code = isolate->factory()->NewCode( |
+ desc, Code::ComputeFlags(Code::STUB), Handle<Code>()); |
+ USE(code); |
+ |
+ CodeRunner<int32_t> runnable(isolate, code, &csig); |
+ int32_t ret_value = runnable.Call(); |
+ CHECK_EQ(ret_value, imm); |
+ |
+#ifdef OBJECT_PRINT |
+ OFStream os(stdout); |
+ code->Print(os); |
+ byte* begin = code->instruction_start(); |
+ byte* end = begin + code->instruction_size(); |
+ disasm::Disassembler::Disassemble(stdout, begin, end); |
+#endif |
+ |
+ // Initialize new buffer |
+ v8::internal::byte new_buffer[4096]; |
+ size_t offset = |
+ reinterpret_cast<byte*>(new_buffer) - reinterpret_cast<byte*>(buffer); |
+ |
+ // Relocating code object |
+ int mode_mask = (1 << RelocInfo::WASM_HEAP_OBJECT); |
+ for (RelocIterator it(*code, mode_mask); !it.done(); it.next()) { |
+ RelocInfo::Mode mode = it.rinfo()->rmode(); |
+ if (RelocInfo::IsWasmCodeEntry(mode)) { |
+ it.rinfo()->set_target_address(it.rinfo()->target_address() + offset, |
+ SKIP_WRITE_BARRIER, SKIP_ICACHE_FLUSH); |
+ } |
+ } |
+ |
+ // Check if immediate is updated correctly |
+ ret_value = runnable.Call(); |
+ CHECK_EQ(ret_value, imm + offset); |
+ |
+#ifdef OBJECT_PRINT |
+ // OFStream os(stdout); |
+ code->Print(os); |
+ begin = code->instruction_start(); |
+ end = begin + code->instruction_size(); |
+ disasm::Disassembler::Disassemble(stdout, begin, end); |
+#endif |
+} |
+ |
+#undef __ |