Construct CallCompiledInstanceMethodPosArgsConstant6_27

Performance Diagrams

Construct CallCompiledInstanceMethodPosArgsConstant6_27 002000000020000000400000004000000060000000600000008000000080000000100000000100000000120000000120000000140000000140000000160000000160000000180000000180000000200000000200000000220000000220000000CPython 2.7Nuitka (main)Nuitka (develop)Nuitka (factory)22515741388.11538461538461257.0CPython 2.775664444240.03846153846155421.07193544958153Nuitka (main)75663446391.96153846153845421.07303077729273Nuitka (develop)75663446543.8846153846154421.07303077729273Nuitka (factory)Construct CallCompiledInstanceMethodPosArgsConstant6_27Ticks

Source Code with Construct

    inst.compiled_method("some", "random", "values", "to", "check", "call")
    inst.compiled_method("some", "other", "values", "to", "check", "call")
    inst.compiled_method("some", "new", "values", "to", "check", "call")

    # construct_alternative




for x in itertools.repeat(None, 50000):
    calledRepeatedly()

print("OK.")

#     Python test originally created or extracted from other peoples work. The
#     parts from me are licensed as below. It is at least Free Software where
#     it's copied from other people. In these cases, that will normally be
#     indicated.
#
#     Licensed under the Apache License, Version 2.0 (the "License");
#     you may not use this file except in compliance with the License.
#     You may obtain a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#     Unless required by applicable law or agreed to in writing, software
#     distributed under the License is distributed on an "AS IS" BASIS,
#     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#     See the License for the specific language governing permissions and
#     limitations under the License.

Source Code without Construct

    # construct_alternative
    pass
    # construct_end


for x in itertools.repeat(None, 50000):
    calledRepeatedly()

print("OK.")

#     Python test originally created or extracted from other peoples work. The
#     parts from me are licensed as below. It is at least Free Software where
#     it's copied from other people. In these cases, that will normally be
#     indicated.
#
#     Licensed under the Apache License, Version 2.0 (the "License");
#     you may not use this file except in compliance with the License.
#     You may obtain a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#     Unless required by applicable law or agreed to in writing, software
#     distributed under the License is distributed on an "AS IS" BASIS,
#     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#     See the License for the specific language governing permissions and
#     limitations under the License.

Context Diff of Source Code


Construct
Baseline
15     inst = C() 15     inst = C()
16 16
17     # This is supposed to make a call to a compiled method, which is 17     # This is supposed to make a call to a compiled method, which is
18     # being optimized separately. 18     # being optimized separately.
19     # construct_begin 19     # construct_begin
n 20     inst.compiled_method("some", "random", "values", "to", "check", "call") n 20  
21     inst.compiled_method("some", "other", "values", "to", "check", "call") 21  
22     inst.compiled_method("some", "new", "values", "to", "check", "call") 22  
23 23
24     # construct_alternative 24     # construct_alternative
t 25   t 25     pass
26   26     # construct_end
27 27
28 28
29 for x in itertools.repeat(None, 50000): 29 for x in itertools.repeat(None, 50000):
30     calledRepeatedly() 30     calledRepeatedly()
31 31

Context Diff of Generated Code


