4392e0a4ad
This changeset include: 1. [prepare for migrate] move `cctest/compiler/value-helper.h`, `cctest/compiler/c-signature.h`, and `cctest/compiler/call-tester.h` to `test/common` directory because both `test-codegen` and a lot of cctest file include it. 2. [prepare for migrate] separate the tester helper part of `test-codegen` into a new `codegen-tester` file. 3. finally, migrate test-codegen.cc to `codegen-unittest.cc` Bug: v8:12781 Change-Id: Ia2f52c1d3b6b62501066dc1c4308a2c09d699e92 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3831146 Reviewed-by: Clemens Backes <clemensb@chromium.org> Commit-Queue: Clemens Backes <clemensb@chromium.org> Cr-Commit-Position: refs/heads/main@{#82630}
96 lines
2.6 KiB
C++
96 lines
2.6 KiB
C++
// Copyright 2014 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 "test/cctest/compiler/codegen-tester.h"
|
|
|
|
#include "src/base/overflowing-math.h"
|
|
#include "src/objects/objects-inl.h"
|
|
#include "test/cctest/cctest.h"
|
|
#include "test/common/value-helper.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
namespace compiler {
|
|
|
|
void Int32BinopInputShapeTester::TestAllInputShapes() {
|
|
base::Vector<const int32_t> inputs = ValueHelper::int32_vector();
|
|
int num_int_inputs = static_cast<int>(inputs.size());
|
|
if (num_int_inputs > 16) num_int_inputs = 16; // limit to 16 inputs
|
|
|
|
for (int i = -2; i < num_int_inputs; i++) { // for all left shapes
|
|
for (int j = -2; j < num_int_inputs; j++) { // for all right shapes
|
|
if (i >= 0 && j >= 0) break; // No constant/constant combos
|
|
RawMachineAssemblerTester<int32_t> m(MachineType::Int32(),
|
|
MachineType::Int32());
|
|
Node* p0 = m.Parameter(0);
|
|
Node* p1 = m.Parameter(1);
|
|
Node* n0;
|
|
Node* n1;
|
|
|
|
// left = Parameter | Load | Constant
|
|
if (i == -2) {
|
|
n0 = p0;
|
|
} else if (i == -1) {
|
|
n0 = m.LoadFromPointer(&input_a, MachineType::Int32());
|
|
} else {
|
|
n0 = m.Int32Constant(inputs[i]);
|
|
}
|
|
|
|
// right = Parameter | Load | Constant
|
|
if (j == -2) {
|
|
n1 = p1;
|
|
} else if (j == -1) {
|
|
n1 = m.LoadFromPointer(&input_b, MachineType::Int32());
|
|
} else {
|
|
n1 = m.Int32Constant(inputs[j]);
|
|
}
|
|
|
|
gen->gen(&m, n0, n1);
|
|
|
|
if (i >= 0) {
|
|
input_a = inputs[i];
|
|
RunRight(&m);
|
|
} else if (j >= 0) {
|
|
input_b = inputs[j];
|
|
RunLeft(&m);
|
|
} else {
|
|
Run(&m);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void Int32BinopInputShapeTester::Run(RawMachineAssemblerTester<int32_t>* m) {
|
|
FOR_INT32_INPUTS(pl) {
|
|
FOR_INT32_INPUTS(pr) {
|
|
input_a = pl;
|
|
input_b = pr;
|
|
int32_t expect = gen->expected(input_a, input_b);
|
|
CHECK_EQ(expect, m->Call(input_a, input_b));
|
|
}
|
|
}
|
|
}
|
|
|
|
void Int32BinopInputShapeTester::RunLeft(
|
|
RawMachineAssemblerTester<int32_t>* m) {
|
|
FOR_UINT32_INPUTS(i) {
|
|
input_a = i;
|
|
int32_t expect = gen->expected(input_a, input_b);
|
|
CHECK_EQ(expect, m->Call(input_a, input_b));
|
|
}
|
|
}
|
|
|
|
void Int32BinopInputShapeTester::RunRight(
|
|
RawMachineAssemblerTester<int32_t>* m) {
|
|
FOR_UINT32_INPUTS(i) {
|
|
input_b = i;
|
|
int32_t expect = gen->expected(input_a, input_b);
|
|
CHECK_EQ(expect, m->Call(input_a, input_b));
|
|
}
|
|
}
|
|
|
|
} // namespace compiler
|
|
} // namespace internal
|
|
} // namespace v8
|