| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 | 202 |
| 203 Register ToRegister(int index) const; | 203 Register ToRegister(int index) const; |
| 204 DoubleRegister ToDoubleRegister(int index) const; | 204 DoubleRegister ToDoubleRegister(int index) const; |
| 205 | 205 |
| 206 // Specific math operations - used from DoUnaryMathOperation. | 206 // Specific math operations - used from DoUnaryMathOperation. |
| 207 void EmitIntegerMathAbs(LUnaryMathOperation* instr); | 207 void EmitIntegerMathAbs(LUnaryMathOperation* instr); |
| 208 void DoMathAbs(LUnaryMathOperation* instr); | 208 void DoMathAbs(LUnaryMathOperation* instr); |
| 209 void DoMathFloor(LUnaryMathOperation* instr); | 209 void DoMathFloor(LUnaryMathOperation* instr); |
| 210 void DoMathRound(LUnaryMathOperation* instr); | 210 void DoMathRound(LUnaryMathOperation* instr); |
| 211 void DoMathSqrt(LUnaryMathOperation* instr); | 211 void DoMathSqrt(LUnaryMathOperation* instr); |
| 212 void DoMathLog(LUnaryMathOperation* instr); |
| 213 void DoMathCos(LUnaryMathOperation* instr); |
| 214 void DoMathSin(LUnaryMathOperation* instr); |
| 212 | 215 |
| 213 // Support for recording safepoint and position information. | 216 // Support for recording safepoint and position information. |
| 214 void RecordSafepoint(LPointerMap* pointers, | 217 void RecordSafepoint(LPointerMap* pointers, |
| 215 Safepoint::Kind kind, | 218 Safepoint::Kind kind, |
| 216 int arguments, | 219 int arguments, |
| 217 int deoptimization_index); | 220 int deoptimization_index); |
| 218 void RecordSafepoint(LPointerMap* pointers, int deoptimization_index); | 221 void RecordSafepoint(LPointerMap* pointers, int deoptimization_index); |
| 219 void RecordSafepoint(int deoptimization_index); | 222 void RecordSafepoint(int deoptimization_index); |
| 220 void RecordSafepointWithRegisters(LPointerMap* pointers, | 223 void RecordSafepointWithRegisters(LPointerMap* pointers, |
| 221 int arguments, | 224 int arguments, |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 private: | 306 private: |
| 304 LCodeGen* codegen_; | 307 LCodeGen* codegen_; |
| 305 Label entry_; | 308 Label entry_; |
| 306 Label exit_; | 309 Label exit_; |
| 307 Label* external_exit_; | 310 Label* external_exit_; |
| 308 }; | 311 }; |
| 309 | 312 |
| 310 } } // namespace v8::internal | 313 } } // namespace v8::internal |
| 311 | 314 |
| 312 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 315 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| OLD | NEW |