Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: src/ia32/lithium-codegen-ia32.cc

Issue 40153003: AllocationProfiler: Inital version of RecordObjectAllocation for hydrogen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: mips, ia32 and arm platforms were added Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/ia32/lithium-ia32.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/ia32/lithium-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698