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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 __ Push(ra, fp, cp); | 155 __ Push(ra, fp, cp); |
156 __ Push(Smi::FromInt(StackFrame::STUB)); | 156 __ Push(Smi::FromInt(StackFrame::STUB)); |
157 // Adjust FP to point to saved FP. | 157 // Adjust FP to point to saved FP. |
158 __ Addu(fp, sp, Operand(2 * kPointerSize)); | 158 __ Addu(fp, sp, Operand(2 * kPointerSize)); |
159 } else { | 159 } else { |
160 // The following three instructions must remain together and unmodified | 160 // The following three instructions must remain together and unmodified |
161 // for code aging to work properly. | 161 // for code aging to work properly. |
162 __ Push(ra, fp, cp, a1); | 162 __ Push(ra, fp, cp, a1); |
163 // Add unused nop to ensure prologue sequence is identical for | 163 // Add unused nop to ensure prologue sequence is identical for |
164 // full-codegen and lithium-codegen. | 164 // full-codegen and lithium-codegen. |
165 __ nop(Assembler::CODE_AGE_SEQUENCE_NOP); | 165 __ nop(isolate()->is_memory_constrained() ? |
| 166 Assembler::CODE_AGE_PRE_AGED_SEQUENCE_NOP : |
| 167 Assembler::CODE_AGE_YOUNG_SEQUENCE_NOP); |
166 // Adj. FP to point to saved FP. | 168 // Adj. FP to point to saved FP. |
167 __ Addu(fp, sp, Operand(2 * kPointerSize)); | 169 __ Addu(fp, sp, Operand(2 * kPointerSize)); |
168 } | 170 } |
169 frame_is_built_ = true; | 171 frame_is_built_ = true; |
170 info_->AddNoFrameRange(0, masm_->pc_offset()); | 172 info_->AddNoFrameRange(0, masm_->pc_offset()); |
171 } | 173 } |
172 | 174 |
173 // Reserve space for the stack slots needed by the code. | 175 // Reserve space for the stack slots needed by the code. |
174 int slots = GetStackSlotCount(); | 176 int slots = GetStackSlotCount(); |
175 if (slots > 0) { | 177 if (slots > 0) { |
(...skipping 5607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5783 __ Subu(scratch, result, scratch); | 5785 __ Subu(scratch, result, scratch); |
5784 __ lw(result, FieldMemOperand(scratch, | 5786 __ lw(result, FieldMemOperand(scratch, |
5785 FixedArray::kHeaderSize - kPointerSize)); | 5787 FixedArray::kHeaderSize - kPointerSize)); |
5786 __ bind(&done); | 5788 __ bind(&done); |
5787 } | 5789 } |
5788 | 5790 |
5789 | 5791 |
5790 #undef __ | 5792 #undef __ |
5791 | 5793 |
5792 } } // namespace v8::internal | 5794 } } // namespace v8::internal |
OLD | NEW |