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

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

Issue 2861983002: [ignition] Optimize JSGenerator creation (Closed)
Patch Set: Now with debugger test fixes. Created 3 years, 7 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
Index: src/code-stub-assembler.h
diff --git a/src/code-stub-assembler.h b/src/code-stub-assembler.h
index ba35e2582ef9fc30922ddf2f72196dff2aff51db..4ac123480d2b7f4343c1901ea700ebf032ac35c7 100644
--- a/src/code-stub-assembler.h
+++ b/src/code-stub-assembler.h
@@ -1262,6 +1262,11 @@ class V8_EXPORT_PRIVATE CodeStubAssembler : public compiler::CodeAssembler {
// Create a new AllocationSite and install it into a feedback vector.
Node* CreateAllocationSiteInFeedbackVector(Node* feedback_vector, Node* slot);
+ // Given a recently allocated object {object}, with map {initial_map},
+ // initialize remaining fields appropriately to comply with slack tracking.
+ void HandleSlackTracking(Node* context, Node* object, Node* initial_map,
+ int start_offset);
+
enum class IndexAdvanceMode { kPre, kPost };
typedef std::function<void(Node* index)> FastLoopBody;

Powered by Google App Engine
This is Rietveld 408576698