Chromium Code Reviews| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 76 } | 76 } |
| 77 | 77 |
| 78 // Simple accessors. | 78 // Simple accessors. |
| 79 MacroAssembler* masm() const { return masm_; } | 79 MacroAssembler* masm() const { return masm_; } |
| 80 CompilationInfo* info() const { return info_; } | 80 CompilationInfo* info() const { return info_; } |
| 81 Isolate* isolate() const { return info_->isolate(); } | 81 Isolate* isolate() const { return info_->isolate(); } |
| 82 Factory* factory() const { return isolate()->factory(); } | 82 Factory* factory() const { return isolate()->factory(); } |
| 83 Heap* heap() const { return isolate()->heap(); } | 83 Heap* heap() const { return isolate()->heap(); } |
| 84 Zone* zone() const { return zone_; } | 84 Zone* zone() const { return zone_; } |
| 85 | 85 |
| 86 // TODO(svenpanne) Use this consistently. | |
| 87 int LookupDestination(int block_id) const { | 86 int LookupDestination(int block_id) const { |
| 88 return chunk()->LookupDestination(block_id); | 87 return chunk()->LookupDestination(block_id); |
| 89 } | 88 } |
| 90 | 89 |
| 91 bool IsNextEmittedBlock(int block_id) const { | 90 bool IsNextEmittedBlock(int block_id) const { |
| 92 return LookupDestination(block_id) == GetNextEmittedBlock(); | 91 return LookupDestination(block_id) == GetNextEmittedBlock(); |
| 93 } | 92 } |
| 94 | 93 |
| 95 bool NeedsEagerFrame() const { | 94 bool NeedsEagerFrame() const { |
| 96 return GetStackSlotCount() > 0 || | 95 return GetStackSlotCount() > 0 || |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 310 Safepoint::DeoptMode mode); | 309 Safepoint::DeoptMode mode); |
| 311 void RecordSafepoint(LPointerMap* pointers, Safepoint::DeoptMode mode); | 310 void RecordSafepoint(LPointerMap* pointers, Safepoint::DeoptMode mode); |
| 312 void RecordSafepoint(Safepoint::DeoptMode mode); | 311 void RecordSafepoint(Safepoint::DeoptMode mode); |
| 313 void RecordSafepointWithRegisters(LPointerMap* pointers, | 312 void RecordSafepointWithRegisters(LPointerMap* pointers, |
| 314 int arguments, | 313 int arguments, |
| 315 Safepoint::DeoptMode mode); | 314 Safepoint::DeoptMode mode); |
| 316 void RecordPosition(int position); | 315 void RecordPosition(int position); |
| 317 | 316 |
| 318 static Condition TokenToCondition(Token::Value op, bool is_unsigned); | 317 static Condition TokenToCondition(Token::Value op, bool is_unsigned); |
| 319 void EmitGoto(int block); | 318 void EmitGoto(int block); |
| 320 void EmitBranch(int left_block, int right_block, Condition cc); | 319 template<class InstrType> |
| 320 void EmitBranch(InstrType instr, Condition cc); | |
|
Jakob Kummerow
2013/06/18 09:35:38
Instead of templatizing this, can you change the s
| |
| 321 void EmitNumberUntagD( | 321 void EmitNumberUntagD( |
| 322 Register input, | 322 Register input, |
| 323 Register temp, | 323 Register temp, |
| 324 XMMRegister result, | 324 XMMRegister result, |
| 325 bool allow_undefined_as_nan, | 325 bool allow_undefined_as_nan, |
| 326 bool deoptimize_on_minus_zero, | 326 bool deoptimize_on_minus_zero, |
| 327 LEnvironment* env, | 327 LEnvironment* env, |
| 328 NumberUntagDMode mode = NUMBER_CANDIDATE_IS_ANY_TAGGED); | 328 NumberUntagDMode mode = NUMBER_CANDIDATE_IS_ANY_TAGGED); |
| 329 | 329 |
| 330 void EmitNumberUntagDNoSSE2( | 330 void EmitNumberUntagDNoSSE2( |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 475 LCodeGen* codegen_; | 475 LCodeGen* codegen_; |
| 476 Label entry_; | 476 Label entry_; |
| 477 Label exit_; | 477 Label exit_; |
| 478 Label* external_exit_; | 478 Label* external_exit_; |
| 479 int instruction_index_; | 479 int instruction_index_; |
| 480 }; | 480 }; |
| 481 | 481 |
| 482 } } // namespace v8::internal | 482 } } // namespace v8::internal |
| 483 | 483 |
| 484 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 484 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |