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

Unified Diff: src/objects.cc

Issue 568783002: Remove deoptimization by patching the call stack. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase Created 6 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
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index f73d33f2a8edffb2e338bd956df8507e8dde9b34..e123bc208676b7dd2fce0cca130343b63697697d 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -10937,13 +10937,6 @@ void Code::Disassemble(const char* name, OStream& os) { // NOLINT
} else {
os << "<none>";
}
- if (entry.deoptimization_pc() != Safepoint::kNoDeoptimizationPc) {
- Vector<char> buf2 = Vector<char>::New(30);
- SNPrintF(buf2, "%6d", entry.deoptimization_pc());
- os << buf2.start();
- } else {
- os << "<none>";
- }
if (entry.argument_count() > 0) {
os << " argc: " << entry.argument_count();
}
« src/compiler/code-generator.cc ('K') | « src/deoptimizer.cc ('k') | src/safepoint-table.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698