Searched defs:VectorNode (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dvectornode.hpp32 //------------------------------VectorNode-------------------------------------
34 class VectorNode : public TypeNode { class in inherits:TypeNode
37 VectorNode(Node* n1, const TypeVect* vt) : TypeNode(vt, 2) { function in class:VectorNode
41 VectorNode(Node* n1, Node* n2, const TypeVect* vt) : TypeNode(vt, 3) { function in class:VectorNode
55 static VectorNode* scalar2vector(Compile* C, Node* s, uint vlen, const Type* opd_t);
56 static VectorNode* shift_count(Compile* C, Node* shift, Node* cnt, uint vlen, BasicType bt);
57 static VectorNode* make(Compile* C, int opc, Node* n1, Node* n2, uint vlen, BasicType bt);
71 class AddVBNode : public VectorNode {
73 AddVBNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
79 class AddVSNode : public VectorNode {
[all...]

Completed in 288 milliseconds