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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 void RecordSafepointWithRegisters(LPointerMap* pointers, | 311 void RecordSafepointWithRegisters(LPointerMap* pointers, |
313 int arguments, | 312 int arguments, |
314 Safepoint::DeoptMode mode); | 313 Safepoint::DeoptMode mode); |
315 void RecordSafepointWithRegistersAndDoubles(LPointerMap* pointers, | 314 void RecordSafepointWithRegistersAndDoubles(LPointerMap* pointers, |
316 int arguments, | 315 int arguments, |
317 Safepoint::DeoptMode mode); | 316 Safepoint::DeoptMode mode); |
318 void RecordPosition(int position); | 317 void RecordPosition(int position); |
319 | 318 |
320 static Condition TokenToCondition(Token::Value op, bool is_unsigned); | 319 static Condition TokenToCondition(Token::Value op, bool is_unsigned); |
321 void EmitGoto(int block); | 320 void EmitGoto(int block); |
322 void EmitBranch(int left_block, int right_block, Condition cc); | 321 template<class InstrType> |
| 322 void EmitBranch(InstrType instr, Condition cc); |
323 void EmitNumberUntagD(Register input, | 323 void EmitNumberUntagD(Register input, |
324 DwVfpRegister result, | 324 DwVfpRegister 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); | 328 NumberUntagDMode mode); |
329 | 329 |
330 // Emits optimized code for typeof x == "y". Modifies input register. | 330 // Emits optimized code for typeof x == "y". Modifies input register. |
331 // Returns the condition on which a final split to | 331 // Returns the condition on which a final split to |
332 // true and false label should be made, to optimize fallthrough. | 332 // true and false label should be made, to optimize fallthrough. |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
490 LCodeGen* codegen_; | 490 LCodeGen* codegen_; |
491 Label entry_; | 491 Label entry_; |
492 Label exit_; | 492 Label exit_; |
493 Label* external_exit_; | 493 Label* external_exit_; |
494 int instruction_index_; | 494 int instruction_index_; |
495 }; | 495 }; |
496 | 496 |
497 } } // namespace v8::internal | 497 } } // namespace v8::internal |
498 | 498 |
499 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 499 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
OLD | NEW |