src/share/vm/opto/vectornode.hpp

changeset 3040
c7b60b601eb4
parent 2727
08eb13460b3a
child 3882
8c92982cbbc4
     1.1 --- a/src/share/vm/opto/vectornode.hpp	Wed Jul 27 15:06:35 2011 -0700
     1.2 +++ b/src/share/vm/opto/vectornode.hpp	Wed Jul 27 17:28:36 2011 -0700
     1.3 @@ -47,10 +47,10 @@
     1.4    friend class VectorStoreNode; // ditto.
     1.5  
     1.6    VectorNode(Node* n1, uint vlen) : Node(NULL, n1), _length(vlen) {
     1.7 -    init_flags(Flag_is_Vector);
     1.8 +    init_class_id(Class_Vector);
     1.9    }
    1.10    VectorNode(Node* n1, Node* n2, uint vlen) : Node(NULL, n1, n2), _length(vlen) {
    1.11 -    init_flags(Flag_is_Vector);
    1.12 +    init_class_id(Class_Vector);
    1.13    }
    1.14    virtual int Opcode() const;
    1.15  
    1.16 @@ -389,7 +389,7 @@
    1.17   public:
    1.18    VectorLoadNode(Node* c, Node* mem, Node* adr, const TypePtr* at, const Type *rt)
    1.19      : LoadNode(c,mem,adr,at,rt) {
    1.20 -      init_flags(Flag_is_Vector);
    1.21 +    init_class_id(Class_VectorLoad);
    1.22    }
    1.23    virtual int Opcode() const;
    1.24  
    1.25 @@ -617,7 +617,7 @@
    1.26   public:
    1.27    VectorStoreNode(Node* c, Node* mem, Node* adr, const TypePtr* at, Node* val)
    1.28      : StoreNode(c,mem,adr,at,val) {
    1.29 -      init_flags(Flag_is_Vector);
    1.30 +    init_class_id(Class_VectorStore);
    1.31    }
    1.32    virtual int Opcode() const;
    1.33  
    1.34 @@ -635,7 +635,7 @@
    1.35    static int opcode(int sopc, uint vlen);
    1.36  
    1.37    static VectorStoreNode* make(Compile* C, int opc, Node* ctl, Node* mem,
    1.38 -                               Node* adr, const TypePtr* atyp, VectorNode* val,
    1.39 +                               Node* adr, const TypePtr* atyp, Node* val,
    1.40                                 uint vlen);
    1.41  };
    1.42  

mercurial