@@ -131,13 +131,34 @@ static jl_value_t *scm_to_julia(fl_context_t *fl_ctx, value_t e, jl_module_t *mo
131
131
static value_t julia_to_scm (fl_context_t * fl_ctx , jl_value_t * v );
132
132
static jl_value_t * jl_expand_macros (jl_value_t * expr , jl_module_t * inmodule , struct macroctx_stack * macroctx , int onelevel );
133
133
134
+ value_t fl_defined_julia_global (fl_context_t * fl_ctx , value_t * args , uint32_t nargs )
135
+ {
136
+ // tells whether a var is defined in and *by* the current module
137
+ argcount (fl_ctx , "defined-julia-global" , nargs , 1 );
138
+ (void )tosymbol (fl_ctx , args [0 ], "defined-julia-global" );
139
+ jl_ast_context_t * ctx = jl_ast_ctx (fl_ctx );
140
+ jl_sym_t * var = jl_symbol (symbol_name (fl_ctx , args [0 ]));
141
+ jl_binding_t * b = jl_get_module_binding (ctx -> module , var );
142
+ return (b != NULL && b -> owner == ctx -> module ) ? fl_ctx -> T : fl_ctx -> F ;
143
+ }
144
+
134
145
value_t fl_current_module_counter (fl_context_t * fl_ctx , value_t * args , uint32_t nargs )
135
146
{
136
147
jl_ast_context_t * ctx = jl_ast_ctx (fl_ctx );
137
148
assert (ctx -> module );
138
149
return fixnum (jl_module_next_counter (ctx -> module ));
139
150
}
140
151
152
+ value_t fl_julia_current_file (fl_context_t * fl_ctx , value_t * args , uint32_t nargs )
153
+ {
154
+ return symbol (fl_ctx , jl_filename );
155
+ }
156
+
157
+ value_t fl_julia_current_line (fl_context_t * fl_ctx , value_t * args , uint32_t nargs )
158
+ {
159
+ return fixnum (jl_lineno );
160
+ }
161
+
141
162
// Check whether v is a scalar for purposes of inlining fused-broadcast
142
163
// arguments when lowering; should agree with broadcast.jl on what is a
143
164
// scalar. When in doubt, return false, since this is only an optimization.
@@ -197,9 +218,12 @@ value_t fl_julia_logmsg(fl_context_t *fl_ctx, value_t *args, uint32_t nargs)
197
218
}
198
219
199
220
static const builtinspec_t julia_flisp_ast_ext [] = {
221
+ { "defined-julia-global" , fl_defined_julia_global },
200
222
{ "current-julia-module-counter" , fl_current_module_counter },
201
223
{ "julia-scalar?" , fl_julia_scalar },
202
224
{ "julia-logmsg" , fl_julia_logmsg },
225
+ { "julia-current-file" , fl_julia_current_file },
226
+ { "julia-current-line" , fl_julia_current_line },
203
227
{ NULL , NULL }
204
228
};
205
229
@@ -227,6 +251,7 @@ static void jl_init_ast_ctx(jl_ast_context_t *ast_ctx) JL_NOTSAFEPOINT
227
251
ctx -> task = NULL ;
228
252
ctx -> module = NULL ;
229
253
set (symbol (fl_ctx , "*depwarn-opt*" ), fixnum (jl_options .depwarn ));
254
+ set (symbol (fl_ctx , "*scopewarn-opt*" ), fixnum (jl_options .warn_scope ));
230
255
}
231
256
232
257
// There should be no GC allocation while holding this lock
@@ -859,9 +884,10 @@ jl_value_t *jl_parse_eval_all(const char *fname,
859
884
}
860
885
// expand non-final expressions in statement position (value unused)
861
886
expression =
862
- fl_applyn (fl_ctx , 3 ,
863
- symbol_value (symbol (fl_ctx , iscons (cdr_ (ast )) ? "jl-expand-to-thunk-stmt" : "jl-expand-to-thunk" )),
864
- expression , symbol (fl_ctx , jl_filename ), fixnum (jl_lineno ));
887
+ fl_applyn (fl_ctx , 4 ,
888
+ symbol_value (symbol (fl_ctx , "jl-expand-to-thunk-warn" )),
889
+ expression , symbol (fl_ctx , jl_filename ), fixnum (jl_lineno ),
890
+ iscons (cdr_ (ast )) ? fl_ctx -> T : fl_ctx -> F );
865
891
}
866
892
jl_get_ptls_states ()-> world_age = jl_world_counter ;
867
893
form = scm_to_julia (fl_ctx , expression , inmodule );
@@ -1171,6 +1197,13 @@ JL_DLLEXPORT jl_value_t *jl_macroexpand1(jl_value_t *expr, jl_module_t *inmodule
1171
1197
return expr ;
1172
1198
}
1173
1199
1200
+ // Lower an expression tree into Julia's intermediate-representation.
1201
+ JL_DLLEXPORT jl_value_t * jl_expand (jl_value_t * expr , jl_module_t * inmodule )
1202
+ {
1203
+ return jl_expand_with_loc (expr , inmodule , "none" , 0 );
1204
+ }
1205
+
1206
+ // Lowering, with starting program location specified
1174
1207
JL_DLLEXPORT jl_value_t * jl_expand_with_loc (jl_value_t * expr , jl_module_t * inmodule ,
1175
1208
const char * file , int line )
1176
1209
{
@@ -1183,10 +1216,25 @@ JL_DLLEXPORT jl_value_t *jl_expand_with_loc(jl_value_t *expr, jl_module_t *inmod
1183
1216
return expr ;
1184
1217
}
1185
1218
1186
- // Lower an expression tree into Julia's intermediate-representation.
1187
- JL_DLLEXPORT jl_value_t * jl_expand (jl_value_t * expr , jl_module_t * inmodule )
1219
+ // Same as the above, but printing warnings when applicable
1220
+ JL_DLLEXPORT jl_value_t * jl_expand_with_loc_warn (jl_value_t * expr , jl_module_t * inmodule ,
1221
+ const char * file , int line )
1188
1222
{
1189
- return jl_expand_with_loc (expr , inmodule , "none" , 0 );
1223
+ JL_TIMING (LOWERING );
1224
+ JL_GC_PUSH1 (& expr );
1225
+ expr = jl_copy_ast (expr );
1226
+ expr = jl_expand_macros (expr , inmodule , NULL , 0 );
1227
+ jl_ast_context_t * ctx = jl_ast_ctx_enter ();
1228
+ fl_context_t * fl_ctx = & ctx -> fl ;
1229
+ JL_AST_PRESERVE_PUSH (ctx , old_roots , inmodule );
1230
+ value_t arg = julia_to_scm (fl_ctx , expr );
1231
+ value_t e = fl_applyn (fl_ctx , 4 , symbol_value (symbol (fl_ctx , "jl-expand-to-thunk-warn" )), arg ,
1232
+ symbol (fl_ctx , file ), fixnum (line ), fl_ctx -> F );
1233
+ expr = scm_to_julia (fl_ctx , e , inmodule );
1234
+ JL_AST_PRESERVE_POP (ctx , old_roots );
1235
+ jl_ast_ctx_leave (ctx );
1236
+ JL_GC_POP ();
1237
+ return expr ;
1190
1238
}
1191
1239
1192
1240
// expand in a context where the expression value is unused
0 commit comments