| // Copyright 2014 the V8 project authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #include "src/compiler/opcodes.h" |
| #include "src/base/macros.h" |
| char const* const kMnemonics[] = { |
| #define DECLARE_MNEMONIC(x, ...) #x, |
| ALL_OP_LIST(DECLARE_MNEMONIC) |
| char const* IrOpcode::Mnemonic(Value value) { |
| DCHECK_LE(0, static_cast<int>(value)); |
| DCHECK_LE(static_cast<int>(value), IrOpcode::Value::kLast); |
| size_t const n = std::min<size_t>(value, arraysize(kMnemonics) - 1); |
| std::ostream& operator<<(std::ostream& os, IrOpcode::Value opcode) { |
| return os << IrOpcode::Mnemonic(opcode); |