comparison src/share/vm/opto/memnode.hpp @ 1543:1a1603f975b5

Merge
author kvn
date Wed, 19 May 2010 10:22:39 -0700
parents 9e321dcfa5b7
children c18cbe5936b8
comparison
equal deleted inserted replaced
1542:eb79484f795f 1543:1a1603f975b5
1242 public: 1242 public:
1243 PrefetchWriteNode(Node *abio, Node *adr) : Node(0,abio,adr) {} 1243 PrefetchWriteNode(Node *abio, Node *adr) : Node(0,abio,adr) {}
1244 virtual int Opcode() const; 1244 virtual int Opcode() const;
1245 virtual uint ideal_reg() const { return NotAMachineReg; } 1245 virtual uint ideal_reg() const { return NotAMachineReg; }
1246 virtual uint match_edge(uint idx) const { return idx==2; } 1246 virtual uint match_edge(uint idx) const { return idx==2; }
1247 virtual const Type *bottom_type() const { return Type::ABIO; } 1247 virtual const Type *bottom_type() const { return ( AllocatePrefetchStyle == 3 ) ? Type::MEMORY : Type::ABIO; }
1248 }; 1248 };