src/share/vm/opto/macro.cpp

changeset 1040
98cb887364d3
parent 1036
523ded093c31
child 1063
7bb995fbd3c0
     1.1 --- a/src/share/vm/opto/macro.cpp	Fri Feb 27 08:34:19 2009 -0800
     1.2 +++ b/src/share/vm/opto/macro.cpp	Fri Feb 27 13:27:09 2009 -0800
     1.3 @@ -216,7 +216,7 @@
     1.4    const TypeOopPtr *tinst = phase->C->get_adr_type(alias_idx)->isa_oopptr();
     1.5    while (true) {
     1.6      if (mem == alloc_mem || mem == start_mem ) {
     1.7 -      return mem;  // hit one of our sentinals
     1.8 +      return mem;  // hit one of our sentinels
     1.9      } else if (mem->is_MergeMem()) {
    1.10        mem = mem->as_MergeMem()->memory_at(alias_idx);
    1.11      } else if (mem->is_Proj() && mem->as_Proj()->_con == TypeFunc::Memory) {
    1.12 @@ -1668,7 +1668,7 @@
    1.13  
    1.14    if (UseOptoBiasInlining) {
    1.15      /*
    1.16 -     *  See the full descrition in MacroAssembler::biased_locking_enter().
    1.17 +     *  See the full description in MacroAssembler::biased_locking_enter().
    1.18       *
    1.19       *  if( (mark_word & biased_lock_mask) == biased_lock_pattern ) {
    1.20       *    // The object is biased.
    1.21 @@ -1904,7 +1904,7 @@
    1.22  
    1.23    if (UseOptoBiasInlining) {
    1.24      // Check for biased locking unlock case, which is a no-op.
    1.25 -    // See the full descrition in MacroAssembler::biased_locking_exit().
    1.26 +    // See the full description in MacroAssembler::biased_locking_exit().
    1.27      region  = new (C, 4) RegionNode(4);
    1.28      // create a Phi for the memory state
    1.29      mem_phi = new (C, 4) PhiNode( region, Type::MEMORY, TypeRawPtr::BOTTOM);

mercurial