src/share/vm/opto/machnode.cpp
Index
Unified diffs
Context diffs
Sdiffs
Wdiffs
Patch
New
Old
Previous File
Next File
7079317 Cdiff src/share/vm/opto/machnode.cpp
src/share/vm/opto/machnode.cpp
Print this page
*** 387,402 ****
}
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;
}
--- 387,396 ----
*** 405,420 ****
// 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();
}
--- 399,408 ----
*** 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