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

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

Issue 1905813003: [turbofan] Introduce dedicated BitcastWordToTagged machine operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Small fix. Created 4 years, 8 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') | 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/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 957 matching lines...) Expand 10 before | Expand all | Expand 10 after
968 case IrOpcode::kRoundInt64ToFloat64: 968 case IrOpcode::kRoundInt64ToFloat64:
969 case IrOpcode::kRoundUint32ToFloat32: 969 case IrOpcode::kRoundUint32ToFloat32:
970 case IrOpcode::kRoundUint64ToFloat64: 970 case IrOpcode::kRoundUint64ToFloat64:
971 case IrOpcode::kRoundUint64ToFloat32: 971 case IrOpcode::kRoundUint64ToFloat32:
972 case IrOpcode::kTruncateFloat64ToFloat32: 972 case IrOpcode::kTruncateFloat64ToFloat32:
973 case IrOpcode::kTruncateFloat64ToInt32: 973 case IrOpcode::kTruncateFloat64ToInt32:
974 case IrOpcode::kBitcastFloat32ToInt32: 974 case IrOpcode::kBitcastFloat32ToInt32:
975 case IrOpcode::kBitcastFloat64ToInt64: 975 case IrOpcode::kBitcastFloat64ToInt64:
976 case IrOpcode::kBitcastInt32ToFloat32: 976 case IrOpcode::kBitcastInt32ToFloat32:
977 case IrOpcode::kBitcastInt64ToFloat64: 977 case IrOpcode::kBitcastInt64ToFloat64:
978 case IrOpcode::kBitcastWordToTagged:
978 case IrOpcode::kChangeInt32ToInt64: 979 case IrOpcode::kChangeInt32ToInt64:
979 case IrOpcode::kChangeUint32ToUint64: 980 case IrOpcode::kChangeUint32ToUint64:
980 case IrOpcode::kChangeInt32ToFloat64: 981 case IrOpcode::kChangeInt32ToFloat64:
981 case IrOpcode::kChangeUint32ToFloat64: 982 case IrOpcode::kChangeUint32ToFloat64:
982 case IrOpcode::kChangeFloat32ToFloat64: 983 case IrOpcode::kChangeFloat32ToFloat64:
983 case IrOpcode::kChangeFloat64ToInt32: 984 case IrOpcode::kChangeFloat64ToInt32:
984 case IrOpcode::kChangeFloat64ToUint32: 985 case IrOpcode::kChangeFloat64ToUint32:
985 case IrOpcode::kTruncateFloat64ToUint32: 986 case IrOpcode::kTruncateFloat64ToUint32:
986 case IrOpcode::kTruncateFloat32ToInt32: 987 case IrOpcode::kTruncateFloat32ToInt32:
987 case IrOpcode::kTruncateFloat32ToUint32: 988 case IrOpcode::kTruncateFloat32ToUint32:
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
1328 replacement->op()->EffectOutputCount() > 0); 1329 replacement->op()->EffectOutputCount() > 0);
1329 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1330 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1330 replacement->opcode() == IrOpcode::kFrameState); 1331 replacement->opcode() == IrOpcode::kFrameState);
1331 } 1332 }
1332 1333
1333 #endif // DEBUG 1334 #endif // DEBUG
1334 1335
1335 } // namespace compiler 1336 } // namespace compiler
1336 } // namespace internal 1337 } // namespace internal
1337 } // namespace v8 1338 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698