Skip to content

Commit

Permalink
Remove temporary SuperPMI scripting code (#44962)
Browse files Browse the repository at this point in the history
Now that we have new SPMI collections, after
#44834,
remove temporary scripting code.
  • Loading branch information
BruceForstall authored Nov 19, 2020
1 parent cb035a3 commit 3c5b4a6
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions src/coreclr/scripts/superpmi.py
Original file line number Diff line number Diff line change
Expand Up @@ -1099,16 +1099,6 @@ def replay(self):
if self.coreclr_args.spmi_log_file is not None:
common_flags += [ "-w", self.coreclr_args.spmi_log_file ]

# TEMPORARY: when we have collections that are done using COMPlus_JitName
# instead of COMPlus_AltJit, we can remove these.
if not self.coreclr_args.altjit:
repro_flags += [
"-jitoption", "force", "AltJit=",
"-jitoption", "force", "AltJitNgen="
]
repro_flags += [ "-jitoption", "force", "EnableExtraSuperPmiQueries=0" ]
# END TEMPORARY

common_flags += repro_flags

# For each MCH file that we are going to replay, do the replay and replay post-processing.
Expand Down Expand Up @@ -1270,23 +1260,6 @@ def replay_with_asm_diffs(self):
"-jitoption", "force", "AltJitNgen=*"
]

# TEMPORARY: when we have collections that are done using COMPlus_JitName
# instead of COMPlus_AltJit, we can remove these.
if not self.coreclr_args.altjit:
altjit_asm_diffs_flags = [
"-jitoption", "force", "AltJit=",
"-jitoption", "force", "AltJitNgen=",
"-jit2option", "force", "AltJit=",
"-jit2option", "force", "AltJitNgen="
]
altjit_replay_flags = [
"-jitoption", "force", "AltJit=",
"-jitoption", "force", "AltJitNgen="
]
altjit_asm_diffs_flags += [ "-jitoption", "force", "EnableExtraSuperPmiQueries=0" ]
altjit_replay_flags += [ "-jitoption", "force", "EnableExtraSuperPmiQueries=0" ]
# END TEMPORARY

# Keep track if any MCH file replay had asm diffs
files_with_asm_diffs = []
files_with_replay_failures = []
Expand Down

0 comments on commit 3c5b4a6

Please sign in to comment.