Changeset 37294 in webkit for trunk/JavaScriptCore/VM/CTI.cpp


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/CTI.cpp

    r37285 r37294  
    19891989            break;
    19901990        }
    1991         case op_init_arguments: {
    1992             emitCall(i, Machine::cti_op_init_arguments);
     1991        case op_create_arguments: {
     1992            emitCall(i, Machine::cti_op_create_arguments);
    19931993            i += 1;
    19941994            break;
Note: See TracChangeset for help on using the changeset viewer.