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

Unified Diff: src/compiler/linkage-impl.h

Issue 492203002: Initial support for debugger frame state in Turbofan. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Another attempt to fix Win64 Created 6 years, 4 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/compiler/linkage-impl.h
diff --git a/src/compiler/linkage-impl.h b/src/compiler/linkage-impl.h
index 693b1ab9c239c9947d8a8a854a1f4e81bb10015d..6f0159e1f1da1fffc29a4f0d5d5cc9d1807f1aa3 100644
--- a/src/compiler/linkage-impl.h
+++ b/src/compiler/linkage-impl.h
@@ -64,7 +64,7 @@ class LinkageHelper {
locations, // locations
Operator::kNoProperties, // properties
kNoCalleeSaved, // callee-saved registers
- CallDescriptor::kCanDeoptimize); // deoptimization
+ CallDescriptor::kLazyDeoptimization); // deoptimization
}
@@ -196,7 +196,7 @@ class LinkageHelper {
return new (zone) CallDescriptor(
CallDescriptor::kCallAddress, 1, num_params, num_params + 1, locations,
Operator::kNoProperties, LinkageTraits::CCalleeSaveRegisters(),
- CallDescriptor::kCannotDeoptimize); // TODO(jarin) should deoptimize!
+ CallDescriptor::kNoDeoptimization); // TODO(jarin) should deoptimize!
}
};
}
« no previous file with comments | « src/compiler/linkage.cc ('k') | src/compiler/node.h » ('j') | src/compiler/node.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698