Skip to content
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

[ILASM] Added /DET flag for deterministic compilations #85344

Closed
wants to merge 32 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1419f57
Added '/DET' flag to ILASM for deterministic compilations
TIHan Apr 25, 2023
d3b329c
Using 'm_pInternalEmitForDeterministicMvid'
TIHan Apr 25, 2023
0357bf1
Removing use of BCRYPT APIs. Added TODOs.
TIHan Apr 25, 2023
54147cc
Add use of BCYRPT for windows-only. Added TODO for non-win32.
TIHan Apr 25, 2023
5516e77
Preliminary work for deterministic PDB guid
TIHan Apr 25, 2023
d6a16fa
Fixed ordering problem
TIHan Apr 25, 2023
f2e4d2c
Computing checksum and using result for the PDB guid
TIHan Apr 25, 2023
89df2d8
Refactoring apis
TIHan Apr 26, 2023
7374450
Added PdbChecksum and Deterministic Debug Directory entries
TIHan Apr 26, 2023
7a0dfcb
Minor whitespace cleanup
TIHan Apr 26, 2023
615c6ce
Merge remote-tracking branch 'upstream/main' into ilasm-det
TIHan Jul 14, 2023
68482a4
mering with main
TIHan Jun 4, 2024
ef59bed
Fix build
TIHan Jun 4, 2024
028a8b6
Added IILAsmPortablePdbWriter interface
TIHan Jun 4, 2024
e1a10f8
Checking deterministic output for ILASM for all roundtrip tests
TIHan Jun 4, 2024
8ba6868
Fixed getting interface. Testing determinism of pdb.
TIHan Jun 5, 2024
c023315
add comment
TIHan Jun 5, 2024
9e14b48
Remove use of goto
TIHan Jun 5, 2024
4038a1f
Added sha256 for non-win32
TIHan Jun 5, 2024
69fadf4
Using different impl for getting sha256 of a file in python. Using sh…
TIHan Jun 5, 2024
936f0a3
Trying to fix build
TIHan Jun 5, 2024
d6b4258
Fix build
TIHan Jun 6, 2024
9c1a645
disable testing determinism due to timeouts
TIHan Jun 6, 2024
e8b9b7f
Merge remote-tracking branch 'upstream/main' into ilasm-det
TIHan Jul 23, 2024
3331d9d
Temporarily disable emitting debug directories to see if the tests ti…
TIHan Jul 23, 2024
7df2c80
Merge branch 'ilasm-det' of https://github.com/TIHan/runtime into ila…
TIHan Jul 23, 2024
e78450f
Merge remote-tracking branch 'upstream/main' into ilasm-det
TIHan Jul 24, 2024
8e357b8
Renable deterministic tests and debug directory creation
TIHan Jul 24, 2024
8867295
Added sha256.cpp
TIHan Jul 24, 2024
6dd077f
Remove sha256 impl for now
TIHan Jul 24, 2024
ce016fa
memset for now
TIHan Jul 24, 2024
0086e7d
Temp disable det testing
TIHan Jul 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
memset for now
  • Loading branch information
TIHan committed Jul 24, 2024
commit ce016faa4ffbd72a537e05076820eeb309de893b
2 changes: 1 addition & 1 deletion src/coreclr/md/enc/sha256.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

HRESULT Sha256Hash(BYTE* pSrc, DWORD srcSize, BYTE* pDst, DWORD dstSize)
{
// TODO:
memset(pDst, 0, dstSize);
return S_OK;
}
Loading