Searched defs:ra_ (Results 1 - 3 of 3) sorted by relevance
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | machnode.cpp | 33 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 D | cfgnode.cpp | 2215 void NeverBranchNode::format( PhaseRegAlloc *ra_, outputStream *st) const { argument
|
H A D | machnode.hpp | 79 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...] |
Completed in 45 milliseconds