| Index: src/ia32/codegen-ia32.h
|
| ===================================================================
|
| --- src/ia32/codegen-ia32.h (revision 4259)
|
| +++ src/ia32/codegen-ia32.h (working copy)
|
| @@ -652,7 +652,7 @@
|
| void CodeForDoWhileConditionPosition(DoWhileStatement* stmt);
|
| void CodeForSourcePosition(int pos);
|
|
|
| - void SetTypeForStackSlot(Slot* slot, NumberInfo info);
|
| + void SetTypeForStackSlot(Slot* slot, TypeInfo info);
|
|
|
| #ifdef DEBUG
|
| // True if the registers are valid for entry to a block. There should
|
| @@ -736,7 +736,7 @@
|
| GenericBinaryOpStub(Token::Value op,
|
| OverwriteMode mode,
|
| GenericBinaryFlags flags,
|
| - NumberInfo operands_type)
|
| + TypeInfo operands_type)
|
| : op_(op),
|
| mode_(mode),
|
| flags_(flags),
|
| @@ -759,7 +759,7 @@
|
| args_in_registers_(ArgsInRegistersBits::decode(key)),
|
| args_reversed_(ArgsReversedBits::decode(key)),
|
| use_sse3_(SSE3Bits::decode(key)),
|
| - static_operands_type_(NumberInfo::ExpandedRepresentation(
|
| + static_operands_type_(TypeInfo::ExpandedRepresentation(
|
| StaticTypeInfoBits::decode(key))),
|
| runtime_operands_type_(runtime_operands_type),
|
| name_(NULL) {
|
| @@ -786,7 +786,7 @@
|
| bool use_sse3_;
|
|
|
| // Number type information of operands, determined by code generator.
|
| - NumberInfo static_operands_type_;
|
| + TypeInfo static_operands_type_;
|
|
|
| // Operand type information determined at runtime.
|
| BinaryOpIC::TypeInfo runtime_operands_type_;
|
| @@ -798,7 +798,7 @@
|
| #ifdef DEBUG
|
| void Print() {
|
| PrintF("GenericBinaryOpStub %d (op %s), "
|
| - "(mode %d, flags %d, registers %d, reversed %d, number_info %s)\n",
|
| + "(mode %d, flags %d, registers %d, reversed %d, type_info %s)\n",
|
| MinorKey(),
|
| Token::String(op_),
|
| static_cast<int>(mode_),
|
|
|