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

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

Issue 679433004: Fix non-TF targets after r24874. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after
1035 1035
1036 1036
1037 void InstructionSelector::VisitCall(Node* node) { UNIMPLEMENTED(); } 1037 void InstructionSelector::VisitCall(Node* node) { UNIMPLEMENTED(); }
1038 1038
1039 1039
1040 void InstructionSelector::VisitBranch(Node* branch, BasicBlock* tbranch, 1040 void InstructionSelector::VisitBranch(Node* branch, BasicBlock* tbranch,
1041 BasicBlock* fbranch) { 1041 BasicBlock* fbranch) {
1042 UNIMPLEMENTED(); 1042 UNIMPLEMENTED();
1043 } 1043 }
1044 1044
1045
1046 // static
1047 MachineOperatorBuilder::Flags
1048 InstructionSelector::SupportedMachineOperatorFlags() {
1049 return MachineOperatorBuilder::Flag::kNoFlags;
1050 }
1051
1045 #endif // !V8_TURBOFAN_BACKEND 1052 #endif // !V8_TURBOFAN_BACKEND
1046 1053
1047 } // namespace compiler 1054 } // namespace compiler
1048 } // namespace internal 1055 } // namespace internal
1049 } // namespace v8 1056 } // 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