blob: b2fe33cc9815a0e12fde638c6ceb6c62389631ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// cpp.hint for the JIT
//
// These hints are designed to improve the IntelliSense experience when browsing the JIT codebase.
// Note that they don't need to be correct code; they just need to fix the IntelliSense problems that
// exist without the hint.
//
// See the article on hints in MSDN for more information on their necessity and use:
// http://msdn.microsoft.com/en-us/library/dd997977.aspx
#define foreach_treenode_execution_order(__node, __stmt) for (;;)
#define foreach_block(__compiler, __block) for (;;)
#define FOREACH_REGISTER_FILE(file) for (;;)
// From jit.h
#define DECLARE_TYPED_ENUM(tag,baseType) enum tag : baseType
#define END_DECLARE_TYPED_ENUM(tag,baseType) ;
#define INDEBUG(x) x
#define INDEBUG_COMMA(x) x,
#define DEBUGARG(x) , x
#define PROTO_ARG(x) x ,
#define PROTO_ARGL(x) , x
|