| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 2172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2183 LInstruction* LChunkBuilder::DoStackCheck(HStackCheck* instr) { | 2183 LInstruction* LChunkBuilder::DoStackCheck(HStackCheck* instr) { |
| 2184 return MarkAsCall(new LStackCheck, instr); | 2184 return MarkAsCall(new LStackCheck, instr); |
| 2185 } | 2185 } |
| 2186 | 2186 |
| 2187 | 2187 |
| 2188 LInstruction* LChunkBuilder::DoEnterInlined(HEnterInlined* instr) { | 2188 LInstruction* LChunkBuilder::DoEnterInlined(HEnterInlined* instr) { |
| 2189 HEnvironment* outer = current_block_->last_environment(); | 2189 HEnvironment* outer = current_block_->last_environment(); |
| 2190 HConstant* undefined = graph()->GetConstantUndefined(); | 2190 HConstant* undefined = graph()->GetConstantUndefined(); |
| 2191 HEnvironment* inner = outer->CopyForInlining(instr->closure(), | 2191 HEnvironment* inner = outer->CopyForInlining(instr->closure(), |
| 2192 instr->function(), | 2192 instr->function(), |
| 2193 false, | 2193 HEnvironment::LITHIUM, |
| 2194 undefined); | 2194 undefined); |
| 2195 current_block_->UpdateEnvironment(inner); | 2195 current_block_->UpdateEnvironment(inner); |
| 2196 chunk_->AddInlinedClosure(instr->closure()); | 2196 chunk_->AddInlinedClosure(instr->closure()); |
| 2197 return NULL; | 2197 return NULL; |
| 2198 } | 2198 } |
| 2199 | 2199 |
| 2200 | 2200 |
| 2201 LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) { | 2201 LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) { |
| 2202 HEnvironment* outer = current_block_->last_environment()->outer(); | 2202 HEnvironment* outer = current_block_->last_environment()->outer(); |
| 2203 current_block_->UpdateEnvironment(outer); | 2203 current_block_->UpdateEnvironment(outer); |
| 2204 return NULL; | 2204 return NULL; |
| 2205 } | 2205 } |
| 2206 | 2206 |
| 2207 | 2207 |
| 2208 LInstruction* LChunkBuilder::DoIn(HIn* instr) { | 2208 LInstruction* LChunkBuilder::DoIn(HIn* instr) { |
| 2209 LOperand* key = UseOrConstantAtStart(instr->key()); | 2209 LOperand* key = UseOrConstantAtStart(instr->key()); |
| 2210 LOperand* object = UseOrConstantAtStart(instr->object()); | 2210 LOperand* object = UseOrConstantAtStart(instr->object()); |
| 2211 LIn* result = new LIn(key, object); | 2211 LIn* result = new LIn(key, object); |
| 2212 return MarkAsCall(DefineFixed(result, eax), instr); | 2212 return MarkAsCall(DefineFixed(result, eax), instr); |
| 2213 } | 2213 } |
| 2214 | 2214 |
| 2215 | 2215 |
| 2216 } } // namespace v8::internal | 2216 } } // namespace v8::internal |
| 2217 | 2217 |
| 2218 #endif // V8_TARGET_ARCH_IA32 | 2218 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |