Index: src/arm/regexp-macro-assembler-arm.h |
=================================================================== |
--- src/arm/regexp-macro-assembler-arm.h (revision 4372) |
+++ src/arm/regexp-macro-assembler-arm.h (working copy) |
@@ -206,22 +206,6 @@ |
// and increments it by a word size. |
inline void Pop(Register target); |
- // Before calling a C-function from generated code, align arguments on stack. |
- // After aligning the frame, non-register arguments must be stored in |
- // sp[0], sp[4], etc., not pushed. The argument count assumes all arguments |
- // are word sized. |
- // Some compilers/platforms require the stack to be aligned when calling |
- // C++ code. |
- // Needs a scratch register to do some arithmetic. This register will be |
- // trashed. |
- inline void FrameAlign(int num_arguments, Register scratch); |
- |
- // Calls a C function and cleans up the space for arguments allocated |
- // by FrameAlign. The called function is not allowed to trigger a garbage |
- // collection. |
- inline void CallCFunction(ExternalReference function, |
- int num_arguments); |
- |
// Calls a C function and cleans up the frame alignment done by |
// by FrameAlign. The called function *is* allowed to trigger a garbage |
// collection, but may not take more than four arguments (no arguments |