src/hotspot/share/opto/machnode.hpp
changeset 51566 904cf5407ac7
parent 51333 f6641fcf7b7e
child 53244 9807daeb47c4
child 56900 d5d542d50e3c
--- a/src/hotspot/share/opto/machnode.hpp	Wed Aug 29 11:25:51 2018 +0100
+++ b/src/hotspot/share/opto/machnode.hpp	Wed Aug 22 10:29:17 2018 +0200
@@ -1000,6 +1000,19 @@
   virtual JVMState* jvms() const;
 };
 
+class MachMemBarNode : public MachNode {
+  virtual uint size_of() const; // Size is bigger
+public:
+  const TypePtr* _adr_type;     // memory effects
+  MachMemBarNode() : MachNode() {
+    init_class_id(Class_MachMemBar);
+    _adr_type = TypePtr::BOTTOM; // the default: all of memory
+  }
+
+  void set_adr_type(const TypePtr* atp) { _adr_type = atp; }
+  virtual const TypePtr *adr_type() const;
+};
+
 
 //------------------------------MachTempNode-----------------------------------
 // Node used by the adlc to construct inputs to represent temporary registers