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

Side by Side Diff: src/compiler/instruction-selector.cc

Issue 644463005: Fix non-TF targets after r24546. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/compiler/instruction-selector.h" 5 #include "src/compiler/instruction-selector.h"
6 6
7 #include "src/compiler/instruction-selector-impl.h" 7 #include "src/compiler/instruction-selector-impl.h"
8 #include "src/compiler/node-matchers.h" 8 #include "src/compiler/node-matchers.h"
9 #include "src/compiler/node-properties-inl.h" 9 #include "src/compiler/node-properties-inl.h"
10 #include "src/compiler/pipeline.h" 10 #include "src/compiler/pipeline.h"
(...skipping 1002 matching lines...) Expand 10 before | Expand all | Expand 10 after
1013 #if !V8_TURBOFAN_BACKEND 1013 #if !V8_TURBOFAN_BACKEND
1014 1014
1015 #define DECLARE_UNIMPLEMENTED_SELECTOR(x) \ 1015 #define DECLARE_UNIMPLEMENTED_SELECTOR(x) \
1016 void InstructionSelector::Visit##x(Node* node) { UNIMPLEMENTED(); } 1016 void InstructionSelector::Visit##x(Node* node) { UNIMPLEMENTED(); }
1017 MACHINE_OP_LIST(DECLARE_UNIMPLEMENTED_SELECTOR) 1017 MACHINE_OP_LIST(DECLARE_UNIMPLEMENTED_SELECTOR)
1018 #undef DECLARE_UNIMPLEMENTED_SELECTOR 1018 #undef DECLARE_UNIMPLEMENTED_SELECTOR
1019 1019
1020 1020
1021 void InstructionSelector::VisitCall(Node* node) { UNIMPLEMENTED(); } 1021 void InstructionSelector::VisitCall(Node* node) { UNIMPLEMENTED(); }
1022 1022
1023 void InstructionSelector::VisitBranch(Node* branch, BasicBlock* tbranch,
1024 BasicBlock* fbranch) {
1025 UNIMPLEMENTED();
1026 }
1027
1023 #endif // !V8_TURBOFAN_BACKEND 1028 #endif // !V8_TURBOFAN_BACKEND
1024 1029
1025 } // namespace compiler 1030 } // namespace compiler
1026 } // namespace internal 1031 } // namespace internal
1027 } // namespace v8 1032 } // namespace v8
OLDNEW
« 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