mirror of
https://github.com/open-goal/jak-project
synced 2026-09-09 20:21:28 -04:00
[decompile] bsp-h (#562)
* decompile bsp-h * a few more * some more * fix merge conflicts
This commit is contained in:
@@ -68,25 +68,22 @@
|
||||
;; failed to figure out what this is:
|
||||
(set! (-> perf-stat-array heap-base) (the-as uint 52))
|
||||
|
||||
;; definition for method 11 of type perf-stat
|
||||
;; ERROR: function was not converted to expressions. Cannot decompile.
|
||||
(defmethod PERF-COUNTER-REG-ACCESS-11 perf-stat ((obj perf-stat))
|
||||
"Perfomance counters are not implemented, so this does nothing."
|
||||
(none)
|
||||
)
|
||||
|
||||
;; definition for method 12 of type perf-stat
|
||||
;; ERROR: function was not converted to expressions. Cannot decompile.
|
||||
(defmethod PERF-COUNTER-REG-ACCESS-12 perf-stat ((obj perf-stat))
|
||||
"Perfomance counters are not implemented, so this does nothing."
|
||||
(none)
|
||||
)
|
||||
|
||||
;; definition for method 13 of type perf-stat
|
||||
;; INFO: Return type mismatch int vs none.
|
||||
(defmethod
|
||||
update-wait-stats-13
|
||||
perf-stat
|
||||
((obj perf-stat) (arg0 uint) (arg1 uint) (arg2 uint))
|
||||
(defmethod update-wait-stats-13 perf-stat ((obj perf-stat) (arg0 uint) (arg1 uint) (arg2 uint))
|
||||
(when (nonzero? (-> obj ctrl))
|
||||
(set! (-> obj to-vu0-waits) (+ (-> obj to-vu0-waits) arg0))
|
||||
(set! (-> obj to-spr-waits) (+ (-> obj to-spr-waits) arg1))
|
||||
(set! (-> obj from-spr-waits) (+ (-> obj from-spr-waits) arg2))
|
||||
)
|
||||
(let ((v0-0 0))
|
||||
)
|
||||
(none)
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user