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/codegen/tnode.h')
-rw-r--r--deps/v8/src/codegen/tnode.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/deps/v8/src/codegen/tnode.h b/deps/v8/src/codegen/tnode.h
index ecf9afab482..83a05d0d441 100644
--- a/deps/v8/src/codegen/tnode.h
+++ b/deps/v8/src/codegen/tnode.h
@@ -79,6 +79,12 @@ struct UintPtrT : WordT {
static constexpr MachineType kMachineType = MachineType::UintPtr();
};
+struct ExternalPointerT : UntaggedT {
+ static const MachineRepresentation kMachineRepresentation =
+ MachineType::PointerRepresentation();
+ static constexpr MachineType kMachineType = MachineType::Pointer();
+};
+
struct Float32T : UntaggedT {
static const MachineRepresentation kMachineRepresentation =
MachineRepresentation::kFloat32;