Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/wasm/wasm-tier.h')
-rw-r--r--deps/v8/src/wasm/wasm-tier.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/deps/v8/src/wasm/wasm-tier.h b/deps/v8/src/wasm/wasm-tier.h
index 8434a2e14bc..24a143d0690 100644
--- a/deps/v8/src/wasm/wasm-tier.h
+++ b/deps/v8/src/wasm/wasm-tier.h
@@ -32,6 +32,12 @@ inline const char* ExecutionTierToString(ExecutionTier tier) {
}
}
+// {kForDebugging} is used for default tiered-down code (potentially with
+// breakpoints), {kForStepping} is code that is flooded with breakpoints.
+enum ForDebugging : int8_t { kNoDebugging = 0, kForDebugging, kForStepping };
+
+enum TieringState : int8_t { kTieredUp, kTieredDown };
+
} // namespace wasm
} // namespace internal
} // namespace v8