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 2187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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) { | |
2209 LOperand* key = UseAtStart(instr->key()); | |
fschneider
2011/04/26 13:51:59
Use UseOrConstantAtStart here. The same possibly a
| |
2210 LOperand* object = UseOrConstantAtStart(instr->object()); | |
2211 LIn* result = new LIn(key, object); | |
2212 return MarkAsCall(DefineFixed(result, eax), instr); | |
2213 } | |
2214 | |
2215 | |
2208 } } // namespace v8::internal | 2216 } } // namespace v8::internal |
2209 | 2217 |
2210 #endif // V8_TARGET_ARCH_IA32 | 2218 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |