Revision: 23599
Author: [email protected]
Date: Tue Sep 2 11:33:28 2014 UTC
Log: Fix Win64 build (header include mess up)
[email protected]
BUG=
Review URL: https://codereview.chromium.org/527893002
https://code.google.com/p/v8/source/detail?r=23599
Modified:
/branches/bleeding_edge/src/compiler/linkage-impl.h
/branches/bleeding_edge/src/compiler/linkage.cc
=======================================
--- /branches/bleeding_edge/src/compiler/linkage-impl.h Tue Sep 2 10:38:31
2014 UTC
+++ /branches/bleeding_edge/src/compiler/linkage-impl.h Tue Sep 2 11:33:28
2014 UTC
@@ -199,26 +199,6 @@
CallDescriptor::kNoFlags); // TODO(jarin) should deoptimize!
}
};
-
-
-bool Linkage::NeedsFrameState(Runtime::FunctionId function) {
- if (!FLAG_turbo_deoptimization) {
- return false;
- }
- // TODO(jarin) At the moment, we only add frame state for
- // few chosen runtime functions.
- switch (function) {
- case Runtime::kDebugBreak:
- case Runtime::kDeoptimizeFunction:
- case Runtime::kSetScriptBreakPoint:
- case Runtime::kDebugGetLoadedScripts:
- case Runtime::kStackGuard:
- return true;
- default:
- return false;
- }
-}
-
} // namespace compiler
} // namespace internal
} // namespace v8
=======================================
--- /branches/bleeding_edge/src/compiler/linkage.cc Tue Sep 2 10:38:31
2014 UTC
+++ /branches/bleeding_edge/src/compiler/linkage.cc Tue Sep 2 11:33:28
2014 UTC
@@ -107,6 +107,26 @@
return GetStubCallDescriptor(descriptor, stack_parameter_count, flags,
this->info_->zone());
}
+
+
+// static
+bool Linkage::NeedsFrameState(Runtime::FunctionId function) {
+ if (!FLAG_turbo_deoptimization) {
+ return false;
+ }
+ // TODO(jarin) At the moment, we only add frame state for
+ // few chosen runtime functions.
+ switch (function) {
+ case Runtime::kDebugBreak:
+ case Runtime::kDeoptimizeFunction:
+ case Runtime::kSetScriptBreakPoint:
+ case Runtime::kDebugGetLoadedScripts:
+ case Runtime::kStackGuard:
+ return true;
+ default:
+ return false;
+ }
+}
//==============================================================================
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.