Index: src/arm/macro-assembler-arm.h |
=================================================================== |
--- src/arm/macro-assembler-arm.h (revision 7757) |
+++ src/arm/macro-assembler-arm.h (working copy) |
@@ -33,9 +33,6 @@ |
namespace v8 { |
namespace internal { |
-// Forward declaration. |
-class CallWrapper; |
- |
// ---------------------------------------------------------------------------- |
// Static helper functions |
@@ -1066,21 +1063,6 @@ |
#endif // ENABLE_DEBUGGER_SUPPORT |
-// Helper class for generating code or data associated with the code |
-// right after a call instruction. As an example this can be used to |
-// generate safepoint data after calls for crankshaft. |
-class CallWrapper { |
- public: |
- CallWrapper() { } |
- virtual ~CallWrapper() { } |
- // Called just before emitting a call. Argument is the size of the generated |
- // call code. |
- virtual void BeforeCall(int call_size) = 0; |
- // Called just after emitting a call, i.e., at the return site for the call. |
- virtual void AfterCall() = 0; |
-}; |
- |
- |
// ----------------------------------------------------------------------------- |
// Static helper functions. |