[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: Mythri Alle <mythria@chromium.org> Cr-Commit-Position: refs/heads/master@{#69522}
This commit is contained in:
parent
3551cac6da
commit
24e795166d
@ -1,4 +1,3 @@
|
||||
bmeurer@chromium.org
|
||||
leszeks@chromium.org
|
||||
mythria@chromium.org
|
||||
rmcilroy@chromium.org
|
||||
|
@ -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) {
|
||||
TNode<Object> object = LoadRegisterAtOperandIndex(0);
|
||||
TNode<Name> name = CAST(LoadConstantPoolEntryAtOperandIndex(1));
|
||||
@ -552,7 +552,7 @@ IGNITION_HANDLER(LdaNamedPropertyNoFeedback, InterpreterAssembler) {
|
||||
Dispatch();
|
||||
}
|
||||
|
||||
// KeyedLoadIC <object> <slot>
|
||||
// LdaKeyedProperty <object> <slot>
|
||||
//
|
||||
// Calls the KeyedLoadIC at FeedBackVector slot <slot> for <object> and the key
|
||||
// in the accumulator.
|
||||
@ -684,7 +684,7 @@ IGNITION_HANDLER(StaInArrayLiteral, InterpreterAssembler) {
|
||||
Dispatch();
|
||||
}
|
||||
|
||||
// StaDataPropertyInLiteral <object> <name> <flags>
|
||||
// StaDataPropertyInLiteral <object> <name> <flags> <slot>
|
||||
//
|
||||
// Define a property <name> with value from the accumulator in <object>.
|
||||
// Property attributes and whether set_function_name are stored in
|
||||
|
Loading…
Reference in New Issue
Block a user