Construct
Baseline
31 31
32 PyObject *module___main__; 32 PyObject *module___main__;
33 PyDictObject *moduledict___main__; 33 PyDictObject *moduledict___main__;
34 34
35 /* The declarations of module constants used, if any. */ 35 /* The declarations of module constants used, if any. */
n 36 static PyObject *mod_consts[23]; n 36 static PyObject *mod_consts[20];
37 #ifndef __NUITKA_NO_ASSERT__ 37 #ifndef __NUITKA_NO_ASSERT__
n 38 static Py_hash_t mod_consts_hash[23]; n 38 static Py_hash_t mod_consts_hash[20];
39 #endif 39 #endif
40 40
41 static PyObject *module_filename_obj = NULL; 41 static PyObject *module_filename_obj = NULL;
42 42
43 /* Indicator if this modules private constants were created yet. */ 43 /* Indicator if this modules private constants were created yet. */
48     if (constants_created == false) { 48     if (constants_created == false) {
49         loadConstantsBlob(tstate, &mod_consts[0], UNTRANSLATE("__main__")); 49         loadConstantsBlob(tstate, &mod_consts[0], UNTRANSLATE("__main__"));
50         constants_created = true; 50         constants_created = true;
51 51
52 #ifndef __NUITKA_NO_ASSERT__ 52 #ifndef __NUITKA_NO_ASSERT__
n 53         for (int i = 0; i < 23; i++) { n 53         for (int i = 0; i < 20; i++) {
54             mod_consts_hash[i] = DEEP_HASH(tstate, mod_consts[i]); 54             mod_consts_hash[i] = DEEP_HASH(tstate, mod_consts[i]);
55         } 55         }
56 #endif 56 #endif
57     } 57     }
58 } 58 }
68 #ifndef __NUITKA_NO_ASSERT__ 68 #ifndef __NUITKA_NO_ASSERT__
69 void checkModuleConstants___main__(PyThreadState *tstate) { 69 void checkModuleConstants___main__(PyThreadState *tstate) {
70     // The module may not have been used at all, then ignore this. 70     // The module may not have been used at all, then ignore this.
71     if (constants_created == false) return; 71     if (constants_created == false) return;
72 72
n 73     for (int i = 0; i < 23; i++) { n 73     for (int i = 0; i < 20; i++) {
74         assert(mod_consts_hash[i] == DEEP_HASH(tstate, mod_consts[i])); 74         assert(mod_consts_hash[i] == DEEP_HASH(tstate, mod_consts[i]));
75         CHECK_OBJECT_DEEP(mod_consts[i]); 75         CHECK_OBJECT_DEEP(mod_consts[i]);
76     } 76     }
77 } 77 }
78 #endif 78 #endif
83 static PyCodeObject *codeobj_6bb7f5e2d5763c9a57e6d58d5bca8084; 83 static PyCodeObject *codeobj_6bb7f5e2d5763c9a57e6d58d5bca8084;
84 /* For use in "MainProgram.c". */ 84 /* For use in "MainProgram.c". */
85 PyCodeObject *codeobj_main = NULL; 85 PyCodeObject *codeobj_main = NULL;
86 86
87 static void createModuleCodeObjects(void) { 87 static void createModuleCodeObjects(void) {
n 88     module_filename_obj = mod_consts[6]; CHECK_OBJECT(module_filename_obj); n 88     module_filename_obj = mod_consts[2]; CHECK_OBJECT(module_filename_obj);
89     codeobj_1315d2f6985387432a232c813183d38b = MAKE_CODE_OBJECT(module_filename_obj, 1, CO_NOFREE | CO_FUTURE_PRINT_FUNCTION, mod_consts[19], mod_consts[19], NULL, NULL, 0, 0, 0); 89     codeobj_1315d2f6985387432a232c813183d38b = MAKE_CODE_OBJECT(module_filename_obj, 1, CO_NOFREE | CO_FUTURE_PRINT_FUNCTION, mod_consts[16], mod_consts[16], NULL, NULL, 0, 0, 0);
90     codeobj_main = codeobj_1315d2f6985387432a232c813183d38b; 90     codeobj_main = codeobj_1315d2f6985387432a232c813183d38b;
n 91     codeobj_998184c530a5a88691a257c4e8305abd = MAKE_CODE_OBJECT(module_filename_obj, 14, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE | CO_FUTURE_PRINT_FUNCTION, mod_consts[13], mod_consts[13], mod_consts[20], NULL, 0, 0, 0); n 91     codeobj_998184c530a5a88691a257c4e8305abd = MAKE_CODE_OBJECT(module_filename_obj, 14, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE | CO_FUTURE_PRINT_FUNCTION, mod_consts[10], mod_consts[10], mod_consts[17], NULL, 0, 0, 0);
92     codeobj_6bb7f5e2d5763c9a57e6d58d5bca8084 = MAKE_CODE_OBJECT(module_filename_obj, 10, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE | CO_FUTURE_PRINT_FUNCTION, mod_consts[1], mod_consts[21], mod_consts[22], NULL, 7, 0, 0); 92     codeobj_6bb7f5e2d5763c9a57e6d58d5bca8084 = MAKE_CODE_OBJECT(module_filename_obj, 10, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE | CO_FUTURE_PRINT_FUNCTION, mod_consts[6], mod_consts[18], mod_consts[19], NULL, 7, 0, 0);
93 } 93 }
94 94
95 // The module function declarations. 95 // The module function declarations.
96 static PyObject *MAKE_FUNCTION___main__$$$function__1_compiled_method(); 96 static PyObject *MAKE_FUNCTION___main__$$$function__1_compiled_method();
97 97
182     NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL; 182     NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL;
183     PyObject *exception_type = NULL; 183     PyObject *exception_type = NULL;
184     PyObject *exception_value = NULL; 184     PyObject *exception_value = NULL;
185     PyTracebackObject *exception_tb = NULL; 185     PyTracebackObject *exception_tb = NULL;
186     NUITKA_MAY_BE_UNUSED int exception_lineno = 0; 186     NUITKA_MAY_BE_UNUSED int exception_lineno = 0;
n 187     NUITKA_MAY_BE_UNUSED nuitka_void tmp_unused; n
188     static struct Nuitka_FrameObject *cache_frame_998184c530a5a88691a257c4e8305abd = NULL; 187     static struct Nuitka_FrameObject *cache_frame_998184c530a5a88691a257c4e8305abd = NULL;
189     PyObject *tmp_return_value = NULL; 188     PyObject *tmp_return_value = NULL;
190     PyObject *exception_keeper_type_1; 189     PyObject *exception_keeper_type_1;
191     PyObject *exception_keeper_value_1; 190     PyObject *exception_keeper_value_1;
192     PyTracebackObject *exception_keeper_tb_1; 191     PyTracebackObject *exception_keeper_tb_1;
252             type_description_1 = "o"; 251             type_description_1 = "o";
253             goto frame_exception_exit_1; 252             goto frame_exception_exit_1;
254         } 253         }
255         assert(var_inst == NULL); 254         assert(var_inst == NULL);
256         var_inst = tmp_assign_source_1; 255         var_inst = tmp_assign_source_1;
n 257     } n
258     {
259         PyObject *tmp_called_instance_1;
260         PyObject *tmp_call_result_1;
261         CHECK_OBJECT(var_inst);
262         tmp_called_instance_1 = var_inst;
263         frame_998184c530a5a88691a257c4e8305abd->m_frame.f_lineno = 20;
264         tmp_call_result_1 = CALL_METHOD_WITH_ARGS6(
265             tstate,
266             tmp_called_instance_1,
267             mod_consts[1],
268             &PyTuple_GET_ITEM(mod_consts[2], 0)
269         );
270  
271         if (tmp_call_result_1 == NULL) {
272             assert(HAS_ERROR_OCCURRED(tstate));
273  
274             FETCH_ERROR_OCCURRED(tstate, &exception_type, &exception_value, &exception_tb);
275  
276  
277             exception_lineno = 20;
278             type_description_1 = "o";
279             goto frame_exception_exit_1;
280         }
281         Py_DECREF(tmp_call_result_1);
282     }
283     {
284         PyObject *tmp_called_instance_2;
285         PyObject *tmp_call_result_2;
286         CHECK_OBJECT(var_inst);
287         tmp_called_instance_2 = var_inst;
288         frame_998184c530a5a88691a257c4e8305abd->m_frame.f_lineno = 21;
289         tmp_call_result_2 = CALL_METHOD_WITH_ARGS6(
290             tstate,
291             tmp_called_instance_2,
292             mod_consts[1],
293             &PyTuple_GET_ITEM(mod_consts[3], 0)
294         );
295  
296         if (tmp_call_result_2 == NULL) {
297             assert(HAS_ERROR_OCCURRED(tstate));
298  
299             FETCH_ERROR_OCCURRED(tstate, &exception_type, &exception_value, &exception_tb);
300  
301  
302             exception_lineno = 21;
303             type_description_1 = "o";
304             goto frame_exception_exit_1;
305         }
306         Py_DECREF(tmp_call_result_2);
307     }
308     {
309         PyObject *tmp_called_instance_3;
310         PyObject *tmp_call_result_3;
311         CHECK_OBJECT(var_inst);
312         tmp_called_instance_3 = var_inst;
313         frame_998184c530a5a88691a257c4e8305abd->m_frame.f_lineno = 22;
314         tmp_call_result_3 = CALL_METHOD_WITH_ARGS6(
315             tstate,
316             tmp_called_instance_3,
317             mod_consts[1],
318             &PyTuple_GET_ITEM(mod_consts[4], 0)
319         );
320  
321         if (tmp_call_result_3 == NULL) {
322             assert(HAS_ERROR_OCCURRED(tstate));
323  
324             FETCH_ERROR_OCCURRED(tstate, &exception_type, &exception_value, &exception_tb);
325  
326  
327             exception_lineno = 22;
328             type_description_1 = "o";
329             goto frame_exception_exit_1;
330         }
331         Py_DECREF(tmp_call_result_3);
332     } 256     }
333 257
334 258
335     // Put the previous frame back on top. 259     // Put the previous frame back on top.
336     popFrameStack(tstate); 260     popFrameStack(tstate);
391     exception_type = NULL; 315     exception_type = NULL;
392     exception_value = NULL; 316     exception_value = NULL;
393     exception_tb = NULL; 317     exception_tb = NULL;
394     exception_lineno = 0; 318     exception_lineno = 0;
395 319
n 396     Py_XDECREF(var_inst); n
397     var_inst = NULL;
398     // Re-raise. 320     // Re-raise.
399     exception_type = exception_keeper_type_1; 321     exception_type = exception_keeper_type_1;
400     exception_value = exception_keeper_value_1; 322     exception_value = exception_keeper_value_1;
401     exception_tb = exception_keeper_tb_1; 323     exception_tb = exception_keeper_tb_1;
402     exception_lineno = exception_keeper_lineno_1; 324     exception_lineno = exception_keeper_lineno_1;
428 350
429 351
430 static PyObject *MAKE_FUNCTION___main__$$$function__1_compiled_method() { 352 static PyObject *MAKE_FUNCTION___main__$$$function__1_compiled_method() {
431     struct Nuitka_FunctionObject *result = Nuitka_Function_New( 353     struct Nuitka_FunctionObject *result = Nuitka_Function_New(
432         impl___main__$$$function__1_compiled_method, 354         impl___main__$$$function__1_compiled_method,
n 433         mod_consts[1], n 355         mod_consts[6],
434 #if PYTHON_VERSION >= 0x300 356 #if PYTHON_VERSION >= 0x300
435         NULL, 357         NULL,
436 #endif 358 #endif
437         codeobj_6bb7f5e2d5763c9a57e6d58d5bca8084, 359         codeobj_6bb7f5e2d5763c9a57e6d58d5bca8084,
438         NULL, 360         NULL,
453 375
454 376
455 static PyObject *MAKE_FUNCTION___main__$$$function__2_calledRepeatedly() { 377 static PyObject *MAKE_FUNCTION___main__$$$function__2_calledRepeatedly() {
456     struct Nuitka_FunctionObject *result = Nuitka_Function_New( 378     struct Nuitka_FunctionObject *result = Nuitka_Function_New(
457         impl___main__$$$function__2_calledRepeatedly, 379         impl___main__$$$function__2_calledRepeatedly,
n 458         mod_consts[13], n 380         mod_consts[10],
459 #if PYTHON_VERSION >= 0x300 381 #if PYTHON_VERSION >= 0x300
460         NULL, 382         NULL,
461 #endif 383 #endif
462         codeobj_998184c530a5a88691a257c4e8305abd, 384         codeobj_998184c530a5a88691a257c4e8305abd,
463         NULL, 385         NULL,
857 779
858     // Module code. 780     // Module code.
859     { 781     {
860         PyObject *tmp_assign_source_1; 782         PyObject *tmp_assign_source_1;
861         tmp_assign_source_1 = Py_None; 783         tmp_assign_source_1 = Py_None;
n 862         UPDATE_STRING_DICT0(moduledict___main__, (Nuitka_StringObject *)mod_consts[5], tmp_assign_source_1); n 784         UPDATE_STRING_DICT0(moduledict___main__, (Nuitka_StringObject *)mod_consts[1], tmp_assign_source_1);
863     } 785     }
864     { 786     {
865         PyObject *tmp_assign_source_2; 787         PyObject *tmp_assign_source_2;
n 866         tmp_assign_source_2 = mod_consts[6]; n 788         tmp_assign_source_2 = mod_consts[2];
867         UPDATE_STRING_DICT0(moduledict___main__, (Nuitka_StringObject *)mod_consts[7], tmp_assign_source_2); 789         UPDATE_STRING_DICT0(moduledict___main__, (Nuitka_StringObject *)mod_consts[3], tmp_assign_source_2);
868     } 790     }
869     { 791     {
870         PyObject *tmp_assign_source_3; 792         PyObject *tmp_assign_source_3;
871         { 793         {
872             PyObject *hard_module = IMPORT_HARD___FUTURE__(); 794             PyObject *hard_module = IMPORT_HARD___FUTURE__();
n 873             tmp_assign_source_3 = LOOKUP_ATTRIBUTE(tstate, hard_module, mod_consts[8]); n 795             tmp_assign_source_3 = LOOKUP_ATTRIBUTE(tstate, hard_module, mod_consts[4]);
874         } 796         }
875         assert(!(tmp_assign_source_3 == NULL)); 797         assert(!(tmp_assign_source_3 == NULL));
n 876         UPDATE_STRING_DICT1(moduledict___main__, (Nuitka_StringObject *)mod_consts[8], tmp_assign_source_3); n 798         UPDATE_STRING_DICT1(moduledict___main__, (Nuitka_StringObject *)mod_consts[4], tmp_assign_source_3);
877     } 799     }
878     frame_1315d2f6985387432a232c813183d38b = MAKE_MODULE_FRAME(codeobj_1315d2f6985387432a232c813183d38b, module___main__); 800     frame_1315d2f6985387432a232c813183d38b = MAKE_MODULE_FRAME(codeobj_1315d2f6985387432a232c813183d38b, module___main__);
879 801
880     // Push the new frame as the currently active one, and we should be exclusively 802     // Push the new frame as the currently active one, and we should be exclusively
881     // owning it. 803     // owning it.
887         PyObject *tmp_assign_source_4; 809         PyObject *tmp_assign_source_4;
888         PyObject *tmp_name_value_1; 810         PyObject *tmp_name_value_1;
889         PyObject *tmp_globals_arg_value_1; 811         PyObject *tmp_globals_arg_value_1;
890         PyObject *tmp_locals_arg_value_1; 812         PyObject *tmp_locals_arg_value_1;
891         PyObject *tmp_fromlist_value_1; 813         PyObject *tmp_fromlist_value_1;
n 892         tmp_name_value_1 = mod_consts[9]; n 814         tmp_name_value_1 = mod_consts[5];
893         tmp_globals_arg_value_1 = (PyObject *)moduledict___main__; 815         tmp_globals_arg_value_1 = (PyObject *)moduledict___main__;
894         tmp_locals_arg_value_1 = Py_None; 816         tmp_locals_arg_value_1 = Py_None;
895         tmp_fromlist_value_1 = Py_None; 817         tmp_fromlist_value_1 = Py_None;
896         frame_1315d2f6985387432a232c813183d38b->m_frame.f_lineno = 6; 818         frame_1315d2f6985387432a232c813183d38b->m_frame.f_lineno = 6;
897         tmp_assign_source_4 = IMPORT_MODULE4(tstate, tmp_name_value_1, tmp_globals_arg_value_1, tmp_locals_arg_value_1, tmp_fromlist_value_1); 819         tmp_assign_source_4 = IMPORT_MODULE4(tstate, tmp_name_value_1, tmp_globals_arg_value_1, tmp_locals_arg_value_1, tmp_fromlist_value_1);
903 825
904             exception_lineno = 6; 826             exception_lineno = 6;
905 827
906             goto frame_exception_exit_1; 828             goto frame_exception_exit_1;
907         } 829         }
n 908         UPDATE_STRING_DICT1(moduledict___main__, (Nuitka_StringObject *)mod_consts[9], tmp_assign_source_4); n 830         UPDATE_STRING_DICT1(moduledict___main__, (Nuitka_StringObject *)mod_consts[5], tmp_assign_source_4);
909     } 831     }
910     { 832     {
911         PyObject *tmp_assign_source_5; 833         PyObject *tmp_assign_source_5;
912         { 834         {
913             PyObject *tmp_assign_source_6; 835             PyObject *tmp_assign_source_6;
920         } 842         }
921         // Tried code: 843         // Tried code:
922         { 844         {
923             PyObject *tmp_dict_key_1; 845             PyObject *tmp_dict_key_1;
924             PyObject *tmp_dict_value_1; 846             PyObject *tmp_dict_value_1;
n 925             tmp_dict_value_1 = mod_consts[10]; n 847             tmp_dict_value_1 = mod_consts[7];
926             tmp_dict_key_1 = mod_consts[11]; 848             tmp_dict_key_1 = mod_consts[8];
927             tmp_assign_source_5 = _PyDict_NewPresized( 2 ); 849             tmp_assign_source_5 = _PyDict_NewPresized( 2 );
928             tmp_res = PyDict_SetItem(tmp_assign_source_5, tmp_dict_key_1, tmp_dict_value_1); 850             tmp_res = PyDict_SetItem(tmp_assign_source_5, tmp_dict_key_1, tmp_dict_value_1);
929             assert(!(tmp_res != 0)); 851             assert(!(tmp_res != 0));
930             CHECK_OBJECT(tmp_locals___main__$$$class__1_C_9_key_compiled_method); 852             CHECK_OBJECT(tmp_locals___main__$$$class__1_C_9_key_compiled_method);
931             tmp_dict_value_1 = tmp_locals___main__$$$class__1_C_9_key_compiled_method; 853             tmp_dict_value_1 = tmp_locals___main__$$$class__1_C_9_key_compiled_method;
n 932             tmp_dict_key_1 = mod_consts[1]; n 854             tmp_dict_key_1 = mod_consts[6];
933             tmp_res = PyDict_SetItem(tmp_assign_source_5, tmp_dict_key_1, tmp_dict_value_1); 855             tmp_res = PyDict_SetItem(tmp_assign_source_5, tmp_dict_key_1, tmp_dict_value_1);
934             assert(!(tmp_res != 0)); 856             assert(!(tmp_res != 0));
935             goto try_return_handler_1; 857             goto try_return_handler_1;
936         } 858         }
937         NUITKA_CANNOT_GET_HERE("tried codes exits in all cases"); 859         NUITKA_CANNOT_GET_HERE("tried codes exits in all cases");
954         bool tmp_condition_result_1; 876         bool tmp_condition_result_1;
955         PyObject *tmp_key_value_1; 877         PyObject *tmp_key_value_1;
956         PyObject *tmp_dict_arg_value_1; 878         PyObject *tmp_dict_arg_value_1;
957         PyObject *tmp_dict_arg_value_2; 879         PyObject *tmp_dict_arg_value_2;
958         PyObject *tmp_key_value_2; 880         PyObject *tmp_key_value_2;
n 959         tmp_key_value_1 = mod_consts[12]; n 881         tmp_key_value_1 = mod_consts[9];
960         CHECK_OBJECT(tmp_class_creation_1__class_dict); 882         CHECK_OBJECT(tmp_class_creation_1__class_dict);
961         tmp_dict_arg_value_1 = tmp_class_creation_1__class_dict; 883         tmp_dict_arg_value_1 = tmp_class_creation_1__class_dict;
962         tmp_res = DICT_HAS_ITEM(tstate, tmp_dict_arg_value_1, tmp_key_value_1); 884         tmp_res = DICT_HAS_ITEM(tstate, tmp_dict_arg_value_1, tmp_key_value_1);
963         assert(!(tmp_res == -1)); 885         assert(!(tmp_res == -1));
964         tmp_condition_result_1 = (tmp_res != 0) ? true : false; 886         tmp_condition_result_1 = (tmp_res != 0) ? true : false;
968             goto condexpr_false_1; 890             goto condexpr_false_1;
969         } 891         }
970         condexpr_true_1:; 892         condexpr_true_1:;
971         CHECK_OBJECT(tmp_class_creation_1__class_dict); 893         CHECK_OBJECT(tmp_class_creation_1__class_dict);
972         tmp_dict_arg_value_2 = tmp_class_creation_1__class_dict; 894         tmp_dict_arg_value_2 = tmp_class_creation_1__class_dict;
n 973         tmp_key_value_2 = mod_consts[12]; n 895         tmp_key_value_2 = mod_consts[9];
974         tmp_assign_source_7 = DICT_GET_ITEM1(tstate, tmp_dict_arg_value_2, tmp_key_value_2); 896         tmp_assign_source_7 = DICT_GET_ITEM1(tstate, tmp_dict_arg_value_2, tmp_key_value_2);
975         if (tmp_assign_source_7 == NULL) { 897         if (tmp_assign_source_7 == NULL) {
976             tmp_assign_source_7 = Py_None; 898             tmp_assign_source_7 = Py_None;
977             Py_INCREF(tmp_assign_source_7); 899             Py_INCREF(tmp_assign_source_7);
978         } 900         }
979         assert(!(tmp_assign_source_7 == NULL)); 901         assert(!(tmp_assign_source_7 == NULL));
980         goto condexpr_end_1; 902         goto condexpr_end_1;
981         condexpr_false_1:; 903         condexpr_false_1:;
982         // Tried code: 904         // Tried code:
n 983         tmp_assign_source_7 = GET_STRING_DICT_VALUE(moduledict___main__, (Nuitka_StringObject *)mod_consts[12]); n 905         tmp_assign_source_7 = GET_STRING_DICT_VALUE(moduledict___main__, (Nuitka_StringObject *)mod_consts[9]);
984 906
985         if (unlikely(tmp_assign_source_7 == NULL)) { 907         if (unlikely(tmp_assign_source_7 == NULL)) {
n 986             tmp_assign_source_7 = GET_MODULE_VARIABLE_VALUE_FALLBACK(tstate, mod_consts[12]); n 908             tmp_assign_source_7 = GET_MODULE_VARIABLE_VALUE_FALLBACK(tstate, mod_consts[9]);
987         } 909         }
988 910
989         if (tmp_assign_source_7 == NULL) { 911         if (tmp_assign_source_7 == NULL) {
990             assert(HAS_ERROR_OCCURRED(tstate)); 912             assert(HAS_ERROR_OCCURRED(tstate));
991 913
1103         PyObject *tmp_assign_source_10; 1025         PyObject *tmp_assign_source_10;
1104 1026
1105 1027
1106         tmp_assign_source_10 = MAKE_FUNCTION___main__$$$function__2_calledRepeatedly(); 1028         tmp_assign_source_10 = MAKE_FUNCTION___main__$$$function__2_calledRepeatedly();
1107 1029
n 1108         UPDATE_STRING_DICT1(moduledict___main__, (Nuitka_StringObject *)mod_consts[13], tmp_assign_source_10); n 1030         UPDATE_STRING_DICT1(moduledict___main__, (Nuitka_StringObject *)mod_consts[10], tmp_assign_source_10);
1109     } 1031     }
1110     { 1032     {
1111         PyObject *tmp_assign_source_11; 1033         PyObject *tmp_assign_source_11;
1112         PyObject *tmp_iter_arg_1; 1034         PyObject *tmp_iter_arg_1;
1113         PyObject *tmp_called_instance_1; 1035         PyObject *tmp_called_instance_1;
n 1114         tmp_called_instance_1 = GET_STRING_DICT_VALUE(moduledict___main__, (Nuitka_StringObject *)mod_consts[9]); n 1036         tmp_called_instance_1 = GET_STRING_DICT_VALUE(moduledict___main__, (Nuitka_StringObject *)mod_consts[5]);
1115 1037
1116         if (unlikely(tmp_called_instance_1 == NULL)) { 1038         if (unlikely(tmp_called_instance_1 == NULL)) {
n 1117             tmp_called_instance_1 = GET_MODULE_VARIABLE_VALUE_FALLBACK(tstate, mod_consts[9]); n 1039             tmp_called_instance_1 = GET_MODULE_VARIABLE_VALUE_FALLBACK(tstate, mod_consts[5]);
1118         } 1040         }
1119 1041
1120         if (tmp_called_instance_1 == NULL) { 1042         if (tmp_called_instance_1 == NULL) {
1121             assert(HAS_ERROR_OCCURRED(tstate)); 1043             assert(HAS_ERROR_OCCURRED(tstate));
1122 1044
1129         } 1051         }
1130         frame_1315d2f6985387432a232c813183d38b->m_frame.f_lineno = 29; 1052         frame_1315d2f6985387432a232c813183d38b->m_frame.f_lineno = 29;
1131         tmp_iter_arg_1 = CALL_METHOD_WITH_ARGS2( 1053         tmp_iter_arg_1 = CALL_METHOD_WITH_ARGS2(
1132             tstate, 1054             tstate,
1133             tmp_called_instance_1, 1055             tmp_called_instance_1,
n 1134             mod_consts[14], n 1056             mod_consts[11],
1135             &PyTuple_GET_ITEM(mod_consts[15], 0) 1057             &PyTuple_GET_ITEM(mod_consts[12], 0)
1136         ); 1058         );
1137 1059
1138         if (tmp_iter_arg_1 == NULL) { 1060         if (tmp_iter_arg_1 == NULL) {
1139             assert(HAS_ERROR_OCCURRED(tstate)); 1061             assert(HAS_ERROR_OCCURRED(tstate));
1140 1062
1190     } 1112     }
1191     { 1113     {
1192         PyObject *tmp_assign_source_13; 1114         PyObject *tmp_assign_source_13;
1193         CHECK_OBJECT(tmp_for_loop_1__iter_value); 1115         CHECK_OBJECT(tmp_for_loop_1__iter_value);
1194         tmp_assign_source_13 = tmp_for_loop_1__iter_value; 1116         tmp_assign_source_13 = tmp_for_loop_1__iter_value;
n 1195         UPDATE_STRING_DICT0(moduledict___main__, (Nuitka_StringObject *)mod_consts[16], tmp_assign_source_13); n 1117         UPDATE_STRING_DICT0(moduledict___main__, (Nuitka_StringObject *)mod_consts[13], tmp_assign_source_13);
1196     } 1118     }
1197     { 1119     {
1198         PyObject *tmp_called_value_2; 1120         PyObject *tmp_called_value_2;
1199         PyObject *tmp_call_result_1; 1121         PyObject *tmp_call_result_1;
n 1200         tmp_called_value_2 = GET_STRING_DICT_VALUE(moduledict___main__, (Nuitka_StringObject *)mod_consts[13]); n 1122         tmp_called_value_2 = GET_STRING_DICT_VALUE(moduledict___main__, (Nuitka_StringObject *)mod_consts[10]);
1201 1123
1202         if (unlikely(tmp_called_value_2 == NULL)) { 1124         if (unlikely(tmp_called_value_2 == NULL)) {
n 1203             tmp_called_value_2 = GET_MODULE_VARIABLE_VALUE_FALLBACK(tstate, mod_consts[13]); n 1125             tmp_called_value_2 = GET_MODULE_VARIABLE_VALUE_FALLBACK(tstate, mod_consts[10]);
1204         } 1126         }
1205 1127
1206         if (tmp_called_value_2 == NULL) { 1128         if (tmp_called_value_2 == NULL) {
1207             assert(HAS_ERROR_OCCURRED(tstate)); 1129             assert(HAS_ERROR_OCCURRED(tstate));
1208 1130
1271     Py_DECREF(tmp_for_loop_1__for_iterator); 1193     Py_DECREF(tmp_for_loop_1__for_iterator);
1272     tmp_for_loop_1__for_iterator = NULL; 1194     tmp_for_loop_1__for_iterator = NULL;
1273     { 1195     {
1274         PyObject *tmp_called_value_3; 1196         PyObject *tmp_called_value_3;
1275         PyObject *tmp_call_result_2; 1197         PyObject *tmp_call_result_2;
n 1276         tmp_called_value_3 = LOOKUP_BUILTIN(mod_consts[17]); n 1198         tmp_called_value_3 = LOOKUP_BUILTIN(mod_consts[14]);
1277         assert(tmp_called_value_3 != NULL); 1199         assert(tmp_called_value_3 != NULL);
1278         frame_1315d2f6985387432a232c813183d38b->m_frame.f_lineno = 32; 1200         frame_1315d2f6985387432a232c813183d38b->m_frame.f_lineno = 32;
t 1279         tmp_call_result_2 = CALL_FUNCTION_WITH_POSARGS1(tstate, tmp_called_value_3, mod_consts[18]); t 1201         tmp_call_result_2 = CALL_FUNCTION_WITH_POSARGS1(tstate, tmp_called_value_3, mod_consts[15]);
1280 1202
1281         if (tmp_call_result_2 == NULL) { 1203         if (tmp_call_result_2 == NULL) {
1282             assert(HAS_ERROR_OCCURRED(tstate)); 1204             assert(HAS_ERROR_OCCURRED(tstate));
1283 1205
1284             FETCH_ERROR_OCCURRED(tstate, &exception_type, &exception_value, &exception_tb); 1206             FETCH_ERROR_OCCURRED(tstate, &exception_type, &exception_value, &exception_tb);