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

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

Issue 979763002: Version 4.2.77.3 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@4.2
Patch Set: Created 5 years, 9 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
« no previous file with comments | « include/v8-version.h ('k') | src/ic/x87/handler-compiler-x87.cc » ('j') | 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 <limits> 7 #include <limits>
8 8
9 #include "src/compiler/instruction-selector-impl.h" 9 #include "src/compiler/instruction-selector-impl.h"
10 #include "src/compiler/node-matchers.h" 10 #include "src/compiler/node-matchers.h"
(...skipping 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after
1207 1207
1208 void InstructionSelector::VisitCall(Node* node) { UNIMPLEMENTED(); } 1208 void InstructionSelector::VisitCall(Node* node) { UNIMPLEMENTED(); }
1209 1209
1210 1210
1211 void InstructionSelector::VisitBranch(Node* branch, BasicBlock* tbranch, 1211 void InstructionSelector::VisitBranch(Node* branch, BasicBlock* tbranch,
1212 BasicBlock* fbranch) { 1212 BasicBlock* fbranch) {
1213 UNIMPLEMENTED(); 1213 UNIMPLEMENTED();
1214 } 1214 }
1215 1215
1216 1216
1217 void InstructionSelector::VisitSwitch(Node* node, BasicBlock* default_branch,
1218 BasicBlock** case_branches,
1219 int32_t* case_values, size_t case_count,
1220 int32_t min_value, int32_t max_value) {
1221 UNIMPLEMENTED();
1222 }
1223
1224
1217 // static 1225 // static
1218 MachineOperatorBuilder::Flags 1226 MachineOperatorBuilder::Flags
1219 InstructionSelector::SupportedMachineOperatorFlags() { 1227 InstructionSelector::SupportedMachineOperatorFlags() {
1220 return MachineOperatorBuilder::Flag::kNoFlags; 1228 return MachineOperatorBuilder::Flag::kNoFlags;
1221 } 1229 }
1222 1230
1223 #endif // !V8_TURBOFAN_BACKEND 1231 #endif // !V8_TURBOFAN_BACKEND
1224 1232
1225 } // namespace compiler 1233 } // namespace compiler
1226 } // namespace internal 1234 } // namespace internal
1227 } // namespace v8 1235 } // namespace v8
OLDNEW
« no previous file with comments | « include/v8-version.h ('k') | src/ic/x87/handler-compiler-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698