Searched refs:ra_ (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dmachnode.hpp79 virtual int reg(PhaseRegAlloc *ra_, const Node *node) const;
81 virtual int reg(PhaseRegAlloc *ra_, const Node *node, int idx) const;
84 Register as_Register(PhaseRegAlloc *ra_, const Node *node) const { argument
85 return ::as_Register(reg(ra_, node));
87 Register as_Register(PhaseRegAlloc *ra_, const Node *node, int idx) const { argument
88 return ::as_Register(reg(ra_, node, idx));
90 FloatRegister as_FloatRegister(PhaseRegAlloc *ra_, const Node *node) const { argument
91 return ::as_FloatRegister(reg(ra_, node));
93 FloatRegister as_FloatRegister(PhaseRegAlloc *ra_, const Node *node, int idx) const { argument
94 return ::as_FloatRegister(reg(ra_, nod
98 as_XMMRegister(PhaseRegAlloc *ra_, const Node *node) const argument
101 as_XMMRegister(PhaseRegAlloc *ra_, const Node *node, int idx) const argument
[all...]
H A Dmachnode.cpp33 int MachOper::reg(PhaseRegAlloc *ra_, const Node *node) const { argument
34 return (int)ra_->get_encode(node);
37 int MachOper::reg(PhaseRegAlloc *ra_, const Node *node, int idx) const { argument
38 return (int)(ra_->get_encode(node->in(idx)));
49 int MachOper::base (PhaseRegAlloc *ra_, const Node *node, int idx) const { return 0x00; } argument
50 int MachOper::index(PhaseRegAlloc *ra_, const Node *node, int idx) const { return 0x00; } argument
52 int MachOper::disp (PhaseRegAlloc *ra_, const Node *node, int idx) const { return 0x00; } argument
129 void MachNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
139 uint MachNode::size(PhaseRegAlloc *ra_) const {
142 return MachNode::emit_size(ra_);
394 peephole( Block *block, int block_index, PhaseRegAlloc *ra_, int &deleted, Compile* C ) argument
502 format( PhaseRegAlloc *ra_, outputStream *st ) const argument
[all...]
H A Dlocknode.hpp59 virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
60 virtual uint size(PhaseRegAlloc *ra_) const;
H A Dcfgnode.hpp523 virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const { }
524 virtual uint size(PhaseRegAlloc *ra_) const { return 0; }
H A Dnode.hpp923 virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;
925 virtual uint size(PhaseRegAlloc *ra_) const;
H A Dnode.cpp948 void Node::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {}
951 uint Node::size(PhaseRegAlloc *ra_) const { return 0; }
H A Dcfgnode.cpp2215 void NeverBranchNode::format( PhaseRegAlloc *ra_, outputStream *st) const { argument

Completed in 60 milliseconds