92bc3d3861
This reverts commit 80f5dfda01
.
Reason for revert: Fails CSA verification: https://ci.chromium.org/ui/p/v8/builders/ci/V8%20Linux%20-%20verify%20csa/21766/overview
Original change's description:
> [no-wasm] Exclude src/wasm from compilation
>
> This is the biggest chunk, including
> - all of src/wasm,
> - torque file for wasm objects,
> - torque file for wasm builtins,
> - wasm builtins,
> - wasm runtime functions,
> - int64 lowering,
> - simd scala lowering,
> - WasmGraphBuilder (TF graph construction for wasm),
> - wasm frame types,
> - wasm interrupts,
> - the JSWasmCall opcode,
> - wasm backing store allocation.
>
> Those components are all recursively entangled, so I found no way to
> split this change up further.
>
> Some includes that were recursively included by wasm headers needed to
> be added explicitly now.
>
> backing-store-unittest.cc is renamed to wasm-backing-store-unittest.cc
> because it only tests wasm backing stores. This file is excluded from
> no-wasm builds then.
>
> R=jkummerow@chromium.org, jgruber@chromium.org, mlippautz@chromium.org, petermarshall@chromium.org
>
> Bug: v8:11238
> Change-Id: I7558f2d12d2dd6c65128c4de7b79173668c80b2b
> Cq-Include-Trybots: luci.v8.try:v8_linux64_no_wasm_compile_rel
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2742955
> Commit-Queue: Clemens Backes <clemensb@chromium.org>
> Reviewed-by: Peter Marshall <petermarshall@chromium.org>
> Reviewed-by: Toon Verwaest <verwaest@chromium.org>
> Reviewed-by: Michael Lippautz <mlippautz@chromium.org>
> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
> Reviewed-by: Jakob Gruber <jgruber@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#73344}
Bug: v8:11238
Change-Id: I93672002c1faa36bb0bb5b4a9cc2032ee2ccd814
Cq-Include-Trybots: luci.v8.try:v8_linux64_no_wasm_compile_rel
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2752866
Auto-Submit: Clemens Backes <clemensb@chromium.org>
Commit-Queue: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Cr-Commit-Position: refs/heads/master@{#73346}
93 lines
2.6 KiB
C++
93 lines
2.6 KiB
C++
// Copyright 2021 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.
|
|
|
|
#ifndef V8_CCTEST_COMPILER_NODEOBSERVER_TESTER_H_
|
|
#define V8_CCTEST_COMPILER_NODEOBSERVER_TESTER_H_
|
|
|
|
#include "src/compiler/node-observer.h"
|
|
#include "src/compiler/simplified-operator.h"
|
|
#include "src/objects/type-hints.h"
|
|
#include "test/cctest/cctest.h"
|
|
#include "test/common/wasm/flag-utils.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
namespace compiler {
|
|
|
|
// Helpers to test TurboFan compilation using the %ObserveNode intrinsic.
|
|
struct ObserveNodeScope {
|
|
public:
|
|
ObserveNodeScope(Isolate* isolate, NodeObserver* node_observer)
|
|
: isolate_(isolate) {
|
|
DCHECK_NOT_NULL(isolate_);
|
|
DCHECK_NULL(isolate_->node_observer());
|
|
isolate_->set_node_observer(node_observer);
|
|
}
|
|
|
|
~ObserveNodeScope() {
|
|
DCHECK_NOT_NULL(isolate_->node_observer());
|
|
|
|
// Checks that the code wrapped by %ObserveNode() was actually compiled in
|
|
// the test.
|
|
CHECK(isolate_->node_observer()->has_observed_changes());
|
|
|
|
isolate_->set_node_observer(nullptr);
|
|
}
|
|
|
|
private:
|
|
Isolate* isolate_;
|
|
};
|
|
|
|
class CreationObserver : public NodeObserver {
|
|
public:
|
|
explicit CreationObserver(std::function<void(const Node*)> handler)
|
|
: handler_(handler) {
|
|
DCHECK(handler_);
|
|
}
|
|
|
|
Observation OnNodeCreated(const Node* node) override {
|
|
handler_(node);
|
|
return Observation::kStop;
|
|
}
|
|
|
|
private:
|
|
std::function<void(const Node*)> handler_;
|
|
};
|
|
|
|
class ModificationObserver : public NodeObserver {
|
|
public:
|
|
explicit ModificationObserver(
|
|
std::function<void(const Node*)> on_created_handler,
|
|
std::function<NodeObserver::Observation(
|
|
const Node*, const ObservableNodeState& old_state)>
|
|
on_changed_handler)
|
|
: on_created_handler_(on_created_handler),
|
|
on_changed_handler_(on_changed_handler) {
|
|
DCHECK(on_created_handler_);
|
|
DCHECK(on_changed_handler_);
|
|
}
|
|
|
|
Observation OnNodeCreated(const Node* node) override {
|
|
on_created_handler_(node);
|
|
return Observation::kContinue;
|
|
}
|
|
|
|
Observation OnNodeChanged(const char* reducer_name, const Node* node,
|
|
const ObservableNodeState& old_state) override {
|
|
return on_changed_handler_(node, old_state);
|
|
}
|
|
|
|
private:
|
|
std::function<void(const Node*)> on_created_handler_;
|
|
std::function<NodeObserver::Observation(const Node*,
|
|
const ObservableNodeState& old_state)>
|
|
on_changed_handler_;
|
|
};
|
|
|
|
} // namespace compiler
|
|
} // namespace internal
|
|
} // namespace v8
|
|
|
|
#endif // V8_CCTEST_COMPILER_NODEOBSERVER_TESTER_H_
|