Commit 24e79516 authored by Ross McIlroy's avatar Ross McIlroy Committed by Commit Bot

[interpreter] Fix some comment typos.

Also removes bmeurer@ from interpreter/OWNERS.

BUG=v8:10806

Change-Id: I97cb77350271f773600e92d4ce787080388eb14c
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2369179
Commit-Queue: Ross McIlroy <rmcilroy@chromium.org>
Commit-Queue: Mythri Alle <mythria@chromium.org>
Auto-Submit: Ross McIlroy <rmcilroy@chromium.org>
Reviewed-by: 's avatarMythri Alle <mythria@chromium.org>
Cr-Commit-Position: refs/heads/master@{#69522}
parent 3551cac6
bmeurer@chromium.org
leszeks@chromium.org leszeks@chromium.org
mythria@chromium.org mythria@chromium.org
rmcilroy@chromium.org rmcilroy@chromium.org
......
...@@ -539,9 +539,9 @@ IGNITION_HANDLER(LdaNamedProperty, InterpreterAssembler) { ...@@ -539,9 +539,9 @@ IGNITION_HANDLER(LdaNamedProperty, InterpreterAssembler) {
} }
} }
// LdaPropertyNofeedback <object> <slot> // LdaNamedPropertyNoFeedback <object> <name>
// //
// Calls the GetProperty builtin for <object> and the key in the accumulator. // Calls the GetProperty builtin for <object> and the key <name>.
IGNITION_HANDLER(LdaNamedPropertyNoFeedback, InterpreterAssembler) { IGNITION_HANDLER(LdaNamedPropertyNoFeedback, InterpreterAssembler) {
TNode<Object> object = LoadRegisterAtOperandIndex(0); TNode<Object> object = LoadRegisterAtOperandIndex(0);
TNode<Name> name = CAST(LoadConstantPoolEntryAtOperandIndex(1)); TNode<Name> name = CAST(LoadConstantPoolEntryAtOperandIndex(1));
...@@ -552,7 +552,7 @@ IGNITION_HANDLER(LdaNamedPropertyNoFeedback, InterpreterAssembler) { ...@@ -552,7 +552,7 @@ IGNITION_HANDLER(LdaNamedPropertyNoFeedback, InterpreterAssembler) {
Dispatch(); Dispatch();
} }
// KeyedLoadIC <object> <slot> // LdaKeyedProperty <object> <slot>
// //
// Calls the KeyedLoadIC at FeedBackVector slot <slot> for <object> and the key // Calls the KeyedLoadIC at FeedBackVector slot <slot> for <object> and the key
// in the accumulator. // in the accumulator.
...@@ -684,7 +684,7 @@ IGNITION_HANDLER(StaInArrayLiteral, InterpreterAssembler) { ...@@ -684,7 +684,7 @@ IGNITION_HANDLER(StaInArrayLiteral, InterpreterAssembler) {
Dispatch(); Dispatch();
} }
// StaDataPropertyInLiteral <object> <name> <flags> // StaDataPropertyInLiteral <object> <name> <flags> <slot>
// //
// Define a property <name> with value from the accumulator in <object>. // Define a property <name> with value from the accumulator in <object>.
// Property attributes and whether set_function_name are stored in // Property attributes and whether set_function_name are stored in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment