| 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 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1339 TranscendentalCacheStub::TAGGED); | 1339 TranscendentalCacheStub::TAGGED); |
| 1340 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); | 1340 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); |
| 1341 break; | 1341 break; |
| 1342 } | 1342 } |
| 1343 default: | 1343 default: |
| 1344 UNREACHABLE(); | 1344 UNREACHABLE(); |
| 1345 } | 1345 } |
| 1346 } | 1346 } |
| 1347 | 1347 |
| 1348 | 1348 |
| 1349 void LCodeGen::DoCallExternal(LCallExternal* instr) { |
| 1350 __ CallExternalReference(instr->external_reference(), instr->arity()); |
| 1351 } |
| 1352 |
| 1353 |
| 1349 void LCodeGen::DoUnknownOSRValue(LUnknownOSRValue* instr) { | 1354 void LCodeGen::DoUnknownOSRValue(LUnknownOSRValue* instr) { |
| 1350 GenerateOsrPrologue(); | 1355 GenerateOsrPrologue(); |
| 1351 } | 1356 } |
| 1352 | 1357 |
| 1353 | 1358 |
| 1354 void LCodeGen::DoModI(LModI* instr) { | 1359 void LCodeGen::DoModI(LModI* instr) { |
| 1355 HMod* hmod = instr->hydrogen(); | 1360 HMod* hmod = instr->hydrogen(); |
| 1356 HValue* left = hmod->left(); | 1361 HValue* left = hmod->left(); |
| 1357 HValue* right = hmod->right(); | 1362 HValue* right = hmod->right(); |
| 1358 if (hmod->HasPowerOf2Divisor()) { | 1363 if (hmod->HasPowerOf2Divisor()) { |
| (...skipping 5019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6378 FixedArray::kHeaderSize - kPointerSize)); | 6383 FixedArray::kHeaderSize - kPointerSize)); |
| 6379 __ bind(&done); | 6384 __ bind(&done); |
| 6380 } | 6385 } |
| 6381 | 6386 |
| 6382 | 6387 |
| 6383 #undef __ | 6388 #undef __ |
| 6384 | 6389 |
| 6385 } } // namespace v8::internal | 6390 } } // namespace v8::internal |
| 6386 | 6391 |
| 6387 #endif // V8_TARGET_ARCH_IA32 | 6392 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |