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

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

Issue 2438553003: [ic] Support data handlers that represent simple field stores. (Closed)
Patch Set: One more fix for GC stress issues Created 4 years, 2 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 | « no previous file | src/code-stub-assembler.cc » ('j') | src/ic/ic.cc » ('J')
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 f997a997c9b288ed0891e3ecd5d2c235ea1a6999..c7d104d973c1fe2988359fc3642ffe4fe7c811a0 100644
--- a/src/code-stub-assembler.h
+++ b/src/code-stub-assembler.h
@@ -1075,6 +1075,21 @@ class V8_EXPORT_PRIVATE CodeStubAssembler : public compiler::CodeAssembler {
void HandleLoadICHandlerCase(
const LoadICParameters* p, compiler::Node* handler, Label* miss,
ElementSupport support_elements = kOnlyProperties);
+
+ void HandleStoreFieldAndReturn(compiler::Node* handler_word,
+ compiler::Node* holder,
+ Representation representation,
+ compiler::Node* value,
+ bool transition_to_field, Label* miss);
+
+ void HandleStoreICSmiHandlerCase(compiler::Node* handler_word,
+ compiler::Node* holder,
+ compiler::Node* value,
+ bool transition_to_field, Label* miss);
+
+ void HandleStoreICHandlerCase(const StoreICParameters* p,
+ compiler::Node* handler, Label* miss);
+
compiler::Node* TryToIntptr(compiler::Node* key, Label* miss);
void EmitFastElementsBoundsCheck(compiler::Node* object,
compiler::Node* elements,
« no previous file with comments | « no previous file | src/code-stub-assembler.cc » ('j') | src/ic/ic.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698