| OLD | NEW |
| 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/common-operator.h" | 5 #include "src/compiler/common-operator.h" |
| 6 #include "src/compiler/graph.h" | 6 #include "src/compiler/graph.h" |
| 7 #include "src/compiler/instruction.h" | 7 #include "src/compiler/instruction.h" |
| 8 | 8 |
| 9 namespace v8 { | 9 namespace v8 { |
| 10 namespace internal { | 10 namespace internal { |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 case kUnsignedGreaterThanOrEqual: | 245 case kUnsignedGreaterThanOrEqual: |
| 246 return os << "unsigned greater than or equal"; | 246 return os << "unsigned greater than or equal"; |
| 247 case kUnsignedLessThanOrEqual: | 247 case kUnsignedLessThanOrEqual: |
| 248 return os << "unsigned less than or equal"; | 248 return os << "unsigned less than or equal"; |
| 249 case kUnsignedGreaterThan: | 249 case kUnsignedGreaterThan: |
| 250 return os << "unsigned greater than"; | 250 return os << "unsigned greater than"; |
| 251 case kUnorderedEqual: | 251 case kUnorderedEqual: |
| 252 return os << "unordered equal"; | 252 return os << "unordered equal"; |
| 253 case kUnorderedNotEqual: | 253 case kUnorderedNotEqual: |
| 254 return os << "unordered not equal"; | 254 return os << "unordered not equal"; |
| 255 case kUnorderedLessThan: | |
| 256 return os << "unordered less than"; | |
| 257 case kUnorderedGreaterThanOrEqual: | |
| 258 return os << "unordered greater than or equal"; | |
| 259 case kUnorderedLessThanOrEqual: | |
| 260 return os << "unordered less than or equal"; | |
| 261 case kUnorderedGreaterThan: | |
| 262 return os << "unordered greater than"; | |
| 263 case kOverflow: | 255 case kOverflow: |
| 264 return os << "overflow"; | 256 return os << "overflow"; |
| 265 case kNotOverflow: | 257 case kNotOverflow: |
| 266 return os << "not overflow"; | 258 return os << "not overflow"; |
| 267 } | 259 } |
| 268 UNREACHABLE(); | 260 UNREACHABLE(); |
| 269 return os; | 261 return os; |
| 270 } | 262 } |
| 271 | 263 |
| 272 | 264 |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 os << " B" << succ_block->id(); | 693 os << " B" << succ_block->id(); |
| 702 } | 694 } |
| 703 os << "\n"; | 695 os << "\n"; |
| 704 } | 696 } |
| 705 return os; | 697 return os; |
| 706 } | 698 } |
| 707 | 699 |
| 708 } // namespace compiler | 700 } // namespace compiler |
| 709 } // namespace internal | 701 } // namespace internal |
| 710 } // namespace v8 | 702 } // namespace v8 |
| OLD | NEW |