| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 void DoMathAbs(LUnaryMathOperation* instr); | 185 void DoMathAbs(LUnaryMathOperation* instr); |
| 186 void DoMathFloor(LUnaryMathOperation* instr); | 186 void DoMathFloor(LUnaryMathOperation* instr); |
| 187 void DoMathRound(LUnaryMathOperation* instr); | 187 void DoMathRound(LUnaryMathOperation* instr); |
| 188 void DoMathSqrt(LUnaryMathOperation* instr); | 188 void DoMathSqrt(LUnaryMathOperation* instr); |
| 189 void DoMathPowHalf(LUnaryMathOperation* instr); | 189 void DoMathPowHalf(LUnaryMathOperation* instr); |
| 190 void DoMathLog(LUnaryMathOperation* instr); | 190 void DoMathLog(LUnaryMathOperation* instr); |
| 191 void DoMathCos(LUnaryMathOperation* instr); | 191 void DoMathCos(LUnaryMathOperation* instr); |
| 192 void DoMathSin(LUnaryMathOperation* instr); | 192 void DoMathSin(LUnaryMathOperation* instr); |
| 193 | 193 |
| 194 // Support for recording safepoint and position information. | 194 // Support for recording safepoint and position information. |
| 195 void RecordSafepoint(LPointerMap* pointers, |
| 196 Safepoint::Kind kind, |
| 197 int arguments, |
| 198 int deoptimization_index); |
| 195 void RecordSafepoint(LPointerMap* pointers, int deoptimization_index); | 199 void RecordSafepoint(LPointerMap* pointers, int deoptimization_index); |
| 196 void RecordSafepointWithRegisters(LPointerMap* pointers, | 200 void RecordSafepointWithRegisters(LPointerMap* pointers, |
| 197 int arguments, | 201 int arguments, |
| 198 int deoptimization_index); | 202 int deoptimization_index); |
| 199 void RecordPosition(int position); | 203 void RecordPosition(int position); |
| 200 | 204 |
| 201 static Condition TokenToCondition(Token::Value op, bool is_unsigned); | 205 static Condition TokenToCondition(Token::Value op, bool is_unsigned); |
| 202 void EmitGoto(int block, LDeferredCode* deferred_stack_check = NULL); | 206 void EmitGoto(int block, LDeferredCode* deferred_stack_check = NULL); |
| 203 void EmitBranch(int left_block, int right_block, Condition cc); | 207 void EmitBranch(int left_block, int right_block, Condition cc); |
| 204 void EmitCmpI(LOperand* left, LOperand* right); | 208 void EmitCmpI(LOperand* left, LOperand* right); |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 private: | 272 private: |
| 269 LCodeGen* codegen_; | 273 LCodeGen* codegen_; |
| 270 Label entry_; | 274 Label entry_; |
| 271 Label exit_; | 275 Label exit_; |
| 272 Label* external_exit_; | 276 Label* external_exit_; |
| 273 }; | 277 }; |
| 274 | 278 |
| 275 } } // namespace v8::internal | 279 } } // namespace v8::internal |
| 276 | 280 |
| 277 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 281 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
| OLD | NEW |