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

Side by Side Diff: src/compiler/verifier.cc

Issue 1223613002: [turbofan] Add Uint64LessThanOrEqual to 64-bit TurboFan backends. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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 | « src/compiler/typer.cc ('k') | src/compiler/x64/instruction-selector-x64.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/verifier.h" 5 #include "src/compiler/verifier.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <deque> 8 #include <deque>
9 #include <queue> 9 #include <queue>
10 #include <sstream> 10 #include <sstream>
(...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 case IrOpcode::kInt64Add: 818 case IrOpcode::kInt64Add:
819 case IrOpcode::kInt64Sub: 819 case IrOpcode::kInt64Sub:
820 case IrOpcode::kInt64Mul: 820 case IrOpcode::kInt64Mul:
821 case IrOpcode::kInt64Div: 821 case IrOpcode::kInt64Div:
822 case IrOpcode::kInt64Mod: 822 case IrOpcode::kInt64Mod:
823 case IrOpcode::kInt64LessThan: 823 case IrOpcode::kInt64LessThan:
824 case IrOpcode::kInt64LessThanOrEqual: 824 case IrOpcode::kInt64LessThanOrEqual:
825 case IrOpcode::kUint64Div: 825 case IrOpcode::kUint64Div:
826 case IrOpcode::kUint64Mod: 826 case IrOpcode::kUint64Mod:
827 case IrOpcode::kUint64LessThan: 827 case IrOpcode::kUint64LessThan:
828 case IrOpcode::kUint64LessThanOrEqual:
828 case IrOpcode::kFloat32Add: 829 case IrOpcode::kFloat32Add:
829 case IrOpcode::kFloat32Sub: 830 case IrOpcode::kFloat32Sub:
830 case IrOpcode::kFloat32Mul: 831 case IrOpcode::kFloat32Mul:
831 case IrOpcode::kFloat32Div: 832 case IrOpcode::kFloat32Div:
832 case IrOpcode::kFloat32Max: 833 case IrOpcode::kFloat32Max:
833 case IrOpcode::kFloat32Min: 834 case IrOpcode::kFloat32Min:
834 case IrOpcode::kFloat32Abs: 835 case IrOpcode::kFloat32Abs:
835 case IrOpcode::kFloat32Sqrt: 836 case IrOpcode::kFloat32Sqrt:
836 case IrOpcode::kFloat32Equal: 837 case IrOpcode::kFloat32Equal:
837 case IrOpcode::kFloat32LessThan: 838 case IrOpcode::kFloat32LessThan:
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
1130 // Check inputs for all nodes in the block. 1131 // Check inputs for all nodes in the block.
1131 for (size_t i = 0; i < block->NodeCount(); i++) { 1132 for (size_t i = 0; i < block->NodeCount(); i++) {
1132 Node* node = block->NodeAt(i); 1133 Node* node = block->NodeAt(i);
1133 CheckInputsDominate(schedule, block, node, static_cast<int>(i) - 1); 1134 CheckInputsDominate(schedule, block, node, static_cast<int>(i) - 1);
1134 } 1135 }
1135 } 1136 }
1136 } 1137 }
1137 } // namespace compiler 1138 } // namespace compiler
1138 } // namespace internal 1139 } // namespace internal
1139 } // namespace v8 1140 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | src/compiler/x64/instruction-selector-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698