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 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1204 | 1204 |
1205 LInstruction* LChunkBuilder::DoCallNew(HCallNew* instr) { | 1205 LInstruction* LChunkBuilder::DoCallNew(HCallNew* instr) { |
1206 LOperand* constructor = UseFixed(instr->constructor(), r1); | 1206 LOperand* constructor = UseFixed(instr->constructor(), r1); |
1207 argument_count_ -= instr->argument_count(); | 1207 argument_count_ -= instr->argument_count(); |
1208 LCallNew* result = new LCallNew(constructor); | 1208 LCallNew* result = new LCallNew(constructor); |
1209 return MarkAsCall(DefineFixed(result, r0), instr); | 1209 return MarkAsCall(DefineFixed(result, r0), instr); |
1210 } | 1210 } |
1211 | 1211 |
1212 | 1212 |
1213 LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { | 1213 LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { |
| 1214 LOperand* function = UseFixed(instr->function(), r1); |
1214 argument_count_ -= instr->argument_count(); | 1215 argument_count_ -= instr->argument_count(); |
1215 return MarkAsCall(DefineFixed(new LCallFunction, r0), instr); | 1216 return MarkAsCall(DefineFixed(new LCallFunction(function), r0), instr); |
1216 } | 1217 } |
1217 | 1218 |
1218 | 1219 |
1219 LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) { | 1220 LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) { |
1220 argument_count_ -= instr->argument_count(); | 1221 argument_count_ -= instr->argument_count(); |
1221 return MarkAsCall(DefineFixed(new LCallRuntime, r0), instr); | 1222 return MarkAsCall(DefineFixed(new LCallRuntime, r0), instr); |
1222 } | 1223 } |
1223 | 1224 |
1224 | 1225 |
1225 LInstruction* LChunkBuilder::DoShr(HShr* instr) { | 1226 LInstruction* LChunkBuilder::DoShr(HShr* instr) { |
(...skipping 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2182 | 2183 |
2183 LInstruction* LChunkBuilder::DoIn(HIn* instr) { | 2184 LInstruction* LChunkBuilder::DoIn(HIn* instr) { |
2184 LOperand* key = UseRegisterAtStart(instr->key()); | 2185 LOperand* key = UseRegisterAtStart(instr->key()); |
2185 LOperand* object = UseRegisterAtStart(instr->object()); | 2186 LOperand* object = UseRegisterAtStart(instr->object()); |
2186 LIn* result = new LIn(key, object); | 2187 LIn* result = new LIn(key, object); |
2187 return MarkAsCall(DefineFixed(result, r0), instr); | 2188 return MarkAsCall(DefineFixed(result, r0), instr); |
2188 } | 2189 } |
2189 | 2190 |
2190 | 2191 |
2191 } } // namespace v8::internal | 2192 } } // namespace v8::internal |
OLD | NEW |