2017-08-07 11:40:21 +00:00
|
|
|
// Copyright 2017 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 <cstdint>
|
|
|
|
|
2019-01-10 11:47:08 +00:00
|
|
|
#include "src/base/overflowing-math.h"
|
2020-10-15 17:56:07 +00:00
|
|
|
#include "src/base/safe_conversions.h"
|
2019-05-21 09:30:15 +00:00
|
|
|
#include "src/codegen/assembler-inl.h"
|
2019-05-23 08:51:46 +00:00
|
|
|
#include "src/objects/objects-inl.h"
|
2019-06-27 12:46:03 +00:00
|
|
|
#include "src/wasm/wasm-arguments.h"
|
2017-08-07 11:40:21 +00:00
|
|
|
#include "src/wasm/wasm-objects.h"
|
|
|
|
#include "test/cctest/cctest.h"
|
|
|
|
#include "test/cctest/compiler/value-helper.h"
|
|
|
|
#include "test/cctest/wasm/wasm-run-utils.h"
|
|
|
|
#include "test/common/wasm/wasm-macro-gen.h"
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace wasm {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We test the interface from C to compiled wasm code by generating a wasm
|
|
|
|
* function, creating a corresponding signature, compiling the c wasm entry for
|
|
|
|
* that signature, and then calling that entry using different test values.
|
|
|
|
* The result is compared against the expected result, computed from a lambda
|
|
|
|
* passed to the CWasmEntryArgTester.
|
|
|
|
*/
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
template <typename ReturnType, typename... Args>
|
|
|
|
class CWasmEntryArgTester {
|
|
|
|
public:
|
|
|
|
CWasmEntryArgTester(std::initializer_list<uint8_t> wasm_function_bytes,
|
|
|
|
std::function<ReturnType(Args...)> expected_fn)
|
2020-08-04 11:09:23 +00:00
|
|
|
: runner_(TestExecutionTier::kTurbofan),
|
2017-08-07 11:40:21 +00:00
|
|
|
isolate_(runner_.main_isolate()),
|
|
|
|
expected_fn_(expected_fn),
|
|
|
|
sig_(runner_.template CreateSig<ReturnType, Args...>()) {
|
|
|
|
std::vector<uint8_t> code{wasm_function_bytes};
|
|
|
|
runner_.Build(code.data(), code.data() + code.size());
|
2017-08-19 16:34:11 +00:00
|
|
|
wasm_code_ = runner_.builder().GetFunctionCode(0);
|
2020-09-16 07:37:24 +00:00
|
|
|
c_wasm_entry_ = compiler::CompileCWasmEntry(
|
|
|
|
isolate_, sig_, wasm_code_->native_module()->module());
|
2017-08-07 11:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename... Rest>
|
2019-06-27 12:46:03 +00:00
|
|
|
void WriteToBuffer(CWasmArgumentsPacker* packer, Rest... rest) {
|
2017-08-07 11:40:21 +00:00
|
|
|
static_assert(sizeof...(rest) == 0, "this is the base case");
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename First, typename... Rest>
|
2019-06-27 12:46:03 +00:00
|
|
|
void WriteToBuffer(CWasmArgumentsPacker* packer, First first, Rest... rest) {
|
|
|
|
packer->Push(first);
|
|
|
|
WriteToBuffer(packer, rest...);
|
2017-08-07 11:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CheckCall(Args... args) {
|
2019-06-27 12:46:03 +00:00
|
|
|
CWasmArgumentsPacker packer(CWasmArgumentsPacker::TotalSize(sig_));
|
|
|
|
WriteToBuffer(&packer, args...);
|
|
|
|
Address wasm_call_target = wasm_code_->instruction_start();
|
|
|
|
Handle<Object> object_ref = runner_.builder().instance_object();
|
|
|
|
Execution::CallWasm(isolate_, c_wasm_entry_, wasm_call_target, object_ref,
|
|
|
|
packer.argv());
|
|
|
|
CHECK(!isolate_->has_pending_exception());
|
|
|
|
packer.Reset();
|
2017-08-07 11:40:21 +00:00
|
|
|
|
|
|
|
// Check the result.
|
2019-06-27 12:46:03 +00:00
|
|
|
ReturnType result = packer.Pop<ReturnType>();
|
2017-08-07 11:40:21 +00:00
|
|
|
ReturnType expected = expected_fn_(args...);
|
|
|
|
if (std::is_floating_point<ReturnType>::value) {
|
|
|
|
CHECK_DOUBLE_EQ(expected, result);
|
|
|
|
} else {
|
|
|
|
CHECK_EQ(expected, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
WasmRunner<ReturnType, Args...> runner_;
|
|
|
|
Isolate* isolate_;
|
|
|
|
std::function<ReturnType(Args...)> expected_fn_;
|
2020-02-25 20:00:50 +00:00
|
|
|
const FunctionSig* sig_;
|
2021-06-17 22:10:06 +00:00
|
|
|
Handle<CodeT> c_wasm_entry_;
|
2018-08-02 09:50:08 +00:00
|
|
|
WasmCode* wasm_code_;
|
2017-08-07 11:40:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// Pass int32_t, return int32_t.
|
|
|
|
TEST(TestCWasmEntryArgPassing_int32) {
|
|
|
|
CWasmEntryArgTester<int32_t, int32_t> tester(
|
|
|
|
{// Return 2*<0> + 1.
|
2020-12-17 16:55:33 +00:00
|
|
|
WASM_I32_ADD(WASM_I32_MUL(WASM_I32V_1(2), WASM_LOCAL_GET(0)), WASM_ONE)},
|
2019-01-10 11:47:08 +00:00
|
|
|
[](int32_t a) {
|
|
|
|
return base::AddWithWraparound(base::MulWithWraparound(2, a), 1);
|
|
|
|
});
|
2017-08-07 11:40:21 +00:00
|
|
|
|
2019-02-01 10:37:04 +00:00
|
|
|
FOR_INT32_INPUTS(v) { tester.CheckCall(v); }
|
2017-08-07 11:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pass int64_t, return double.
|
|
|
|
TEST(TestCWasmEntryArgPassing_double_int64) {
|
|
|
|
CWasmEntryArgTester<double, int64_t> tester(
|
|
|
|
{// Return (double)<0>.
|
2020-12-17 16:55:33 +00:00
|
|
|
WASM_F64_SCONVERT_I64(WASM_LOCAL_GET(0))},
|
2017-08-07 11:40:21 +00:00
|
|
|
[](int64_t a) { return static_cast<double>(a); });
|
|
|
|
|
2019-02-01 10:37:04 +00:00
|
|
|
FOR_INT64_INPUTS(v) { tester.CheckCall(v); }
|
2017-08-07 11:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pass double, return int64_t.
|
|
|
|
TEST(TestCWasmEntryArgPassing_int64_double) {
|
|
|
|
CWasmEntryArgTester<int64_t, double> tester(
|
|
|
|
{// Return (int64_t)<0>.
|
2020-12-17 16:55:33 +00:00
|
|
|
WASM_I64_SCONVERT_F64(WASM_LOCAL_GET(0))},
|
2017-08-07 11:40:21 +00:00
|
|
|
[](double d) { return static_cast<int64_t>(d); });
|
|
|
|
|
2020-09-28 23:28:51 +00:00
|
|
|
FOR_FLOAT64_INPUTS(d) {
|
2020-10-15 17:56:07 +00:00
|
|
|
if (base::IsValueInRangeForNumericType<int64_t>(d)) {
|
2020-09-28 23:28:51 +00:00
|
|
|
tester.CheckCall(d);
|
|
|
|
}
|
|
|
|
}
|
2017-08-07 11:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pass float, return double.
|
|
|
|
TEST(TestCWasmEntryArgPassing_float_double) {
|
|
|
|
CWasmEntryArgTester<double, float> tester(
|
|
|
|
{// Return 2*(double)<0> + 1.
|
|
|
|
WASM_F64_ADD(
|
2020-12-17 16:55:33 +00:00
|
|
|
WASM_F64_MUL(WASM_F64(2), WASM_F64_CONVERT_F32(WASM_LOCAL_GET(0))),
|
2017-08-07 11:40:21 +00:00
|
|
|
WASM_F64(1))},
|
|
|
|
[](float f) { return 2. * static_cast<double>(f) + 1.; });
|
|
|
|
|
2019-02-01 10:37:04 +00:00
|
|
|
FOR_FLOAT32_INPUTS(f) { tester.CheckCall(f); }
|
2017-08-07 11:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pass two doubles, return double.
|
|
|
|
TEST(TestCWasmEntryArgPassing_double_double) {
|
|
|
|
CWasmEntryArgTester<double, double, double> tester(
|
|
|
|
{// Return <0> + <1>.
|
2020-12-17 16:55:33 +00:00
|
|
|
WASM_F64_ADD(WASM_LOCAL_GET(0), WASM_LOCAL_GET(1))},
|
2017-08-07 11:40:21 +00:00
|
|
|
[](double a, double b) { return a + b; });
|
|
|
|
|
2017-10-18 10:13:34 +00:00
|
|
|
FOR_FLOAT64_INPUTS(d1) {
|
2019-02-01 10:37:04 +00:00
|
|
|
FOR_FLOAT64_INPUTS(d2) { tester.CheckCall(d1, d2); }
|
2017-08-07 11:40:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pass int32_t, int64_t, float and double, return double.
|
|
|
|
TEST(TestCWasmEntryArgPassing_AllTypes) {
|
|
|
|
CWasmEntryArgTester<double, int32_t, int64_t, float, double> tester(
|
|
|
|
{
|
|
|
|
// Convert all arguments to double, add them and return the sum.
|
|
|
|
WASM_F64_ADD( // <0+1+2> + <3>
|
|
|
|
WASM_F64_ADD( // <0+1> + <2>
|
|
|
|
WASM_F64_ADD( // <0> + <1>
|
|
|
|
WASM_F64_SCONVERT_I32(
|
2020-12-17 16:55:33 +00:00
|
|
|
WASM_LOCAL_GET(0)), // <0> to double
|
2017-08-07 11:40:21 +00:00
|
|
|
WASM_F64_SCONVERT_I64(
|
2020-12-17 16:55:33 +00:00
|
|
|
WASM_LOCAL_GET(1))), // <1> to double
|
|
|
|
WASM_F64_CONVERT_F32(WASM_LOCAL_GET(2))), // <2> to double
|
|
|
|
WASM_LOCAL_GET(3)) // <3>
|
2017-08-07 11:40:21 +00:00
|
|
|
},
|
|
|
|
[](int32_t a, int64_t b, float c, double d) {
|
|
|
|
return 0. + a + b + c + d;
|
|
|
|
});
|
|
|
|
|
2021-06-17 15:43:55 +00:00
|
|
|
base::Vector<const int32_t> test_values_i32 =
|
|
|
|
compiler::ValueHelper::int32_vector();
|
|
|
|
base::Vector<const int64_t> test_values_i64 =
|
|
|
|
compiler::ValueHelper::int64_vector();
|
|
|
|
base::Vector<const float> test_values_f32 =
|
|
|
|
compiler::ValueHelper::float32_vector();
|
|
|
|
base::Vector<const double> test_values_f64 =
|
2017-10-18 10:13:34 +00:00
|
|
|
compiler::ValueHelper::float64_vector();
|
2017-08-07 11:40:21 +00:00
|
|
|
size_t max_len =
|
|
|
|
std::max(std::max(test_values_i32.size(), test_values_i64.size()),
|
|
|
|
std::max(test_values_f32.size(), test_values_f64.size()));
|
|
|
|
for (size_t i = 0; i < max_len; ++i) {
|
|
|
|
int32_t i32 = test_values_i32[i % test_values_i32.size()];
|
|
|
|
int64_t i64 = test_values_i64[i % test_values_i64.size()];
|
|
|
|
float f32 = test_values_f32[i % test_values_f32.size()];
|
|
|
|
double f64 = test_values_f64[i % test_values_f64.size()];
|
|
|
|
tester.CheckCall(i32, i64, f32, f64);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace wasm
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|