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

Unified Diff: src/code-stubs.h

Issue 9297019: Fix and adapt debugger for new call target caches. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/builtins.cc ('k') | src/debug.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.h
diff --git a/src/code-stubs.h b/src/code-stubs.h
index 1141cb56b31e16bd11f9bb46284849d47c58a918..bdace83eecf308f3ed7f277218b063cdb3b2124b 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -739,6 +739,8 @@ class CallFunctionStub: public CodeStub {
void Generate(MacroAssembler* masm);
+ virtual void FinishCode(Handle<Code> code);
Yang 2012/01/27 15:52:38 You could inline this function here so that you do
Michael Starzinger 2012/01/27 16:10:52 Done.
+
static int ExtractArgcFromMinorKey(int minor_key) {
return ArgcBits::decode(minor_key);
}
@@ -775,6 +777,8 @@ class CallConstructStub: public CodeStub {
void Generate(MacroAssembler* masm);
+ virtual void FinishCode(Handle<Code> code);
+
private:
CallFunctionFlags flags_;
« no previous file with comments | « src/builtins.cc ('k') | src/debug.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698