< prev index next >

src/hotspot/share/opto/vectornode.hpp

Print this page
rev 49218 : Add support for vector popcount

*** 379,388 **** --- 379,396 ---- public: NegVDNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {} virtual int Opcode() const; }; + //------------------------------PopCountVINode--------------------------------- + // Vector popcount integer bits + class PopCountVINode : public VectorNode { + public: + PopCountVINode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {} + virtual int Opcode() const; + }; + //------------------------------SqrtVFNode-------------------------------------- // Vector Sqrt float class SqrtVFNode : public VectorNode { public: SqrtVFNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
< prev index next >