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

Unified Diff: src/compiler/code-generator.cc

Issue 2357583003: [turbofan] Remove bogus constant materialization from frame. (Closed)
Patch Set: 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/compiler/code-generator.h ('k') | src/compiler/ia32/code-generator-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/code-generator.cc
diff --git a/src/compiler/code-generator.cc b/src/compiler/code-generator.cc
index 1d3045231ae5dc390113b5ac2b04fe1fc3e8d625..c588ae2358a64c4f6add590a75d30f4a73edc6ab 100644
--- a/src/compiler/code-generator.cc
+++ b/src/compiler/code-generator.cc
@@ -281,21 +281,6 @@ void CodeGenerator::RecordSafepoint(ReferenceMap* references,
}
}
-bool CodeGenerator::IsMaterializableFromFrame(Handle<HeapObject> object,
- int* slot_return) {
- if (linkage()->GetIncomingDescriptor()->IsJSFunctionCall()) {
- if (*object == info()->context() && !info()->is_osr()) {
- *slot_return = Frame::kContextSlot;
- return true;
- } else if (object.is_identical_to(info()->closure())) {
- *slot_return = Frame::kJSFunctionSlot;
- return true;
- }
- }
- return false;
-}
-
-
bool CodeGenerator::IsMaterializableFromRoot(
Handle<HeapObject> object, Heap::RootListIndex* index_return) {
const CallDescriptor* incoming_descriptor =
« no previous file with comments | « src/compiler/code-generator.h ('k') | src/compiler/ia32/code-generator-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698