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

Unified Diff: src/arm/macro-assembler-arm.h

Issue 11528003: Re-land Crankshaft-generated KeyedLoad stubs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix nits Created 8 years 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 | « no previous file | src/frames.h » ('j') | src/hydrogen-instructions.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm/macro-assembler-arm.h
diff --git a/src/arm/macro-assembler-arm.h b/src/arm/macro-assembler-arm.h
index 5321a0d81ef40a8aed33f67aebbc3fb5b1878c72..4dd7b7f6367899ce855126d638b42d3bbca78ae4 100644
--- a/src/arm/macro-assembler-arm.h
+++ b/src/arm/macro-assembler-arm.h
@@ -107,6 +107,10 @@ enum TargetAddressStorageMode {
NEVER_INLINE_TARGET_ADDRESS
};
+
+void IterateCompiledFrame(const StandardFrame* frame, ObjectVisitor* v);
Sven Panne 2012/12/11 07:59:06 Shouldn't this be a method of StandardFrame? A nak
Jakob Kummerow 2012/12/11 14:05:54 Well, the name "IterateCompiledFrame" expresses th
Sven Panne 2012/12/11 14:19:27 Well, that argument holds for the original signatu
danno 2012/12/11 14:26:49 There's not thing fishy about our class hierarchy.
+
+
// MacroAssembler implements a collection of frequently used macros.
class MacroAssembler: public Assembler {
public:
@@ -1375,7 +1379,8 @@ class MacroAssembler: public Assembler {
// Needs access to SafepointRegisterStackIndex for compiled frame
// traversal.
- friend class CompiledFrame;
+ friend void IterateCompiledFrame(const StandardFrame* frame,
+ ObjectVisitor* v);
};
« no previous file with comments | « no previous file | src/frames.h » ('j') | src/hydrogen-instructions.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698