-
Notifications
You must be signed in to change notification settings - Fork 5.4k
JIT: consider optimizing small fixed-sized stackalloc #7113
Copy link
Copy link
Closed
dotnet/coreclr
#14623Labels
area-CodeGen-coreclrCLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMICLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMIenhancementProduct code improvement that does NOT require public API changes/additionsProduct code improvement that does NOT require public API changes/additionsoptimizationtenet-performancePerformance related issuePerformance related issue
Milestone
Metadata
Metadata
Assignees
Labels
area-CodeGen-coreclrCLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMICLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMIenhancementProduct code improvement that does NOT require public API changes/additionsProduct code improvement that does NOT require public API changes/additionsoptimizationtenet-performancePerformance related issuePerformance related issue
Type
Fields
Give feedbackNo fields configured for issues without a type.
In some cases small fixed-sized
stackallocs could be turned into regular local vars, which (if this transformation could be anticipated) would unblock inlining. See related discussion in #7109.@benaadams feel free to add pointers to examples you've found.