OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 2672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2683 | 2683 |
2684 // By default we assume that instruction sequences generated for calls | 2684 // By default we assume that instruction sequences generated for calls |
2685 // cannot deoptimize eagerly and we do not attach environment to this | 2685 // cannot deoptimize eagerly and we do not attach environment to this |
2686 // instruction. | 2686 // instruction. |
2687 LInstruction* MarkAsCall( | 2687 LInstruction* MarkAsCall( |
2688 LInstruction* instr, | 2688 LInstruction* instr, |
2689 HInstruction* hinstr, | 2689 HInstruction* hinstr, |
2690 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); | 2690 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); |
2691 | 2691 |
2692 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env, | 2692 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env, |
2693 int* argument_index_accumulator); | 2693 int* argument_index_accumulator, |
| 2694 ZoneList<HValue*>* objects_to_materialize); |
2694 | 2695 |
2695 void VisitInstruction(HInstruction* current); | 2696 void VisitInstruction(HInstruction* current); |
2696 | 2697 |
2697 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); | 2698 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); |
2698 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); | 2699 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); |
2699 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); | 2700 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); |
2700 LInstruction* DoArithmeticD(Token::Value op, | 2701 LInstruction* DoArithmeticD(Token::Value op, |
2701 HArithmeticBinaryOperation* instr); | 2702 HArithmeticBinaryOperation* instr); |
2702 LInstruction* DoArithmeticT(Token::Value op, | 2703 LInstruction* DoArithmeticT(Token::Value op, |
2703 HArithmeticBinaryOperation* instr); | 2704 HArithmeticBinaryOperation* instr); |
(...skipping 14 matching lines...) Expand all Loading... |
2718 | 2719 |
2719 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2720 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
2720 }; | 2721 }; |
2721 | 2722 |
2722 #undef DECLARE_HYDROGEN_ACCESSOR | 2723 #undef DECLARE_HYDROGEN_ACCESSOR |
2723 #undef DECLARE_CONCRETE_INSTRUCTION | 2724 #undef DECLARE_CONCRETE_INSTRUCTION |
2724 | 2725 |
2725 } } // namespace v8::internal | 2726 } } // namespace v8::internal |
2726 | 2727 |
2727 #endif // V8_MIPS_LITHIUM_MIPS_H_ | 2728 #endif // V8_MIPS_LITHIUM_MIPS_H_ |
OLD | NEW |