Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(389)

Unified Diff: src/code-stubs.cc

Issue 2523213002: Version 5.7.38.1 (cherry-pick) (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/ic/accessor-assembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.cc
diff --git a/src/code-stubs.cc b/src/code-stubs.cc
index 3476d35e562fb6b0c6c1ca3810a955de2c918519..f0f38ebe9376962df326dab42cc1abff0f67958a 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -2117,7 +2117,7 @@ void StoreScriptContextFieldStub::GenerateAssembly(
Node* script_context = assembler.LoadScriptContext(context, context_index());
assembler.StoreFixedArrayElement(
script_context, assembler.IntPtrConstant(slot_index()), value,
- UPDATE_WRITE_BARRIER, 0, CodeStubAssembler::INTPTR_PARAMETERS);
+ UPDATE_WRITE_BARRIER, CodeStubAssembler::INTPTR_PARAMETERS);
assembler.Return(value);
}
@@ -2621,19 +2621,21 @@ compiler::Node* FastNewFunctionContextStub::Generate(
assembler->SmiFromWord32(length));
// Set up the fixed slots.
- assembler->StoreFixedArrayElement(function_context, Context::CLOSURE_INDEX,
- function, SKIP_WRITE_BARRIER);
- assembler->StoreFixedArrayElement(function_context, Context::PREVIOUS_INDEX,
- context, SKIP_WRITE_BARRIER);
- assembler->StoreFixedArrayElement(function_context, Context::EXTENSION_INDEX,
- assembler->TheHoleConstant(),
- SKIP_WRITE_BARRIER);
+ assembler->StoreFixedArrayElement(
+ function_context, assembler->Int32Constant(Context::CLOSURE_INDEX),
+ function, SKIP_WRITE_BARRIER);
+ assembler->StoreFixedArrayElement(
+ function_context, assembler->Int32Constant(Context::PREVIOUS_INDEX),
+ context, SKIP_WRITE_BARRIER);
+ assembler->StoreFixedArrayElement(
+ function_context, assembler->Int32Constant(Context::EXTENSION_INDEX),
+ assembler->TheHoleConstant(), SKIP_WRITE_BARRIER);
// Copy the native context from the previous context.
Node* native_context = assembler->LoadNativeContext(context);
- assembler->StoreFixedArrayElement(function_context,
- Context::NATIVE_CONTEXT_INDEX,
- native_context, SKIP_WRITE_BARRIER);
+ assembler->StoreFixedArrayElement(
+ function_context, assembler->Int32Constant(Context::NATIVE_CONTEXT_INDEX),
+ native_context, SKIP_WRITE_BARRIER);
// Initialize the rest of the slots to undefined.
Node* undefined = assembler->UndefinedConstant();
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/ic/accessor-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698