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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 } | 72 } |
73 | 73 |
74 // Simple accessors. | 74 // Simple accessors. |
75 MacroAssembler* masm() const { return masm_; } | 75 MacroAssembler* masm() const { return masm_; } |
76 CompilationInfo* info() const { return info_; } | 76 CompilationInfo* info() const { return info_; } |
77 Isolate* isolate() const { return info_->isolate(); } | 77 Isolate* isolate() const { return info_->isolate(); } |
78 Factory* factory() const { return isolate()->factory(); } | 78 Factory* factory() const { return isolate()->factory(); } |
79 Heap* heap() const { return isolate()->heap(); } | 79 Heap* heap() const { return isolate()->heap(); } |
80 Zone* zone() const { return zone_; } | 80 Zone* zone() const { return zone_; } |
81 | 81 |
82 // TODO(svenpanne) Use this consistently. | |
83 int LookupDestination(int block_id) const { | 82 int LookupDestination(int block_id) const { |
84 return chunk()->LookupDestination(block_id); | 83 return chunk()->LookupDestination(block_id); |
85 } | 84 } |
86 | 85 |
87 bool IsNextEmittedBlock(int block_id) const { | 86 bool IsNextEmittedBlock(int block_id) const { |
88 return LookupDestination(block_id) == GetNextEmittedBlock(); | 87 return LookupDestination(block_id) == GetNextEmittedBlock(); |
89 } | 88 } |
90 | 89 |
91 bool NeedsEagerFrame() const { | 90 bool NeedsEagerFrame() const { |
92 return GetStackSlotCount() > 0 || | 91 return GetStackSlotCount() > 0 || |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 Safepoint::DeoptMode mode); | 274 Safepoint::DeoptMode mode); |
276 void RecordSafepoint(LPointerMap* pointers, Safepoint::DeoptMode mode); | 275 void RecordSafepoint(LPointerMap* pointers, Safepoint::DeoptMode mode); |
277 void RecordSafepoint(Safepoint::DeoptMode mode); | 276 void RecordSafepoint(Safepoint::DeoptMode mode); |
278 void RecordSafepointWithRegisters(LPointerMap* pointers, | 277 void RecordSafepointWithRegisters(LPointerMap* pointers, |
279 int arguments, | 278 int arguments, |
280 Safepoint::DeoptMode mode); | 279 Safepoint::DeoptMode mode); |
281 void RecordPosition(int position); | 280 void RecordPosition(int position); |
282 | 281 |
283 static Condition TokenToCondition(Token::Value op, bool is_unsigned); | 282 static Condition TokenToCondition(Token::Value op, bool is_unsigned); |
284 void EmitGoto(int block); | 283 void EmitGoto(int block); |
285 void EmitBranch(int left_block, int right_block, Condition cc); | 284 template<class InstrType> |
| 285 void EmitBranch(InstrType instr, Condition cc); |
286 void EmitNumberUntagD( | 286 void EmitNumberUntagD( |
287 Register input, | 287 Register input, |
288 XMMRegister result, | 288 XMMRegister result, |
289 bool allow_undefined_as_nan, | 289 bool allow_undefined_as_nan, |
290 bool deoptimize_on_minus_zero, | 290 bool deoptimize_on_minus_zero, |
291 LEnvironment* env, | 291 LEnvironment* env, |
292 NumberUntagDMode mode = NUMBER_CANDIDATE_IS_ANY_TAGGED); | 292 NumberUntagDMode mode = NUMBER_CANDIDATE_IS_ANY_TAGGED); |
293 | 293 |
294 // Emits optimized code for typeof x == "y". Modifies input register. | 294 // Emits optimized code for typeof x == "y". Modifies input register. |
295 // Returns the condition on which a final split to | 295 // Returns the condition on which a final split to |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 LCodeGen* codegen_; | 425 LCodeGen* codegen_; |
426 Label entry_; | 426 Label entry_; |
427 Label exit_; | 427 Label exit_; |
428 Label* external_exit_; | 428 Label* external_exit_; |
429 int instruction_index_; | 429 int instruction_index_; |
430 }; | 430 }; |
431 | 431 |
432 } } // namespace v8::internal | 432 } } // namespace v8::internal |
433 | 433 |
434 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 434 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
OLD | NEW |