OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 2141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2152 LInstruction* MarkAsCall( | 2152 LInstruction* MarkAsCall( |
2153 LInstruction* instr, | 2153 LInstruction* instr, |
2154 HInstruction* hinstr, | 2154 HInstruction* hinstr, |
2155 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); | 2155 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); |
2156 LInstruction* MarkAsSaveDoubles(LInstruction* instr); | 2156 LInstruction* MarkAsSaveDoubles(LInstruction* instr); |
2157 | 2157 |
2158 LInstruction* SetInstructionPendingDeoptimizationEnvironment( | 2158 LInstruction* SetInstructionPendingDeoptimizationEnvironment( |
2159 LInstruction* instr, int ast_id); | 2159 LInstruction* instr, int ast_id); |
2160 void ClearInstructionPendingDeoptimizationEnvironment(); | 2160 void ClearInstructionPendingDeoptimizationEnvironment(); |
2161 | 2161 |
2162 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env); | 2162 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env, |
| 2163 int* argument_index_accumulator); |
2163 | 2164 |
2164 void VisitInstruction(HInstruction* current); | 2165 void VisitInstruction(HInstruction* current); |
2165 | 2166 |
2166 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); | 2167 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); |
2167 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); | 2168 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); |
2168 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); | 2169 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); |
2169 LInstruction* DoArithmeticD(Token::Value op, | 2170 LInstruction* DoArithmeticD(Token::Value op, |
2170 HArithmeticBinaryOperation* instr); | 2171 HArithmeticBinaryOperation* instr); |
2171 LInstruction* DoArithmeticT(Token::Value op, | 2172 LInstruction* DoArithmeticT(Token::Value op, |
2172 HArithmeticBinaryOperation* instr); | 2173 HArithmeticBinaryOperation* instr); |
(...skipping 13 matching lines...) Expand all Loading... |
2186 | 2187 |
2187 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2188 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
2188 }; | 2189 }; |
2189 | 2190 |
2190 #undef DECLARE_HYDROGEN_ACCESSOR | 2191 #undef DECLARE_HYDROGEN_ACCESSOR |
2191 #undef DECLARE_CONCRETE_INSTRUCTION | 2192 #undef DECLARE_CONCRETE_INSTRUCTION |
2192 | 2193 |
2193 } } // namespace v8::internal | 2194 } } // namespace v8::internal |
2194 | 2195 |
2195 #endif // V8_ARM_LITHIUM_ARM_H_ | 2196 #endif // V8_ARM_LITHIUM_ARM_H_ |
OLD | NEW |