| Index: src/hydrogen-instructions.cc
|
| ===================================================================
|
| --- src/hydrogen-instructions.cc (revision 7649)
|
| +++ src/hydrogen-instructions.cc (working copy)
|
| @@ -317,6 +317,16 @@
|
| }
|
|
|
|
|
| +const char* HValue::Mnemonic() const {
|
| + switch (opcode()) {
|
| +#define MAKE_CASE(type) case k##type: return #type;
|
| + HYDROGEN_CONCRETE_INSTRUCTION_LIST(MAKE_CASE)
|
| +#undef MAKE_CASE
|
| + default: return "";
|
| + }
|
| +}
|
| +
|
| +
|
| void HValue::SetOperandAt(int index, HValue* value) {
|
| ASSERT(value == NULL || !value->representation().IsNone());
|
| RegisterUse(index, value);
|
|
|