Searched refs:regnd (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dpostaloc.cpp79 int PhaseChaitin::yank( Node *old, Block *current_block, Node_List *value, Node_List *regnd ) {
87 if( regnd && (*regnd)[old_reg]==old ) { // Instruction is currently available?
88 value->map(old_reg,NULL); // Yank from value/regnd maps
89 regnd->map(old_reg,NULL); // This register's value is now unknown
124 Node_List *value, Node_List *regnd) {
139 blk_adjust += yank(old, current_block, value, regnd);
145 blk_adjust += yank_if_dead_recurse(n, orig_old, current_block, value, regnd);
158 int PhaseChaitin::use_prior_register( Node *n, uint idx, Node *def, Block *current_block, Node_List &value, Node_List &regnd ) {
204 return yank_if_dead(old,current_block,&value,&regnd);
123 yank_if_dead_recurse(Node *old, Node *orig_old, Block *current_block, Node_List *value, Node_List *regnd) argument
225 elide_copy( Node *n, int k, Block *current_block, Node_List &value, Node_List &regnd, bool can_change_regs ) argument
339 eliminate_copy_of_constant(Node* val, Node* n, Block *current_block, Node_List& value, Node_List& regnd, OptoReg::Name nreg, OptoReg::Name nreg2) argument
457 Node_List &regnd = *(free_list.is_empty() ? new Node_List() : free_list.pop()); local
[all...]
H A Dchaitin.hpp490 Block *current_block, Node_List& value, Node_List& regnd ) {
491 Node* v = regnd[nreg];
494 return yank_if_dead(old, current_block, &value, &regnd);
497 int yank_if_dead( Node *old, Block *current_block, Node_List *value, Node_List *regnd ) {
498 return yank_if_dead_recurse(old, old, current_block, value, regnd);
501 Node_List *value, Node_List *regnd);
502 int yank( Node *old, Block *current_block, Node_List *value, Node_List *regnd );
503 int elide_copy( Node *n, int k, Block *current_block, Node_List &value, Node_List &regnd, bool can_change_regs );
504 int use_prior_register( Node *copy, uint idx, Node *def, Block *current_block, Node_List &value, Node_List &regnd );
509 Block *current_block, Node_List& value, Node_List &regnd,
[all...]

Completed in 23 milliseconds