OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WASM_RUN_UTILS_H | 5 #ifndef WASM_RUN_UTILS_H |
6 #define WASM_RUN_UTILS_H | 6 #define WASM_RUN_UTILS_H |
7 | 7 |
| 8 #include <setjmp.h> |
8 #include <stdint.h> | 9 #include <stdint.h> |
9 #include <stdlib.h> | 10 #include <stdlib.h> |
10 #include <string.h> | 11 #include <string.h> |
11 #include <memory> | 12 #include <memory> |
12 | 13 |
13 #include "src/base/utils/random-number-generator.h" | 14 #include "src/base/utils/random-number-generator.h" |
14 #include "src/zone/accounting-allocator.h" | 15 #include "src/zone/accounting-allocator.h" |
15 | 16 |
16 #include "src/compiler/compiler-source-position-table.h" | 17 #include "src/compiler/compiler-source-position-table.h" |
17 #include "src/compiler/graph-visualizer.h" | 18 #include "src/compiler/graph-visualizer.h" |
18 #include "src/compiler/int64-lowering.h" | 19 #include "src/compiler/int64-lowering.h" |
19 #include "src/compiler/js-graph.h" | 20 #include "src/compiler/js-graph.h" |
20 #include "src/compiler/node.h" | 21 #include "src/compiler/node.h" |
21 #include "src/compiler/pipeline.h" | 22 #include "src/compiler/pipeline.h" |
22 #include "src/compiler/wasm-compiler.h" | 23 #include "src/compiler/wasm-compiler.h" |
23 #include "src/compiler/zone-stats.h" | 24 #include "src/compiler/zone-stats.h" |
24 #include "src/wasm/ast-decoder.h" | 25 #include "src/wasm/ast-decoder.h" |
| 26 #include "src/wasm/wasm-external-refs.h" |
25 #include "src/wasm/wasm-interpreter.h" | 27 #include "src/wasm/wasm-interpreter.h" |
26 #include "src/wasm/wasm-js.h" | 28 #include "src/wasm/wasm-js.h" |
27 #include "src/wasm/wasm-macro-gen.h" | 29 #include "src/wasm/wasm-macro-gen.h" |
28 #include "src/wasm/wasm-module.h" | 30 #include "src/wasm/wasm-module.h" |
29 #include "src/wasm/wasm-objects.h" | 31 #include "src/wasm/wasm-objects.h" |
30 #include "src/wasm/wasm-opcodes.h" | 32 #include "src/wasm/wasm-opcodes.h" |
31 | 33 |
32 #include "src/zone/zone.h" | 34 #include "src/zone/zone.h" |
33 | 35 |
34 #include "test/cctest/cctest.h" | 36 #include "test/cctest/cctest.h" |
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 void SetModuleContext() { | 606 void SetModuleContext() { |
605 if (!testing_module_->instance->context.is_null()) { | 607 if (!testing_module_->instance->context.is_null()) { |
606 CHECK(testing_module_->instance->context.is_identical_to( | 608 CHECK(testing_module_->instance->context.is_identical_to( |
607 main_isolate()->native_context())); | 609 main_isolate()->native_context())); |
608 return; | 610 return; |
609 } | 611 } |
610 testing_module_->instance->context = main_isolate()->native_context(); | 612 testing_module_->instance->context = main_isolate()->native_context(); |
611 } | 613 } |
612 }; | 614 }; |
613 | 615 |
| 616 template <typename ReturnType> |
| 617 union ReturnTypeUnion { |
| 618 ReturnType value; |
| 619 uint64_t trap; |
| 620 }; |
| 621 |
614 // A helper class to build graphs from Wasm bytecode, generate machine | 622 // A helper class to build graphs from Wasm bytecode, generate machine |
615 // code, and run that code. | 623 // code, and run that code. |
616 template <typename ReturnType> | 624 template <typename ReturnType> |
617 class WasmRunner { | 625 class WasmRunner { |
618 public: | 626 public: |
619 WasmRunner(WasmExecutionMode execution_mode, | 627 WasmRunner(WasmExecutionMode execution_mode, |
620 MachineType p0 = MachineType::None(), | 628 MachineType p0 = MachineType::None(), |
621 MachineType p1 = MachineType::None(), | 629 MachineType p1 = MachineType::None(), |
622 MachineType p2 = MachineType::None(), | 630 MachineType p2 = MachineType::None(), |
623 MachineType p3 = MachineType::None()) | 631 MachineType p3 = MachineType::None()) |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 template <typename P0, typename P1, typename P2> | 724 template <typename P0, typename P1, typename P2> |
717 ReturnType Call(P0 p0, P1 p1, P2 p2) { | 725 ReturnType Call(P0 p0, P1 p1, P2 p2) { |
718 if (interpret()) { | 726 if (interpret()) { |
719 WasmVal args[] = {WasmVal(p0), WasmVal(p1), WasmVal(p2)}; | 727 WasmVal args[] = {WasmVal(p0), WasmVal(p1), WasmVal(p2)}; |
720 return CallInterpreter(ArrayVector(args)); | 728 return CallInterpreter(ArrayVector(args)); |
721 } else { | 729 } else { |
722 return Call(p0, p1, p2, 0); | 730 return Call(p0, p1, p2, 0); |
723 } | 731 } |
724 } | 732 } |
725 | 733 |
| 734 static jmp_buf jump_buffer; |
| 735 static int jump_value; |
| 736 static ReturnTypeUnion<ReturnType> return_value; |
| 737 |
726 template <typename P0, typename P1, typename P2, typename P3> | 738 template <typename P0, typename P1, typename P2, typename P3> |
727 ReturnType Call(P0 p0, P1 p1, P2 p2, P3 p3) { | 739 ReturnType Call(P0 p0, P1 p1, P2 p2, P3 p3) { |
728 if (interpret()) { | 740 if (interpret()) { |
729 WasmVal args[] = {WasmVal(p0), WasmVal(p1), WasmVal(p2), WasmVal(p3)}; | 741 WasmVal args[] = {WasmVal(p0), WasmVal(p1), WasmVal(p2), WasmVal(p3)}; |
730 return CallInterpreter(ArrayVector(args)); | 742 return CallInterpreter(ArrayVector(args)); |
731 } else { | 743 } else { |
732 CodeRunner<int32_t> runner(CcTest::InitIsolateOnce(), | 744 WasmRunner<ReturnType>::jump_value = |
733 wrapper_.GetWrapperCode(), | 745 setjmp(WasmRunner<ReturnType>::jump_buffer); |
734 wrapper_.signature()); | 746 if (!WasmRunner<ReturnType>::jump_value) { |
735 ReturnType return_value; | 747 auto trap_callback = []() { |
736 int32_t result = runner.Call<void*, void*, void*, void*, void*>( | 748 WasmRunner<ReturnType>::return_value.trap = 0xdeadbeefdeadbeef; |
737 &p0, &p1, &p2, &p3, &return_value); | 749 longjmp(WasmRunner<ReturnType>::jump_buffer, 1); |
738 CHECK_EQ(WASM_WRAPPER_RETURN_VALUE, result); | 750 }; |
739 return return_value; | 751 set_trap_callback_for_testing(trap_callback); |
| 752 CodeRunner<int32_t> runner(CcTest::InitIsolateOnce(), |
| 753 wrapper_.GetWrapperCode(), |
| 754 wrapper_.signature()); |
| 755 |
| 756 int32_t result = runner.Call<void*, void*, void*, void*, void*>( |
| 757 &p0, &p1, &p2, &p3, &WasmRunner<ReturnType>::return_value.value); |
| 758 CHECK_EQ(WASM_WRAPPER_RETURN_VALUE, result); |
| 759 } |
| 760 set_trap_callback_for_testing(nullptr); |
| 761 return WasmRunner<ReturnType>::return_value.value; |
740 } | 762 } |
741 } | 763 } |
742 | 764 |
743 ReturnType CallInterpreter(Vector<WasmVal> args) { | 765 ReturnType CallInterpreter(Vector<WasmVal> args) { |
744 CHECK_EQ(args.length(), | 766 CHECK_EQ(args.length(), |
745 static_cast<int>(compiler_.function_->sig->parameter_count())); | 767 static_cast<int>(compiler_.function_->sig->parameter_count())); |
746 WasmInterpreter::Thread* thread = interpreter()->GetThread(0); | 768 WasmInterpreter::Thread* thread = interpreter()->GetThread(0); |
747 thread->Reset(); | 769 thread->Reset(); |
748 thread->PushFrame(compiler_.function_, args.start()); | 770 thread->PushFrame(compiler_.function_, args.start()); |
749 if (thread->Run() == WasmInterpreter::FINISHED) { | 771 if (thread->Run() == WasmInterpreter::FINISHED) { |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 static size_t GetParameterCount(MachineType p0, MachineType p1, | 804 static size_t GetParameterCount(MachineType p0, MachineType p1, |
783 MachineType p2, MachineType p3) { | 805 MachineType p2, MachineType p3) { |
784 if (p0 == MachineType::None()) return 0; | 806 if (p0 == MachineType::None()) return 0; |
785 if (p1 == MachineType::None()) return 1; | 807 if (p1 == MachineType::None()) return 1; |
786 if (p2 == MachineType::None()) return 2; | 808 if (p2 == MachineType::None()) return 2; |
787 if (p3 == MachineType::None()) return 3; | 809 if (p3 == MachineType::None()) return 3; |
788 return 4; | 810 return 4; |
789 } | 811 } |
790 }; | 812 }; |
791 | 813 |
| 814 template <typename ReturnType> |
| 815 jmp_buf WasmRunner<ReturnType>::jump_buffer; |
| 816 template <typename ReturnType> |
| 817 int WasmRunner<ReturnType>::jump_value; |
| 818 template <typename ReturnType> |
| 819 ReturnTypeUnion<ReturnType> WasmRunner<ReturnType>::return_value; |
| 820 |
792 // A macro to define tests that run in different engine configurations. | 821 // A macro to define tests that run in different engine configurations. |
793 #define WASM_EXEC_TEST(name) \ | 822 #define WASM_EXEC_TEST(name) \ |
794 void RunWasm_##name(WasmExecutionMode execution_mode); \ | 823 void RunWasm_##name(WasmExecutionMode execution_mode); \ |
795 TEST(RunWasmCompiled_##name) { RunWasm_##name(kExecuteCompiled); } \ | 824 TEST(RunWasmCompiled_##name) { RunWasm_##name(kExecuteCompiled); } \ |
796 TEST(RunWasmInterpreted_##name) { RunWasm_##name(kExecuteInterpreted); } \ | 825 TEST(RunWasmInterpreted_##name) { RunWasm_##name(kExecuteInterpreted); } \ |
797 void RunWasm_##name(WasmExecutionMode execution_mode) | 826 void RunWasm_##name(WasmExecutionMode execution_mode) |
798 | 827 |
| 828 #define WASM_EXEC_TEST_WITH_TRAP(name) \ |
| 829 void RunWasm_##name(WasmExecutionMode execution_mode); \ |
| 830 TEST(RunWasmCompiled_##name) { RunWasm_##name(kExecuteCompiled); } \ |
| 831 void RunWasm_##name(WasmExecutionMode execution_mode); \ |
| 832 TEST(RunWasmCompiledWithTrapIf_##name) { \ |
| 833 bool trap_if = FLAG_wasm_trap_if; \ |
| 834 FLAG_wasm_trap_if = true; \ |
| 835 RunWasm_##name(kExecuteCompiled); \ |
| 836 FLAG_wasm_trap_if = trap_if; \ |
| 837 } \ |
| 838 TEST(RunWasmInterpreted_##name) { RunWasm_##name(kExecuteInterpreted); } \ |
| 839 void RunWasm_##name(WasmExecutionMode execution_mode) |
| 840 |
799 #define WASM_EXEC_COMPILED_TEST(name) \ | 841 #define WASM_EXEC_COMPILED_TEST(name) \ |
800 void RunWasm_##name(WasmExecutionMode execution_mode); \ | 842 void RunWasm_##name(WasmExecutionMode execution_mode); \ |
801 TEST(RunWasmCompiled_##name) { RunWasm_##name(kExecuteCompiled); } \ | 843 TEST(RunWasmCompiled_##name) { RunWasm_##name(kExecuteCompiled); } \ |
802 void RunWasm_##name(WasmExecutionMode execution_mode) | 844 void RunWasm_##name(WasmExecutionMode execution_mode) |
803 | 845 |
804 } // namespace | 846 } // namespace |
805 | 847 |
806 #endif | 848 #endif |
OLD | NEW |