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

Extract recording #1245

Merged
merged 56 commits into from
Nov 23, 2023
Merged
Changes from 1 commit
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
a1a4129
Extracted callees
fikovnik Jun 20, 2023
0639778
Removing the callees from more places
fikovnik Jun 21, 2023
1a3c571
Keep the information at the Function level
fikovnik Jun 26, 2023
55abdeb
Added support for test and type
fikovnik Jun 26, 2023
a8dd21a
Missed a place to update the feedback
fikovnik Jul 7, 2023
0d3819d
Fix type feedback from closures
fikovnik Jul 11, 2023
ca8fd9c
Consolidate names - use Type instead of Value
fikovnik Jul 11, 2023
c524a5d
Fixed typo
fikovnik Jul 11, 2023
f4670e8
Fix missing dispatch table
fikovnik Jul 12, 2023
e6f84ee
Add target into the record instruction
fikovnik Jul 13, 2023
7c3023e
Update the print methods on DT
fikovnik Jul 13, 2023
a24e34a
Remove the support for Record in PIR
fikovnik Jul 13, 2023
6829dc9
Cleanup
fikovnik Jul 13, 2023
c1d1acd
Another cleanup
fikovnik Jul 13, 2023
07b5fd3
Add support for TF serialization and deserialization
fikovnik Jul 14, 2023
cc832d8
Fixed missed initialization of TypeFeedback::owner_.
fikovnik Jul 14, 2023
b9c99de
Fixes
fikovnik Jul 14, 2023
1be92d9
Fixes - attempt to find the leak
fikovnik Jul 18, 2023
7acb4e8
Fixup
fikovnik Jul 19, 2023
a23369e
Fix deserialization
fikovnik Jul 19, 2023
799bb95
Refactor TypeFeedback to be RirRuntimeObject
fikovnik Jul 20, 2023
69e6254
Add ninja command allowing to rebuild without leaving gdb
fikovnik Jul 20, 2023
e5748ef
Fix TypeFeedback constructor when slots ar empty
fikovnik Jul 20, 2023
14c3fb7
Inline type feedback info into BC instructions
fikovnik Jul 24, 2023
02207c0
Parameterize the BC code size for OSR triggering
fikovnik Jul 25, 2023
a7791dc
Fix invalid type feedback offset
fikovnik Jul 25, 2023
353d69a
Make the code as it was in master
fikovnik Jul 25, 2023
9667bba
Fix type feedback slot indices
fikovnik Aug 7, 2023
490aaef
Cache typeFeedback pointer in interpreter
fikovnik Aug 7, 2023
06bd7d6
Pin the ReBench version to v1.1.0 which works
fikovnik Aug 9, 2023
1d9fbd3
Use three arrays instead of one for the type feedback
fikovnik Aug 15, 2023
4928ba2
Fix missed typed feedback from OSR
fikovnik Aug 15, 2023
b1466ad
Address cppcheck issues
fikovnik Aug 15, 2023
9e95ce7
Fix printing typefeedback without slot
fikovnik Aug 17, 2023
9290619
Remove fixed FIXMEs
fikovnik Aug 18, 2023
17a1227
Merge branch 'master' into extract-recording
fikovnik Aug 28, 2023
6c35787
Simplify to use just references instead of moves
fikovnik Aug 29, 2023
16a2086
Test pipeline 1
fikovnik Aug 31, 2023
dde6739
Disabling time-based compilation heuristics
fikovnik Sep 20, 2023
c044f13
Do not reoptimize already optimized functions
fikovnik Sep 20, 2023
744a697
Remove time-based heuristics and add type feedback versioning
fikovnik Sep 29, 2023
50b8d80
Fix serialization
fikovnik Sep 29, 2023
82ec9fc
Fix missing protect
fikovnik Sep 29, 2023
768810d
Lowering PIR_WARMUP to 50
fikovnik Oct 2, 2023
7818b6b
Set PIR_WARMUP just as a test
fikovnik Oct 6, 2023
f2c1866
Playing with tresholds
fikovnik Oct 13, 2023
c08f12f
Merge branch 'master' into extract-recording
fikovnik Oct 17, 2023
f80de27
Merge branch 'master' into extract-recording
fikovnik Oct 23, 2023
0d9889a
Disable pir_check to run in deopt chaos (fixes #1258)
fikovnik Nov 7, 2023
8abba87
Fix null deref in the case of failed OSR
fikovnik Nov 8, 2023
08c4144
Set PIR_WARMUP to 3
fikovnik Nov 8, 2023
1a3bcdf
Set PIR_WARMUP to 100
fikovnik Nov 8, 2023
78c4538
Cleanup
fikovnik Nov 8, 2023
4998a9b
Applying Seb's comments
fikovnik Nov 21, 2023
2642012
Pull back time based heurictic
fikovnik Nov 22, 2023
f8de583
Reset thresolds back to master
fikovnik Nov 22, 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
Add ninja command allowing to rebuild without leaving gdb
  • Loading branch information
fikovnik committed Jul 20, 2023
commit 69e6254ef52c3f5db0915897569fc36025e0bcd2
6 changes: 6 additions & 0 deletions .gdbinit
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,12 @@ define ds
dumpsxp $arg0 1
end

define ninja
shell ninja
python gdb.execute("file " + gdb.current_progspace().filename)
directory
end

# source .pirpp.py


Expand Down