| Index: src/globals.h
|
| ===================================================================
|
| --- src/globals.h (revision 1707)
|
| +++ src/globals.h (working copy)
|
| @@ -514,6 +514,16 @@
|
| }
|
|
|
|
|
| +#ifdef ARM_GENERATED_CODE_COVERAGE
|
| +#define CODE_COVERAGE_STRINGIFY(x) #x
|
| +#define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
|
| +#define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
|
| +#define DEFINE_MASM(masm) masm->stop(__FILE_LINE__); masm->
|
| +#else
|
| +#define DEFINE_MASM(masm) masm->
|
| +#endif
|
| +
|
| +
|
| } } // namespace v8::internal
|
|
|
| #endif // V8_GLOBALS_H_
|
|
|