Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
4f6180c
separate inlined threadstatics from multimodule/dynamic ones
VSadov Apr 10, 2023
212cf92
allocate threadstatic storage on first use
VSadov Apr 14, 2023
6f68fec
no need to pass type manager to the fast helpers
VSadov Apr 19, 2023
965c097
RhpGetThreadStaticBaseForType for arm64
VSadov Apr 19, 2023
000dcc7
fix multifile case
VSadov Apr 19, 2023
330b33c
introduced InlinedThreadStatics
VSadov Apr 21, 2023
8df68fa
no index when inlined
VSadov Apr 21, 2023
99441a2
no index for inlined storage on the runtime side
VSadov Apr 21, 2023
5564d12
encode the storage type
VSadov Apr 21, 2023
c649f9d
report offsets to JIT
VSadov Apr 21, 2023
ce5ba65
reflection
VSadov Apr 21, 2023
f2c993a
add root, layout tweaks, couple fixes
VSadov Apr 22, 2023
9e60d58
all pass
VSadov Apr 22, 2023
530e7b3
more compact storage
VSadov Apr 22, 2023
18395e9
unix x64 asm helper
VSadov Apr 22, 2023
ad25223
arm64
VSadov Apr 22, 2023
2671c9d
tweak arm64
VSadov Apr 23, 2023
13270c6
simplify GetThreadStaticBaseForType
VSadov Apr 23, 2023
383961c
renames
VSadov Apr 23, 2023
b802437
Undo unnecessary changes
VSadov Apr 23, 2023
d88d024
a few tweaks
VSadov Apr 23, 2023
79cfc7e
add some comments and asserts
VSadov Apr 23, 2023
1802dd7
INLINE_GET_TLS_VAR for win-x64
VSadov Apr 28, 2023
76b4884
moved the managed tls root off the thread
VSadov Apr 28, 2023
39cdd4c
unix x64
VSadov Apr 28, 2023
b81666f
unix arm64
VSadov Apr 28, 2023
567f5eb
win-arm64
VSadov Apr 28, 2023
cfc81f0
adjust dwarf test for fewer warnings
VSadov Apr 28, 2023
1ee3b96
remove unused asm offsets
VSadov Apr 28, 2023
419af38
PR feedback
VSadov May 1, 2023
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
adjust dwarf test for fewer warnings
  • Loading branch information
VSadov committed May 4, 2023
commit cfc81f0bf333987102db86701f41a48cef3f68ad
2 changes: 1 addition & 1 deletion src/tests/nativeaot/SmokeTests/DwarfDump/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static int Main(string[] args)

// Just count the number of warnings and errors. There are so many right now that it's not worth enumerating the list
#if DEBUG
const int MinWarnings = 16500;
const int MinWarnings = 12000;
const int MaxWarnings = 20000;
#else
const int MinWarnings = 12000;
Expand Down