2018-01-12 10:57:34 +00:00
|
|
|
// Copyright 2018 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 <cstddef>
|
|
|
|
#include <cstdint>
|
|
|
|
|
2019-05-21 09:30:15 +00:00
|
|
|
#include "src/codegen/machine-type.h"
|
|
|
|
#include "src/codegen/optimized-compilation-info.h"
|
2018-11-12 14:12:52 +00:00
|
|
|
#include "src/compiler/backend/instruction-selector.h"
|
2018-01-12 10:57:34 +00:00
|
|
|
#include "src/compiler/graph.h"
|
|
|
|
#include "src/compiler/linkage.h"
|
|
|
|
#include "src/compiler/node.h"
|
|
|
|
#include "src/compiler/operator.h"
|
|
|
|
#include "src/compiler/pipeline.h"
|
|
|
|
#include "src/compiler/raw-machine-assembler.h"
|
2018-03-20 14:19:33 +00:00
|
|
|
#include "src/compiler/wasm-compiler.h"
|
2019-05-22 07:55:37 +00:00
|
|
|
#include "src/execution/simulator.h"
|
2019-05-23 08:51:46 +00:00
|
|
|
#include "src/objects/objects-inl.h"
|
|
|
|
#include "src/objects/objects.h"
|
2018-03-20 14:19:33 +00:00
|
|
|
#include "src/wasm/wasm-engine.h"
|
2018-08-08 14:54:44 +00:00
|
|
|
#include "src/wasm/wasm-features.h"
|
2018-02-12 09:22:22 +00:00
|
|
|
#include "src/wasm/wasm-limits.h"
|
2018-03-20 14:19:33 +00:00
|
|
|
#include "src/wasm/wasm-objects-inl.h"
|
|
|
|
#include "src/wasm/wasm-objects.h"
|
|
|
|
#include "src/wasm/wasm-opcodes.h"
|
2018-01-12 10:57:34 +00:00
|
|
|
#include "src/zone/accounting-allocator.h"
|
|
|
|
#include "src/zone/zone.h"
|
|
|
|
#include "test/fuzzer/fuzzer-support.h"
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace compiler {
|
|
|
|
namespace fuzzer {
|
|
|
|
|
|
|
|
constexpr MachineType kTypes[] = {
|
|
|
|
// The first entry is just a placeholder, because '0' is a separator.
|
|
|
|
MachineType(),
|
|
|
|
#if !V8_TARGET_ARCH_32_BIT
|
|
|
|
MachineType::Int64(),
|
|
|
|
#endif
|
|
|
|
MachineType::Int32(), MachineType::Float32(), MachineType::Float64()};
|
|
|
|
|
|
|
|
static constexpr int kNumTypes = arraysize(kTypes);
|
|
|
|
|
|
|
|
class InputProvider {
|
|
|
|
public:
|
|
|
|
InputProvider(const uint8_t* data, size_t size)
|
|
|
|
: current_(data), end_(data + size) {}
|
|
|
|
|
|
|
|
size_t NumNonZeroBytes(size_t offset, int limit) {
|
|
|
|
DCHECK_LE(limit, std::numeric_limits<uint8_t>::max());
|
|
|
|
DCHECK_GE(current_ + offset, current_);
|
|
|
|
const uint8_t* p;
|
|
|
|
for (p = current_ + offset; p < end_; ++p) {
|
|
|
|
if (*p % limit == 0) break;
|
|
|
|
}
|
|
|
|
return p - current_ - offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NextInt8(int limit) {
|
|
|
|
DCHECK_LE(limit, std::numeric_limits<uint8_t>::max());
|
|
|
|
if (current_ == end_) return 0;
|
|
|
|
uint8_t result = *current_;
|
|
|
|
current_++;
|
|
|
|
return static_cast<int>(result) % limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NextInt32(int limit) {
|
|
|
|
if (current_ + sizeof(uint32_t) > end_) return 0;
|
2018-04-13 22:28:05 +00:00
|
|
|
int result =
|
2019-06-17 09:26:18 +00:00
|
|
|
base::ReadLittleEndianValue<int>(reinterpret_cast<Address>(current_));
|
2018-01-12 10:57:34 +00:00
|
|
|
current_ += sizeof(uint32_t);
|
|
|
|
return result % limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const uint8_t* current_;
|
|
|
|
const uint8_t* end_;
|
|
|
|
};
|
|
|
|
|
|
|
|
MachineType RandomType(InputProvider* input) {
|
|
|
|
return kTypes[input->NextInt8(kNumTypes)];
|
|
|
|
}
|
|
|
|
|
|
|
|
int index(MachineType type) { return static_cast<int>(type.representation()); }
|
|
|
|
|
2019-07-08 11:44:42 +00:00
|
|
|
Node* Constant(RawMachineAssembler* m, MachineType type, int value) {
|
2018-01-12 10:57:34 +00:00
|
|
|
switch (type.representation()) {
|
|
|
|
case MachineRepresentation::kWord32:
|
2019-07-08 11:44:42 +00:00
|
|
|
return m->Int32Constant(static_cast<int32_t>(value));
|
2018-01-12 10:57:34 +00:00
|
|
|
case MachineRepresentation::kWord64:
|
2019-07-08 11:44:42 +00:00
|
|
|
return m->Int64Constant(static_cast<int64_t>(value));
|
2018-01-12 10:57:34 +00:00
|
|
|
case MachineRepresentation::kFloat32:
|
2019-07-08 11:44:42 +00:00
|
|
|
return m->Float32Constant(static_cast<float>(value));
|
2018-01-12 10:57:34 +00:00
|
|
|
case MachineRepresentation::kFloat64:
|
2019-07-08 11:44:42 +00:00
|
|
|
return m->Float64Constant(static_cast<double>(value));
|
2018-01-12 10:57:34 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-08 11:44:42 +00:00
|
|
|
Node* ToInt32(RawMachineAssembler* m, MachineType type, Node* a) {
|
2018-01-12 10:57:34 +00:00
|
|
|
switch (type.representation()) {
|
|
|
|
case MachineRepresentation::kWord32:
|
|
|
|
return a;
|
|
|
|
case MachineRepresentation::kWord64:
|
2019-07-08 11:44:42 +00:00
|
|
|
return m->TruncateInt64ToInt32(a);
|
2018-01-12 10:57:34 +00:00
|
|
|
case MachineRepresentation::kFloat32:
|
2019-07-08 11:44:42 +00:00
|
|
|
return m->TruncateFloat32ToInt32(a);
|
2018-01-12 10:57:34 +00:00
|
|
|
case MachineRepresentation::kFloat64:
|
2019-07-08 11:44:42 +00:00
|
|
|
return m->RoundFloat64ToInt32(a);
|
2018-01-12 10:57:34 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CallDescriptor* CreateRandomCallDescriptor(Zone* zone, size_t return_count,
|
|
|
|
size_t param_count,
|
|
|
|
InputProvider* input) {
|
2018-03-20 14:19:33 +00:00
|
|
|
wasm::FunctionSig::Builder builder(zone, return_count, param_count);
|
2018-01-12 10:57:34 +00:00
|
|
|
for (size_t i = 0; i < param_count; i++) {
|
|
|
|
MachineType type = RandomType(input);
|
2018-05-07 11:02:21 +00:00
|
|
|
builder.AddParam(wasm::ValueTypes::ValueTypeFor(type));
|
2018-01-12 10:57:34 +00:00
|
|
|
}
|
|
|
|
// Read the end byte of the parameters.
|
|
|
|
input->NextInt8(1);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < return_count; i++) {
|
|
|
|
MachineType type = RandomType(input);
|
2018-05-07 11:02:21 +00:00
|
|
|
builder.AddReturn(wasm::ValueTypes::ValueTypeFor(type));
|
2018-01-12 10:57:34 +00:00
|
|
|
}
|
2018-03-20 14:19:33 +00:00
|
|
|
|
|
|
|
return compiler::GetWasmCallDescriptor(zone, builder.Build());
|
|
|
|
}
|
|
|
|
|
2019-03-12 16:10:58 +00:00
|
|
|
std::shared_ptr<wasm::NativeModule> AllocateNativeModule(i::Isolate* isolate,
|
2018-03-20 14:19:33 +00:00
|
|
|
size_t code_size) {
|
2018-06-28 13:23:24 +00:00
|
|
|
std::shared_ptr<wasm::WasmModule> module(new wasm::WasmModule);
|
|
|
|
module->num_declared_functions = 1;
|
2018-04-24 13:10:51 +00:00
|
|
|
|
2018-03-20 14:19:33 +00:00
|
|
|
// We have to add the code object to a NativeModule, because the
|
|
|
|
// WasmCallDescriptor assumes that code is on the native heap and not
|
|
|
|
// within a code object.
|
2019-01-25 10:35:37 +00:00
|
|
|
return isolate->wasm_engine()->NewNativeModule(
|
2019-11-07 17:16:45 +00:00
|
|
|
isolate, i::wasm::kAllWasmFeatures, std::move(module), code_size);
|
2018-01-12 10:57:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
|
|
|
v8_fuzzer::FuzzerSupport* support = v8_fuzzer::FuzzerSupport::Get();
|
|
|
|
v8::Isolate* isolate = support->GetIsolate();
|
|
|
|
i::Isolate* i_isolate = reinterpret_cast<Isolate*>(isolate);
|
|
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
v8::Context::Scope context_scope(support->GetContext());
|
|
|
|
v8::TryCatch try_catch(isolate);
|
|
|
|
v8::internal::AccountingAllocator allocator;
|
|
|
|
Zone zone(&allocator, ZONE_NAME);
|
|
|
|
|
|
|
|
InputProvider input(data, size);
|
|
|
|
// Create randomized descriptor.
|
|
|
|
size_t param_count = input.NumNonZeroBytes(0, kNumTypes);
|
2018-02-12 09:22:22 +00:00
|
|
|
if (param_count > Code::kMaxArguments) return 0;
|
|
|
|
|
2018-01-12 10:57:34 +00:00
|
|
|
size_t return_count = input.NumNonZeroBytes(param_count + 1, kNumTypes);
|
2018-02-12 09:22:22 +00:00
|
|
|
if (return_count > wasm::kV8MaxWasmFunctionMultiReturns) return 0;
|
|
|
|
|
2018-01-12 10:57:34 +00:00
|
|
|
CallDescriptor* desc =
|
|
|
|
CreateRandomCallDescriptor(&zone, return_count, param_count, &input);
|
|
|
|
|
|
|
|
if (FLAG_wasm_fuzzer_gen_test) {
|
|
|
|
// Print some debugging output which describes the produced signature.
|
|
|
|
printf("[");
|
2018-03-20 14:19:33 +00:00
|
|
|
for (size_t j = 0; j < param_count; ++j) {
|
|
|
|
// Parameter 0 is the WasmContext.
|
|
|
|
printf(" %s", MachineReprToString(
|
|
|
|
desc->GetParameterType(j + 1).representation()));
|
2018-01-12 10:57:34 +00:00
|
|
|
}
|
|
|
|
printf(" ] -> [");
|
|
|
|
for (size_t j = 0; j < desc->ReturnCount(); ++j) {
|
|
|
|
printf(" %s",
|
|
|
|
MachineReprToString(desc->GetReturnType(j).representation()));
|
|
|
|
}
|
|
|
|
printf(" ]\n\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Count parameters of each type.
|
|
|
|
constexpr size_t kNumMachineRepresentations =
|
|
|
|
static_cast<size_t>(MachineRepresentation::kLastRepresentation) + 1;
|
|
|
|
|
|
|
|
// Trivial hash table for the number of occurrences of parameter types. The
|
|
|
|
// MachineRepresentation of the parameter types is used as hash code.
|
|
|
|
int counts[kNumMachineRepresentations] = {0};
|
2018-03-20 14:19:33 +00:00
|
|
|
for (size_t i = 0; i < param_count; ++i) {
|
|
|
|
// Parameter 0 is the WasmContext.
|
|
|
|
++counts[index(desc->GetParameterType(i + 1))];
|
2018-01-12 10:57:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Generate random inputs.
|
2018-03-20 14:19:33 +00:00
|
|
|
std::unique_ptr<int[]> inputs(new int[param_count]);
|
2018-01-12 10:57:34 +00:00
|
|
|
std::unique_ptr<int[]> outputs(new int[desc->ReturnCount()]);
|
2018-03-20 14:19:33 +00:00
|
|
|
for (size_t i = 0; i < param_count; ++i) {
|
2018-01-12 10:57:34 +00:00
|
|
|
inputs[i] = input.NextInt32(10000);
|
|
|
|
}
|
|
|
|
|
|
|
|
RawMachineAssembler callee(
|
|
|
|
i_isolate, new (&zone) Graph(&zone), desc,
|
|
|
|
MachineType::PointerRepresentation(),
|
|
|
|
InstructionSelector::SupportedMachineOperatorFlags());
|
|
|
|
|
|
|
|
// Generate callee, returning random picks of its parameters.
|
2018-03-20 14:19:33 +00:00
|
|
|
std::unique_ptr<Node* []> params(new Node*[desc->ParameterCount() + 2]);
|
|
|
|
// The first input of a return is the number of stack slots that should be
|
|
|
|
// popped before returning.
|
|
|
|
std::unique_ptr<Node* []> returns(new Node*[desc->ReturnCount() + 1]);
|
|
|
|
for (size_t i = 0; i < param_count; ++i) {
|
|
|
|
// Parameter(0) is the WasmContext.
|
|
|
|
params[i] = callee.Parameter(i + 1);
|
2018-01-12 10:57:34 +00:00
|
|
|
}
|
2018-03-20 14:19:33 +00:00
|
|
|
|
2018-01-12 10:57:34 +00:00
|
|
|
for (size_t i = 0; i < desc->ReturnCount(); ++i) {
|
|
|
|
MachineType type = desc->GetReturnType(i);
|
|
|
|
// Find a random same-type parameter to return. Use a constant if none.
|
|
|
|
if (counts[index(type)] == 0) {
|
2019-07-08 11:44:42 +00:00
|
|
|
returns[i] = Constant(&callee, type, 42);
|
2018-01-12 10:57:34 +00:00
|
|
|
outputs[i] = 42;
|
|
|
|
} else {
|
2018-02-02 12:29:46 +00:00
|
|
|
int n = input.NextInt32(counts[index(type)]);
|
2018-01-12 10:57:34 +00:00
|
|
|
int k = 0;
|
2018-03-20 14:19:33 +00:00
|
|
|
while (desc->GetParameterType(k + 1) != desc->GetReturnType(i) ||
|
|
|
|
--n > 0) {
|
2018-01-12 10:57:34 +00:00
|
|
|
++k;
|
|
|
|
}
|
|
|
|
returns[i] = params[k];
|
|
|
|
outputs[i] = inputs[k];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
callee.Return(static_cast<int>(desc->ReturnCount()), returns.get());
|
|
|
|
|
2018-10-05 09:38:52 +00:00
|
|
|
OptimizedCompilationInfo info(ArrayVector("testing"), &zone, Code::STUB);
|
2019-07-29 17:29:29 +00:00
|
|
|
Handle<Code> code =
|
|
|
|
Pipeline::GenerateCodeForTesting(&info, i_isolate, desc, callee.graph(),
|
|
|
|
AssemblerOptions::Default(i_isolate),
|
|
|
|
callee.ExportForTest())
|
|
|
|
.ToHandleChecked();
|
2018-01-12 10:57:34 +00:00
|
|
|
|
2019-03-12 16:10:58 +00:00
|
|
|
std::shared_ptr<wasm::NativeModule> module =
|
2018-04-05 10:58:15 +00:00
|
|
|
AllocateNativeModule(i_isolate, code->raw_instruction_size());
|
2019-04-02 10:41:00 +00:00
|
|
|
wasm::WasmCodeRefScope wasm_code_ref_scope;
|
2019-04-29 11:06:49 +00:00
|
|
|
byte* code_start = module->AddCodeForTesting(code)->instructions().begin();
|
2018-01-12 10:57:34 +00:00
|
|
|
// Generate wrapper.
|
|
|
|
int expect = 0;
|
|
|
|
|
|
|
|
MachineSignature::Builder sig_builder(&zone, 1, 0);
|
|
|
|
sig_builder.AddReturn(MachineType::Int32());
|
|
|
|
|
|
|
|
CallDescriptor* wrapper_desc =
|
|
|
|
Linkage::GetSimplifiedCDescriptor(&zone, sig_builder.Build());
|
|
|
|
RawMachineAssembler caller(
|
|
|
|
i_isolate, new (&zone) Graph(&zone), wrapper_desc,
|
|
|
|
MachineType::PointerRepresentation(),
|
|
|
|
InstructionSelector::SupportedMachineOperatorFlags());
|
|
|
|
|
2018-03-20 14:19:33 +00:00
|
|
|
params[0] = caller.PointerConstant(code_start);
|
|
|
|
// WasmContext dummy.
|
|
|
|
params[1] = caller.PointerConstant(nullptr);
|
|
|
|
for (size_t i = 0; i < param_count; ++i) {
|
2019-07-08 11:44:42 +00:00
|
|
|
params[i + 2] = Constant(&caller, desc->GetParameterType(i + 1), inputs[i]);
|
2018-01-12 10:57:34 +00:00
|
|
|
}
|
|
|
|
Node* call = caller.AddNode(caller.common()->Call(desc),
|
2018-03-20 14:19:33 +00:00
|
|
|
static_cast<int>(param_count + 2), params.get());
|
2019-07-08 11:44:42 +00:00
|
|
|
Node* ret = Constant(&caller, MachineType::Int32(), 0);
|
2018-01-12 10:57:34 +00:00
|
|
|
for (size_t i = 0; i < desc->ReturnCount(); ++i) {
|
|
|
|
// Skip roughly one third of the outputs.
|
|
|
|
if (input.NextInt8(3) == 0) continue;
|
|
|
|
Node* ret_i = (desc->ReturnCount() == 1)
|
|
|
|
? call
|
|
|
|
: caller.AddNode(caller.common()->Projection(i), call);
|
2019-07-08 11:44:42 +00:00
|
|
|
ret = caller.Int32Add(ret, ToInt32(&caller, desc->GetReturnType(i), ret_i));
|
2018-01-12 10:57:34 +00:00
|
|
|
expect += outputs[i];
|
|
|
|
}
|
|
|
|
caller.Return(ret);
|
|
|
|
|
|
|
|
// Call the wrapper.
|
2018-04-04 20:30:34 +00:00
|
|
|
OptimizedCompilationInfo wrapper_info(ArrayVector("wrapper"), &zone,
|
2018-10-05 09:38:52 +00:00
|
|
|
Code::STUB);
|
2018-06-19 08:09:09 +00:00
|
|
|
Handle<Code> wrapper_code =
|
2018-07-06 08:58:43 +00:00
|
|
|
Pipeline::GenerateCodeForTesting(
|
|
|
|
&wrapper_info, i_isolate, wrapper_desc, caller.graph(),
|
2019-07-29 17:29:29 +00:00
|
|
|
AssemblerOptions::Default(i_isolate), caller.ExportForTest())
|
2018-06-19 08:09:09 +00:00
|
|
|
.ToHandleChecked();
|
2018-07-26 09:20:09 +00:00
|
|
|
|
2018-01-12 10:57:34 +00:00
|
|
|
auto fn = GeneratedCode<int32_t>::FromCode(*wrapper_code);
|
|
|
|
int result = fn.Call();
|
|
|
|
|
|
|
|
CHECK_EQ(expect, result);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace fuzzer
|
|
|
|
} // namespace compiler
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|