You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/jlgen.jl
+11-3
Original file line number
Diff line number
Diff line change
@@ -692,16 +692,22 @@ function compile_method_instance(@nospecialize(job::CompilerJob))
692
692
error("Cannot compile $(job.source) for world $(job.world); method is only valid in worlds $(job.source.def.primary_world) to $(job.source.def.deleted_world)")
693
693
end
694
694
695
+
# A poor man's worklist implementation.
696
+
# `compiled` contains a mapping from `mi->ci, func, specfunc`
697
+
#FIXME: Since we are disabling Julia internal caching we might
698
+
# generate for the same mi multiple LLVM functions.
699
+
# `outstanding` are the missing edges that were not compiled by `compile_method_instance`
700
+
# Currently these edges are generated through deferred codegen.
0 commit comments