Home
last modified time | relevance | path

Searched refs:cleanup_body (Results 1 – 10 of 10) sorted by relevance

/dports/databases/py-gdbm/Python-3.8.12/Python/
H A Dcompile.c3033 basicblock *cleanup_end, *cleanup_body; in compiler_try_except() local
3036 cleanup_body = compiler_new_block(c); in compiler_try_except()
3037 if (cleanup_end == NULL || cleanup_body == NULL) { in compiler_try_except()
3057 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3065 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); in compiler_try_except()
3082 basicblock *cleanup_body; in compiler_try_except() local
3084 cleanup_body = compiler_new_block(c); in compiler_try_except()
3085 if (!cleanup_body) in compiler_try_except()
3090 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3091 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL)) in compiler_try_except()
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Python/
H A Dcompile.c3033 basicblock *cleanup_end, *cleanup_body; in compiler_try_except() local
3036 cleanup_body = compiler_new_block(c); in compiler_try_except()
3037 if (cleanup_end == NULL || cleanup_body == NULL) { in compiler_try_except()
3057 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3065 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); in compiler_try_except()
3082 basicblock *cleanup_body; in compiler_try_except() local
3084 cleanup_body = compiler_new_block(c); in compiler_try_except()
3085 if (!cleanup_body) in compiler_try_except()
3090 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3091 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL)) in compiler_try_except()
[all …]
/dports/lang/python-tools/Python-3.8.12/Python/
H A Dcompile.c3033 basicblock *cleanup_end, *cleanup_body; in compiler_try_except() local
3036 cleanup_body = compiler_new_block(c); in compiler_try_except()
3037 if (cleanup_end == NULL || cleanup_body == NULL) { in compiler_try_except()
3057 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3065 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); in compiler_try_except()
3082 basicblock *cleanup_body; in compiler_try_except() local
3084 cleanup_body = compiler_new_block(c); in compiler_try_except()
3085 if (!cleanup_body) in compiler_try_except()
3090 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3091 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL)) in compiler_try_except()
[all …]
/dports/lang/python37/Python-3.7.12/Python/
H A Dcompile.c2669 basicblock *cleanup_end, *cleanup_body; in compiler_try_except() local
2672 cleanup_body = compiler_new_block(c); in compiler_try_except()
2673 if (cleanup_end == NULL || cleanup_body == NULL) { in compiler_try_except()
2693 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
2694 if (!compiler_push_fblock(c, FINALLY_TRY, cleanup_body)) in compiler_try_except()
2700 compiler_pop_fblock(c, FINALLY_TRY, cleanup_body); in compiler_try_except()
2720 basicblock *cleanup_body; in compiler_try_except() local
2722 cleanup_body = compiler_new_block(c); in compiler_try_except()
2723 if (!cleanup_body) in compiler_try_except()
2728 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
[all …]
/dports/lang/python38/Python-3.8.12/Python/
H A Dcompile.c3033 basicblock *cleanup_end, *cleanup_body; in compiler_try_except() local
3036 cleanup_body = compiler_new_block(c); in compiler_try_except()
3037 if (cleanup_end == NULL || cleanup_body == NULL) { in compiler_try_except()
3057 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3065 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); in compiler_try_except()
3082 basicblock *cleanup_body; in compiler_try_except() local
3084 cleanup_body = compiler_new_block(c); in compiler_try_except()
3085 if (!cleanup_body) in compiler_try_except()
3090 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3091 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL)) in compiler_try_except()
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Python/
H A Dcompile.c3033 basicblock *cleanup_end, *cleanup_body; in compiler_try_except() local
3036 cleanup_body = compiler_new_block(c); in compiler_try_except()
3037 if (cleanup_end == NULL || cleanup_body == NULL) { in compiler_try_except()
3057 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3065 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); in compiler_try_except()
3082 basicblock *cleanup_body; in compiler_try_except() local
3084 cleanup_body = compiler_new_block(c); in compiler_try_except()
3085 if (!cleanup_body) in compiler_try_except()
3090 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3091 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL)) in compiler_try_except()
[all …]
/dports/lang/python39/Python-3.9.9/Python/
H A Dcompile.c3099 basicblock *cleanup_end, *cleanup_body; in compiler_try_except() local
3102 cleanup_body = compiler_new_block(c); in compiler_try_except()
3103 if (cleanup_end == NULL || cleanup_body == NULL) { in compiler_try_except()
3123 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3129 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); in compiler_try_except()
3149 basicblock *cleanup_body; in compiler_try_except() local
3151 cleanup_body = compiler_new_block(c); in compiler_try_except()
3152 if (!cleanup_body) in compiler_try_except()
3157 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3158 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL, NULL)) in compiler_try_except()
[all …]
/dports/lang/python310/Python-3.10.1/Python/
H A Dcompile.c3202 basicblock *cleanup_end, *cleanup_body; in compiler_try_except() local
3205 cleanup_body = compiler_new_block(c); in compiler_try_except()
3206 if (cleanup_end == NULL || cleanup_body == NULL) { in compiler_try_except()
3226 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3232 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); in compiler_try_except()
3254 basicblock *cleanup_body; in compiler_try_except() local
3256 cleanup_body = compiler_new_block(c); in compiler_try_except()
3257 if (!cleanup_body) in compiler_try_except()
3262 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3263 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL, NULL)) in compiler_try_except()
[all …]
/dports/lang/python311/Python-3.11.0a3/Python/
H A Dcompile.c3264 basicblock *cleanup_end, *cleanup_body; in compiler_try_except() local
3267 cleanup_body = compiler_new_block(c); in compiler_try_except()
3268 if (cleanup_end == NULL || cleanup_body == NULL) { in compiler_try_except()
3288 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3294 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); in compiler_try_except()
3318 basicblock *cleanup_body; in compiler_try_except() local
3320 cleanup_body = compiler_new_block(c); in compiler_try_except()
3321 if (!cleanup_body) in compiler_try_except()
3326 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3327 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL, NULL)) in compiler_try_except()
[all …]
/dports/games/angband/Angband-4.2.2/src/
H A Dinit.c2023 static void cleanup_body(void) in cleanup_body() function
2045 cleanup_body