src/share/vm/opto/machnode.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/opto/machnode.cpp	Mon Aug 15 17:13:59 2011
--- new/src/share/vm/opto/machnode.cpp	Mon Aug 15 17:13:59 2011

*** 387,402 **** --- 387,396 ---- } return skipped; } //------------------------------negate----------------------------------------- // Negate conditional branches. Error for non-branch Nodes void MachNode::negate() { ShouldNotCallThis(); } //------------------------------peephole--------------------------------------- // Apply peephole rule(s) to this instruction MachNode *MachNode::peephole( Block *block, int block_index, PhaseRegAlloc *ra_, int &deleted, Compile* C ) { return NULL; }
*** 405,420 **** --- 399,408 ---- // Adds the label for the case void MachNode::add_case_label( int index_num, Label* blockLabel) { ShouldNotCallThis(); } //------------------------------label_set-------------------------------------- // Set the Label for a LabelOper, if an operand for this instruction void MachNode::label_set( Label* label, uint block_num ) { ShouldNotCallThis(); } //------------------------------method_set------------------------------------- // Set the absolute address of a method void MachNode::method_set( intptr_t addr ) { ShouldNotCallThis(); }
*** 515,524 **** --- 503,515 ---- // only emits entries in the null-pointer exception handler table } void MachNullCheckNode::label_set(Label* label, uint block_num) { // Nothing to emit } + void MachNullCheckNode::save_label( Label** label, uint* block_num ) { + // Nothing to emit + } const RegMask &MachNullCheckNode::in_RegMask( uint idx ) const { if( idx == 0 ) return RegMask::Empty; else return in(1)->as_Mach()->out_RegMask(); }

src/share/vm/opto/machnode.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File