Uh oh!
There was an error while loading. Please reload this page.
Fix SuperFileCheck from failing outerloop - #88692
Conversation
TIHan
commented
Jul 11, 2023
/azp run coreclr-release-outerloop-nightly |
|
Azure Pipelines successfully started running 1 pipeline(s). |
TIHan
commented
Jul 11, 2023
/azp run coreclr-release-outerloop |
|
No pipelines are associated with this pull request. |
TIHan
commented
Jul 11, 2023
@dotnet/jit-contrib this is ready. The release-outerloop-nightly is failing due to an access-token so I can't be sure it fixes that pipeline. |
AndyAyersMS
commented
Jul 12, 2023
@TIHan I am seeing odd errors now from file-check tests, might it be this change? shows the [MethodImpl(MethodImplOptions.NoInlining)]staticsbyteInt8_Add(sbytex,sbytey){// X64-NOT: movsx// X64: add// X64-NEXT: movsxreturn(sbyte)(x+y);} |
markples
commented
Jul 12, 2023
Yes, this analysis is correct. By checking for "Lcl frame size" we skip past the preamble. It turns out that "add" is a fragile pattern. Maybe something like add .,. (with the appropriate filecheck regex wrapping) would suffice. Better would be a register pattern (looks like the test is trying to not hardcode a specific register), but of course those are annoying to write. When I played with the large-scale diffing, I introduced a notion of shortcuts so that one could put "reg" in the pattern and have it expanded by the tool to something more complicated. Theoretically, superfilecheck could do this, but it's kind of a pain and would increase our distance of standard filecheck. |
markples
commented
Jul 12, 2023
It looks like the test failure here got lost in all of the other failures. |
markples
commented
Jul 12, 2023
I'm on a different schedule and won't be able to see this through until much later, but if there isn't an immediate fix then this should be reverted because it impacts CI itself. Or maybe a known build error but it seems like it should be fixed rather than labeled. |
Resolves: #88622
Will need to run outerloop to double check.