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

Unified Diff: src/code-stub-assembler.h

Issue 2313093002: [stubs] Port StoreTransitionStub and ElementsTransitionAndStoreStub to TurboFan. (Closed)
Patch Set: Addressing comments Created 4 years, 3 months 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/arm64/interface-descriptors-arm64.cc ('k') | src/code-stub-assembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stub-assembler.h
diff --git a/src/code-stub-assembler.h b/src/code-stub-assembler.h
index 7350f106d109cf3370bdc96e6833947fac1363e6..f122523090d787cf7b24dd3a2179019de23fcdef 100644
--- a/src/code-stub-assembler.h
+++ b/src/code-stub-assembler.h
@@ -637,6 +637,9 @@ class CodeStubAssembler : public compiler::CodeAssembler {
compiler::Node* name, Label* if_handler,
Variable* var_handler, Label* if_miss);
+ // Extends properties backing store by JSObject::kFieldsAdded elements.
+ void ExtendPropertiesBackingStore(compiler::Node* object);
+
compiler::Node* PrepareValueForWrite(compiler::Node* value,
Representation representation,
Label* bailout);
@@ -691,6 +694,14 @@ class CodeStubAssembler : public compiler::CodeAssembler {
void KeyedLoadIC(const LoadICParameters* p);
void KeyedLoadICGeneric(const LoadICParameters* p);
+ void TransitionElementsKind(compiler::Node* object, compiler::Node* map,
+ ElementsKind from_kind, ElementsKind to_kind,
+ bool is_jsarray, Label* bailout);
+
+ void TrapAllocationMemento(compiler::Node* object, Label* memento_found);
+
+ compiler::Node* PageFromAddress(compiler::Node* address);
+
// Get the enumerable length from |map| and return the result as a Smi.
compiler::Node* EnumLength(compiler::Node* map);
« no previous file with comments | « src/arm64/interface-descriptors-arm64.cc ('k') | src/code-stub-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698