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

Side by Side Diff: src/ia32/code-stubs-ia32.cc

Issue 10706002: Implements a new API to set a function entry hook for profiling. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Sketch ARM code stub. Created 8 years, 5 months 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
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 7456 matching lines...) Expand 10 before | Expand all | Expand 10 after
7467 edx, 7467 edx,
7468 ecx, 7468 ecx,
7469 edi, 7469 edi,
7470 xmm0, 7470 xmm0,
7471 &slow_elements_from_double, 7471 &slow_elements_from_double,
7472 false); 7472 false);
7473 __ pop(edx); 7473 __ pop(edx);
7474 __ ret(0); 7474 __ ret(0);
7475 } 7475 }
7476 7476
7477
7478 void ProfileEntryHookStub::Generate(MacroAssembler* masm) {
7479 // Grab the cycle counter immediately.
7480 __ db(0x0F); // rdtsc();
danno 2012/07/10 09:37:13 Any reason to not add this to assembler-ia32.h?
Sigurður Ásgeirsson 2012/07/11 14:50:34 This is already in the assembler, but under a cond
7481 __ db(0x31);
7482
7483 // Ecx is the only volatile register we must save.
7484 __ push(ecx);
7485
7486 // Push the cycle time arg.
7487 __ push(edx);
7488 __ push(eax);
7489
7490 // Calculate and push the original stack pointer.
7491 __ lea(eax, Operand(esp, 0xC));
danno 2012/07/10 09:37:13 Constants? (maybe from frame-ia32.h, also applies
Sigurður Ásgeirsson 2012/07/11 14:50:34 Done.
7492 __ push(eax);
7493
7494 // Calculate and push the function address.
7495 __ mov(eax, Operand(eax, 0));
7496 __ sub(eax, Immediate(5));
danno 2012/07/10 09:37:13 constant?
Sigurður Ásgeirsson 2012/07/11 14:50:34 Done.
7497 __ push(eax);
7498
7499 // Call the entry hook.
7500 int32_t hook_location =
7501 reinterpret_cast<int32_t>(V8::GetFunctionEntryHookLocation());
7502 __ call(Operand(hook_location, RelocInfo::NONE));
7503 __ add(esp, Immediate(0x10));
7504
7505 // Restore ecx.
7506 __ pop(ecx);
7507 __ ret(0);
7508 }
7509
7510
7511 void ProfileEntryHookStub::GenerateAheadOfTime() {
7512 ProfileEntryHookStub stub;
7513 Handle<Code> code = stub.GetCode();
7514 code->set_is_pregenerated(true);
7515 }
7516
7477 #undef __ 7517 #undef __
7478 7518
7479 } } // namespace v8::internal 7519 } } // namespace v8::internal
7480 7520
7481 #endif // V8_TARGET_ARCH_IA32 7521 #endif // V8_TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698