Index: src/arm/code-stubs-arm.h |
=================================================================== |
--- src/arm/code-stubs-arm.h (revision 6213) |
+++ src/arm/code-stubs-arm.h (working copy) |
@@ -456,7 +456,18 @@ |
const char* GetName() { return "RegExpCEntryStub"; } |
}; |
+class DirectCEntryStub: public CodeStub { |
SeRya
2011/01/20 12:09:28
I think it worth to comment motivation this stub (
|
+ public: |
+ DirectCEntryStub() {} |
+ void Generate(MacroAssembler* masm); |
+ private: |
+ Major MajorKey() { return DirectCEntry; } |
+ int MinorKey() { return 0; } |
+ const char* GetName() { return "DirectCEntryStub"; } |
+}; |
+ |
+ |
} } // namespace v8::internal |
#endif // V8_ARM_CODE_STUBS_ARM_H_ |