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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 Register scratch2); | 213 Register scratch2); |
214 void DoMathFloor(LUnaryMathOperation* instr); | 214 void DoMathFloor(LUnaryMathOperation* instr); |
215 void DoMathSqrt(LUnaryMathOperation* instr); | 215 void DoMathSqrt(LUnaryMathOperation* instr); |
216 | 216 |
217 // Support for recording safepoint and position information. | 217 // Support for recording safepoint and position information. |
218 void RecordSafepoint(LPointerMap* pointers, | 218 void RecordSafepoint(LPointerMap* pointers, |
219 Safepoint::Kind kind, | 219 Safepoint::Kind kind, |
220 int arguments, | 220 int arguments, |
221 int deoptimization_index); | 221 int deoptimization_index); |
222 void RecordSafepoint(LPointerMap* pointers, int deoptimization_index); | 222 void RecordSafepoint(LPointerMap* pointers, int deoptimization_index); |
| 223 void RecordSafepoint(int deoptimization_index); |
223 void RecordSafepointWithRegisters(LPointerMap* pointers, | 224 void RecordSafepointWithRegisters(LPointerMap* pointers, |
224 int arguments, | 225 int arguments, |
225 int deoptimization_index); | 226 int deoptimization_index); |
226 void RecordSafepointWithRegistersAndDoubles(LPointerMap* pointers, | 227 void RecordSafepointWithRegistersAndDoubles(LPointerMap* pointers, |
227 int arguments, | 228 int arguments, |
228 int deoptimization_index); | 229 int deoptimization_index); |
229 void RecordPosition(int position); | 230 void RecordPosition(int position); |
230 | 231 |
231 static Condition TokenToCondition(Token::Value op, bool is_unsigned); | 232 static Condition TokenToCondition(Token::Value op, bool is_unsigned); |
232 void EmitGoto(int block, LDeferredCode* deferred_stack_check = NULL); | 233 void EmitGoto(int block, LDeferredCode* deferred_stack_check = NULL); |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 private: | 307 private: |
307 LCodeGen* codegen_; | 308 LCodeGen* codegen_; |
308 Label entry_; | 309 Label entry_; |
309 Label exit_; | 310 Label exit_; |
310 Label* external_exit_; | 311 Label* external_exit_; |
311 }; | 312 }; |
312 | 313 |
313 } } // namespace v8::internal | 314 } } // namespace v8::internal |
314 | 315 |
315 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 316 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
OLD | NEW |