Show
Ignore:
Timestamp:
08/04/08 12:23:14 (5 months ago)
Author:
mbensi
Message:

merge with webkit revision 35534

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/JavaScriptCore/VM/CodeBlock.cpp

    r418 r429  
    634634            break; 
    635635        } 
     636        case op_push_new_scope: { 
     637            int r0 = (++it)->u.operand; 
     638            int id0 = (++it)->u.operand; 
     639            int r1 = (++it)->u.operand; 
     640            printf("[%4d] push_new_scope \t%s, %s, %s\n", location, registerName(r0).c_str(), idName(id0, identifiers[id0]).c_str(), registerName(r1).c_str()); 
     641            break; 
     642        } 
    636643        case op_jmp_scopes: { 
    637644            int scopeDelta = (++it)->u.operand;