Merge pull request #13234 from janvorli/add-rhel6-official-rid
[platform/upstream/coreclr.git] / src / jit / jit.h
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4
5 /*****************************************************************************/
6 #ifndef _JIT_H_
7 #define _JIT_H_
8 /*****************************************************************************/
9
10 //
11 // clr.sln only defines _DEBUG
12 // The jit uses DEBUG rather than _DEBUG
13 // So we make sure that _DEBUG implies DEBUG
14 //
15 #ifdef _DEBUG
16 #ifndef DEBUG
17 #define DEBUG 1
18 #endif
19 #endif
20
21 // Clang-format messes with the indentation of comments if they directly precede an
22 // ifdef. This macro allows us to anchor the comments to the regular flow of code.
23 #define CLANG_FORMAT_COMMENT_ANCHOR ;
24
25 // Clang-tidy replaces 0 with nullptr in some templated functions, causing a build
26 // break. Replacing those instances with ZERO avoids this change
27 #define ZERO 0
28
29 #ifdef _MSC_VER
30 // These don't seem useful, so turning them off is no big deal
31 #pragma warning(disable : 4065) // "switch statement contains 'default' but no 'case' labels" (happens due to #ifdefs)
32 #pragma warning(disable : 4510) // can't generate default constructor
33 #pragma warning(disable : 4511) // can't generate copy constructor
34 #pragma warning(disable : 4512) // can't generate assignment constructor
35 #pragma warning(disable : 4610) // user defined constructor required
36 #pragma warning(disable : 4211) // nonstandard extention used (char name[0] in structs)
37 #pragma warning(disable : 4127) // conditional expression constant
38 #pragma warning(disable : 4201) // "nonstandard extension used : nameless struct/union"
39
40 // Depending on the code base, you may want to not disable these
41 #pragma warning(disable : 4245) // assigning signed / unsigned
42 #pragma warning(disable : 4146) // unary minus applied to unsigned
43
44 #pragma warning(disable : 4100) // unreferenced formal parameter
45 #pragma warning(disable : 4291) // new operator without delete (only in emitX86.cpp)
46 #endif
47
48 #ifdef _MSC_VER
49 #define CHECK_STRUCT_PADDING 0 // Set this to '1' to enable warning C4820 "'bytes' bytes padding added after
50                                // construct 'member_name'" on interesting structs/classes
51 #else
52 #define CHECK_STRUCT_PADDING 0 // Never enable it for non-MSFT compilers
53 #endif
54
55 #if defined(_X86_)
56 #if defined(_ARM_)
57 #error Cannot define both _X86_ and _ARM_
58 #endif
59 #if defined(_AMD64_)
60 #error Cannot define both _X86_ and _AMD64_
61 #endif
62 #if defined(_ARM64_)
63 #error Cannot define both _X86_ and _ARM64_
64 #endif
65 #define _HOST_X86_
66 #elif defined(_AMD64_)
67 #if defined(_X86_)
68 #error Cannot define both _AMD64_ and _X86_
69 #endif
70 #if defined(_ARM_)
71 #error Cannot define both _AMD64_ and _ARM_
72 #endif
73 #if defined(_ARM64_)
74 #error Cannot define both _AMD64_ and _ARM64_
75 #endif
76 #define _HOST_AMD64_
77 #elif defined(_ARM_)
78 #if defined(_X86_)
79 #error Cannot define both _ARM_ and _X86_
80 #endif
81 #if defined(_AMD64_)
82 #error Cannot define both _ARM_ and _AMD64_
83 #endif
84 #if defined(_ARM64_)
85 #error Cannot define both _ARM_ and _ARM64_
86 #endif
87 #define _HOST_ARM_
88 #elif defined(_ARM64_)
89 #if defined(_X86_)
90 #error Cannot define both _ARM64_ and _X86_
91 #endif
92 #if defined(_AMD64_)
93 #error Cannot define both _ARM64_ and _AMD64_
94 #endif
95 #if defined(_ARM_)
96 #error Cannot define both _ARM64_ and _ARM_
97 #endif
98 #define _HOST_ARM64_
99 #else
100 #error Unsupported or unset host architecture
101 #endif
102
103 #if defined(_HOST_AMD64_) || defined(_HOST_ARM64_)
104 #define _HOST_64BIT_
105 #endif
106
107 #if defined(_TARGET_X86_)
108 #if defined(_TARGET_ARM_)
109 #error Cannot define both _TARGET_X86_ and _TARGET_ARM_
110 #endif
111 #if defined(_TARGET_AMD64_)
112 #error Cannot define both _TARGET_X86_ and _TARGET_AMD64_
113 #endif
114 #if defined(_TARGET_ARM64_)
115 #error Cannot define both _TARGET_X86_ and _TARGET_ARM64_
116 #endif
117 #if !defined(_HOST_X86_)
118 #define _CROSS_COMPILER_
119 #endif
120 #elif defined(_TARGET_AMD64_)
121 #if defined(_TARGET_X86_)
122 #error Cannot define both _TARGET_AMD64_ and _TARGET_X86_
123 #endif
124 #if defined(_TARGET_ARM_)
125 #error Cannot define both _TARGET_AMD64_ and _TARGET_ARM_
126 #endif
127 #if defined(_TARGET_ARM64_)
128 #error Cannot define both _TARGET_AMD64_ and _TARGET_ARM64_
129 #endif
130 #if !defined(_HOST_AMD64_)
131 #define _CROSS_COMPILER_
132 #endif
133 #elif defined(_TARGET_ARM_)
134 #if defined(_TARGET_X86_)
135 #error Cannot define both _TARGET_ARM_ and _TARGET_X86_
136 #endif
137 #if defined(_TARGET_AMD64_)
138 #error Cannot define both _TARGET_ARM_ and _TARGET_AMD64_
139 #endif
140 #if defined(_TARGET_ARM64_)
141 #error Cannot define both _TARGET_ARM_ and _TARGET_ARM64_
142 #endif
143 #if !defined(_HOST_ARM_)
144 #define _CROSS_COMPILER_
145 #endif
146 #elif defined(_TARGET_ARM64_)
147 #if defined(_TARGET_X86_)
148 #error Cannot define both _TARGET_ARM64_ and _TARGET_X86_
149 #endif
150 #if defined(_TARGET_AMD64_)
151 #error Cannot define both _TARGET_ARM64_ and _TARGET_AMD64_
152 #endif
153 #if defined(_TARGET_ARM_)
154 #error Cannot define both _TARGET_ARM64_ and _TARGET_ARM_
155 #endif
156 #if !defined(_HOST_ARM64_)
157 #define _CROSS_COMPILER_
158 #endif
159 #else
160 #error Unsupported or unset target architecture
161 #endif
162
163 #if defined(_TARGET_AMD64_) || defined(_TARGET_ARM64_)
164 #define _TARGET_64BIT_
165 #endif
166
167 #if defined(_TARGET_X86_) || defined(_TARGET_AMD64_)
168 #define _TARGET_XARCH_
169 #endif
170
171 #if defined(_TARGET_ARM_) || defined(_TARGET_ARM64_)
172 #define _TARGET_ARMARCH_
173 #endif
174
175 // If the UNIX_AMD64_ABI is defined make sure that _TARGET_AMD64_ is also defined.
176 #if defined(UNIX_AMD64_ABI)
177 #if !defined(_TARGET_AMD64_)
178 #error When UNIX_AMD64_ABI is defined you must define _TARGET_AMD64_ defined as well.
179 #endif
180 #endif
181
182 // If the UNIX_X86_ABI is defined make sure that _TARGET_X86_ is also defined.
183 #if defined(UNIX_X86_ABI)
184 #if !defined(_TARGET_X86_)
185 #error When UNIX_X86_ABI is defined you must define _TARGET_X86_ defined as well.
186 #endif
187 #endif
188
189 #if defined(PLATFORM_UNIX)
190 #define _HOST_UNIX_
191 #endif
192
193 // Are we generating code to target Unix? This is true if we will run on Unix (_HOST_UNIX_ is defined).
194 // It's also true if we are building an altjit targetting Unix, which we determine by checking if either
195 // UNIX_AMD64_ABI or UNIX_X86_ABI is defined.
196 #if defined(_HOST_UNIX_) || ((defined(UNIX_AMD64_ABI) || defined(UNIX_X86_ABI)) && defined(ALT_JIT))
197 #define _TARGET_UNIX_
198 #endif
199
200 // --------------------------------------------------------------------------------
201 // IMAGE_FILE_MACHINE_TARGET
202 // --------------------------------------------------------------------------------
203
204 #if defined(_TARGET_X86_)
205 #define IMAGE_FILE_MACHINE_TARGET IMAGE_FILE_MACHINE_I386
206 #elif defined(_TARGET_AMD64_)
207 #define IMAGE_FILE_MACHINE_TARGET IMAGE_FILE_MACHINE_AMD64
208 #elif defined(_TARGET_ARM_)
209 #define IMAGE_FILE_MACHINE_TARGET IMAGE_FILE_MACHINE_ARMNT
210 #elif defined(_TARGET_ARM64_)
211 #define IMAGE_FILE_MACHINE_TARGET IMAGE_FILE_MACHINE_ARM64 // 0xAA64
212 #else
213 #error Unsupported or unset target architecture
214 #endif
215
216 // Include the AMD64 unwind codes when appropriate.
217 #if defined(_TARGET_AMD64_)
218 // We need to temporarily set PLATFORM_UNIX, if necessary, to get the Unix-specific unwind codes.
219 #if defined(_TARGET_UNIX_) && !defined(_HOST_UNIX_)
220 #define PLATFORM_UNIX
221 #endif
222 #include "win64unwind.h"
223 #if defined(_TARGET_UNIX_) && !defined(_HOST_UNIX_)
224 #undef PLATFORM_UNIX
225 #endif
226 #endif
227
228 #include "corhdr.h"
229 #include "corjit.h"
230 #include "jitee.h"
231
232 #define __OPERATOR_NEW_INLINE 1 // indicate that I will define these
233 #define __PLACEMENT_NEW_INLINE  // don't bring in the global placement new, it is easy to make a mistake
234                                 // with our new(compiler*) pattern.
235
236 #include "utilcode.h" // this defines assert as _ASSERTE
237 #include "host.h"     // this redefines assert for the JIT to use assertAbort
238 #include "utils.h"
239
240 #ifdef DEBUG
241 #define INDEBUG(x) x
242 #define INDEBUG_COMMA(x) x,
243 #define DEBUGARG(x) , x
244 #else
245 #define INDEBUG(x)
246 #define INDEBUG_COMMA(x)
247 #define DEBUGARG(x)
248 #endif
249
250 #if defined(DEBUG) || defined(LATE_DISASM)
251 #define INDEBUG_LDISASM_COMMA(x) x,
252 #else
253 #define INDEBUG_LDISASM_COMMA(x)
254 #endif
255
256 #if defined(FEATURE_UNIX_AMD64_STRUCT_PASSING)
257 #define FEATURE_UNIX_AMD64_STRUCT_PASSING_ONLY_ARG(x) , x
258 #define FEATURE_UNIX_AMD64_STRUCT_PASSING_ONLY(x) x
259 #else // !defined(FEATURE_UNIX_AMD64_STRUCT_PASSING)
260 #define FEATURE_UNIX_AMD64_STRUCT_PASSING_ONLY_ARG(x)
261 #define FEATURE_UNIX_AMD64_STRUCT_PASSING_ONLY(x)
262 #endif // defined(FEATURE_UNIX_AMD64_STRUCT_PASSING)
263
264 #if defined(FEATURE_UNIX_AMD64_STRUCT_PASSING) || (!defined(_TARGET_64BIT_) && !defined(LEGACY_BACKEND))
265 #define FEATURE_PUT_STRUCT_ARG_STK 1
266 #define PUT_STRUCT_ARG_STK_ONLY_ARG(x) , x
267 #define PUT_STRUCT_ARG_STK_ONLY(x) x
268 #else // !(defined(FEATURE_UNIX_AMD64_STRUCT_PASSING)|| (!defined(_TARGET_64BIT_) && !defined(LEGACY_BACKEND)))
269 #define PUT_STRUCT_ARG_STK_ONLY_ARG(x)
270 #define PUT_STRUCT_ARG_STK_ONLY(x)
271 #endif // !(defined(FEATURE_UNIX_AMD64_STRUCT_PASSING)|| (!defined(_TARGET_64BIT_) && !defined(LEGACY_BACKEND)))
272
273 #if defined(UNIX_AMD64_ABI)
274 #define UNIX_AMD64_ABI_ONLY_ARG(x) , x
275 #define UNIX_AMD64_ABI_ONLY(x) x
276 #else // !defined(UNIX_AMD64_ABI)
277 #define UNIX_AMD64_ABI_ONLY_ARG(x)
278 #define UNIX_AMD64_ABI_ONLY(x)
279 #endif // defined(UNIX_AMD64_ABI)
280
281 #if defined(UNIX_AMD64_ABI) || defined(_TARGET_ARM64_)
282 #define MULTIREG_HAS_SECOND_GC_RET 1
283 #define MULTIREG_HAS_SECOND_GC_RET_ONLY_ARG(x) , x
284 #define MULTIREG_HAS_SECOND_GC_RET_ONLY(x) x
285 #else // !defined(FEATURE_UNIX_AMD64_STRUCT_PASSING)
286 #define MULTIREG_HAS_SECOND_GC_RET 0
287 #define MULTIREG_HAS_SECOND_GC_RET_ONLY_ARG(x)
288 #define MULTIREG_HAS_SECOND_GC_RET_ONLY(x)
289 #endif // defined(FEATURE_UNIX_AMD64_STRUCT_PASSING)
290
291 // To get rid of warning 4701 : local variable may be used without being initialized
292 #define DUMMY_INIT(x) (x)
293
294 #define REGEN_SHORTCUTS 0
295 #define REGEN_CALLPAT 0
296
297 /*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
298 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
299 XX                                                                           XX
300 XX                          jit.h                                            XX
301 XX                                                                           XX
302 XX   Interface of the JIT with jit.cpp                                       XX
303 XX                                                                           XX
304 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
305 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
306 */
307
308 /*****************************************************************************/
309 #if defined(DEBUG)
310 #include "log.h"
311
312 #define INFO6 LL_INFO10000   // Did Jit or Inline succeeded?
313 #define INFO7 LL_INFO100000  // NYI stuff
314 #define INFO8 LL_INFO1000000 // Weird failures
315 #define INFO9 LL_EVERYTHING  // Info about incoming settings
316 #define INFO10 LL_EVERYTHING // Totally verbose
317
318 #endif // DEBUG
319
320 typedef class ICorJitInfo* COMP_HANDLE;
321
322 const CORINFO_CLASS_HANDLE NO_CLASS_HANDLE = (CORINFO_CLASS_HANDLE) nullptr;
323
324 /*****************************************************************************/
325
326 inline bool False()
327 {
328     return false;
329 } // Use to disable code while keeping prefast happy
330
331 // We define two IL offset types, as follows:
332 //
333 // IL_OFFSET:  either a distinguished value, or an IL offset.
334 // IL_OFFSETX: either a distinguished value, or the top two bits are a flags, and the remaining bottom
335 //             bits are a IL offset.
336 //
337 // In both cases, the set of legal distinguished values is:
338 //     BAD_IL_OFFSET             -- A unique illegal IL offset number. Note that it must be different from
339 //                                  the ICorDebugInfo values, below, and must also not be a legal IL offset.
340 //     ICorDebugInfo::NO_MAPPING -- The IL offset corresponds to no source code (such as EH step blocks).
341 //     ICorDebugInfo::PROLOG     -- The IL offset indicates a prolog
342 //     ICorDebugInfo::EPILOG     -- The IL offset indicates an epilog
343 //
344 // The IL offset must be in the range [0 .. 0x3fffffff]. This is because we steal
345 // the top two bits in IL_OFFSETX for flags, but we want the maximum range to be the same
346 // for both types. The IL value can't be larger than the maximum IL offset of the function
347 // being compiled.
348 //
349 // Blocks and statements never store one of the ICorDebugInfo values, even for IL_OFFSETX types. These are
350 // only stored in the IPmappingDsc struct, ipmdILoffsx field.
351
352 typedef unsigned IL_OFFSET;
353
354 const IL_OFFSET BAD_IL_OFFSET = 0x80000000;
355 const IL_OFFSET MAX_IL_OFFSET = 0x3fffffff;
356
357 typedef unsigned IL_OFFSETX;                                 // IL_OFFSET with stack-empty or call-instruction bit
358 const IL_OFFSETX IL_OFFSETX_STKBIT             = 0x80000000; // Note: this bit is set when the stack is NOT empty!
359 const IL_OFFSETX IL_OFFSETX_CALLINSTRUCTIONBIT = 0x40000000; // Set when the IL offset is for a call instruction.
360 const IL_OFFSETX IL_OFFSETX_BITS               = IL_OFFSETX_STKBIT | IL_OFFSETX_CALLINSTRUCTIONBIT;
361
362 IL_OFFSET jitGetILoffs(IL_OFFSETX offsx);
363 IL_OFFSET jitGetILoffsAny(IL_OFFSETX offsx);
364 bool jitIsStackEmpty(IL_OFFSETX offsx);
365 bool jitIsCallInstruction(IL_OFFSETX offsx);
366
367 const unsigned BAD_VAR_NUM = UINT_MAX;
368
369 // Code can't be more than 2^31 in any direction.  This is signed, so it should be used for anything that is
370 // relative to something else.
371 typedef int NATIVE_OFFSET;
372
373 // This is the same as the above, but it's used in absolute contexts (i.e. offset from the start).  Also,
374 // this is used for native code sizes.
375 typedef unsigned UNATIVE_OFFSET;
376
377 typedef ptrdiff_t ssize_t;
378
379 // For the following specially handled FIELD_HANDLES we need
380 //   values that are negative and have the low two bits zero
381 // See eeFindJitDataOffs and eeGetJitDataOffs in Compiler.hpp
382 #define FLD_GLOBAL_DS ((CORINFO_FIELD_HANDLE)-4)
383 #define FLD_GLOBAL_FS ((CORINFO_FIELD_HANDLE)-8)
384
385 /*****************************************************************************/
386
387 #include "vartype.h"
388
389 /*****************************************************************************/
390
391 // Late disassembly is OFF by default. Can be turned ON by
392 // adding /DLATE_DISASM=1 on the command line.
393 // Always OFF in the non-debug version
394
395 #if defined(LATE_DISASM) && (LATE_DISASM == 0)
396 #undef LATE_DISASM
397 #endif
398
399 /*****************************************************************************/
400
401 /*****************************************************************************/
402
403 #define FEATURE_VALNUM_CSE 1 // enable the Value Number CSE optimization logic
404
405 // true if Value Number CSE is enabled
406 #define FEATURE_ANYCSE FEATURE_VALNUM_CSE
407
408 #define CSE_INTO_HANDLERS 0
409
410 #define LARGE_EXPSET 1   // Track 64 or 32 assertions/copies/consts/rangechecks
411 #define ASSERTION_PROP 1 // Enable value/assertion propagation
412
413 #define LOCAL_ASSERTION_PROP ASSERTION_PROP // Enable local assertion propagation
414
415 //=============================================================================
416
417 #define OPT_MULT_ADDSUB 1 // optimize consecutive "lclVar += or -= icon"
418 #define OPT_BOOL_OPS 1    // optimize boolean operations
419
420 //=============================================================================
421
422 #define REDUNDANT_LOAD 1      // track locals in regs, suppress loads
423 #define STACK_PROBES 0        // Support for stack probes
424 #define DUMP_FLOWGRAPHS DEBUG // Support for creating Xml Flowgraph reports in *.fgx files
425
426 #define HANDLER_ENTRY_MUST_BE_IN_HOT_SECTION 1 // if 1 we must have all handler entry points in the Hot code section
427
428 /*****************************************************************************/
429
430 #define VPTR_OFFS 0 // offset of vtable pointer from obj ptr
431
432 /*****************************************************************************/
433
434 #define DUMP_GC_TABLES DEBUG
435 #define VERIFY_GC_TABLES 0
436 #define REARRANGE_ADDS 1
437
438 #define FUNC_INFO_LOGGING 1 // Support dumping function info to a file. In retail, only NYIs, with no function name,
439                             // are dumped.
440
441 /*****************************************************************************/
442 /*****************************************************************************/
443 /* Set these to 1 to collect and output various statistics about the JIT */
444
445 #define CALL_ARG_STATS 0      // Collect stats about calls and call arguments.
446 #define COUNT_BASIC_BLOCKS 0  // Create a histogram of basic block sizes, and a histogram of IL sizes in the simple
447                               // case of single block methods.
448 #define COUNT_LOOPS 0         // Collect stats about loops, such as the total number of natural loops, a histogram of
449                               // the number of loop exits, etc.
450 #define COUNT_RANGECHECKS 0   // Count range checks removed (in lexical CSE?).
451 #define DATAFLOW_ITER 0       // Count iterations in lexical CSE and constant folding dataflow.
452 #define DISPLAY_SIZES 0       // Display generated code, data, and GC information sizes.
453 #define MEASURE_BLOCK_SIZE 0  // Collect stats about basic block and flowList node sizes and memory allocations.
454 #define MEASURE_FATAL 0       // Count the number of calls to fatal(), including NYIs and noway_asserts.
455 #define MEASURE_NODE_SIZE 0   // Collect stats about GenTree node allocations.
456 #define MEASURE_PTRTAB_SIZE 0 // Collect stats about GC pointer table allocations.
457 #define EMITTER_STATS 0       // Collect stats on the emitter.
458 #define NODEBASH_STATS 0      // Collect stats on changed gtOper values in GenTree's.
459 #define COUNT_AST_OPERS 0     // Display use counts for GenTree operators.
460
461 #define VERBOSE_SIZES 0  // Always display GC info sizes. If set, DISPLAY_SIZES must also be set.
462 #define VERBOSE_VERIFY 0 // Dump additional information when verifying code. Useful to debug verification bugs.
463
464 #ifdef DEBUG
465 #define MEASURE_MEM_ALLOC 1 // Collect memory allocation stats.
466 #define LOOP_HOIST_STATS 1  // Collect loop hoisting stats.
467 #define TRACK_LSRA_STATS 1  // Collect LSRA stats
468 #else
469 #define MEASURE_MEM_ALLOC 0 // You can set this to 1 to get memory stats in retail, as well
470 #define LOOP_HOIST_STATS 0  // You can set this to 1 to get loop hoist stats in retail, as well
471 #define TRACK_LSRA_STATS 0  // You can set this to 1 to get LSRA stats in retail, as well
472 #endif
473
474 // Timing calls to clr.dll is only available under certain conditions.
475 #ifndef FEATURE_JIT_METHOD_PERF
476 #define MEASURE_CLRAPI_CALLS 0 // Can't time these calls without METHOD_PERF.
477 #endif
478 #ifdef DEBUG
479 #define MEASURE_CLRAPI_CALLS 0 // No point in measuring DEBUG code.
480 #endif
481 #if !defined(_HOST_X86_) && !defined(_HOST_AMD64_)
482 #define MEASURE_CLRAPI_CALLS 0 // Cycle counters only hooked up on x86/x64.
483 #endif
484 #if !defined(_MSC_VER) && !defined(__clang__)
485 #define MEASURE_CLRAPI_CALLS 0 // Only know how to do this with VC and Clang.
486 #endif
487
488 // If none of the above set the flag to 0, it's available.
489 #ifndef MEASURE_CLRAPI_CALLS
490 #define MEASURE_CLRAPI_CALLS 0 // Set to 1 to measure time in ICorJitInfo calls.
491 #endif
492
493 /*****************************************************************************/
494 /* Portability Defines */
495 /*****************************************************************************/
496 #ifdef _TARGET_X86_
497 #define JIT32_GCENCODER
498 #endif
499
500 /*****************************************************************************/
501 #ifdef DEBUG
502 /*****************************************************************************/
503
504 #define DUMPER
505
506 #else // !DEBUG
507
508 #if DUMP_GC_TABLES
509 #pragma message("NOTE: this non-debug build has GC ptr table dumping always enabled!")
510 const bool dspGCtbls = true;
511 #endif
512
513 /*****************************************************************************/
514 #endif // !DEBUG
515
516 #ifdef DEBUG
517 #define JITDUMP(...)                                                                                                   \
518     {                                                                                                                  \
519         if (JitTls::GetCompiler()->verbose)                                                                            \
520             logf(__VA_ARGS__);                                                                                         \
521     }
522 #define JITLOG(x)                                                                                                      \
523     {                                                                                                                  \
524         JitLogEE x;                                                                                                    \
525     }
526 #define JITLOG_THIS(t, x)                                                                                              \
527     {                                                                                                                  \
528         (t)->JitLogEE x;                                                                                               \
529     }
530 #define DBEXEC(flg, expr)                                                                                              \
531     if (flg)                                                                                                           \
532     {                                                                                                                  \
533         expr;                                                                                                          \
534     }
535 #define DISPNODE(t)                                                                                                    \
536     if (JitTls::GetCompiler()->verbose)                                                                                \
537         JitTls::GetCompiler()->gtDispTree(t, nullptr, nullptr, true);
538 #define DISPTREE(t)                                                                                                    \
539     if (JitTls::GetCompiler()->verbose)                                                                                \
540         JitTls::GetCompiler()->gtDispTree(t);
541 #define DISPRANGE(range)                                                                                               \
542     if (JitTls::GetCompiler()->verbose)                                                                                \
543         JitTls::GetCompiler()->gtDispRange(range);
544 #define DISPTREERANGE(range, t)                                                                                        \
545     if (JitTls::GetCompiler()->verbose)                                                                                \
546         JitTls::GetCompiler()->gtDispTreeRange(range, t);
547 #define VERBOSE JitTls::GetCompiler()->verbose
548 #else // !DEBUG
549 #define JITDUMP(...)
550 #define JITLOG(x)
551 #define JITLOG_THIS(t, x)
552 #define DBEXEC(flg, expr)
553 #define DISPNODE(t)
554 #define DISPTREE(t)
555 #define DISPRANGE(range)
556 #define DISPTREERANGE(range, t)
557 #define VERBOSE 0
558 #endif // !DEBUG
559
560 /*****************************************************************************
561  *
562  * Double alignment. This aligns ESP to 0 mod 8 in function prolog, then uses ESP
563  * to reference locals, EBP to reference parameters.
564  * It only makes sense if frameless method support is on.
565  * (frameless method support is now always on)
566  */
567
568 #ifdef _TARGET_X86_
569 #define DOUBLE_ALIGN 1 // permit the double alignment of ESP in prolog,
570                        //  and permit the double alignment of local offsets
571 #else
572 #define DOUBLE_ALIGN 0 // no special handling for double alignment
573 #endif
574 /*****************************************************************************/
575 #ifdef DEBUG
576 extern void _cdecl debugStop(const char* why, ...);
577 #endif
578 /*****************************************************************************/
579
580 #ifdef DEBUG
581
582 struct JitOptions
583 {
584     const char* methodName; // Method to display output for
585     const char* className;  // Class  to display output for
586
587     double   CGknob;   // Tweakable knob for testing
588     unsigned testMask; // Tweakable mask for testing
589
590     JitOptions* lastDummyField; // Ensures instantiation uses right order of arguments
591 };
592
593 extern JitOptions jitOpts;
594
595 /*****************************************************************************
596 *
597 *  Returns a word filled with the JITs allocator CHK fill value.
598 *
599 */
600 template <typename T>
601 inline T UninitializedWord()
602 {
603     __int64 word = 0x0101010101010101LL * (JitConfig.JitDefaultFill() & 0xFF);
604     return (T)word;
605 }
606
607 /*****************************************************************************
608 *
609 *  Determines whether this value is coming from uninitialized JIT memory
610 *
611 */
612
613 template <typename T>
614 inline bool IsUninitialized(T data)
615 {
616     return data == UninitializedWord<T>();
617 }
618 #endif // DEBUG
619
620 /*****************************************************************************/
621
622 enum accessLevel
623 {
624     ACL_NONE,
625     ACL_PRIVATE,
626     ACL_DEFAULT,
627     ACL_PROTECTED,
628     ACL_PUBLIC,
629 };
630
631 /*****************************************************************************/
632
633 #define castto(var, typ) (*(typ*)&var)
634
635 #define sizeto(typ, mem) (offsetof(typ, mem) + sizeof(((typ*)0)->mem))
636
637 /*****************************************************************************/
638
639 #ifdef NO_MISALIGNED_ACCESS
640
641 #define MISALIGNED_RD_I2(src) (*castto(src, char*) | *castto(src + 1, char*) << 8)
642
643 #define MISALIGNED_RD_U2(src) (*castto(src, char*) | *castto(src + 1, char*) << 8)
644
645 #define MISALIGNED_WR_I2(dst, val)                                                                                     \
646     *castto(dst, char*)     = val;                                                                                     \
647     *castto(dst + 1, char*) = val >> 8;
648
649 #define MISALIGNED_WR_I4(dst, val)                                                                                     \
650     *castto(dst, char*)     = val;                                                                                     \
651     *castto(dst + 1, char*) = val >> 8;                                                                                \
652     *castto(dst + 2, char*) = val >> 16;                                                                               \
653     *castto(dst + 3, char*) = val >> 24;
654
655 #else
656
657 #define MISALIGNED_RD_I2(src) (*castto(src, short*))
658 #define MISALIGNED_RD_U2(src) (*castto(src, unsigned short*))
659
660 #define MISALIGNED_WR_I2(dst, val) *castto(dst, short*) = val;
661 #define MISALIGNED_WR_I4(dst, val) *castto(dst, int*)   = val;
662
663 #define MISALIGNED_WR_ST(dst, val) *castto(dst, ssize_t*) = val;
664
665 #endif
666
667 /*****************************************************************************/
668
669 inline size_t roundUp(size_t size, size_t mult = sizeof(size_t))
670 {
671     assert(mult && ((mult & (mult - 1)) == 0)); // power of two test
672
673     return (size + (mult - 1)) & ~(mult - 1);
674 }
675
676 inline size_t roundDn(size_t size, size_t mult = sizeof(size_t))
677 {
678     assert(mult && ((mult & (mult - 1)) == 0)); // power of two test
679
680     return (size) & ~(mult - 1);
681 }
682
683 inline unsigned int unsigned_abs(int x)
684 {
685     return ((unsigned int)abs(x));
686 }
687
688 #ifdef _TARGET_64BIT_
689 inline size_t unsigned_abs(ssize_t x)
690 {
691     return ((size_t)abs(x));
692 }
693 #endif // _TARGET_64BIT_
694
695 /*****************************************************************************/
696
697 #if CALL_ARG_STATS || COUNT_BASIC_BLOCKS || COUNT_LOOPS || EMITTER_STATS || MEASURE_NODE_SIZE || MEASURE_MEM_ALLOC
698
699 class Histogram
700 {
701 public:
702     Histogram(IAllocator* allocator, const unsigned* const sizeTable);
703     ~Histogram();
704
705     void dump(FILE* output);
706     void record(unsigned size);
707
708 private:
709     void ensureAllocated();
710
711     IAllocator*           m_allocator;
712     unsigned              m_sizeCount;
713     const unsigned* const m_sizeTable;
714     unsigned*             m_counts;
715 };
716
717 #endif // CALL_ARG_STATS || COUNT_BASIC_BLOCKS || COUNT_LOOPS || EMITTER_STATS || MEASURE_NODE_SIZE
718
719 /*****************************************************************************/
720 #ifdef ICECAP
721 #include "icapexp.h"
722 #include "icapctrl.h"
723 #endif
724
725 /*****************************************************************************/
726
727 #include "error.h"
728
729 /*****************************************************************************/
730
731 #if CHECK_STRUCT_PADDING
732 #pragma warning(push)
733 #pragma warning(default : 4820) // 'bytes' bytes padding added after construct 'member_name'
734 #endif                          // CHECK_STRUCT_PADDING
735
736 #include "alloc.h"
737 #include "target.h"
738
739 #if FEATURE_TAILCALL_OPT
740
741 #ifdef FEATURE_CORECLR
742 // CoreCLR - enable tail call opt for the following IL pattern
743 //
744 //     call someFunc
745 //     jmp/jcc RetBlock
746 //     ...
747 //  RetBlock:
748 //     ret
749 #define FEATURE_TAILCALL_OPT_SHARED_RETURN 1
750 #else
751 // Desktop: Keep this to zero as one of app-compat apps that is using GetCallingAssembly()
752 // has an issue turning this ON.
753 //
754 // Refer to TF: Bug: 824625 and its associated regression TF Bug: 1113265
755 #define FEATURE_TAILCALL_OPT_SHARED_RETURN 0
756 #endif // FEATURE_CORECLR
757
758 #else // !FEATURE_TAILCALL_OPT
759 #define FEATURE_TAILCALL_OPT_SHARED_RETURN 0
760 #endif // !FEATURE_TAILCALL_OPT
761
762 #define CLFLG_CODESIZE 0x00001
763 #define CLFLG_CODESPEED 0x00002
764 #define CLFLG_CSE 0x00004
765 #define CLFLG_REGVAR 0x00008
766 #define CLFLG_RNGCHKOPT 0x00010
767 #define CLFLG_DEADASGN 0x00020
768 #define CLFLG_CODEMOTION 0x00040
769 #define CLFLG_QMARK 0x00080
770 #define CLFLG_TREETRANS 0x00100
771 #define CLFLG_INLINING 0x00200
772 #define CLFLG_CONSTANTFOLD 0x00800
773
774 #if FEATURE_STRUCTPROMOTE
775 #define CLFLG_STRUCTPROMOTE 0x00400
776 #else
777 #define CLFLG_STRUCTPROMOTE 0x00000
778 #endif
779
780 #define CLFLG_MAXOPT                                                                                                   \
781     (CLFLG_CSE | CLFLG_REGVAR | CLFLG_RNGCHKOPT | CLFLG_DEADASGN | CLFLG_CODEMOTION | CLFLG_QMARK | CLFLG_TREETRANS |  \
782      CLFLG_INLINING | CLFLG_STRUCTPROMOTE | CLFLG_CONSTANTFOLD)
783
784 #define CLFLG_MINOPT (CLFLG_TREETRANS)
785
786 #define JIT_RESERVED_STACK 64 // Reserved for arguments of calls and hidden
787                               // pushes for finallys so that we don't
788                               // probe on every call site. See comment in
789                               // for CORINFO_STACKPROBE_DEPTH in corjit.h
790
791 /*****************************************************************************/
792
793 extern void dumpILBytes(const BYTE* const codeAddr, unsigned codeSize, unsigned alignSize);
794
795 extern unsigned dumpSingleInstr(const BYTE* const codeAddr, IL_OFFSET offs, const char* prefix = nullptr);
796
797 extern void dumpILRange(const BYTE* const codeAddr, unsigned codeSize); // in bytes
798
799 /*****************************************************************************/
800
801 extern int jitNativeCode(CORINFO_METHOD_HANDLE methodHnd,
802                          CORINFO_MODULE_HANDLE classHnd,
803                          COMP_HANDLE           compHnd,
804                          CORINFO_METHOD_INFO*  methodInfo,
805                          void**                methodCodePtr,
806                          ULONG*                methodCodeSize,
807                          JitFlags*             compileFlags,
808                          void*                 inlineInfoPtr);
809
810 #ifdef _HOST_64BIT_
811 const size_t INVALID_POINTER_VALUE = 0xFEEDFACEABADF00D;
812 #else
813 const size_t INVALID_POINTER_VALUE = 0xFEEDFACE;
814 #endif
815
816 // Constants for making sure size_t fit into smaller types.
817 const size_t MAX_USHORT_SIZE_T   = static_cast<size_t>(static_cast<unsigned short>(-1));
818 const size_t MAX_UNSIGNED_SIZE_T = static_cast<size_t>(static_cast<unsigned>(-1));
819
820 // These assume 2's complement...
821 const int MAX_SHORT_AS_INT = 32767;
822 const int MIN_SHORT_AS_INT = -32768;
823
824 /*****************************************************************************/
825
826 enum CompMemKind
827 {
828 #define CompMemKindMacro(kind) CMK_##kind,
829 #include "compmemkind.h"
830     CMK_Count
831 };
832
833 class Compiler;
834 class JitTls
835 {
836 #ifdef DEBUG
837     Compiler* m_compiler;
838     LogEnv    m_logEnv;
839     JitTls*   m_next;
840 #endif
841
842 public:
843     JitTls(ICorJitInfo* jitInfo);
844     ~JitTls();
845
846 #ifdef DEBUG
847     static LogEnv* GetLogEnv();
848 #endif
849
850     static Compiler* GetCompiler();
851     static void SetCompiler(Compiler* compiler);
852 };
853
854 #if defined(DEBUG)
855
856 #include "compiler.h"
857
858 template <typename T>
859 T dspPtr(T p)
860 {
861     return (p == ZERO) ? ZERO : (JitTls::GetCompiler()->opts.dspDiffable ? T(0xD1FFAB1E) : p);
862 }
863
864 template <typename T>
865 T dspOffset(T o)
866 {
867     return (o == ZERO) ? ZERO : (JitTls::GetCompiler()->opts.dspDiffable ? T(0xD1FFAB1E) : o);
868 }
869
870 #else // !defined(DEBUG)
871
872 template <typename T>
873 T dspPtr(T p)
874 {
875     return p;
876 }
877
878 template <typename T>
879 T dspOffset(T o)
880 {
881     return o;
882 }
883
884 #endif // !defined(DEBUG)
885
886 /*****************************************************************************/
887 #endif //_JIT_H_
888 /*****************************************************************************/