aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/backend/jump-threading.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/compiler/backend/jump-threading.h')
-rw-r--r--deps/v8/src/compiler/backend/jump-threading.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/deps/v8/src/compiler/backend/jump-threading.h b/deps/v8/src/compiler/backend/jump-threading.h
index e23dd45359..ce60ebcb2e 100644
--- a/deps/v8/src/compiler/backend/jump-threading.h
+++ b/deps/v8/src/compiler/backend/jump-threading.h
@@ -17,14 +17,17 @@ class V8_EXPORT_PRIVATE JumpThreading {
public:
// Compute the forwarding map of basic blocks to their ultimate destination.
// Returns {true} if there is at least one block that is forwarded.
- static bool ComputeForwarding(Zone* local_zone, ZoneVector<RpoNumber>& result,
- InstructionSequence* code, bool frame_at_start);
+ static bool ComputeForwarding(
+ Zone* local_zone,
+ ZoneVector<RpoNumber>& result, // NOLINT(runtime/references)
+ InstructionSequence* code, bool frame_at_start);
// Rewrite the instructions to forward jumps and branches.
// May also negate some branches.
- static void ApplyForwarding(Zone* local_zone,
- ZoneVector<RpoNumber>& forwarding,
- InstructionSequence* code);
+ static void ApplyForwarding(
+ Zone* local_zone,
+ ZoneVector<RpoNumber>& forwarding, // NOLINT(runtime/references)
+ InstructionSequence* code);
};
} // namespace compiler