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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 void DoMathAbs(LUnaryMathOperation* instr); | 191 void DoMathAbs(LUnaryMathOperation* instr); |
192 void DoMathFloor(LUnaryMathOperation* instr); | 192 void DoMathFloor(LUnaryMathOperation* instr); |
193 void DoMathRound(LUnaryMathOperation* instr); | 193 void DoMathRound(LUnaryMathOperation* instr); |
194 void DoMathSqrt(LUnaryMathOperation* instr); | 194 void DoMathSqrt(LUnaryMathOperation* instr); |
195 void DoMathPowHalf(LUnaryMathOperation* instr); | 195 void DoMathPowHalf(LUnaryMathOperation* instr); |
196 void DoMathLog(LUnaryMathOperation* instr); | 196 void DoMathLog(LUnaryMathOperation* instr); |
197 void DoMathCos(LUnaryMathOperation* instr); | 197 void DoMathCos(LUnaryMathOperation* instr); |
198 void DoMathSin(LUnaryMathOperation* instr); | 198 void DoMathSin(LUnaryMathOperation* instr); |
199 | 199 |
200 // Support for recording safepoint and position information. | 200 // Support for recording safepoint and position information. |
| 201 void RecordSafepoint(LPointerMap* pointers, |
| 202 Safepoint::Kind kind, |
| 203 int arguments, |
| 204 int deoptimization_index); |
201 void RecordSafepoint(LPointerMap* pointers, int deoptimization_index); | 205 void RecordSafepoint(LPointerMap* pointers, int deoptimization_index); |
202 void RecordSafepointWithRegisters(LPointerMap* pointers, | 206 void RecordSafepointWithRegisters(LPointerMap* pointers, |
203 int arguments, | 207 int arguments, |
204 int deoptimization_index); | 208 int deoptimization_index); |
205 void RecordPosition(int position); | 209 void RecordPosition(int position); |
206 | 210 |
207 static Condition TokenToCondition(Token::Value op, bool is_unsigned); | 211 static Condition TokenToCondition(Token::Value op, bool is_unsigned); |
208 void EmitGoto(int block, LDeferredCode* deferred_stack_check = NULL); | 212 void EmitGoto(int block, LDeferredCode* deferred_stack_check = NULL); |
209 void EmitBranch(int left_block, int right_block, Condition cc); | 213 void EmitBranch(int left_block, int right_block, Condition cc); |
210 void EmitCmpI(LOperand* left, LOperand* right); | 214 void EmitCmpI(LOperand* left, LOperand* right); |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 private: | 280 private: |
277 LCodeGen* codegen_; | 281 LCodeGen* codegen_; |
278 Label entry_; | 282 Label entry_; |
279 Label exit_; | 283 Label exit_; |
280 Label* external_exit_; | 284 Label* external_exit_; |
281 }; | 285 }; |
282 | 286 |
283 } } // namespace v8::internal | 287 } } // namespace v8::internal |
284 | 288 |
285 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 289 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
OLD | NEW |