Skip to content

Commit

Permalink
Update the asp.net spmi collection script (#73125)
Browse files Browse the repository at this point in the history
* update the sets of complus flags to reflect that OSR is now enabled by default
* add some new scenarios like orchard

This increases the number of collected MCs from ~68K to ~120K.
  • Loading branch information
AndyAyersMS authored Aug 1, 2022
1 parent 028e556 commit 265d89b
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/coreclr/scripts/superpmi_aspnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,21 +162,26 @@ def build_and_run(coreclr_args):

# todo: add grpc/signalr, perhaps

configname_scenario_list = [("platform", "plaintext"),
configname_scenario_list = [
("platform", "plaintext"),
("json", "json"),
("plaintext", "mvc"),
("database", "fortunes_dapper"),
("database", "fortunes_ef_mvc_https"),
("database", "updates"),
("proxy", "proxy-yarp"),
("staticfiles", "static")]
("staticfiles", "static"),
("websocket", "websocket"),
("orchard", "about-sqlite")
]

# configname_scenario_list = [("platform", "plaintext")]

# note tricks to get one element tuples

runtime_options_list = [("Dummy=0",), ("TieredCompilation=0", ), ("TieredPGO=1", "TC_QuickJitForLoops=1"), ("TieredPGO=1", "TC_QuickJitForLoops=1", "ReadyToRun=0"),
("TC_QuickJitForLoops=1", "ReadyToRun=0", "TC_OnStackReplacement=1", "OSR_HitLimit=0", "TC_OnStackReplacement_InitialCounter=0"),
("TieredPGO=1", "TC_QuickJitForLoops=1", "ReadyToRun=0", "TC_OnStackReplacement=1", "OSR_HitLimit=0", "TC_OnStackReplacement_InitialCounter=100")]
runtime_options_list = [("Dummy=0",), ("TieredCompilation=0", ), ("TieredPGO=1",), ("TieredPGO=1", "ReadyToRun=0"),
("ReadyToRun=0", "OSR_HitLimit=0", "TC_OnStackReplacement_InitialCounter=10"),
("TieredPGO=1", "ReadyToRun=0", "OSR_HitLimit=0", "TC_OnStackReplacement_InitialCounter=10")]

# runtime_options_list = [("TieredCompilation=0", )]

Expand Down

0 comments on commit 265d89b

Please sign in to comment.