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

Unified Diff: src/x64/assembler-x64.cc

Issue 113574: X64: Fixups in heap-test.cc to make it compile in X64 mode. (Closed)
Patch Set: Created 11 years, 7 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 | « no previous file | test/cctest/test-heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/x64/assembler-x64.cc
diff --git a/src/x64/assembler-x64.cc b/src/x64/assembler-x64.cc
index 0efb34a841b7bc2fe281715983fbb01f02762057..fb3bce2383dde74534f08648d540f98177d197ff 100644
--- a/src/x64/assembler-x64.cc
+++ b/src/x64/assembler-x64.cc
@@ -105,6 +105,12 @@ Assembler::~Assembler() {
UNIMPLEMENTED();
}
+
+void Assembler::nop() {
+ UNIMPLEMENTED();
+}
+
+
void BreakLocationIterator::ClearDebugBreakAtReturn() {
UNIMPLEMENTED();
}
@@ -352,6 +358,12 @@ void CpuFeatures::Probe() {
UNIMPLEMENTED();
}
+
+bool Debug::IsDebugBreakAtReturn(v8::internal::RelocInfo*) {
+ UNIMPLEMENTED();
+ return false;
+}
+
void Debug::GenerateCallICDebugBreak(MacroAssembler* a) {
UNIMPLEMENTED();
}
« no previous file with comments | « no previous file | test/cctest/test-heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698