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

Unified Diff: src/a64/lithium-a64.cc

Issue 151593003: A64: Implement LChunkBuilder::DoForceRepresentation (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/a64/lithium-a64.cc
diff --git a/src/a64/lithium-a64.cc b/src/a64/lithium-a64.cc
index 472dfd5ab2cf3bf8afde96bfc0813ff69d309db4..e85059243bd0c344486426d97e7ac1b672d4f7a2 100644
--- a/src/a64/lithium-a64.cc
+++ b/src/a64/lithium-a64.cc
@@ -853,14 +853,6 @@ LInstruction* LChunkBuilder::DoArithmeticT(Token::Value op,
}
-#define UNIMPLEMENTED_INSTRUCTION() \
- do { \
- info_->set_bailout_reason(kUnimplementedHydrogenInstruction); \
- status_ = ABORTED; \
- return NULL; \
- } while (0)
-
-
LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation(
HBoundsCheckBaseIndexInformation* instr) {
UNREACHABLE();
@@ -1491,7 +1483,10 @@ LInstruction* LChunkBuilder::DoEnvironmentMarker(HEnvironmentMarker* instr) {
LInstruction* LChunkBuilder::DoForceRepresentation(
HForceRepresentation* instr) {
- UNIMPLEMENTED_INSTRUCTION();
+ // All HForceRepresentation instructions should be eliminated in the
+ // representation change phase of Hydrogen.
+ UNREACHABLE();
+ return NULL;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698