Ignore:
Timestamp:
Oct 4, 2008, 1:32:21 PM (17 years ago)
Author:
[email protected]
Message:

2008-10-04 Cameron Zwarich <[email protected]>

Reviewed by Darin Adler.

Bug 21369: Add opcode documentation for all undocumented opcodes
<https://bugs.webkit.org/show_bug.cgi?id=21369>

This patch adds opcode documentation for all undocumented opcodes, and
it also renames op_init_arguments to op_create_arguments.

  • VM/CTI.cpp: (JSC::CTI::privateCompileMainPass):
  • VM/CodeBlock.cpp: (JSC::CodeBlock::dump):
  • VM/CodeGenerator.cpp: (JSC::CodeGenerator::CodeGenerator):
  • VM/Machine.cpp: (JSC::Machine::privateExecute): (JSC::Machine::cti_op_create_arguments):
  • VM/Machine.h:
  • VM/Opcode.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/VM/CodeBlock.cpp

    r37285 r37294  
    357357            break;
    358358        }
    359         case op_init_arguments: {
    360             printf("[%4d] init_arguments\n", location);
     359        case op_create_arguments: {
     360            printf("[%4d] create_arguments\n", location);
    361361            break;
    362362        }
Note: See TracChangeset for help on using the changeset viewer.