Index: src/full-codegen.cc |
diff --git a/src/full-codegen.cc b/src/full-codegen.cc |
index a40b61e5c91f6b8854db0300f11dd247535404b4..9690f1c5bd07dc5cd5a84224cfbc6c0a5f8e06de 100644 |
--- a/src/full-codegen.cc |
+++ b/src/full-codegen.cc |
@@ -436,12 +436,23 @@ void FullCodeGenerator::PopulateTypeFeedbackCells(Handle<Code> code) { |
} |
- |
void FullCodeGenerator::PrepareForBailout(Expression* node, State state) { |
PrepareForBailoutForId(node->id(), state); |
} |
+void FullCodeGenerator::CallLoadIC(ContextualMode mode, TypeFeedbackId id) { |
+ Handle<Code> ic = LoadIC::initialize_stub(isolate(), mode); |
+ CallIC(ic, mode, id); |
+} |
+ |
+ |
+void FullCodeGenerator::CallStoreIC(ContextualMode mode, TypeFeedbackId id) { |
+ Handle<Code> ic = StoreIC::initialize_stub(isolate(), strict_mode(), mode); |
+ CallIC(ic, mode, id); |
+} |
+ |
+ |
void FullCodeGenerator::RecordJSReturnSite(Call* call) { |
// We record the offset of the function return so we can rebuild the frame |
// if the function was inlined, i.e., this is the return address in the |