| Index: src/mips/lithium-mips.h
|
| diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h
|
| index 32db0dd43652096db87b511043463e0854098c6b..3e9430147f421514cadaa825b9b5d8dc06a19a1a 100644
|
| --- a/src/mips/lithium-mips.h
|
| +++ b/src/mips/lithium-mips.h
|
| @@ -49,6 +49,7 @@ class LCodeGen;
|
| #define LITHIUM_CONCRETE_INSTRUCTION_LIST(V) \
|
| V(AccessArgumentsAt) \
|
| V(AddI) \
|
| + V(AllocateObject) \
|
| V(Allocate) \
|
| V(ApplyArguments) \
|
| V(ArgumentsElements) \
|
| @@ -487,17 +488,44 @@ class LUnknownOSRValue: public LTemplateInstruction<1, 0, 0> {
|
| template<int I, int T>
|
| class LControlInstruction: public LTemplateInstruction<0, I, T> {
|
| public:
|
| + LControlInstruction() : false_label_(NULL), true_label_(NULL) { }
|
| +
|
| virtual bool IsControl() const { return true; }
|
|
|
| int SuccessorCount() { return hydrogen()->SuccessorCount(); }
|
| HBasicBlock* SuccessorAt(int i) { return hydrogen()->SuccessorAt(i); }
|
| - int true_block_id() { return hydrogen()->SuccessorAt(0)->block_id(); }
|
| - int false_block_id() { return hydrogen()->SuccessorAt(1)->block_id(); }
|
| +
|
| + int TrueDestination(LChunk* chunk) {
|
| + return chunk->LookupDestination(true_block_id());
|
| + }
|
| + int FalseDestination(LChunk* chunk) {
|
| + return chunk->LookupDestination(false_block_id());
|
| + }
|
| +
|
| + Label* TrueLabel(LChunk* chunk) {
|
| + if (true_label_ == NULL) {
|
| + true_label_ = chunk->GetAssemblyLabel(TrueDestination(chunk));
|
| + }
|
| + return true_label_;
|
| + }
|
| + Label* FalseLabel(LChunk* chunk) {
|
| + if (false_label_ == NULL) {
|
| + false_label_ = chunk->GetAssemblyLabel(FalseDestination(chunk));
|
| + }
|
| + return false_label_;
|
| + }
|
| +
|
| + protected:
|
| + int true_block_id() { return SuccessorAt(0)->block_id(); }
|
| + int false_block_id() { return SuccessorAt(1)->block_id(); }
|
|
|
| private:
|
| HControlInstruction* hydrogen() {
|
| return HControlInstruction::cast(this->hydrogen_value());
|
| }
|
| +
|
| + Label* false_label_;
|
| + Label* true_label_;
|
| };
|
|
|
|
|
| @@ -1215,7 +1243,7 @@ class LBranch: public LControlInstruction<1, 0> {
|
| };
|
|
|
|
|
| -class LCmpMapAndBranch: public LTemplateInstruction<0, 1, 1> {
|
| +class LCmpMapAndBranch: public LControlInstruction<1, 1> {
|
| public:
|
| LCmpMapAndBranch(LOperand* value, LOperand* temp) {
|
| inputs_[0] = value;
|
| @@ -1228,15 +1256,7 @@ class LCmpMapAndBranch: public LTemplateInstruction<0, 1, 1> {
|
| DECLARE_CONCRETE_INSTRUCTION(CmpMapAndBranch, "cmp-map-and-branch")
|
| DECLARE_HYDROGEN_ACCESSOR(CompareMap)
|
|
|
| - virtual bool IsControl() const { return true; }
|
| -
|
| Handle<Map> map() const { return hydrogen()->map(); }
|
| - int true_block_id() const {
|
| - return hydrogen()->FirstSuccessor()->block_id();
|
| - }
|
| - int false_block_id() const {
|
| - return hydrogen()->SecondSuccessor()->block_id();
|
| - }
|
| };
|
|
|
|
|
| @@ -2374,6 +2394,7 @@ class LCheckNonSmi: public LTemplateInstruction<0, 1, 0> {
|
| LOperand* value() { return inputs_[0]; }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(CheckNonSmi, "check-non-smi")
|
| + DECLARE_HYDROGEN_ACCESSOR(CheckHeapObject)
|
| };
|
|
|
|
|
| @@ -2417,6 +2438,21 @@ class LClampTToUint8: public LTemplateInstruction<1, 1, 1> {
|
| };
|
|
|
|
|
| +class LAllocateObject: public LTemplateInstruction<1, 1, 2> {
|
| + public:
|
| + LAllocateObject(LOperand* temp, LOperand* temp2) {
|
| + temps_[0] = temp;
|
| + temps_[1] = temp2;
|
| + }
|
| +
|
| + LOperand* temp() { return temps_[0]; }
|
| + LOperand* temp2() { return temps_[1]; }
|
| +
|
| + DECLARE_CONCRETE_INSTRUCTION(AllocateObject, "allocate-object")
|
| + DECLARE_HYDROGEN_ACCESSOR(AllocateObject)
|
| +};
|
| +
|
| +
|
| class LAllocate: public LTemplateInstruction<1, 2, 2> {
|
| public:
|
| LAllocate(LOperand* size, LOperand* temp1, LOperand* temp2) {
|
| @@ -2519,26 +2555,10 @@ class LDeleteProperty: public LTemplateInstruction<1, 2, 0> {
|
|
|
| class LOsrEntry: public LTemplateInstruction<0, 0, 0> {
|
| public:
|
| - LOsrEntry();
|
| + LOsrEntry() {}
|
|
|
| virtual bool HasInterestingComment(LCodeGen* gen) const { return false; }
|
| DECLARE_CONCRETE_INSTRUCTION(OsrEntry, "osr-entry")
|
| -
|
| - LOperand** SpilledRegisterArray() { return register_spills_; }
|
| - LOperand** SpilledDoubleRegisterArray() { return double_register_spills_; }
|
| -
|
| - void MarkSpilledRegister(int allocation_index, LOperand* spill_operand);
|
| - void MarkSpilledDoubleRegister(int allocation_index,
|
| - LOperand* spill_operand);
|
| -
|
| - private:
|
| - // Arrays of spill slot operands for registers with an assigned spill
|
| - // slot, i.e., that must also be restored to the spill slot on OSR entry.
|
| - // NULL if the register has no assigned spill slot. Indexed by allocation
|
| - // index.
|
| - LOperand* register_spills_[Register::kMaxNumAllocatableRegisters];
|
| - LOperand* double_register_spills_[
|
| - DoubleRegister::kMaxNumAllocatableRegisters];
|
| };
|
|
|
|
|
|
|