| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 void EmitIntegerMathAbs(LUnaryMathOperation* instr); | 207 void EmitIntegerMathAbs(LUnaryMathOperation* instr); |
| 208 void DoMathAbs(LUnaryMathOperation* instr); | 208 void DoMathAbs(LUnaryMathOperation* instr); |
| 209 void EmitVFPTruncate(VFPRoundingMode rounding_mode, | 209 void EmitVFPTruncate(VFPRoundingMode rounding_mode, |
| 210 SwVfpRegister result, | 210 SwVfpRegister result, |
| 211 DwVfpRegister double_input, | 211 DwVfpRegister double_input, |
| 212 Register scratch1, | 212 Register scratch1, |
| 213 Register scratch2); | 213 Register scratch2); |
| 214 void DoMathFloor(LUnaryMathOperation* instr); | 214 void DoMathFloor(LUnaryMathOperation* instr); |
| 215 void DoMathRound(LUnaryMathOperation* instr); | 215 void DoMathRound(LUnaryMathOperation* instr); |
| 216 void DoMathSqrt(LUnaryMathOperation* instr); | 216 void DoMathSqrt(LUnaryMathOperation* instr); |
| 217 void DoMathLog(LUnaryMathOperation* instr); |
| 218 void DoMathCos(LUnaryMathOperation* instr); |
| 219 void DoMathSin(LUnaryMathOperation* instr); |
| 217 | 220 |
| 218 // Support for recording safepoint and position information. | 221 // Support for recording safepoint and position information. |
| 219 void RecordSafepoint(LPointerMap* pointers, | 222 void RecordSafepoint(LPointerMap* pointers, |
| 220 Safepoint::Kind kind, | 223 Safepoint::Kind kind, |
| 221 int arguments, | 224 int arguments, |
| 222 int deoptimization_index); | 225 int deoptimization_index); |
| 223 void RecordSafepoint(LPointerMap* pointers, int deoptimization_index); | 226 void RecordSafepoint(LPointerMap* pointers, int deoptimization_index); |
| 224 void RecordSafepoint(int deoptimization_index); | 227 void RecordSafepoint(int deoptimization_index); |
| 225 void RecordSafepointWithRegisters(LPointerMap* pointers, | 228 void RecordSafepointWithRegisters(LPointerMap* pointers, |
| 226 int arguments, | 229 int arguments, |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 private: | 311 private: |
| 309 LCodeGen* codegen_; | 312 LCodeGen* codegen_; |
| 310 Label entry_; | 313 Label entry_; |
| 311 Label exit_; | 314 Label exit_; |
| 312 Label* external_exit_; | 315 Label* external_exit_; |
| 313 }; | 316 }; |
| 314 | 317 |
| 315 } } // namespace v8::internal | 318 } } // namespace v8::internal |
| 316 | 319 |
| 317 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 320 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| OLD | NEW |