RESOLVED FIXED 96466
JSC: Refactor Opcodes to distinguish between core and extension opcodes
https://bugs.webkit.org/show_bug.cgi?id=96466
Summary JSC: Refactor Opcodes to distinguish between core and extension opcodes
Mark Lam
Reported 2012-09-11 21:52:28 PDT
Previously, in the llint C++ interpreter (in LowLevelInterpreter.h), I declared a handful of llint opcode aliases for opcode that look like this: const OpcodeID llint_op_call = op_call; const OpcodeID llint_op_call_eval = op_call_eval; ... When r128219 landed, it added a reference to llint_op_get_array_length, and this broke the C++ llint. This demonstrates that the above approach is too fragile in practice. So, I will refactor the FOR_EACH_OPCODE_ID() macro to create a separate FOR_EACH_CORE_OPCODE_ID() macro. This FOR_EACH_CORE_OPCODE_ID() macro will be used to automatically declare the llint opcode aliases that the C++ llint needs.
Attachments
Fix. (4.20 KB, patch)
2012-09-11 22:24 PDT, Mark Lam
no flags
Mark Lam
Comment 1 2012-09-11 22:24:04 PDT
WebKit Review Bot
Comment 2 2012-09-11 22:25:41 PDT
Attachment 163520 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source..." exit_code: 1 Source/JavaScriptCore/bytecode/Opcode.h:42: Code inside a namespace should not be indented. [whitespace/indent] [4] Total errors found: 1 in 3 files If any of these errors are false positives, please file a bug against check-webkit-style.
Mark Lam
Comment 3 2012-09-11 22:27:24 PDT
The style checker will complain about indented code in the namespace. This is needed to stay consistent with existing code in Opcode.h. To resolve this complaint would mean making the changed code inconsistent with the rest, or go on an unindent spree that will make the diff hard to read. It's better off the way it is right now.
Mark Lam
Comment 4 2012-09-12 07:44:05 PDT
*** Bug 96509 has been marked as a duplicate of this bug. ***
WebKit Review Bot
Comment 5 2012-09-12 15:20:15 PDT
Comment on attachment 163520 [details] Fix. Clearing flags on attachment: 163520 Committed r128369: <http://trac.webkit.org/changeset/128369>
WebKit Review Bot
Comment 6 2012-09-12 15:20:19 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.