| Index: src/mips/test-mips.h
|
| ===================================================================
|
| --- src/mips/test-mips.h (revision 0)
|
| +++ src/mips/test-mips.h (revision 0)
|
| @@ -0,0 +1,27 @@
|
| +#ifndef TEST_MIPS_H_
|
| +#define TEST_MIPS_H_
|
| +
|
| +namespace v8 {
|
| +namespace internal {
|
| +
|
| +// A stub we can use to create some code to test.
|
| +class TestMIPSStub : public CodeStub {
|
| + public:
|
| + TestMIPSStub() { }
|
| +
|
| + void Generate(MacroAssembler* masm) { GenerateBody(masm); }
|
| +
|
| + protected:
|
| + void GenerateBody(MacroAssembler* masm);
|
| +
|
| + private:
|
| + Major MajorKey() { return TestMIPS; }
|
| + int MinorKey() { return 0; }
|
| +
|
| + const char* GetName() { return "TestMIPSStub"; }
|
| +};
|
| +
|
| +
|
| +} } // namespace v8::internal
|
| +
|
| +#endif //define TEST_MIPS_H_
|
|
|