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

/openjdk7/hotspot/src/share/vm/opto/
H A DbuildOopMap.cpp33 #include "opto/regalloc.hpp"
107 void compute_reach( PhaseRegAlloc *regalloc, int max_reg, Dict *safehash );
119 OopMap *build_oop_map( Node *n, int max_reg, PhaseRegAlloc *regalloc, int* live );
124 void OopFlow::compute_reach( PhaseRegAlloc *regalloc, int max_reg, Dict *safehash ) { argument
135 n->as_MachSafePoint()->set_oop_map( build_oop_map(n,max_reg,regalloc, live) );
142 OptoReg::Name first = regalloc->get_reg_first(n);
143 OptoReg::Name second = regalloc->get_reg_second(n);
150 OptoReg::Name old_first = regalloc->get_reg_first(n->in(idx));
151 OptoReg::Name old_second = regalloc->get_reg_second(n->in(idx));
159 assert( _callees[first] == _callees[regalloc
228 build_oop_map( Node *n, int max_reg, PhaseRegAlloc *regalloc, int* live ) argument
417 do_liveness( PhaseRegAlloc *regalloc, PhaseCFG *cfg, Block_List *worklist, int max_reg_ints, Arena *A, Dict *safehash ) argument
[all...]
H A DphaseX.cpp36 #include "opto/regalloc.hpp"
1623 PhasePeephole::PhasePeephole( PhaseRegAlloc *regalloc, PhaseCFG &cfg ) argument
1624 : PhaseTransform(Peephole), _regalloc(regalloc), _cfg(cfg) {
H A Dcallnode.cpp35 #include "opto/regalloc.hpp"
322 static void format_helper( PhaseRegAlloc *regalloc, outputStream* st, Node *n, const char *msg, uint i, GrowableArray<SafePointScalarObjectNode*> *scobjs ) { argument
333 if (regalloc->node_regs_max_index() > 0 &&
334 OptoReg::is_valid(regalloc->get_reg_first(n))) { // Check for undefined
336 regalloc->dump_register(n,buf);
378 void JVMState::format(PhaseRegAlloc *regalloc, const Node *n, outputStream* st) const { argument
393 format_helper(regalloc, st, mcall->local(this, i), "L[", i, &scobjs);
399 format_helper(regalloc, st, mcall->stack(this, i), "STK[", i, &scobjs);
404 if (regalloc->node_regs_max_index() > 0 &&
405 OptoReg::is_valid(regalloc
[all...]
H A Dcompile.hpp866 PhaseRegAlloc* regalloc() { return _regalloc; } function in class:Compile

Completed in 46 milliseconds