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 2823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2834 // cannot deoptimize eagerly and we do not attach environment to this | 2834 // cannot deoptimize eagerly and we do not attach environment to this |
2835 // instruction. | 2835 // instruction. |
2836 LInstruction* MarkAsCall( | 2836 LInstruction* MarkAsCall( |
2837 LInstruction* instr, | 2837 LInstruction* instr, |
2838 HInstruction* hinstr, | 2838 HInstruction* hinstr, |
2839 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); | 2839 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); |
2840 | 2840 |
2841 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env, | 2841 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env, |
2842 int* argument_index_accumulator, | 2842 int* argument_index_accumulator, |
2843 ZoneList<HValue*>* objects_to_materialize); | 2843 ZoneList<HValue*>* objects_to_materialize); |
| 2844 void AddObjectToMaterialize(HValue* value, |
| 2845 ZoneList<HValue*>* objects_to_materialize, |
| 2846 LEnvironment* result); |
2844 | 2847 |
2845 void VisitInstruction(HInstruction* current); | 2848 void VisitInstruction(HInstruction* current); |
2846 | 2849 |
2847 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); | 2850 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); |
2848 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); | 2851 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); |
2849 LInstruction* DoArithmeticD(Token::Value op, | 2852 LInstruction* DoArithmeticD(Token::Value op, |
2850 HArithmeticBinaryOperation* instr); | 2853 HArithmeticBinaryOperation* instr); |
2851 LInstruction* DoArithmeticT(Token::Value op, | 2854 LInstruction* DoArithmeticT(Token::Value op, |
2852 HBinaryOperation* instr); | 2855 HBinaryOperation* instr); |
2853 | 2856 |
(...skipping 13 matching lines...) Expand all Loading... |
2867 | 2870 |
2868 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2871 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
2869 }; | 2872 }; |
2870 | 2873 |
2871 #undef DECLARE_HYDROGEN_ACCESSOR | 2874 #undef DECLARE_HYDROGEN_ACCESSOR |
2872 #undef DECLARE_CONCRETE_INSTRUCTION | 2875 #undef DECLARE_CONCRETE_INSTRUCTION |
2873 | 2876 |
2874 } } // namespace v8::internal | 2877 } } // namespace v8::internal |
2875 | 2878 |
2876 #endif // V8_ARM_LITHIUM_ARM_H_ | 2879 #endif // V8_ARM_LITHIUM_ARM_H_ |
OLD | NEW |