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

Unified Diff: src/frames.h

Issue 27133: - Pass the knowledge whether the old GC is compacting to the GC prologue and ... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 10 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
Index: src/frames.h
===================================================================
--- src/frames.h (revision 1355)
+++ src/frames.h (working copy)
@@ -148,7 +148,7 @@
virtual Type type() const = 0;
// Get the code associated with this frame.
- virtual Code* FindCode() const = 0;
+ virtual Code* code() const = 0;
// Garbage collection support.
static void CookFramesForThread(ThreadLocalTop* thread);
@@ -209,7 +209,7 @@
public:
virtual Type type() const { return ENTRY; }
- virtual Code* FindCode() const;
+ virtual Code* code() const;
// Garbage collection support.
virtual void Iterate(ObjectVisitor* v) const;
@@ -238,7 +238,7 @@
public:
virtual Type type() const { return ENTRY_CONSTRUCT; }
- virtual Code* FindCode() const;
+ virtual Code* code() const;
static EntryConstructFrame* cast(StackFrame* frame) {
ASSERT(frame->is_entry_construct());
@@ -259,7 +259,7 @@
public:
virtual Type type() const { return EXIT; }
- virtual Code* FindCode() const;
+ virtual Code* code() const;
// Garbage collection support.
virtual void Iterate(ObjectVisitor* v) const;
@@ -290,7 +290,7 @@
public:
virtual Type type() const { return EXIT_DEBUG; }
- virtual Code* FindCode() const;
+ virtual Code* code() const;
static ExitDebugFrame* cast(StackFrame* frame) {
ASSERT(frame->is_exit_debug());
@@ -399,7 +399,7 @@
int index) const;
// Determine the code for the frame.
- virtual Code* FindCode() const;
+ virtual Code* code() const;
static JavaScriptFrame* cast(StackFrame* frame) {
ASSERT(frame->is_java_script());
@@ -433,7 +433,7 @@
virtual Type type() const { return ARGUMENTS_ADAPTOR; }
// Determine the code for the frame.
- virtual Code* FindCode() const;
+ virtual Code* code() const;
static ArgumentsAdaptorFrame* cast(StackFrame* frame) {
ASSERT(frame->is_arguments_adaptor());
@@ -463,7 +463,7 @@
virtual void Iterate(ObjectVisitor* v) const;
// Determine the code for the frame.
- virtual Code* FindCode() const;
+ virtual Code* code() const;
static InternalFrame* cast(StackFrame* frame) {
ASSERT(frame->is_internal());

Powered by Google App Engine
This is Rietveld 408576698