OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 308 matching lines...) Loading... |
319 void RecordSafepoint(Safepoint::DeoptMode mode); | 319 void RecordSafepoint(Safepoint::DeoptMode mode); |
320 void RecordSafepointWithRegisters(LPointerMap* pointers, | 320 void RecordSafepointWithRegisters(LPointerMap* pointers, |
321 int arguments, | 321 int arguments, |
322 Safepoint::DeoptMode mode); | 322 Safepoint::DeoptMode mode); |
323 void RecordPosition(int position); | 323 void RecordPosition(int position); |
324 | 324 |
325 static Condition TokenToCondition(Token::Value op, bool is_unsigned); | 325 static Condition TokenToCondition(Token::Value op, bool is_unsigned); |
326 void EmitGoto(int block); | 326 void EmitGoto(int block); |
327 template<class InstrType> | 327 template<class InstrType> |
328 void EmitBranch(InstrType instr, Condition cc); | 328 void EmitBranch(InstrType instr, Condition cc); |
| 329 template<class InstrType> |
| 330 void EmitFalseBranch(InstrType instr, Condition cc); |
329 void EmitNumberUntagD( | 331 void EmitNumberUntagD( |
330 Register input, | 332 Register input, |
331 Register temp, | 333 Register temp, |
332 XMMRegister result, | 334 XMMRegister result, |
333 bool allow_undefined_as_nan, | 335 bool allow_undefined_as_nan, |
334 bool deoptimize_on_minus_zero, | 336 bool deoptimize_on_minus_zero, |
335 LEnvironment* env, | 337 LEnvironment* env, |
336 NumberUntagDMode mode = NUMBER_CANDIDATE_IS_ANY_TAGGED); | 338 NumberUntagDMode mode = NUMBER_CANDIDATE_IS_ANY_TAGGED); |
337 | 339 |
338 void EmitNumberUntagDNoSSE2( | 340 void EmitNumberUntagDNoSSE2( |
(...skipping 165 matching lines...) Loading... |
504 LCodeGen* codegen_; | 506 LCodeGen* codegen_; |
505 Label entry_; | 507 Label entry_; |
506 Label exit_; | 508 Label exit_; |
507 Label* external_exit_; | 509 Label* external_exit_; |
508 int instruction_index_; | 510 int instruction_index_; |
509 }; | 511 }; |
510 | 512 |
511 } } // namespace v8::internal | 513 } } // namespace v8::internal |
512 | 514 |
513 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 515 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
OLD | NEW |