-
Notifications
You must be signed in to change notification settings - Fork 5.3k
JIT: Clean up GenTreeCallFlags, remove INLINE_DATA define #93830
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This does not compile anymore, and keeping it requires additional handling for the new call debug flags which seems unnecessary if it is not being used anymore.
|
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch Issue Details
Overall this frees up 6 bits in No diffs are expected.
|
|
/azp run runtime-coreclr jitstress, runtime-coreclr libraries-jitstress |
|
Azure Pipelines successfully started running 2 pipeline(s). |
|
Failures are known. No diffs except for some TP ones. cc @dotnet/jit-contrib PTAL @AndyAyersMS |
src/coreclr/jit/inline.cpp
Outdated
| , m_Policy(nullptr) | ||
| , m_TreeID(0) | ||
| #endif // defined(DEBUG) || defined(INLINE_DATA) | ||
| #endif // defined(DEBUG) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fuse this with the bit just below?
GenTreeCall::gtCallDebugFlagsfield that contains flags we only need in debugGTF_CALL_M_STRESS_TAILCALL,GTF_CALL_M_DEVIRTUALIZED,GTF_CALL_M_UNBOXED,GTF_CALL_M_GUARDEDinto the new debug-only flagsGTF_CALL_M_R2R_REL_INDIRECT; we can get that information fromgtEntryPointGTF_CALL_M_EXP_TLS_ACCESS; we can get this by just checking the helper numINLINE_DATAdefine; it no longer compiles, and it would need extra work to with the new flags, which seemed unnecessary since it isn't being usedOverall this frees up 6 bits in
GenTreeCallFlags.No diffs are expected.