diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-10-14 20:03:29 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 20:03:29 +0300 |
commit | 7c722e32bf582108680f49983cf01eaed710ddb9 (patch) | |
tree | 13d1aeebf59adeadf1809387ec22f966df6e260b | |
parent | 38fadbc5b9fce409af4f40a093575535709a9bb0 (diff) | |
download | cpython-git-7c722e32bf582108680f49983cf01eaed710ddb9.tar.gz |
[3.9] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" codec (GH-28939) (GH-28945)
They support now splitting escape sequences between input chunks.
Add the third parameter "final" in codecs.unicode_escape_decode().
It is True by default to match the former behavior.
(cherry picked from commit c96d1546b11b4c282a7e21737cb1f5d16349656d)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
-rw-r--r-- | Doc/data/python3.9.abi | 10020 | ||||
-rw-r--r-- | Include/cpython/unicodeobject.h | 10 | ||||
-rw-r--r-- | Lib/encodings/unicode_escape.py | 9 | ||||
-rw-r--r-- | Lib/test/test_codecs.py | 44 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-10-14-00-19-02.bpo-45461.4LB_tJ.rst | 2 | ||||
-rw-r--r-- | Modules/_codecsmodule.c | 13 | ||||
-rw-r--r-- | Modules/clinic/_codecsmodule.c.h | 23 | ||||
-rw-r--r-- | Objects/unicodeobject.c | 49 | ||||
-rw-r--r-- | Parser/pegen/parse_string.c | 2 | ||||
-rw-r--r-- | Python/ast.c | 2 |
10 files changed, 7560 insertions, 2614 deletions
diff --git a/Doc/data/python3.9.abi b/Doc/data/python3.9.abi index 228fefcd87..3b202fa39b 100644 --- a/Doc/data/python3.9.abi +++ b/Doc/data/python3.9.abi @@ -1290,7 +1290,8 @@ <elf-symbol name='_PyUnicode_AsUnicode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/> <elf-symbol name='_PyUnicode_CheckConsistency' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/> <elf-symbol name='_PyUnicode_Copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/> - <elf-symbol name='_PyUnicode_DecodeUnicodeEscape' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/> + <elf-symbol name='_PyUnicode_DecodeUnicodeEscapeInternal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/> + <elf-symbol name='_PyUnicode_DecodeUnicodeEscapeStateful' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/> <elf-symbol name='_PyUnicode_EQ' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/> <elf-symbol name='_PyUnicode_EncodeCharmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/> <elf-symbol name='_PyUnicode_EncodeUTF16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/> @@ -1691,9 +1692,40 @@ <function-decl name='Py_GetBuildInfo' mangled-name='Py_GetBuildInfo' filepath='./Modules/getbuildinfo.c' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetBuildInfo'> <return type-id='type-id-3'/> </function-decl> + <type-decl name='void' id='type-id-4'/> + <function-decl name='PyOS_snprintf' mangled-name='PyOS_snprintf' filepath='./Include/pyerrors.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + </abi-instr> + <abi-instr version='1.0' address-size='64' path='Parser/acceler.c' comp-dir-path='/src' language='LANG_C99'> + <function-decl name='PyObject_Free' mangled-name='PyObject_Free' filepath='./Include/objimpl.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__printf_chk' mangled-name='__printf_chk' filepath='/usr/include/x86_64-linux-gnu/bits/stdio2.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyGrammar_FindDFA' mangled-name='PyGrammar_FindDFA' filepath='./Include/grammar.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__fprintf_chk' mangled-name='__fprintf_chk' filepath='/usr/include/x86_64-linux-gnu/bits/stdio2.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Malloc' mangled-name='PyObject_Malloc' filepath='./Include/objimpl.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='exit' mangled-name='exit' filepath='/usr/include/stdlib.h' line='617' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__builtin_memset' mangled-name='memset' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + </abi-instr> + <abi-instr version='1.0' address-size='64' path='Parser/grammar1.c' comp-dir-path='/src' language='LANG_C99'> + <function-decl name='_Py_FatalErrorFunc' mangled-name='_Py_FatalErrorFunc' filepath='./Include/cpython/pyerrors.h' line='187' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Parser/listnode.c' comp-dir-path='/src' language='LANG_C99'> - <type-decl name='void' id='type-id-4'/> <class-decl name='_node' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/node.h' line='10' column='1' id='type-id-5'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='n_type' type-id='type-id-6' visibility='default' filepath='./Include/node.h' line='11' column='1'/> @@ -1741,7 +1773,7 @@ <return type-id='type-id-15'/> </function-decl> <function-decl name='PyNode_Free' mangled-name='PyNode_Free' filepath='Parser/node.c' line='146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNode_Free'> - <parameter type-id='type-id-11' name='n' filepath='Parser/listnode.c' line='15' column='1'/> + <parameter type-id='type-id-11' name='n' filepath='Parser/node.c' line='146' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PyNode_AddChild' mangled-name='PyNode_AddChild' filepath='Parser/node.c' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNode_AddChild'> @@ -1758,6 +1790,35 @@ <parameter type-id='type-id-8' name='type' filepath='Parser/node.c' line='8' column='1'/> <return type-id='type-id-11'/> </function-decl> + <function-decl name='strlen' mangled-name='strlen' filepath='/usr/include/string.h' line='385' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Realloc' mangled-name='PyObject_Realloc' filepath='./Include/objimpl.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + </abi-instr> + <abi-instr version='1.0' address-size='64' path='Parser/parser.c' comp-dir-path='/src' language='LANG_C99'> + <function-decl name='PyNode_AddChild' mangled-name='PyNode_AddChild' filepath='./Include/node.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='strcmp' mangled-name='strcmp' filepath='/usr/include/string.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNode_Free' mangled-name='PyNode_Free' filepath='./Include/node.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMem_Free' mangled-name='PyMem_Free' filepath='./Include/pymem.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMem_Malloc' mangled-name='PyMem_Malloc' filepath='./Include/pymem.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNode_New' mangled-name='PyNode_New' filepath='./Include/node.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyGrammar_AddAccelerators' mangled-name='PyGrammar_AddAccelerators' filepath='Parser/parser.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Parser/token.c' comp-dir-path='/src' language='LANG_C99'> <qualified-type-def type-id='type-id-3' const='yes' id='type-id-16'/> @@ -1784,6 +1845,609 @@ <return type-id='type-id-8'/> </function-decl> </abi-instr> + <abi-instr version='1.0' address-size='64' path='Parser/pegen/pegen.c' comp-dir-path='/src' language='LANG_C99'> + <function-decl name='_Py_asdl_seq_new' mangled-name='_Py_asdl_seq_new' filepath='./Include/asdl.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Name' mangled-name='_Py_Name' filepath='./Include/Python-ast.h' line='645' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__builtin_memmove' mangled-name='memmove' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Call' mangled-name='_Py_Call' filepath='./Include/Python-ast.h' line='619' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Dealloc' mangled-name='_Py_Dealloc' filepath='./Include/object.h' line='401' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyArena_AddPyObject' mangled-name='PyArena_AddPyObject' filepath='./Include/pyarena.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_DecodeUTF8' mangled-name='PyUnicode_DecodeUTF8' filepath='./Include/unicodeobject.h' line='451' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_TypeIgnore' mangled-name='_Py_TypeIgnore' filepath='./Include/Python-ast.h' line='687' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Module' mangled-name='_Py_Module' filepath='./Include/Python-ast.h' line='461' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_FstringParser_ConcatFstring' mangled-name='_PyPegen_FstringParser_ConcatFstring' filepath='Parser/pegen/parse_string.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_parsestr' mangled-name='_PyPegen_parsestr' filepath='Parser/pegen/parse_string.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_FstringParser_ConcatAndDel' mangled-name='_PyPegen_FstringParser_ConcatAndDel' filepath='Parser/pegen/parse_string.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBytes_ConcatAndDel' mangled-name='PyBytes_ConcatAndDel' filepath='./Include/bytesobject.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_FstringParser_Init' mangled-name='_PyPegen_FstringParser_Init' filepath='Parser/pegen/parse_string.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Constant' mangled-name='_Py_Constant' filepath='./Include/Python-ast.h' line='630' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_FstringParser_Dealloc' mangled-name='_PyPegen_FstringParser_Dealloc' filepath='Parser/pegen/parse_string.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_Occurred' mangled-name='PyErr_Occurred' filepath='./Include/pyerrors.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_FstringParser_Finish' mangled-name='_PyPegen_FstringParser_Finish' filepath='Parser/pegen/parse_string.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__stack_chk_fail' mangled-name='__stack_chk_fail' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyArena_Malloc' mangled-name='PyArena_Malloc' filepath='./Include/pyarena.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_ClassDef' mangled-name='_Py_ClassDef' filepath='./Include/Python-ast.h' line='480' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_FunctionDef' mangled-name='_Py_FunctionDef' filepath='./Include/Python-ast.h' line='469' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_AsyncFunctionDef' mangled-name='_Py_AsyncFunctionDef' filepath='./Include/Python-ast.h' line='474' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_arguments' mangled-name='_Py_arguments' filepath='./Include/Python-ast.h' line='669' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBytes_AsString' mangled-name='PyBytes_AsString' filepath='./Include/bytesobject.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_arg' mangled-name='_Py_arg' filepath='./Include/Python-ast.h' line='674' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_List' mangled-name='_Py_List' filepath='./Include/Python-ast.h' line='649' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Tuple' mangled-name='_Py_Tuple' filepath='./Include/Python-ast.h' line='653' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Attribute' mangled-name='_Py_Attribute' filepath='./Include/Python-ast.h' line='633' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Subscript' mangled-name='_Py_Subscript' filepath='./Include/Python-ast.h' line='637' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Starred' mangled-name='_Py_Starred' filepath='./Include/Python-ast.h' line='641' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_asdl_int_seq_new' mangled-name='_Py_asdl_int_seq_new' filepath='./Include/asdl.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_InternFromString' mangled-name='PyUnicode_InternFromString' filepath='./Include/unicodeobject.h' line='265' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_alias' mangled-name='_Py_alias' filepath='./Include/Python-ast.h' line='682' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__builtin_strcpy' mangled-name='strcpy' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_Ready' mangled-name='_PyUnicode_Ready' filepath='./Include/cpython/unicodeobject.h' line='472' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_AsUTF8' mangled-name='PyUnicode_AsUTF8' filepath='./Include/cpython/unicodeobject.h' line='765' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBytes_FromStringAndSize' mangled-name='PyBytes_FromStringAndSize' filepath='./Include/bytesobject.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_InternInPlace' mangled-name='PyUnicode_InternInPlace' filepath='./Include/unicodeobject.h' line='263' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyTokenizer_FromUTF8' mangled-name='PyTokenizer_FromUTF8' filepath='Parser/pegen/../tokenizer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyTokenizer_Free' mangled-name='PyTokenizer_Free' filepath='Parser/pegen/../tokenizer.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyTokenizer_FromString' mangled-name='PyTokenizer_FromString' filepath='Parser/pegen/../tokenizer.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyTokenizer_FromFile' mangled-name='PyTokenizer_FromFile' filepath='Parser/pegen/../tokenizer.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fopen' mangled-name='fopen64' filepath='/usr/include/stdio.h' line='257' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fclose' mangled-name='fclose' filepath='/usr/include/stdio.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_SetFromErrnoWithFilename' mangled-name='PyErr_SetFromErrnoWithFilename' filepath='./Include/pyerrors.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMem_Calloc' mangled-name='PyMem_Calloc' filepath='./Include/cpython/pymem.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_NoMemory' mangled-name='PyErr_NoMemory' filepath='./Include/pyerrors.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='strchr' mangled-name='strchr' filepath='/usr/include/string.h' line='226' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__errno_location' mangled-name='__errno_location' filepath='/usr/include/errno.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyOS_strtol' mangled-name='PyOS_strtol' filepath='./Include/longobject.h' line='224' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_FromLong' mangled-name='PyLong_FromLong' filepath='./Include/longobject.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyOS_strtoul' mangled-name='PyOS_strtoul' filepath='./Include/longobject.h' line='223' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyOS_string_to_double' mangled-name='PyOS_string_to_double' filepath='./Include/pystrtod.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyComplex_FromCComplex' mangled-name='PyComplex_FromCComplex' filepath='./Include/complexobject.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_FromString' mangled-name='PyLong_FromString' filepath='./Include/longobject.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFloat_FromDouble' mangled-name='PyFloat_FromDouble' filepath='./Include/floatobject.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyList_SetItem' mangled-name='PyList_SetItem' filepath='./Include/listobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyList_New' mangled-name='PyList_New' filepath='./Include/listobject.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMem_Realloc' mangled-name='PyMem_Realloc' filepath='./Include/pymem.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__builtin_strncpy' mangled-name='strncpy' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyTokenizer_Get' mangled-name='PyTokenizer_Get' filepath='Parser/pegen/../tokenizer.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='strtok' mangled-name='strtok' filepath='/usr/include/string.h' line='336' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_SetNone' mangled-name='PyErr_SetNone' filepath='./Include/pyerrors.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='strncmp' mangled-name='strncmp' filepath='/usr/include/string.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__builtin_memcpy' mangled-name='memcpy' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMem_RawMalloc' mangled-name='PyMem_RawMalloc' filepath='./Include/cpython/pymem.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_FromFormatV' mangled-name='PyUnicode_FromFormatV' filepath='./Include/unicodeobject.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_BuildValue' mangled-name='Py_BuildValue' filepath='./Include/modsupport.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyTuple_Pack' mangled-name='PyTuple_Pack' filepath='./Include/tupleobject.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_SetObject' mangled-name='PyErr_SetObject' filepath='./Include/pyerrors.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMem_RawFree' mangled-name='PyMem_RawFree' filepath='./Include/cpython/pymem.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_ProgramTextObject' mangled-name='PyErr_ProgramTextObject' filepath='./Include/cpython/pyerrors.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_ExceptionMatches' mangled-name='PyErr_ExceptionMatches' filepath='./Include/pyerrors.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_Fetch' mangled-name='PyErr_Fetch' filepath='./Include/pyerrors.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Str' mangled-name='PyObject_Str' filepath='./Include/object.h' line='242' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_Clear' mangled-name='PyErr_Clear' filepath='./Include/pyerrors.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_Format' mangled-name='PyErr_Format' filepath='./Include/pyerrors.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyImport_ImportModuleNoBlock' mangled-name='PyImport_ImportModuleNoBlock' filepath='./Include/import.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_GetAttrString' mangled-name='PyObject_GetAttrString' filepath='./Include/object.h' line='247' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_MakeTpCall' mangled-name='_PyObject_MakeTpCall' filepath='./Include/cpython/abstract.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_CheckFunctionResult' mangled-name='_Py_CheckFunctionResult' filepath='./Include/cpython/abstract.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThreadState_Get' mangled-name='PyThreadState_Get' filepath='./Include/pystate.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyType_Name' mangled-name='_PyType_Name' filepath='./Include/cpython/object.h' line='300' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_parse' mangled-name='_PyPegen_parse' filepath='Parser/pegen/pegen.h' line='305' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + </abi-instr> + <abi-instr version='1.0' address-size='64' path='Parser/pegen/parse.c' comp-dir-path='/src' language='LANG_C99'> + <function-decl name='_PyPegen_expect_token' mangled-name='_PyPegen_expect_token' filepath='Parser/pegen/pegen.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_singleton_seq' mangled-name='_PyPegen_singleton_seq' filepath='Parser/pegen/pegen.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_insert_memo' mangled-name='_PyPegen_insert_memo' filepath='Parser/pegen/pegen.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_seq_insert_in_front' mangled-name='_PyPegen_seq_insert_in_front' filepath='Parser/pegen/pegen.h' line='236' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_seq_append_to_end' mangled-name='_PyPegen_seq_append_to_end' filepath='Parser/pegen/pegen.h' line='237' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_FunctionType' mangled-name='_Py_FunctionType' filepath='./Include/Python-ast.h' line='467' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_make_module' mangled-name='_PyPegen_make_module' filepath='Parser/pegen/pegen.h' line='268' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_function_def_decorators' mangled-name='_PyPegen_function_def_decorators' filepath='Parser/pegen/pegen.h' line='257' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_lookahead' mangled-name='_PyPegen_lookahead' filepath='Parser/pegen/pegen.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_If' mangled-name='_Py_If' filepath='./Include/Python-ast.h' line='515' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_get_last_nonnwhitespace_token' mangled-name='_PyPegen_get_last_nonnwhitespace_token' filepath='Parser/pegen/pegen.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_fill_token' mangled-name='_PyPegen_fill_token' filepath='Parser/pegen/pegen.h' line='129' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_lookahead_with_int' mangled-name='_PyPegen_lookahead_with_int' filepath='Parser/pegen/pegen.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_class_def_decorators' mangled-name='_PyPegen_class_def_decorators' filepath='Parser/pegen/pegen.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_new_type_comment' mangled-name='_PyPegen_new_type_comment' filepath='Parser/pegen/pegen.h' line='186' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_For' mangled-name='_Py_For' filepath='./Include/Python-ast.h' line='503' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_raise_error' mangled-name='_PyPegen_raise_error' filepath='Parser/pegen/pegen.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_AsyncFor' mangled-name='_Py_AsyncFor' filepath='./Include/Python-ast.h' line='507' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_While' mangled-name='_Py_While' filepath='./Include/Python-ast.h' line='511' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Pass' mangled-name='_Py_Pass' filepath='./Include/Python-ast.h' line='553' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_interactive_exit' mangled-name='_PyPegen_interactive_exit' filepath='Parser/pegen/pegen.h' line='234' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Interactive' mangled-name='_Py_Interactive' filepath='./Include/Python-ast.h' line='463' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Expression' mangled-name='_Py_Expression' filepath='./Include/Python-ast.h' line='465' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_name_token' mangled-name='_PyPegen_name_token' filepath='Parser/pegen/pegen.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_dummy_name' mangled-name='_PyPegen_dummy_name' filepath='Parser/pegen/pegen.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_comprehension' mangled-name='_Py_comprehension' filepath='./Include/Python-ast.h' line='661' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_set_expr_context' mangled-name='_PyPegen_set_expr_context' filepath='Parser/pegen/pegen.h' line='246' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_NamedExpr' mangled-name='_Py_NamedExpr' filepath='./Include/Python-ast.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_get_expr_name' mangled-name='_PyPegen_get_expr_name' filepath='Parser/pegen/pegen.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_get_invalid_target' mangled-name='_PyPegen_get_invalid_target' filepath='Parser/pegen/pegen.h' line='276' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_update_memo' mangled-name='_PyPegen_update_memo' filepath='Parser/pegen/pegen.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_is_memoized' mangled-name='_PyPegen_is_memoized' filepath='Parser/pegen/pegen.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_keyword' mangled-name='_Py_keyword' filepath='./Include/Python-ast.h' line='678' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_keyword_or_starred' mangled-name='_PyPegen_keyword_or_starred' filepath='Parser/pegen/pegen.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_join_sequences' mangled-name='_PyPegen_join_sequences' filepath='Parser/pegen/pegen.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_collect_call_seqs' mangled-name='_PyPegen_collect_call_seqs' filepath='Parser/pegen/pegen.h' line='262' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_seq_delete_starred_exprs' mangled-name='_PyPegen_seq_delete_starred_exprs' filepath='Parser/pegen/pegen.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_seq_extract_starred_exprs' mangled-name='_PyPegen_seq_extract_starred_exprs' filepath='Parser/pegen/pegen.h' line='260' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_nonparen_genexp_in_call' mangled-name='_PyPegen_nonparen_genexp_in_call' filepath='Parser/pegen/pegen.h' line='301' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_arguments_parsing_error' mangled-name='_PyPegen_arguments_parsing_error' filepath='Parser/pegen/pegen.h' line='300' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_YieldFrom' mangled-name='_Py_YieldFrom' filepath='./Include/Python-ast.h' line='612' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Yield' mangled-name='_Py_Yield' filepath='./Include/Python-ast.h' line='609' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_key_value_pair' mangled-name='_PyPegen_key_value_pair' filepath='Parser/pegen/pegen.h' line='247' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_GeneratorExp' mangled-name='_Py_GeneratorExp' filepath='./Include/Python-ast.h' line='602' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_string_token' mangled-name='_PyPegen_string_token' filepath='Parser/pegen/pegen.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_concatenate_strings' mangled-name='_PyPegen_concatenate_strings' filepath='Parser/pegen/pegen.h' line='265' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_number_token' mangled-name='_PyPegen_number_token' filepath='Parser/pegen/pegen.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_ListComp' mangled-name='_Py_ListComp' filepath='./Include/Python-ast.h' line='590' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_SetComp' mangled-name='_Py_SetComp' filepath='./Include/Python-ast.h' line='594' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_get_values' mangled-name='_PyPegen_get_values' filepath='Parser/pegen/pegen.h' line='249' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_get_keys' mangled-name='_PyPegen_get_keys' filepath='Parser/pegen/pegen.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Dict' mangled-name='_Py_Dict' filepath='./Include/Python-ast.h' line='583' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Set' mangled-name='_Py_Set' filepath='./Include/Python-ast.h' line='587' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_DictComp' mangled-name='_Py_DictComp' filepath='./Include/Python-ast.h' line='598' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Slice' mangled-name='_Py_Slice' filepath='./Include/Python-ast.h' line='657' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Await' mangled-name='_Py_Await' filepath='./Include/Python-ast.h' line='606' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_UnaryOp' mangled-name='_Py_UnaryOp' filepath='./Include/Python-ast.h' line='573' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_BinOp' mangled-name='_Py_BinOp' filepath='./Include/Python-ast.h' line='569' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_cmpop_expr_pair' mangled-name='_PyPegen_cmpop_expr_pair' filepath='Parser/pegen/pegen.h' line='243' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_check_barry_as_flufl' mangled-name='_PyPegen_check_barry_as_flufl' filepath='Parser/pegen/pegen.h' line='267' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_get_exprs' mangled-name='_PyPegen_get_exprs' filepath='Parser/pegen/pegen.h' line='245' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_get_cmpops' mangled-name='_PyPegen_get_cmpops' filepath='Parser/pegen/pegen.h' line='244' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Compare' mangled-name='_Py_Compare' filepath='./Include/Python-ast.h' line='615' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_BoolOp' mangled-name='_Py_BoolOp' filepath='./Include/Python-ast.h' line='562' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_name_default_pair' mangled-name='_PyPegen_name_default_pair' filepath='Parser/pegen/pegen.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_star_etc' mangled-name='_PyPegen_star_etc' filepath='Parser/pegen/pegen.h' line='252' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_slash_with_default' mangled-name='_PyPegen_slash_with_default' filepath='Parser/pegen/pegen.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_IfExp' mangled-name='_Py_IfExp' filepath='./Include/Python-ast.h' line='579' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_make_arguments' mangled-name='_PyPegen_make_arguments' filepath='Parser/pegen/pegen.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Lambda' mangled-name='_Py_Lambda' filepath='./Include/Python-ast.h' line='576' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_empty_arguments' mangled-name='_PyPegen_empty_arguments' filepath='Parser/pegen/pegen.h' line='255' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_add_type_comment_to_arg' mangled-name='_PyPegen_add_type_comment_to_arg' filepath='Parser/pegen/pegen.h' line='225' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Try' mangled-name='_Py_Try' filepath='./Include/Python-ast.h' line='530' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_ExceptHandler' mangled-name='_Py_ExceptHandler' filepath='./Include/Python-ast.h' line='664' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_withitem' mangled-name='_Py_withitem' filepath='./Include/Python-ast.h' line='684' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_With' mangled-name='_Py_With' filepath='./Include/Python-ast.h' line='519' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_AsyncWith' mangled-name='_Py_AsyncWith' filepath='./Include/Python-ast.h' line='523' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_join_names_with_dot' mangled-name='_PyPegen_join_names_with_dot' filepath='Parser/pegen/pegen.h' line='239' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_alias_for_star' mangled-name='_PyPegen_alias_for_star' filepath='Parser/pegen/pegen.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_seq_count_dots' mangled-name='_PyPegen_seq_count_dots' filepath='Parser/pegen/pegen.h' line='240' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_ImportFrom' mangled-name='_Py_ImportFrom' filepath='./Include/Python-ast.h' line='540' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_augoperator' mangled-name='_PyPegen_augoperator' filepath='Parser/pegen/pegen.h' line='256' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_AnnAssign' mangled-name='_Py_AnnAssign' filepath='./Include/Python-ast.h' line='499' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Assign' mangled-name='_Py_Assign' filepath='./Include/Python-ast.h' line='491' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_AugAssign' mangled-name='_Py_AugAssign' filepath='./Include/Python-ast.h' line='495' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Expr' mangled-name='_Py_Expr' filepath='./Include/Python-ast.h' line='550' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Break' mangled-name='_Py_Break' filepath='./Include/Python-ast.h' line='556' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Continue' mangled-name='_Py_Continue' filepath='./Include/Python-ast.h' line='559' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Return' mangled-name='_Py_Return' filepath='./Include/Python-ast.h' line='485' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Raise' mangled-name='_Py_Raise' filepath='./Include/Python-ast.h' line='527' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Import' mangled-name='_Py_Import' filepath='./Include/Python-ast.h' line='537' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Delete' mangled-name='_Py_Delete' filepath='./Include/Python-ast.h' line='488' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Assert' mangled-name='_Py_Assert' filepath='./Include/Python-ast.h' line='534' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_map_names_to_ids' mangled-name='_PyPegen_map_names_to_ids' filepath='Parser/pegen/pegen.h' line='242' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Global' mangled-name='_Py_Global' filepath='./Include/Python-ast.h' line='544' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Nonlocal' mangled-name='_Py_Nonlocal' filepath='./Include/Python-ast.h' line='547' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_seq_flatten' mangled-name='_PyPegen_seq_flatten' filepath='Parser/pegen/pegen.h' line='238' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_raise_error_known_location' mangled-name='_PyPegen_raise_error_known_location' filepath='Parser/pegen/pegen.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + </abi-instr> + <abi-instr version='1.0' address-size='64' path='Parser/pegen/parse_string.c' comp-dir-path='/src' language='LANG_C99'> + <function-decl name='_Py_JoinedStr' mangled-name='_Py_JoinedStr' filepath='./Include/Python-ast.h' line='627' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_FromStringAndSize' mangled-name='PyUnicode_FromStringAndSize' filepath='./Include/unicodeobject.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_DecodeUTF8Stateful' mangled-name='PyUnicode_DecodeUTF8Stateful' filepath='./Include/unicodeobject.h' line='457' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_AppendAndDel' mangled-name='PyUnicode_AppendAndDel' filepath='./Include/unicodeobject.h' line='815' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_Parser_New' mangled-name='_PyPegen_Parser_New' filepath='Parser/pegen/pegen.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_run_parser' mangled-name='_PyPegen_run_parser' filepath='Parser/pegen/pegen.h' line='231' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_Parser_Free' mangled-name='_PyPegen_Parser_Free' filepath='Parser/pegen/pegen.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_FormattedValue' mangled-name='_Py_FormattedValue' filepath='./Include/Python-ast.h' line='623' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytes_DecodeEscape' mangled-name='_PyBytes_DecodeEscape' filepath='./Include/cpython/bytesobject.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_BadInternalCall' mangled-name='_PyErr_BadInternalCall' filepath='./Include/pyerrors.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_SetString' mangled-name='PyErr_SetString' filepath='./Include/pyerrors.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__builtin___sprintf_chk' mangled-name='__sprintf_chk' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_DecodeUnicodeEscapeInternal' mangled-name='_PyUnicode_DecodeUnicodeEscapeInternal' filepath='./Include/cpython/unicodeobject.h' line='869' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_FromFormat' mangled-name='PyUnicode_FromFormat' filepath='./Include/unicodeobject.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_WarnExplicitObject' mangled-name='PyErr_WarnExplicitObject' filepath='./Include/warnings.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_new_identifier' mangled-name='_PyPegen_new_identifier' filepath='Parser/pegen/pegen.h' line='226' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + </abi-instr> <abi-instr version='1.0' address-size='64' path='Parser/pegen/peg_api.c' comp-dir-path='/src' language='LANG_C99'> <class-decl name='_mod' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/Python-ast.h' line='52' column='1' id='type-id-20'> <data-member access='public' layout-offset-in-bits='0'> @@ -2946,6 +3610,21 @@ <parameter type-id='type-id-230' name='arena' filepath='Parser/pegen/peg_api.c' line='8' column='1'/> <return type-id='type-id-204'/> </function-decl> + <function-decl name='PySys_Audit' mangled-name='PySys_Audit' filepath='./Include/cpython/sysmodule.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_run_parser_from_file_pointer' mangled-name='_PyPegen_run_parser_from_file_pointer' filepath='Parser/pegen/pegen.h' line='229' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_FromString' mangled-name='PyUnicode_FromString' filepath='./Include/unicodeobject.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_run_parser_from_file' mangled-name='_PyPegen_run_parser_from_file' filepath='Parser/pegen/pegen.h' line='232' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPegen_run_parser_from_string' mangled-name='_PyPegen_run_parser_from_string' filepath='Parser/pegen/pegen.h' line='233' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> <function-type size-in-bits='64' id='type-id-120'> <parameter type-id='type-id-100'/> <return type-id='type-id-100'/> @@ -3215,6 +3894,48 @@ <parameter type-id='type-id-3' name='prompt' filepath='Parser/myreadline.c' line='356' column='1'/> <return type-id='type-id-7'/> </function-decl> + <function-decl name='PyEval_SaveThread' mangled-name='PyEval_SaveThread' filepath='./Include/ceval.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_acquire_lock' mangled-name='PyThread_acquire_lock' filepath='./Include/pythread.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fileno' mangled-name='fileno' filepath='/usr/include/stdio.h' line='786' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='isatty' mangled-name='isatty' filepath='/usr/include/unistd.h' line='779' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyEval_RestoreThread' mangled-name='PyEval_RestoreThread' filepath='./Include/ceval.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_release_lock' mangled-name='PyThread_release_lock' filepath='./Include/pythread.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_allocate_lock' mangled-name='PyThread_allocate_lock' filepath='./Include/pythread.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__fgets_alias' mangled-name='fgets' filepath='/usr/include/x86_64-linux-gnu/bits/stdio2.h' line='245' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_CheckSignals' mangled-name='PyErr_CheckSignals' filepath='./Include/pyerrors.h' line='231' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='clearerr' mangled-name='clearerr' filepath='/usr/include/stdio.h' line='757' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='feof' mangled-name='feof' filepath='/usr/include/stdio.h' line='759' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyOS_InterruptOccurred' mangled-name='_PyOS_InterruptOccurred' filepath='./Include/internal/pycore_pystate.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMem_RawRealloc' mangled-name='PyMem_RawRealloc' filepath='./Include/cpython/pymem.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fflush' mangled-name='fflush' filepath='/usr/include/stdio.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> <function-type size-in-bits='64' id='type-id-252'> <parameter type-id='type-id-223'/> <parameter type-id='type-id-223'/> @@ -3440,6 +4161,113 @@ <parameter type-id='type-id-278' name='err_ret' filepath='Parser/parsetok.c' line='65' column='1'/> <return type-id='type-id-11'/> </function-decl> + <function-decl name='realloc' mangled-name='realloc' filepath='/usr/include/stdlib.h' line='550' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyParser_AddToken' mangled-name='PyParser_AddToken' filepath='Parser/parser.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='malloc' mangled-name='malloc' filepath='/usr/include/stdlib.h' line='539' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='free' mangled-name='free' filepath='/usr/include/stdlib.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyParser_New' mangled-name='PyParser_New' filepath='Parser/parser.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyParser_Delete' mangled-name='PyParser_Delete' filepath='Parser/parser.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyNode_FinalizeEndPos' mangled-name='_PyNode_FinalizeEndPos' filepath='./Include/node.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_DecodeFSDefault' mangled-name='PyUnicode_DecodeFSDefault' filepath='./Include/unicodeobject.h' line='764' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + </abi-instr> + <abi-instr version='1.0' address-size='64' path='Parser/tokenizer.c' comp-dir-path='/src' language='LANG_C99'> + <function-decl name='_Py_dup' mangled-name='_Py_dup' filepath='./Include/cpython/fileutils.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fdopen' mangled-name='fdopen' filepath='/usr/include/stdio.h' line='279' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_Substring' mangled-name='PyUnicode_Substring' filepath='./Include/unicodeobject.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_AsUTF8String' mangled-name='PyUnicode_AsUTF8String' filepath='./Include/unicodeobject.h' line='464' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsPrintable' mangled-name='_PyUnicode_IsPrintable' filepath='./Include/cpython/unicodeobject.h' line='1163' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_ScanIdentifier' mangled-name='_PyUnicode_ScanIdentifier' filepath='./Include/cpython/unicodeobject.h' line='1225' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyToken_ThreeChars' mangled-name='PyToken_ThreeChars' filepath='./Include/token.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyToken_TwoChars' mangled-name='PyToken_TwoChars' filepath='./Include/token.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__ctype_b_loc' mangled-name='__ctype_b_loc' filepath='/usr/include/ctype.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyToken_OneChar' mangled-name='PyToken_OneChar' filepath='./Include/token.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='strcspn' mangled-name='strcspn' filepath='/usr/include/string.h' line='273' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_BuildValue_SizeT' mangled-name='_Py_BuildValue_SizeT' filepath='./Include/modsupport.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_Decode' mangled-name='PyUnicode_Decode' filepath='./Include/unicodeobject.h' line='359' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyOS_Readline' mangled-name='PyOS_Readline' filepath='./Include/pythonrun.h' line='191' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Size' mangled-name='PyObject_Size' filepath='./Include/abstract.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySys_WriteStderr' mangled-name='PySys_WriteStderr' filepath='./Include/sysmodule.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getc' mangled-name='getc' filepath='/usr/include/stdio.h' line='486' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='ungetc' mangled-name='ungetc' filepath='/usr/include/stdio.h' line='639' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyByteArray_AsString' mangled-name='PyByteArray_AsString' filepath='./Include/bytearrayobject.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_AsUTF8AndSize' mangled-name='PyUnicode_AsUTF8AndSize' filepath='./Include/cpython/unicodeobject.h' line='746' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyByteArray_FromStringAndSize' mangled-name='PyByteArray_FromStringAndSize' filepath='./Include/bytearrayobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_UniversalNewlineFgets' mangled-name='Py_UniversalNewlineFgets' filepath='./Include/cpython/fileobject.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='ftell' mangled-name='ftell' filepath='/usr/include/stdio.h' line='689' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='lseek' mangled-name='lseek64' filepath='/usr/include/unistd.h' line='337' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_CallMethodId_SizeT' mangled-name='_PyObject_CallMethodId_SizeT' filepath='./Include/cpython/abstract.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_GetAttrId' mangled-name='_PyObject_GetAttrId' filepath='./Include/cpython/object.h' line='315' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__ctype_tolower_loc' mangled-name='__ctype_tolower_loc' filepath='/usr/include/ctype.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/abstract.c' comp-dir-path='/src' language='LANG_C99'> <qualified-type-def type-id='type-id-7' const='yes' id='type-id-279'/> @@ -3452,18 +4280,10 @@ <parameter type-id='type-id-100' name='self' filepath='Objects/abstract.c' line='2712' column='1'/> <return type-id='type-id-280'/> </function-decl> - <function-decl name='PyIter_Next' mangled-name='PyIter_Next' filepath='Objects/abstract.c' line='2691' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyIter_Next'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PyIter_Check' mangled-name='PyIter_Check' filepath='Objects/abstract.c' line='2677' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyIter_Check'> <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyObject_GetIter' mangled-name='PyObject_GetIter' filepath='Objects/abstract.c' line='2650' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetIter'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2650' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='_PyObject_RealIsSubclass' mangled-name='_PyObject_RealIsSubclass' filepath='Objects/abstract.c' line='2643' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_RealIsSubclass'> <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2643' column='1'/> <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2643' column='1'/> @@ -3485,20 +4305,20 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyMapping_Values' mangled-name='PyMapping_Values' filepath='Objects/abstract.c' line='2333' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Values'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2333' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyMapping_Items' mangled-name='PyMapping_Items' filepath='Objects/abstract.c' line='2319' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Items'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2333' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyMapping_Keys' mangled-name='PyMapping_Keys' filepath='Objects/abstract.c' line='2305' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Keys'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2333' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyMapping_HasKey' mangled-name='PyMapping_HasKey' filepath='Objects/abstract.c' line='2260' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_HasKey'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2629' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2629' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2260' column='1'/> + <parameter type-id='type-id-100' name='key' filepath='Objects/abstract.c' line='2260' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyMapping_HasKeyString' mangled-name='PyMapping_HasKeyString' filepath='Objects/abstract.c' line='2246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_HasKeyString'> @@ -3512,19 +4332,10 @@ <parameter type-id='type-id-100' name='value' filepath='Objects/abstract.c' line='2227' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyMapping_GetItemString' mangled-name='PyMapping_GetItemString' filepath='Objects/abstract.c' line='2210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_GetItemString'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2210' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2210' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PyMapping_Length' mangled-name='PyMapping_Length' filepath='Objects/abstract.c' line='2203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Length'> <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2203' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='PyMapping_Size' mangled-name='PyMapping_Size' filepath='Objects/abstract.c' line='2176' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Size'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2176' column='1'/> - <return type-id='type-id-15'/> - </function-decl> <function-decl name='PyMapping_Check' mangled-name='PyMapping_Check' filepath='Objects/abstract.c' line='2169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Check'> <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> <return type-id='type-id-8'/> @@ -3535,13 +4346,8 @@ <return type-id='type-id-15'/> </function-decl> <function-decl name='PySequence_In' mangled-name='PySequence_In' filepath='Objects/abstract.c' line='2155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_In'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2643' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2643' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='PySequence_Contains' mangled-name='PySequence_Contains' filepath='Objects/abstract.c' line='2142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Contains'> - <parameter type-id='type-id-100' name='seq' filepath='Objects/abstract.c' line='2142' column='1'/> - <parameter type-id='type-id-100' name='ob' filepath='Objects/abstract.c' line='2142' column='1'/> + <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='2155' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='2155' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PySequence_Count' mangled-name='PySequence_Count' filepath='Objects/abstract.c' line='2133' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Count'> @@ -3560,10 +4366,6 @@ <parameter type-id='type-id-3' name='m' filepath='Objects/abstract.c' line='2015' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PySequence_List' mangled-name='PySequence_List' filepath='Objects/abstract.c' line='1992' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_List'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PySequence_Tuple' mangled-name='PySequence_Tuple' filepath='Objects/abstract.c' line='1908' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Tuple'> <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1908' column='1'/> <return type-id='type-id-100'/> @@ -3604,8 +4406,8 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PySequence_InPlaceRepeat' mangled-name='PySequence_InPlaceRepeat' filepath='Objects/abstract.c' line='1710' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_InPlaceRepeat'> - <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1740' column='1'/> - <parameter type-id='type-id-15' name='i' filepath='Objects/abstract.c' line='1740' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1710' column='1'/> + <parameter type-id='type-id-15' name='count' filepath='Objects/abstract.c' line='1710' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PySequence_InPlaceConcat' mangled-name='PySequence_InPlaceConcat' filepath='Objects/abstract.c' line='1685' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_InPlaceConcat'> @@ -3614,8 +4416,8 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PySequence_Repeat' mangled-name='PySequence_Repeat' filepath='Objects/abstract.c' line='1655' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Repeat'> - <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1740' column='1'/> - <parameter type-id='type-id-15' name='i' filepath='Objects/abstract.c' line='1740' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1710' column='1'/> + <parameter type-id='type-id-15' name='count' filepath='Objects/abstract.c' line='1710' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PySequence_Concat' mangled-name='PySequence_Concat' filepath='Objects/abstract.c' line='1630' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Concat'> @@ -3627,12 +4429,8 @@ <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2203' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='PySequence_Size' mangled-name='PySequence_Size' filepath='Objects/abstract.c' line='1597' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Size'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2176' column='1'/> - <return type-id='type-id-15'/> - </function-decl> <function-decl name='PySequence_Check' mangled-name='PySequence_Check' filepath='Objects/abstract.c' line='1588' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Check'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> + <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1588' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyNumber_ToBase' mangled-name='PyNumber_ToBase' filepath='Objects/abstract.c' line='1569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_ToBase'> @@ -3654,27 +4452,27 @@ <return type-id='type-id-15'/> </function-decl> <function-decl name='PyNumber_Index' mangled-name='PyNumber_Index' filepath='Objects/abstract.c' line='1324' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Index'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='item' filepath='Objects/abstract.c' line='1324' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyIndex_Check' mangled-name='PyIndex_Check' filepath='Objects/abstract.c' line='1313' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyIndex_Check'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> + <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1588' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyNumber_Absolute' mangled-name='PyNumber_Absolute' filepath='Objects/abstract.c' line='1296' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Absolute'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1296' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyNumber_Invert' mangled-name='PyNumber_Invert' filepath='Objects/abstract.c' line='1280' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Invert'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1296' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyNumber_Positive' mangled-name='PyNumber_Positive' filepath='Objects/abstract.c' line='1264' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Positive'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1296' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyNumber_Negative' mangled-name='PyNumber_Negative' filepath='Objects/abstract.c' line='1248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Negative'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1296' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyNumber_InPlacePower' mangled-name='PyNumber_InPlacePower' filepath='Objects/abstract.c' line='1233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlacePower'> @@ -3694,13 +4492,13 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyNumber_InPlaceMultiply' mangled-name='PyNumber_InPlaceMultiply' filepath='Objects/abstract.c' line='1190' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceMultiply'> - <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1685' column='1'/> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1685' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1190' column='1'/> + <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='1190' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyNumber_InPlaceAdd' mangled-name='PyNumber_InPlaceAdd' filepath='Objects/abstract.c' line='1169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceAdd'> - <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1685' column='1'/> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1685' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1190' column='1'/> + <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='1190' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyNumber_InPlaceTrueDivide' mangled-name='PyNumber_InPlaceTrueDivide' filepath='Objects/abstract.c' line='1162' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceTrueDivide'> @@ -3744,9 +4542,9 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyNumber_Power' mangled-name='PyNumber_Power' filepath='Objects/abstract.c' line='1090' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Power'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1233' column='1'/> - <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='1233' column='1'/> - <parameter type-id='type-id-100' name='z' filepath='Objects/abstract.c' line='1233' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1090' column='1'/> + <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='1090' column='1'/> + <parameter type-id='type-id-100' name='z' filepath='Objects/abstract.c' line='1090' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyNumber_Remainder' mangled-name='PyNumber_Remainder' filepath='Objects/abstract.c' line='1084' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Remainder'> @@ -3770,13 +4568,13 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyNumber_Multiply' mangled-name='PyNumber_Multiply' filepath='Objects/abstract.c' line='1047' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Multiply'> - <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1685' column='1'/> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1685' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1190' column='1'/> + <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='1190' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyNumber_Add' mangled-name='PyNumber_Add' filepath='Objects/abstract.c' line='1016' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Add'> - <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1685' column='1'/> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1685' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1190' column='1'/> + <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='1190' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyNumber_Divmod' mangled-name='PyNumber_Divmod' filepath='Objects/abstract.c' line='1013' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Divmod'> @@ -3879,36 +4677,29 @@ <parameter type-id='type-id-158' name='indices' filepath='Objects/abstract.c' line='470' column='1'/> <return type-id='type-id-32'/> </function-decl> - <qualified-type-def type-id='type-id-159' const='yes' id='type-id-283'/> - <pointer-type-def type-id='type-id-283' size-in-bits='64' id='type-id-284'/> - <function-decl name='PyBuffer_IsContiguous' mangled-name='PyBuffer_IsContiguous' filepath='Objects/abstract.c' line='454' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_IsContiguous'> - <parameter type-id='type-id-284' name='view' filepath='Objects/abstract.c' line='454' column='1'/> - <parameter type-id='type-id-1' name='order' filepath='Objects/abstract.c' line='454' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='PyObject_GetBuffer' mangled-name='PyObject_GetBuffer' filepath='Objects/abstract.c' line='373' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetBuffer'> <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='373' column='1'/> <parameter type-id='type-id-160' name='view' filepath='Objects/abstract.c' line='373' column='1'/> <parameter type-id='type-id-8' name='flags' filepath='Objects/abstract.c' line='373' column='1'/> <return type-id='type-id-8'/> </function-decl> - <pointer-type-def type-id='type-id-32' size-in-bits='64' id='type-id-285'/> + <pointer-type-def type-id='type-id-32' size-in-bits='64' id='type-id-283'/> <function-decl name='PyObject_AsWriteBuffer' mangled-name='PyObject_AsWriteBuffer' filepath='Objects/abstract.c' line='344' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_AsWriteBuffer'> <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='344' column='1'/> - <parameter type-id='type-id-285' name='buffer' filepath='Objects/abstract.c' line='345' column='1'/> + <parameter type-id='type-id-283' name='buffer' filepath='Objects/abstract.c' line='345' column='1'/> <parameter type-id='type-id-158' name='buffer_len' filepath='Objects/abstract.c' line='346' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_AsReadBuffer' mangled-name='PyObject_AsReadBuffer' filepath='Objects/abstract.c' line='337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_AsReadBuffer'> <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='337' column='1'/> - <parameter type-id='type-id-285' name='buffer' filepath='Objects/abstract.c' line='338' column='1'/> + <parameter type-id='type-id-283' name='buffer' filepath='Objects/abstract.c' line='338' column='1'/> <parameter type-id='type-id-158' name='buffer_len' filepath='Objects/abstract.c' line='339' column='1'/> <return type-id='type-id-8'/> </function-decl> - <pointer-type-def type-id='type-id-3' size-in-bits='64' id='type-id-286'/> + <pointer-type-def type-id='type-id-3' size-in-bits='64' id='type-id-284'/> <function-decl name='PyObject_AsCharBuffer' mangled-name='PyObject_AsCharBuffer' filepath='Objects/abstract.c' line='330' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_AsCharBuffer'> <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='330' column='1'/> - <parameter type-id='type-id-286' name='buffer' filepath='Objects/abstract.c' line='331' column='1'/> + <parameter type-id='type-id-284' name='buffer' filepath='Objects/abstract.c' line='331' column='1'/> <parameter type-id='type-id-158' name='buffer_len' filepath='Objects/abstract.c' line='332' column='1'/> <return type-id='type-id-8'/> </function-decl> @@ -3941,11 +4732,6 @@ <parameter type-id='type-id-100' name='key' filepath='Objects/abstract.c' line='146' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyObject_LengthHint' mangled-name='PyObject_LengthHint' filepath='Objects/abstract.c' line='89' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_LengthHint'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='89' column='1'/> - <parameter type-id='type-id-15' name='defaultvalue' filepath='Objects/abstract.c' line='89' column='1'/> - <return type-id='type-id-15'/> - </function-decl> <function-decl name='_PyObject_HasLen' mangled-name='_PyObject_HasLen' filepath='Objects/abstract.c' line='77' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_HasLen'> <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> <return type-id='type-id-8'/> @@ -3954,14 +4740,161 @@ <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2203' column='1'/> <return type-id='type-id-15'/> </function-decl> + <function-decl name='PyObject_Type' mangled-name='PyObject_Type' filepath='Objects/abstract.c' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Type'> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='35' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <qualified-type-def type-id='type-id-159' const='yes' id='type-id-285'/> + <pointer-type-def type-id='type-id-285' size-in-bits='64' id='type-id-286'/> + <function-decl name='PyBuffer_IsContiguous' mangled-name='PyBuffer_IsContiguous' filepath='Objects/abstract.c' line='454' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_IsContiguous'> + <parameter type-id='type-id-286' name='view' filepath='Objects/abstract.c' line='454' column='1'/> + <parameter type-id='type-id-1' name='order' filepath='Objects/abstract.c' line='454' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='PySequence_Size' mangled-name='PySequence_Size' filepath='Objects/abstract.c' line='1597' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Size'> + <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1597' column='1'/> + <return type-id='type-id-15'/> + </function-decl> + <function-decl name='PySequence_List' mangled-name='PySequence_List' filepath='Objects/abstract.c' line='1992' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_List'> + <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyMapping_Size' mangled-name='PyMapping_Size' filepath='Objects/abstract.c' line='2176' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Size'> + <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1597' column='1'/> + <return type-id='type-id-15'/> + </function-decl> <function-decl name='PyObject_Size' mangled-name='PyObject_Size' filepath='Objects/abstract.c' line='49' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Size'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2176' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='49' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='PyObject_Type' mangled-name='PyObject_Type' filepath='Objects/abstract.c' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Type'> + <function-decl name='PyObject_LengthHint' mangled-name='PyObject_LengthHint' filepath='Objects/abstract.c' line='89' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_LengthHint'> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='89' column='1'/> + <parameter type-id='type-id-15' name='defaultvalue' filepath='Objects/abstract.c' line='89' column='1'/> + <return type-id='type-id-15'/> + </function-decl> + <function-decl name='PyMapping_GetItemString' mangled-name='PyMapping_GetItemString' filepath='Objects/abstract.c' line='2210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_GetItemString'> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2210' column='1'/> + <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2210' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyObject_GetIter' mangled-name='PyObject_GetIter' filepath='Objects/abstract.c' line='2650' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetIter'> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2650' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyIter_Next' mangled-name='PyIter_Next' filepath='Objects/abstract.c' line='2691' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyIter_Next'> <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PySequence_Contains' mangled-name='PySequence_Contains' filepath='Objects/abstract.c' line='2142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Contains'> + <parameter type-id='type-id-100' name='seq' filepath='Objects/abstract.c' line='2142' column='1'/> + <parameter type-id='type-id-100' name='ob' filepath='Objects/abstract.c' line='2142' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='PyBytes_AsStringAndSize' mangled-name='PyBytes_AsStringAndSize' filepath='./Include/bytesobject.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_LookupAttrId' mangled-name='_PyObject_LookupAttrId' filepath='./Include/cpython/object.h' line='328' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyType_IsSubtype' mangled-name='PyType_IsSubtype' filepath='./Include/object.h' line='223' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_CheckRecursiveCall' mangled-name='_Py_CheckRecursiveCall' filepath='./Include/internal/pycore_ceval.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_IsTrue' mangled-name='PyObject_IsTrue' filepath='./Include/object.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_LookupSpecial' mangled-name='_PyObject_LookupSpecial' filepath='./Include/cpython/object.h' line='303' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_FromId' mangled-name='_PyUnicode_FromId' filepath='./Include/cpython/unicodeobject.h' line='1219' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_VectorcallMethod' mangled-name='PyObject_VectorcallMethod' filepath='./Include/cpython/abstract.h' line='191' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_Values' mangled-name='PyDict_Values' filepath='./Include/dictobject.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_Items' mangled-name='PyDict_Items' filepath='./Include/dictobject.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_Keys' mangled-name='PyDict_Keys' filepath='./Include/dictobject.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_RichCompareBool' mangled-name='PyObject_RichCompareBool' filepath='./Include/object.h' line='246' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTuple_Resize' mangled-name='_PyTuple_Resize' filepath='./Include/cpython/tupleobject.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyTuple_New' mangled-name='PyTuple_New' filepath='./Include/tupleobject.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyList_AsTuple' mangled-name='PyList_AsTuple' filepath='./Include/listobject.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySlice_FromIndices' mangled-name='_PySlice_FromIndices' filepath='./Include/sliceobject.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_FromSsize_t' mangled-name='PyLong_FromSsize_t' filepath='./Include/longobject.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_Format' mangled-name='_PyLong_Format' filepath='./Include/longobject.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_WarnFormat' mangled-name='PyErr_WarnFormat' filepath='./Include/warnings.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_AsDouble' mangled-name='PyLong_AsDouble' filepath='./Include/longobject.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFloat_FromString' mangled-name='PyFloat_FromString' filepath='./Include/floatobject.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_Copy' mangled-name='_PyLong_Copy' filepath='./Include/longintrepr.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_FromNbIndexOrNbInt' mangled-name='_PyLong_FromNbIndexOrNbInt' filepath='./Include/longobject.h' line='191' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_FromBytes' mangled-name='_PyLong_FromBytes' filepath='./Include/longobject.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_FromNbInt' mangled-name='_PyLong_FromNbInt' filepath='./Include/longobject.h' line='181' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_FromUnicodeObject' mangled-name='PyLong_FromUnicodeObject' filepath='./Include/longobject.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_AsSsize_t' mangled-name='PyLong_AsSsize_t' filepath='./Include/longobject.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_GivenExceptionMatches' mangled-name='PyErr_GivenExceptionMatches' filepath='./Include/pyerrors.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_Sign' mangled-name='_PyLong_Sign' filepath='./Include/longobject.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_New' mangled-name='PyUnicode_New' filepath='./Include/cpython/unicodeobject.h' line='460' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyImport_ImportModule' mangled-name='PyImport_ImportModule' filepath='./Include/import.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_CallFunctionObjArgs' mangled-name='PyObject_CallFunctionObjArgs' filepath='./Include/abstract.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_GenericAlias' mangled-name='Py_GenericAlias' filepath='./Include/genericaliasobject.h' line='8' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyList_Extend' mangled-name='_PyList_Extend' filepath='./Include/cpython/listobject.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySeqIter_New' mangled-name='PySeqIter_New' filepath='./Include/iterobject.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/accu.c' comp-dir-path='/src' language='LANG_C99'> <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-287' visibility='default' filepath='./Include/internal/pycore_accu.h' line='24' column='1' id='type-id-288'> @@ -3982,10 +4915,6 @@ <parameter type-id='type-id-289' name='acc' filepath='Objects/accu.c' line='93' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyAccu_FinishAsList' mangled-name='_PyAccu_FinishAsList' filepath='Objects/accu.c' line='76' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAccu_FinishAsList'> - <parameter type-id='type-id-289' name='acc' filepath='Objects/accu.c' line='76' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='_PyAccu_Accumulate' mangled-name='_PyAccu_Accumulate' filepath='Objects/accu.c' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAccu_Accumulate'> <parameter type-id='type-id-289' name='acc' filepath='Objects/accu.c' line='55' column='1'/> <parameter type-id='type-id-100' name='unicode' filepath='Objects/accu.c' line='55' column='1'/> @@ -3995,6 +4924,19 @@ <parameter type-id='type-id-289' name='acc' filepath='Objects/accu.c' line='18' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='_PyAccu_FinishAsList' mangled-name='_PyAccu_FinishAsList' filepath='Objects/accu.c' line='76' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAccu_FinishAsList'> + <parameter type-id='type-id-289' name='acc' filepath='Objects/accu.c' line='76' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyUnicode_Join' mangled-name='PyUnicode_Join' filepath='./Include/unicodeobject.h' line='902' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyList_SetSlice' mangled-name='PyList_SetSlice' filepath='./Include/listobject.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyList_Append' mangled-name='PyList_Append' filepath='./Include/listobject.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/boolobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyBool_Type' type-id='type-id-182' mangled-name='PyBool_Type' visibility='default' filepath='./Include/boolobject.h' line='10' column='1' elf-symbol-id='PyBool_Type'/> @@ -4020,6 +4962,12 @@ <parameter type-id='type-id-12' name='ok' filepath='Objects/boolobject.c' line='28' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='_PyArg_NoKeywords' mangled-name='_PyArg_NoKeywords' filepath='./Include/modsupport.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyArg_UnpackTuple' mangled-name='PyArg_UnpackTuple' filepath='./Include/modsupport.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/bytes_methods.c' comp-dir-path='/src' language='LANG_C99'> @@ -4049,6 +4997,36 @@ <var-decl name='_Py_count__doc__' type-id='type-id-296' visibility='default' filepath='./Include/internal/pycore_bytes_methods.h' line='55' column='1'/> <var-decl name='_Py_startswith__doc__' type-id='type-id-296' visibility='default' filepath='./Include/internal/pycore_bytes_methods.h' line='60' column='1'/> <var-decl name='_Py_endswith__doc__' type-id='type-id-296' visibility='default' filepath='./Include/internal/pycore_bytes_methods.h' line='61' column='1'/> + <function-decl name='__builtin_memcmp' mangled-name='memcmp' filepath='/usr/include/string.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBuffer_Release' mangled-name='PyBuffer_Release' filepath='./Include/cpython/abstract.h' line='330' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_GetBuffer' mangled-name='PyObject_GetBuffer' filepath='./Include/cpython/abstract.h' line='274' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArg_ParseTuple_SizeT' mangled-name='_PyArg_ParseTuple_SizeT' filepath='./Include/modsupport.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_SliceIndex' mangled-name='_PyEval_SliceIndex' filepath='./Include/cpython/ceval.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBool_FromLong' mangled-name='PyBool_FromLong' filepath='./Include/boolobject.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_AsSsize_t' mangled-name='PyNumber_AsSsize_t' filepath='./Include/abstract.h' line='509' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_CheckBuffer' mangled-name='PyObject_CheckBuffer' filepath='./Include/cpython/abstract.h' line='267' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='memrchr' mangled-name='memrchr' filepath='/usr/include/string.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/bytearrayobject.c' comp-dir-path='/src' language='LANG_C99'> @@ -4074,7 +5052,7 @@ <return type-id='type-id-7'/> </function-decl> <function-decl name='PyByteArray_Size' mangled-name='PyByteArray_Size' filepath='Objects/bytearrayobject.c' line='158' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_Size'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2203' column='1'/> + <parameter type-id='type-id-100' name='self' filepath='Objects/bytearrayobject.c' line='158' column='1'/> <return type-id='type-id-15'/> </function-decl> <function-decl name='PyByteArray_FromStringAndSize' mangled-name='PyByteArray_FromStringAndSize' filepath='Objects/bytearrayobject.c' line='114' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_FromStringAndSize'> @@ -4086,6 +5064,171 @@ <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyObject_GC_Del' mangled-name='PyObject_GC_Del' filepath='./Include/objimpl.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_endswith' mangled-name='_Py_bytes_endswith' filepath='./Include/internal/pycore_bytes_methods.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_startswith' mangled-name='_Py_bytes_startswith' filepath='./Include/internal/pycore_bytes_methods.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_contains' mangled-name='_Py_bytes_contains' filepath='./Include/internal/pycore_bytes_methods.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_rindex' mangled-name='_Py_bytes_rindex' filepath='./Include/internal/pycore_bytes_methods.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_rfind' mangled-name='_Py_bytes_rfind' filepath='./Include/internal/pycore_bytes_methods.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_index' mangled-name='_Py_bytes_index' filepath='./Include/internal/pycore_bytes_methods.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_count' mangled-name='_Py_bytes_count' filepath='./Include/internal/pycore_bytes_methods.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_find' mangled-name='_Py_bytes_find' filepath='./Include/internal/pycore_bytes_methods.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Index' mangled-name='PyNumber_Index' filepath='./Include/abstract.h' line='501' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArg_UnpackKeywords' mangled-name='_PyArg_UnpackKeywords' filepath='./Include/modsupport.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_AsInt' mangled-name='_PyLong_AsInt' filepath='./Include/longobject.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_swapcase' mangled-name='_Py_bytes_swapcase' filepath='./Include/internal/pycore_bytes_methods.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_capitalize' mangled-name='_Py_bytes_capitalize' filepath='./Include/internal/pycore_bytes_methods.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_title' mangled-name='_Py_bytes_title' filepath='./Include/internal/pycore_bytes_methods.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_upper' mangled-name='_Py_bytes_upper' filepath='./Include/internal/pycore_bytes_methods.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_lower' mangled-name='_Py_bytes_lower' filepath='./Include/internal/pycore_bytes_methods.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_istitle' mangled-name='_Py_bytes_istitle' filepath='./Include/internal/pycore_bytes_methods.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_isupper' mangled-name='_Py_bytes_isupper' filepath='./Include/internal/pycore_bytes_methods.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_islower' mangled-name='_Py_bytes_islower' filepath='./Include/internal/pycore_bytes_methods.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_isdigit' mangled-name='_Py_bytes_isdigit' filepath='./Include/internal/pycore_bytes_methods.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_isascii' mangled-name='_Py_bytes_isascii' filepath='./Include/internal/pycore_bytes_methods.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_isalnum' mangled-name='_Py_bytes_isalnum' filepath='./Include/internal/pycore_bytes_methods.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_isalpha' mangled-name='_Py_bytes_isalpha' filepath='./Include/internal/pycore_bytes_methods.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_isspace' mangled-name='_Py_bytes_isspace' filepath='./Include/internal/pycore_bytes_methods.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySequence_Fast' mangled-name='PySequence_Fast' filepath='./Include/abstract.h' line='692' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_Print' mangled-name='PyErr_Print' filepath='./Include/pythonrun.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_GetConfig' mangled-name='_Py_GetConfig' filepath='./Include/cpython/pystate.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_WarnEx' mangled-name='PyErr_WarnEx' filepath='./Include/warnings.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_AsEncodedString' mangled-name='PyUnicode_AsEncodedString' filepath='./Include/unicodeobject.h' line='409' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBuffer_ToContiguous' mangled-name='PyBuffer_ToContiguous' filepath='./Include/cpython/abstract.h' line='286' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_AsLong' mangled-name='PyLong_AsLong' filepath='./Include/longobject.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArg_ParseTupleAndKeywords_SizeT' mangled-name='_PyArg_ParseTupleAndKeywords_SizeT' filepath='./Include/modsupport.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_GetIter' mangled-name='PyObject_GetIter' filepath='./Include/abstract.h' line='372' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Check' mangled-name='PyNumber_Check' filepath='./Include/abstract.h' line='394' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySlice_Unpack' mangled-name='PySlice_Unpack' filepath='./Include/sliceobject.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySlice_AdjustIndices' mangled-name='PySlice_AdjustIndices' filepath='./Include/sliceobject.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_New' mangled-name='_PyObject_New' filepath='./Include/objimpl.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_DecodeLatin1' mangled-name='PyUnicode_DecodeLatin1' filepath='./Include/unicodeobject.h' line='614' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_strhex_with_sep' mangled-name='_Py_strhex_with_sep' filepath='./Include/pystrhex.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArg_BadArgument' mangled-name='_PyArg_BadArgument' filepath='./Include/modsupport.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_FromEncodedObject' mangled-name='PyUnicode_FromEncodedObject' filepath='./Include/unicodeobject.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_GetDefaultEncoding' mangled-name='PyUnicode_GetDefaultEncoding' filepath='./Include/unicodeobject.h' line='352' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArg_CheckPositional' mangled-name='_PyArg_CheckPositional' filepath='./Include/modsupport.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyList_Reverse' mangled-name='PyList_Reverse' filepath='./Include/listobject.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBuffer_IsContiguous' mangled-name='PyBuffer_IsContiguous' filepath='./Include/cpython/abstract.h' line='308' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_bytes_maketrans' mangled-name='_Py_bytes_maketrans' filepath='./Include/internal/pycore_bytes_methods.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_GC_New' mangled-name='_PyObject_GC_New' filepath='./Include/objimpl.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_IsInstance' mangled-name='PyObject_IsInstance' filepath='./Include/abstract.h' line='836' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBuffer_FillInfo' mangled-name='PyBuffer_FillInfo' filepath='./Include/cpython/abstract.h' line='325' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytes_FormatEx' mangled-name='_PyBytes_FormatEx' filepath='./Include/cpython/bytesobject.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_GetBuiltinId' mangled-name='_PyEval_GetBuiltinId' filepath='./Include/cpython/ceval.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytes_FromHex' mangled-name='_PyBytes_FromHex' filepath='./Include/cpython/bytesobject.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_LengthHint' mangled-name='PyObject_LengthHint' filepath='./Include/cpython/abstract.h' line='262' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyIter_Next' mangled-name='PyIter_Next' filepath='./Include/abstract.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/bytesobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyBytes_Type' type-id='type-id-182' mangled-name='PyBytes_Type' visibility='default' filepath='./Include/bytesobject.h' line='30' column='1' elf-symbol-id='PyBytes_Type'/> @@ -4137,12 +5280,6 @@ <parameter type-id='type-id-15' name='size' filepath='Objects/bytesobject.c' line='3411' column='1'/> <return type-id='type-id-32'/> </function-decl> - <function-decl name='_PyBytesWriter_Prepare' mangled-name='_PyBytesWriter_Prepare' filepath='Objects/bytesobject.c' line='3381' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Prepare'> - <parameter type-id='type-id-302' name='writer' filepath='Objects/bytesobject.c' line='3381' column='1'/> - <parameter type-id='type-id-32' name='str' filepath='Objects/bytesobject.c' line='3381' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/bytesobject.c' line='3381' column='1'/> - <return type-id='type-id-32'/> - </function-decl> <function-decl name='_PyBytesWriter_Resize' mangled-name='_PyBytesWriter_Resize' filepath='Objects/bytesobject.c' line='3311' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Resize'> <parameter type-id='type-id-302' name='writer' filepath='Objects/bytesobject.c' line='3311' column='1'/> <parameter type-id='type-id-32' name='str' filepath='Objects/bytesobject.c' line='3311' column='1'/> @@ -4168,15 +5305,6 @@ <parameter type-id='type-id-100' name='w' filepath='Objects/bytesobject.c' line='2978' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyBytes_Concat' mangled-name='PyBytes_Concat' filepath='Objects/bytesobject.c' line='2929' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_Concat'> - <parameter type-id='type-id-303' name='pv' filepath='Objects/bytesobject.c' line='2929' column='1'/> - <parameter type-id='type-id-100' name='w' filepath='Objects/bytesobject.c' line='2929' column='1'/> - <return type-id='type-id-4'/> - </function-decl> - <function-decl name='PyBytes_FromObject' mangled-name='PyBytes_FromObject' filepath='Objects/bytesobject.c' line='2805' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromObject'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='_PyBytes_FromHex' mangled-name='_PyBytes_FromHex' filepath='Objects/bytesobject.c' line='2344' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytes_FromHex'> <parameter type-id='type-id-100' name='string' filepath='Objects/bytesobject.c' line='2344' column='1'/> <parameter type-id='type-id-8' name='use_bytearray' filepath='Objects/bytesobject.c' line='2344' column='1'/> @@ -4200,11 +5328,11 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyBytes_AsString' mangled-name='PyBytes_AsString' filepath='Objects/bytesobject.c' line='1208' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_AsString'> - <parameter type-id='type-id-100' name='self' filepath='Objects/bytearrayobject.c' line='167' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/bytesobject.c' line='1208' column='1'/> <return type-id='type-id-7'/> </function-decl> <function-decl name='PyBytes_Size' mangled-name='PyBytes_Size' filepath='Objects/bytesobject.c' line='1197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_Size'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2203' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/bytesobject.c' line='1197' column='1'/> <return type-id='type-id-15'/> </function-decl> <function-decl name='PyBytes_DecodeEscape' mangled-name='PyBytes_DecodeEscape' filepath='Objects/bytesobject.c' line='1171' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_DecodeEscape'> @@ -4219,7 +5347,7 @@ <parameter type-id='type-id-3' name='s' filepath='Objects/bytesobject.c' line='1063' column='1'/> <parameter type-id='type-id-15' name='len' filepath='Objects/bytesobject.c' line='1064' column='1'/> <parameter type-id='type-id-3' name='errors' filepath='Objects/bytesobject.c' line='1065' column='1'/> - <parameter type-id='type-id-286' name='first_invalid_escape' filepath='Objects/bytesobject.c' line='1066' column='1'/> + <parameter type-id='type-id-284' name='first_invalid_escape' filepath='Objects/bytesobject.c' line='1066' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyBytes_FormatEx' mangled-name='_PyBytes_FormatEx' filepath='Objects/bytesobject.c' line='583' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytes_FormatEx'> @@ -4263,6 +5391,69 @@ <parameter type-id='type-id-15' name='size' filepath='Objects/bytesobject.c' line='97' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyBytes_Concat' mangled-name='PyBytes_Concat' filepath='Objects/bytesobject.c' line='2929' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_Concat'> + <parameter type-id='type-id-303' name='pv' filepath='Objects/bytesobject.c' line='2929' column='1'/> + <parameter type-id='type-id-100' name='w' filepath='Objects/bytesobject.c' line='2929' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytesWriter_Prepare' mangled-name='_PyBytesWriter_Prepare' filepath='Objects/bytesobject.c' line='3381' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Prepare'> + <parameter type-id='type-id-302' name='writer' filepath='Objects/bytesobject.c' line='3381' column='1'/> + <parameter type-id='type-id-32' name='str' filepath='Objects/bytesobject.c' line='3381' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/bytesobject.c' line='3381' column='1'/> + <return type-id='type-id-32'/> + </function-decl> + <function-decl name='PyBytes_FromObject' mangled-name='PyBytes_FromObject' filepath='Objects/bytesobject.c' line='2805' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromObject'> + <parameter type-id='type-id-100' name='x' filepath='Objects/bytesobject.c' line='2805' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyByteArray_Resize' mangled-name='PyByteArray_Resize' filepath='./Include/bytearrayobject.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_NewReference' mangled-name='_Py_NewReference' filepath='./Include/cpython/object.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_HashBytes' mangled-name='_Py_HashBytes' filepath='./Include/pyhash.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_BadArgument' mangled-name='PyErr_BadArgument' filepath='./Include/pyerrors.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyType_GetFlags' mangled-name='PyType_GetFlags' filepath='./Include/object.h' line='231' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_GetItem' mangled-name='PyObject_GetItem' filepath='./Include/abstract.h' line='289' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_FormatBytesWriter' mangled-name='_PyLong_FormatBytesWriter' filepath='./Include/longobject.h' line='203' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyTuple_GetItem' mangled-name='PyTuple_GetItem' filepath='./Include/tupleobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_FormatLong' mangled-name='_PyUnicode_FormatLong' filepath='./Include/cpython/unicodeobject.h' line='1208' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Long' mangled-name='PyNumber_Long' filepath='./Include/abstract.h' line='515' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_AsLongAndOverflow' mangled-name='PyLong_AsLongAndOverflow' filepath='./Include/longobject.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_ASCII' mangled-name='PyObject_ASCII' filepath='./Include/object.h' line='243' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFloat_AsDouble' mangled-name='PyFloat_AsDouble' filepath='./Include/floatobject.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyOS_double_to_string' mangled-name='PyOS_double_to_string' filepath='./Include/pystrtod.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__builtin___memmove_chk' mangled-name='__memmove_chk' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Calloc' mangled-name='PyObject_Calloc' filepath='./Include/objimpl.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/call.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='_PyStack_AsDict' mangled-name='_PyStack_AsDict' filepath='Objects/call.c' line='909' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyStack_AsDict'> @@ -5523,15 +6714,9 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyCFunction_Call' mangled-name='PyCFunction_Call' filepath='Objects/call.c' line='298' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_Call'> - <parameter type-id='type-id-100' name='callable' filepath='Objects/call.c' line='412' column='1'/> - <parameter type-id='type-id-100' name='args' filepath='Objects/call.c' line='413' column='1'/> - <parameter type-id='type-id-100' name='kwargs' filepath='Objects/call.c' line='413' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyObject_Call' mangled-name='PyObject_Call' filepath='Objects/call.c' line='290' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Call'> - <parameter type-id='type-id-100' name='callable' filepath='Objects/call.c' line='412' column='1'/> - <parameter type-id='type-id-100' name='args' filepath='Objects/call.c' line='413' column='1'/> - <parameter type-id='type-id-100' name='kwargs' filepath='Objects/call.c' line='413' column='1'/> + <parameter type-id='type-id-100' name='callable' filepath='Objects/call.c' line='298' column='1'/> + <parameter type-id='type-id-100' name='args' filepath='Objects/call.c' line='298' column='1'/> + <parameter type-id='type-id-100' name='kwargs' filepath='Objects/call.c' line='298' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyObject_Call' mangled-name='_PyObject_Call' filepath='Objects/call.c' line='252' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_Call'> @@ -5571,7 +6756,7 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyObject_CallNoArgs' mangled-name='PyObject_CallNoArgs' filepath='Objects/call.c' line='86' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallNoArgs'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='35' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_Py_CheckFunctionResult' mangled-name='_Py_CheckFunctionResult' filepath='Objects/call.c' line='33' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_CheckFunctionResult'> @@ -5581,6 +6766,48 @@ <parameter type-id='type-id-3' name='where' filepath='Objects/call.c' line='34' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyDict_Next' mangled-name='PyDict_Next' filepath='./Include/dictobject.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_NoMemory' mangled-name='_PyErr_NoMemory' filepath='./Include/internal/pycore_pyerrors.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_SetString' mangled-name='_PyErr_SetString' filepath='./Include/internal/pycore_pyerrors.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_SetItem' mangled-name='PyDict_SetItem' filepath='./Include/dictobject.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_NewPresized' mangled-name='_PyDict_NewPresized' filepath='./Include/cpython/dictobject.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_GetMethod' mangled-name='_PyObject_GetMethod' filepath='./Include/cpython/object.h' line='330' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_Format' mangled-name='_PyErr_Format' filepath='./Include/internal/pycore_pyerrors.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCallable_Check' mangled-name='PyCallable_Check' filepath='./Include/object.h' line='263' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_EvalCode' mangled-name='_PyEval_EvalCode' filepath='./Include/internal/pycore_ceval.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFrame_New_NoTrack' mangled-name='_PyFrame_New_NoTrack' filepath='./Include/cpython/frameobject.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTuple_FromArray' mangled-name='_PyTuple_FromArray' filepath='./Include/internal/pycore_tupleobject.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_FormatFromCauseTstate' mangled-name='_PyErr_FormatFromCauseTstate' filepath='./Include/internal/pycore_pyerrors.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_VaBuildStack_SizeT' mangled-name='_Py_VaBuildStack_SizeT' filepath='./Include/modsupport.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_VaBuildStack' mangled-name='_Py_VaBuildStack' filepath='./Include/modsupport.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> <function-type size-in-bits='64' id='type-id-425'> <parameter type-id='type-id-409'/> <parameter type-id='type-id-312'/> @@ -5629,13 +6856,13 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyCapsule_SetName' mangled-name='PyCapsule_SetName' filepath='Objects/capsule.c' line='153' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_SetName'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2246' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2246' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/capsule.c' line='153' column='1'/> + <parameter type-id='type-id-3' name='name' filepath='Objects/capsule.c' line='153' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyCapsule_SetPointer' mangled-name='PyCapsule_SetPointer' filepath='Objects/capsule.c' line='134' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_SetPointer'> - <parameter type-id='type-id-100' name='o' filepath='Objects/capsule.c' line='181' column='1'/> - <parameter type-id='type-id-32' name='context' filepath='Objects/capsule.c' line='181' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/capsule.c' line='134' column='1'/> + <parameter type-id='type-id-32' name='pointer' filepath='Objects/capsule.c' line='134' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyCapsule_GetContext' mangled-name='PyCapsule_GetContext' filepath='Objects/capsule.c' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_GetContext'> @@ -5655,17 +6882,17 @@ <parameter type-id='type-id-3' name='name' filepath='Objects/capsule.c' line='80' column='1'/> <return type-id='type-id-32'/> </function-decl> - <function-decl name='PyCapsule_IsValid' mangled-name='PyCapsule_IsValid' filepath='Objects/capsule.c' line='68' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_IsValid'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2246' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2246' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='PyCapsule_New' mangled-name='PyCapsule_New' filepath='Objects/capsule.c' line='44' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_New'> <parameter type-id='type-id-32' name='pointer' filepath='Objects/capsule.c' line='44' column='1'/> <parameter type-id='type-id-3' name='name' filepath='Objects/capsule.c' line='44' column='1'/> <parameter type-id='type-id-432' name='destructor' filepath='Objects/capsule.c' line='44' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyCapsule_IsValid' mangled-name='PyCapsule_IsValid' filepath='Objects/capsule.c' line='68' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_IsValid'> + <parameter type-id='type-id-100' name='o' filepath='Objects/capsule.c' line='153' column='1'/> + <parameter type-id='type-id-3' name='name' filepath='Objects/capsule.c' line='153' column='1'/> + <return type-id='type-id-8'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/cellobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyCell_Type' type-id='type-id-182' mangled-name='PyCell_Type' visibility='default' filepath='./Include/cellobject.h' line='14' column='1' elf-symbol-id='PyCell_Type'/> @@ -5679,9 +6906,12 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyCell_New' mangled-name='PyCell_New' filepath='Objects/cellobject.c' line='7' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCell_New'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1296' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyObject_RichCompare' mangled-name='PyObject_RichCompare' filepath='./Include/object.h' line='245' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/classobject.c' comp-dir-path='/src' language='LANG_C99'> <class-decl name='PyMemberDef' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/structmember.h' line='18' column='1' id='type-id-174'> @@ -5703,27 +6933,48 @@ </class-decl> <var-decl name='PyMethod_Type' type-id='type-id-182' mangled-name='PyMethod_Type' visibility='default' filepath='./Include/classobject.h' line='20' column='1' elf-symbol-id='PyMethod_Type'/> <var-decl name='PyInstanceMethod_Type' type-id='type-id-182' mangled-name='PyInstanceMethod_Type' visibility='default' filepath='./Include/classobject.h' line='41' column='1' elf-symbol-id='PyInstanceMethod_Type'/> - <function-decl name='PyInstanceMethod_Function' mangled-name='PyInstanceMethod_Function' filepath='Objects/classobject.c' line='390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInstanceMethod_Function'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <function-decl name='PyInstanceMethod_New' mangled-name='PyInstanceMethod_New' filepath='Objects/classobject.c' line='378' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInstanceMethod_New'> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1296' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyInstanceMethod_New' mangled-name='PyInstanceMethod_New' filepath='Objects/classobject.c' line='378' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInstanceMethod_New'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <function-decl name='PyMethod_Self' mangled-name='PyMethod_Self' filepath='Objects/classobject.c' line='25' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_Self'> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyMethod_New' mangled-name='PyMethod_New' filepath='Objects/classobject.c' line='99' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_New'> - <parameter type-id='type-id-100' name='callable' filepath='Objects/call.c' line='445' column='1'/> - <parameter type-id='type-id-100' name='args' filepath='Objects/call.c' line='445' column='1'/> + <function-decl name='PyMethod_Function' mangled-name='PyMethod_Function' filepath='Objects/classobject.c' line='15' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_Function'> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyMethod_Self' mangled-name='PyMethod_Self' filepath='Objects/classobject.c' line='25' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_Self'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <function-decl name='PyMethod_New' mangled-name='PyMethod_New' filepath='Objects/classobject.c' line='99' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_New'> + <parameter type-id='type-id-100' name='func' filepath='Objects/classobject.c' line='99' column='1'/> + <parameter type-id='type-id-100' name='self' filepath='Objects/classobject.c' line='99' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyMethod_Function' mangled-name='PyMethod_Function' filepath='Objects/classobject.c' line='15' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_Function'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <function-decl name='PyInstanceMethod_Function' mangled-name='PyInstanceMethod_Function' filepath='Objects/classobject.c' line='390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInstanceMethod_Function'> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='390' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyObject_Call' mangled-name='PyObject_Call' filepath='./Include/abstract.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_GetAttr' mangled-name='PyObject_GetAttr' filepath='./Include/object.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_HashPointer' mangled-name='_Py_HashPointer' filepath='./Include/pyhash.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Hash' mangled-name='PyObject_Hash' filepath='./Include/object.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_ClearWeakRefs' mangled-name='PyObject_ClearWeakRefs' filepath='./Include/object.h' line='264' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyType_Lookup' mangled-name='_PyType_Lookup' filepath='./Include/cpython/object.h' line='301' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyType_Ready' mangled-name='PyType_Ready' filepath='./Include/object.h' line='233' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/codeobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyCode_Type' type-id='type-id-182' mangled-name='PyCode_Type' visibility='default' filepath='./Include/cpython/code.h' line='111' column='1' elf-symbol-id='PyCode_Type'/> @@ -5736,7 +6987,7 @@ <function-decl name='_PyCode_GetExtra' mangled-name='_PyCode_GetExtra' filepath='Objects/codeobject.c' line='1062' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCode_GetExtra'> <parameter type-id='type-id-100' name='code' filepath='Objects/codeobject.c' line='1062' column='1'/> <parameter type-id='type-id-15' name='index' filepath='Objects/codeobject.c' line='1062' column='1'/> - <parameter type-id='type-id-285' name='extra' filepath='Objects/codeobject.c' line='1062' column='1'/> + <parameter type-id='type-id-283' name='extra' filepath='Objects/codeobject.c' line='1062' column='1'/> <return type-id='type-id-8'/> </function-decl> <class-decl name='_PyOpcache' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_code.h' line='13' column='1' id='type-id-419'> @@ -5832,6 +7083,36 @@ <parameter type-id='type-id-100' name='lnotab' filepath='Objects/codeobject.c' line='122' column='1'/> <return type-id='type-id-412'/> </function-decl> + <function-decl name='PyBytes_Size' mangled-name='PyBytes_Size' filepath='./Include/bytesobject.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyComplex_AsCComplex' mangled-name='PyComplex_AsCComplex' filepath='./Include/complexobject.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySet_NextEntry' mangled-name='_PySet_NextEntry' filepath='./Include/setobject.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFrozenSet_New' mangled-name='PyFrozenSet_New' filepath='./Include/setobject.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_FromVoidPtr' mangled-name='PyLong_FromVoidPtr' filepath='./Include/longobject.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyArg_ParseTuple' mangled-name='PyArg_ParseTuple' filepath='./Include/modsupport.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_Copy' mangled-name='_PyUnicode_Copy' filepath='./Include/cpython/unicodeobject.h' line='477' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBytes_FromString' mangled-name='PyBytes_FromString' filepath='./Include/bytesobject.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_Compare' mangled-name='PyUnicode_Compare' filepath='./Include/unicodeobject.h' line='965' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySequence_Tuple' mangled-name='PySequence_Tuple' filepath='./Include/abstract.h' line='679' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/complexobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyComplex_Type' type-id='type-id-182' mangled-name='PyComplex_Type' visibility='default' filepath='./Include/complexobject.h' line='39' column='1' elf-symbol-id='PyComplex_Type'/> @@ -5845,29 +7126,29 @@ </class-decl> <type-decl name='double' size-in-bits='64' id='type-id-441'/> <typedef-decl name='Py_complex' type-id='type-id-440' filepath='./Include/complexobject.h' line='13' column='1' id='type-id-439'/> - <function-decl name='PyComplex_AsCComplex' mangled-name='PyComplex_AsCComplex' filepath='Objects/complexobject.c' line='318' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_AsCComplex'> - <parameter type-id='type-id-100' name='op' filepath='Objects/complexobject.c' line='318' column='1'/> + <function-decl name='PyComplex_AsCComplex' mangled-name='PyComplex_AsCComplex' filepath='Objects/complexobject.c' line='311' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_AsCComplex'> + <parameter type-id='type-id-100' name='op' filepath='Objects/complexobject.c' line='311' column='1'/> <return type-id='type-id-439'/> </function-decl> - <function-decl name='PyComplex_ImagAsDouble' mangled-name='PyComplex_ImagAsDouble' filepath='Objects/complexobject.c' line='273' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_ImagAsDouble'> - <parameter type-id='type-id-100' name='op' filepath='Objects/complexobject.c' line='273' column='1'/> + <function-decl name='PyComplex_ImagAsDouble' mangled-name='PyComplex_ImagAsDouble' filepath='Objects/complexobject.c' line='266' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_ImagAsDouble'> + <parameter type-id='type-id-100' name='op' filepath='Objects/complexobject.c' line='266' column='1'/> <return type-id='type-id-441'/> </function-decl> - <function-decl name='PyComplex_RealAsDouble' mangled-name='PyComplex_RealAsDouble' filepath='Objects/complexobject.c' line='262' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_RealAsDouble'> - <parameter type-id='type-id-100' name='op' filepath='Objects/complexobject.c' line='273' column='1'/> + <function-decl name='PyComplex_RealAsDouble' mangled-name='PyComplex_RealAsDouble' filepath='Objects/complexobject.c' line='255' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_RealAsDouble'> + <parameter type-id='type-id-100' name='op' filepath='Objects/complexobject.c' line='255' column='1'/> <return type-id='type-id-441'/> </function-decl> - <function-decl name='PyComplex_FromDoubles' mangled-name='PyComplex_FromDoubles' filepath='Objects/complexobject.c' line='253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_FromDoubles'> - <parameter type-id='type-id-441' name='real' filepath='Objects/complexobject.c' line='253' column='1'/> - <parameter type-id='type-id-441' name='imag' filepath='Objects/complexobject.c' line='253' column='1'/> + <function-decl name='PyComplex_FromDoubles' mangled-name='PyComplex_FromDoubles' filepath='Objects/complexobject.c' line='246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_FromDoubles'> + <parameter type-id='type-id-441' name='real' filepath='Objects/complexobject.c' line='246' column='1'/> + <parameter type-id='type-id-441' name='imag' filepath='Objects/complexobject.c' line='246' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyComplex_FromCComplex' mangled-name='PyComplex_FromCComplex' filepath='Objects/complexobject.c' line='230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_FromCComplex'> - <parameter type-id='type-id-439' name='cval' filepath='Objects/complexobject.c' line='230' column='1'/> + <function-decl name='PyComplex_FromCComplex' mangled-name='PyComplex_FromCComplex' filepath='Objects/complexobject.c' line='223' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_FromCComplex'> + <parameter type-id='type-id-439' name='cval' filepath='Objects/complexobject.c' line='223' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_Py_c_abs' mangled-name='_Py_c_abs' filepath='Objects/complexobject.c' line='187' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_c_abs'> - <parameter type-id='type-id-439' name='z' filepath='Objects/complexobject.c' line='187' column='1'/> + <function-decl name='_Py_c_abs' mangled-name='_Py_c_abs' filepath='Objects/complexobject.c' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_c_abs'> + <parameter type-id='type-id-439' name='z' filepath='Objects/complexobject.c' line='180' column='1'/> <return type-id='type-id-441'/> </function-decl> <function-decl name='_Py_c_pow' mangled-name='_Py_c_pow' filepath='Objects/complexobject.c' line='124' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_c_pow'> @@ -5899,6 +7180,48 @@ <parameter type-id='type-id-439' name='b' filepath='Objects/complexobject.c' line='50' column='1'/> <return type-id='type-id-439'/> </function-decl> + <function-decl name='_PyUnicodeWriter_Init' mangled-name='_PyUnicodeWriter_Init' filepath='./Include/cpython/unicodeobject.h' line='634' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyComplex_FormatAdvancedWriter' mangled-name='_PyComplex_FormatAdvancedWriter' filepath='./Include/complexobject.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicodeWriter_Finish' mangled-name='_PyUnicodeWriter_Finish' filepath='./Include/cpython/unicodeobject.h' line='714' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicodeWriter_Dealloc' mangled-name='_PyUnicodeWriter_Dealloc' filepath='./Include/cpython/unicodeobject.h' line='718' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_HashDouble' mangled-name='_Py_HashDouble' filepath='./Include/pyhash.h' line='10' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='hypot' mangled-name='hypot' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pow' mangled-name='pow' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='atan2' mangled-name='atan2' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__builtin_sincos' mangled-name='sincos' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='exp' mangled-name='exp' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='95' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='log' mangled-name='log' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_TransformDecimalAndSpaceToASCII' mangled-name='_PyUnicode_TransformDecimalAndSpaceToASCII' filepath='./Include/cpython/unicodeobject.h' line='1009' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_string_to_number_with_underscores' mangled-name='_Py_string_to_number_with_underscores' filepath='./Include/pystrtod.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Float' mangled-name='PyNumber_Float' filepath='./Include/abstract.h' line='521' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/descrobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyMethodDescr_Type' type-id='type-id-182' mangled-name='PyMethodDescr_Type' visibility='default' filepath='./Include/descrobject.h' line='79' column='1' elf-symbol-id='PyMethodDescr_Type'/> @@ -5909,13 +7232,13 @@ <var-decl name='_PyMethodWrapper_Type' type-id='type-id-182' mangled-name='_PyMethodWrapper_Type' visibility='default' filepath='./Include/descrobject.h' line='83' column='1' elf-symbol-id='_PyMethodWrapper_Type'/> <var-decl name='PyDictProxy_Type' type-id='type-id-182' mangled-name='PyDictProxy_Type' visibility='default' filepath='./Include/descrobject.h' line='81' column='1' elf-symbol-id='PyDictProxy_Type'/> <var-decl name='PyProperty_Type' type-id='type-id-182' mangled-name='PyProperty_Type' visibility='default' filepath='./Include/descrobject.h' line='103' column='1' elf-symbol-id='PyProperty_Type'/> - <function-decl name='PyWrapper_New' mangled-name='PyWrapper_New' filepath='Objects/descrobject.c' line='1433' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWrapper_New'> - <parameter type-id='type-id-100' name='d' filepath='Objects/descrobject.c' line='1433' column='1'/> - <parameter type-id='type-id-100' name='self' filepath='Objects/descrobject.c' line='1433' column='1'/> + <function-decl name='PyWrapper_New' mangled-name='PyWrapper_New' filepath='Objects/descrobject.c' line='1435' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWrapper_New'> + <parameter type-id='type-id-100' name='d' filepath='Objects/descrobject.c' line='1435' column='1'/> + <parameter type-id='type-id-100' name='self' filepath='Objects/descrobject.c' line='1435' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyDictProxy_New' mangled-name='PyDictProxy_New' filepath='Objects/descrobject.c' line='1230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDictProxy_New'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <function-decl name='PyDictProxy_New' mangled-name='PyDictProxy_New' filepath='Objects/descrobject.c' line='1232' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDictProxy_New'> + <parameter type-id='type-id-100' name='mapping' filepath='Objects/descrobject.c' line='1232' column='1'/> <return type-id='type-id-100'/> </function-decl> <class-decl name='wrapperbase' size-in-bits='448' is-struct='yes' visibility='default' filepath='./Include/descrobject.h' line='26' column='1' id='type-id-442'> @@ -5944,38 +7267,104 @@ <pointer-type-def type-id='type-id-444' size-in-bits='64' id='type-id-445'/> <typedef-decl name='wrapperfunc' type-id='type-id-445' filepath='./Include/descrobject.h' line='20' column='1' id='type-id-443'/> <pointer-type-def type-id='type-id-442' size-in-bits='64' id='type-id-446'/> - <function-decl name='PyDescr_NewWrapper' mangled-name='PyDescr_NewWrapper' filepath='Objects/descrobject.c' line='985' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewWrapper'> - <parameter type-id='type-id-75' name='type' filepath='Objects/descrobject.c' line='985' column='1'/> - <parameter type-id='type-id-446' name='base' filepath='Objects/descrobject.c' line='985' column='1'/> - <parameter type-id='type-id-32' name='wrapped' filepath='Objects/descrobject.c' line='985' column='1'/> + <function-decl name='PyDescr_NewWrapper' mangled-name='PyDescr_NewWrapper' filepath='Objects/descrobject.c' line='987' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewWrapper'> + <parameter type-id='type-id-75' name='type' filepath='Objects/descrobject.c' line='987' column='1'/> + <parameter type-id='type-id-446' name='base' filepath='Objects/descrobject.c' line='987' column='1'/> + <parameter type-id='type-id-32' name='wrapped' filepath='Objects/descrobject.c' line='987' column='1'/> <return type-id='type-id-100'/> </function-decl> <typedef-decl name='PyGetSetDef' type-id='type-id-175' filepath='./Include/descrobject.h' line='17' column='1' id='type-id-447'/> <pointer-type-def type-id='type-id-447' size-in-bits='64' id='type-id-448'/> - <function-decl name='PyDescr_NewGetSet' mangled-name='PyDescr_NewGetSet' filepath='Objects/descrobject.c' line='973' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewGetSet'> - <parameter type-id='type-id-75' name='type' filepath='Objects/descrobject.c' line='973' column='1'/> - <parameter type-id='type-id-448' name='getset' filepath='Objects/descrobject.c' line='973' column='1'/> + <function-decl name='PyDescr_NewGetSet' mangled-name='PyDescr_NewGetSet' filepath='Objects/descrobject.c' line='975' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewGetSet'> + <parameter type-id='type-id-75' name='type' filepath='Objects/descrobject.c' line='975' column='1'/> + <parameter type-id='type-id-448' name='getset' filepath='Objects/descrobject.c' line='975' column='1'/> <return type-id='type-id-100'/> </function-decl> <typedef-decl name='PyMemberDef' type-id='type-id-174' filepath='./Include/structmember.h' line='24' column='1' id='type-id-449'/> <pointer-type-def type-id='type-id-449' size-in-bits='64' id='type-id-450'/> - <function-decl name='PyDescr_NewMember' mangled-name='PyDescr_NewMember' filepath='Objects/descrobject.c' line='961' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewMember'> - <parameter type-id='type-id-75' name='type' filepath='Objects/descrobject.c' line='961' column='1'/> - <parameter type-id='type-id-450' name='member' filepath='Objects/descrobject.c' line='961' column='1'/> + <function-decl name='PyDescr_NewMember' mangled-name='PyDescr_NewMember' filepath='Objects/descrobject.c' line='963' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewMember'> + <parameter type-id='type-id-75' name='type' filepath='Objects/descrobject.c' line='963' column='1'/> + <parameter type-id='type-id-450' name='member' filepath='Objects/descrobject.c' line='963' column='1'/> <return type-id='type-id-100'/> </function-decl> <typedef-decl name='PyMethodDef' type-id='type-id-172' filepath='./Include/methodobject.h' line='42' column='1' id='type-id-451'/> <pointer-type-def type-id='type-id-451' size-in-bits='64' id='type-id-452'/> - <function-decl name='PyDescr_NewClassMethod' mangled-name='PyDescr_NewClassMethod' filepath='Objects/descrobject.c' line='949' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewClassMethod'> - <parameter type-id='type-id-75' name='type' filepath='Objects/descrobject.c' line='949' column='1'/> - <parameter type-id='type-id-452' name='method' filepath='Objects/descrobject.c' line='949' column='1'/> + <function-decl name='PyDescr_NewClassMethod' mangled-name='PyDescr_NewClassMethod' filepath='Objects/descrobject.c' line='951' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewClassMethod'> + <parameter type-id='type-id-75' name='type' filepath='Objects/descrobject.c' line='951' column='1'/> + <parameter type-id='type-id-452' name='method' filepath='Objects/descrobject.c' line='951' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyDescr_NewMethod' mangled-name='PyDescr_NewMethod' filepath='Objects/descrobject.c' line='903' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewMethod'> - <parameter type-id='type-id-75' name='type' filepath='Objects/descrobject.c' line='903' column='1'/> - <parameter type-id='type-id-452' name='method' filepath='Objects/descrobject.c' line='903' column='1'/> + <function-decl name='PyDescr_NewMethod' mangled-name='PyDescr_NewMethod' filepath='Objects/descrobject.c' line='905' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewMethod'> + <parameter type-id='type-id-75' name='type' filepath='Objects/descrobject.c' line='905' column='1'/> + <parameter type-id='type-id-452' name='method' filepath='Objects/descrobject.c' line='905' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='_PyObject_SetAttrId' mangled-name='_PyObject_SetAttrId' filepath='./Include/cpython/object.h' line='316' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMapping_Check' mangled-name='PyMapping_Check' filepath='./Include/abstract.h' line='762' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Type' mangled-name='PyObject_Type' filepath='./Include/abstract.h' line='268' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyType_GetTextSignatureFromInternalDoc' mangled-name='_PyType_GetTextSignatureFromInternalDoc' filepath='./Include/cpython/object.h' line='306' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyType_GetDocFromInternalDoc' mangled-name='_PyType_GetDocFromInternalDoc' filepath='./Include/cpython/object.h' line='305' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTrash_end' mangled-name='_PyTrash_end' filepath='./Include/cpython/object.h' line='521' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTrash_begin' mangled-name='_PyTrash_begin' filepath='./Include/cpython/object.h' line='520' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_GC_UnTrack' mangled-name='PyObject_GC_UnTrack' filepath='./Include/objimpl.h' line='180' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArg_UnpackStack' mangled-name='_PyArg_UnpackStack' filepath='./Include/modsupport.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySequence_Contains' mangled-name='PySequence_Contains' filepath='./Include/abstract.h' line='721' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_Contains' mangled-name='PyDict_Contains' filepath='./Include/dictobject.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Or' mangled-name='PyNumber_Or' filepath='./Include/abstract.h' line='493' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyType_GenericAlloc' mangled-name='PyType_GenericAlloc' filepath='./Include/object.h' line='234' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_RealIsSubclass' mangled-name='_PyObject_RealIsSubclass' filepath='./Include/cpython/abstract.h' line='367' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyTuple_GetSlice' mangled-name='PyTuple_GetSlice' filepath='./Include/tupleobject.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_FunctionStr' mangled-name='_PyObject_FunctionStr' filepath='./Include/cpython/object.h' line='345' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyStack_AsDict' mangled-name='_PyStack_AsDict' filepath='./Include/cpython/abstract.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMember_SetOne' mangled-name='PyMember_SetOne' filepath='./Include/structmember.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCMethod_New' mangled-name='PyCMethod_New' filepath='./Include/methodobject.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_IsAbstract' mangled-name='_PyObject_IsAbstract' filepath='./Include/cpython/object.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMember_GetOne' mangled-name='PyMember_GetOne' filepath='./Include/structmember.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_VectorcallDict' mangled-name='PyObject_VectorcallDict' filepath='./Include/cpython/abstract.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> <function-type size-in-bits='64' id='type-id-444'> <parameter type-id='type-id-100'/> <parameter type-id='type-id-100'/> @@ -5986,6 +7375,18 @@ <abi-instr version='1.0' address-size='64' path='Objects/enumobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyEnum_Type' type-id='type-id-182' mangled-name='PyEnum_Type' visibility='default' filepath='./Include/enumobject.h' line='10' column='1' elf-symbol-id='PyEnum_Type'/> <var-decl name='PyReversed_Type' type-id='type-id-182' mangled-name='PyReversed_Type' visibility='default' filepath='./Include/enumobject.h' line='11' column='1' elf-symbol-id='PyReversed_Type'/> + <function-decl name='PySequence_Size' mangled-name='PySequence_Size' filepath='./Include/abstract.h' line='623' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySequence_GetItem' mangled-name='PySequence_GetItem' filepath='./Include/abstract.h' line='645' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Add' mangled-name='PyNumber_Add' filepath='./Include/abstract.h' line='399' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySequence_Check' mangled-name='PySequence_Check' filepath='./Include/abstract.h' line='620' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/exceptions.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyExc_EnvironmentError' type-id='type-id-100' mangled-name='PyExc_EnvironmentError' visibility='default' filepath='./Include/pyerrors.h' line='138' column='1' elf-symbol-id='PyExc_EnvironmentError'/> @@ -6095,48 +7496,6 @@ <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='1991' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicodeTranslateError_SetReason' mangled-name='PyUnicodeTranslateError_SetReason' filepath='Objects/exceptions.c' line='1843' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_SetReason'> - <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1843' column='1'/> - <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='1843' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='PyUnicodeDecodeError_SetReason' mangled-name='PyUnicodeDecodeError_SetReason' filepath='Objects/exceptions.c' line='1835' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_SetReason'> - <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1843' column='1'/> - <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='1843' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='PyUnicodeEncodeError_SetReason' mangled-name='PyUnicodeEncodeError_SetReason' filepath='Objects/exceptions.c' line='1827' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetReason'> - <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1843' column='1'/> - <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='1843' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='PyUnicodeTranslateError_GetReason' mangled-name='PyUnicodeTranslateError_GetReason' filepath='Objects/exceptions.c' line='1820' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_GetReason'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicodeDecodeError_GetReason' mangled-name='PyUnicodeDecodeError_GetReason' filepath='Objects/exceptions.c' line='1813' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetReason'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicodeEncodeError_GetReason' mangled-name='PyUnicodeEncodeError_GetReason' filepath='Objects/exceptions.c' line='1806' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetReason'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicodeTranslateError_SetEnd' mangled-name='PyUnicodeTranslateError_SetEnd' filepath='Objects/exceptions.c' line='1799' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_SetEnd'> - <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1799' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/exceptions.c' line='1799' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='PyUnicodeDecodeError_SetEnd' mangled-name='PyUnicodeDecodeError_SetEnd' filepath='Objects/exceptions.c' line='1791' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_SetEnd'> - <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1799' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/exceptions.c' line='1799' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='PyUnicodeEncodeError_SetEnd' mangled-name='PyUnicodeEncodeError_SetEnd' filepath='Objects/exceptions.c' line='1783' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetEnd'> - <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1799' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/exceptions.c' line='1799' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='PyUnicodeTranslateError_GetEnd' mangled-name='PyUnicodeTranslateError_GetEnd' filepath='Objects/exceptions.c' line='1776' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_GetEnd'> <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1776' column='1'/> <parameter type-id='type-id-158' name='end' filepath='Objects/exceptions.c' line='1776' column='1'/> @@ -6152,21 +7511,6 @@ <parameter type-id='type-id-158' name='end' filepath='Objects/exceptions.c' line='1758' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyUnicodeTranslateError_SetStart' mangled-name='PyUnicodeTranslateError_SetStart' filepath='Objects/exceptions.c' line='1731' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_SetStart'> - <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1799' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/exceptions.c' line='1799' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='PyUnicodeDecodeError_SetStart' mangled-name='PyUnicodeDecodeError_SetStart' filepath='Objects/exceptions.c' line='1723' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_SetStart'> - <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1799' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/exceptions.c' line='1799' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='PyUnicodeEncodeError_SetStart' mangled-name='PyUnicodeEncodeError_SetStart' filepath='Objects/exceptions.c' line='1715' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetStart'> - <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1799' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/exceptions.c' line='1799' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='PyUnicodeTranslateError_GetStart' mangled-name='PyUnicodeTranslateError_GetStart' filepath='Objects/exceptions.c' line='1708' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_GetStart'> <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1776' column='1'/> <parameter type-id='type-id-158' name='end' filepath='Objects/exceptions.c' line='1776' column='1'/> @@ -6182,24 +7526,8 @@ <parameter type-id='type-id-158' name='end' filepath='Objects/exceptions.c' line='1758' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyUnicodeTranslateError_GetObject' mangled-name='PyUnicodeTranslateError_GetObject' filepath='Objects/exceptions.c' line='1665' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_GetObject'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PyUnicodeDecodeError_GetObject' mangled-name='PyUnicodeDecodeError_GetObject' filepath='Objects/exceptions.c' line='1659' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetObject'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicodeEncodeError_GetObject' mangled-name='PyUnicodeEncodeError_GetObject' filepath='Objects/exceptions.c' line='1653' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetObject'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicodeDecodeError_GetEncoding' mangled-name='PyUnicodeDecodeError_GetEncoding' filepath='Objects/exceptions.c' line='1647' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetEncoding'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicodeEncodeError_GetEncoding' mangled-name='PyUnicodeEncodeError_GetEncoding' filepath='Objects/exceptions.c' line='1641' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetEncoding'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='390' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyExceptionClass_Name' mangled-name='PyExceptionClass_Name' filepath='Objects/exceptions.c' line='365' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyExceptionClass_Name'> @@ -6212,7 +7540,7 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='PyException_GetContext' mangled-name='PyException_GetContext' filepath='Objects/exceptions.c' line='348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_GetContext'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='self' filepath='Objects/exceptions.c' line='348' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyException_SetCause' mangled-name='PyException_SetCause' filepath='Objects/exceptions.c' line='340' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_SetCause'> @@ -6221,26 +7549,122 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='PyException_GetCause' mangled-name='PyException_GetCause' filepath='Objects/exceptions.c' line='331' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_GetCause'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='self' filepath='Objects/exceptions.c' line='348' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyException_SetTraceback' mangled-name='PyException_SetTraceback' filepath='Objects/exceptions.c' line='325' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_SetTraceback'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2643' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2643' column='1'/> + <parameter type-id='type-id-100' name='self' filepath='Objects/exceptions.c' line='325' column='1'/> + <parameter type-id='type-id-100' name='tb' filepath='Objects/exceptions.c' line='325' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyException_GetTraceback' mangled-name='PyException_GetTraceback' filepath='Objects/exceptions.c' line='316' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_GetTraceback'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='self' filepath='Objects/exceptions.c' line='348' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyUnicodeEncodeError_GetEncoding' mangled-name='PyUnicodeEncodeError_GetEncoding' filepath='Objects/exceptions.c' line='1641' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetEncoding'> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='390' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyUnicodeEncodeError_GetObject' mangled-name='PyUnicodeEncodeError_GetObject' filepath='Objects/exceptions.c' line='1653' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetObject'> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='390' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyUnicodeEncodeError_SetStart' mangled-name='PyUnicodeEncodeError_SetStart' filepath='Objects/exceptions.c' line='1715' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetStart'> + <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1715' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Objects/exceptions.c' line='1715' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='PyUnicodeEncodeError_SetEnd' mangled-name='PyUnicodeEncodeError_SetEnd' filepath='Objects/exceptions.c' line='1783' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetEnd'> + <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1715' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Objects/exceptions.c' line='1715' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='PyUnicodeEncodeError_GetReason' mangled-name='PyUnicodeEncodeError_GetReason' filepath='Objects/exceptions.c' line='1806' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetReason'> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='390' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyUnicodeEncodeError_SetReason' mangled-name='PyUnicodeEncodeError_SetReason' filepath='Objects/exceptions.c' line='1827' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetReason'> + <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1827' column='1'/> + <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='1827' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='_PyUnicode_IsWhitespace' mangled-name='_PyUnicode_IsWhitespace' filepath='./Include/cpython/unicodeobject.h' line='1091' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_FindChar' mangled-name='PyUnicode_FindChar' filepath='./Include/unicodeobject.h' line='932' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_XStrip' mangled-name='_PyUnicode_XStrip' filepath='./Include/cpython/unicodeobject.h' line='1038' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_Tailmatch' mangled-name='PyUnicode_Tailmatch' filepath='./Include/unicodeobject.h' line='910' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_Restore' mangled-name='PyErr_Restore' filepath='./Include/pyerrors.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_NormalizeException' mangled-name='PyErr_NormalizeException' filepath='./Include/pyerrors.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_GetDictPtr' mangled-name='_PyObject_GetDictPtr' filepath='./Include/cpython/object.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyModule_GetDict' mangled-name='PyModule_GetDict' filepath='./Include/moduleobject.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_SetItemString' mangled-name='PyDict_SetItemString' filepath='./Include/dictobject.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_New' mangled-name='PyDict_New' filepath='./Include/dictobject.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_CallFunction_SizeT' mangled-name='_PyObject_CallFunction_SizeT' filepath='./Include/abstract.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_ReadChar' mangled-name='PyUnicode_ReadChar' filepath='./Include/unicodeobject.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Repr' mangled-name='PyObject_Repr' filepath='./Include/object.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_GetItemWithError' mangled-name='PyDict_GetItemWithError' filepath='./Include/dictobject.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_Copy' mangled-name='PyDict_Copy' filepath='./Include/dictobject.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_SetItemId' mangled-name='_PyDict_SetItemId' filepath='./Include/cpython/dictobject.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_SetAttr' mangled-name='PyObject_SetAttr' filepath='./Include/object.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/genericaliasobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='Py_GenericAliasType' type-id='type-id-182' mangled-name='Py_GenericAliasType' visibility='default' filepath='./Include/genericaliasobject.h' line='9' column='1' elf-symbol-id='Py_GenericAliasType'/> - <function-decl name='Py_GenericAlias' mangled-name='Py_GenericAlias' filepath='Objects/genericaliasobject.c' line='641' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GenericAlias'> - <parameter type-id='type-id-100' name='callable' filepath='Objects/call.c' line='445' column='1'/> - <parameter type-id='type-id-100' name='args' filepath='Objects/call.c' line='445' column='1'/> + <function-decl name='Py_GenericAlias' mangled-name='Py_GenericAlias' filepath='Objects/genericaliasobject.c' line='643' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GenericAlias'> + <parameter type-id='type-id-100' name='origin' filepath='Objects/genericaliasobject.c' line='643' column='1'/> + <parameter type-id='type-id-100' name='args' filepath='Objects/genericaliasobject.c' line='643' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyObject_Dir' mangled-name='PyObject_Dir' filepath='./Include/object.h' line='271' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_EqualToASCIIString' mangled-name='_PyUnicode_EqualToASCIIString' filepath='./Include/cpython/unicodeobject.h' line='1032' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_SetAttrString' mangled-name='PyObject_SetAttrString' filepath='./Include/object.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicodeWriter_WriteASCIIString' mangled-name='_PyUnicodeWriter_WriteASCIIString' filepath='./Include/cpython/unicodeobject.h' line='697' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicodeWriter_WriteStr' mangled-name='_PyUnicodeWriter_WriteStr' filepath='./Include/cpython/unicodeobject.h' line='681' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_GenericGetAttr' mangled-name='PyObject_GenericGetAttr' filepath='./Include/object.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/genobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyGen_Type' type-id='type-id-182' mangled-name='PyGen_Type' visibility='default' filepath='./Include/genobject.h' line='36' column='1' elf-symbol-id='PyGen_Type'/> @@ -6250,10 +7674,10 @@ <var-decl name='_PyAsyncGenASend_Type' type-id='type-id-182' mangled-name='_PyAsyncGenASend_Type' visibility='default' filepath='./Include/genobject.h' line='83' column='1' elf-symbol-id='_PyAsyncGenASend_Type'/> <var-decl name='_PyAsyncGenWrappedValue_Type' type-id='type-id-182' mangled-name='_PyAsyncGenWrappedValue_Type' visibility='default' filepath='./Include/genobject.h' line='84' column='1' elf-symbol-id='_PyAsyncGenWrappedValue_Type'/> <var-decl name='_PyAsyncGenAThrow_Type' type-id='type-id-182' mangled-name='_PyAsyncGenAThrow_Type' visibility='default' filepath='./Include/genobject.h' line='85' column='1' elf-symbol-id='_PyAsyncGenAThrow_Type'/> - <function-decl name='PyAsyncGen_New' mangled-name='PyAsyncGen_New' filepath='Objects/genobject.c' line='1418' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAsyncGen_New'> - <parameter type-id='type-id-312' name='f' filepath='Objects/genobject.c' line='1418' column='1'/> - <parameter type-id='type-id-100' name='name' filepath='Objects/genobject.c' line='1418' column='1'/> - <parameter type-id='type-id-100' name='qualname' filepath='Objects/genobject.c' line='1418' column='1'/> + <function-decl name='PyAsyncGen_New' mangled-name='PyAsyncGen_New' filepath='Objects/genobject.c' line='1420' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAsyncGen_New'> + <parameter type-id='type-id-312' name='f' filepath='Objects/genobject.c' line='1420' column='1'/> + <parameter type-id='type-id-100' name='name' filepath='Objects/genobject.c' line='1420' column='1'/> + <parameter type-id='type-id-100' name='qualname' filepath='Objects/genobject.c' line='1420' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyCoro_New' mangled-name='PyCoro_New' filepath='Objects/genobject.c' line='1139' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCoro_New'> @@ -6276,10 +7700,6 @@ <parameter type-id='type-id-303' name='pvalue' filepath='Objects/genobject.c' line='595' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyGen_SetStopIterationValue' mangled-name='_PyGen_SetStopIterationValue' filepath='Objects/genobject.c' line='556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGen_SetStopIterationValue'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='284' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <class-decl name='__anonymous_struct__' size-in-bits='768' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-456' visibility='default' filepath='./Include/genobject.h' line='31' column='1' id='type-id-457'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='ob_base' type-id='type-id-110' visibility='default' filepath='./Include/genobject.h' line='33' column='1'/> @@ -6317,15 +7737,39 @@ <parameter type-id='type-id-100' name='self' filepath='Objects/genobject.c' line='44' column='1'/> <return type-id='type-id-4'/> </function-decl> + <function-decl name='_PyGen_SetStopIterationValue' mangled-name='_PyGen_SetStopIterationValue' filepath='Objects/genobject.c' line='556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGen_SetStopIterationValue'> + <parameter type-id='type-id-100' name='value' filepath='Objects/genobject.c' line='556' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='_PyErr_FormatFromCause' mangled-name='_PyErr_FormatFromCause' filepath='./Include/cpython/pyerrors.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFrame_GetLineNumber' mangled-name='PyFrame_GetLineNumber' filepath='./Include/pyframe.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyEval_GetFrame' mangled-name='PyEval_GetFrame' filepath='./Include/ceval.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyException_GetTraceback' mangled-name='PyException_GetTraceback' filepath='./Include/pyerrors.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_WriteUnraisable' mangled-name='PyErr_WriteUnraisable' filepath='./Include/pyerrors.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_WarnUnawaitedCoroutine' mangled-name='_PyErr_WarnUnawaitedCoroutine' filepath='./Include/warnings.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_CallFinalizerFromDealloc' mangled-name='PyObject_CallFinalizerFromDealloc' filepath='./Include/cpython/object.h' line='335' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_ChainStackItem' mangled-name='_PyErr_ChainStackItem' filepath='./Include/internal/pycore_pyerrors.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/fileobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyStdPrinter_Type' type-id='type-id-182' mangled-name='PyStdPrinter_Type' visibility='default' filepath='./Include/cpython/fileobject.h' line='14' column='1' elf-symbol-id='PyStdPrinter_Type'/> <function-decl name='PyFile_OpenCode' mangled-name='PyFile_OpenCode' filepath='Objects/fileobject.c' line='574' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_OpenCode'> - <parameter type-id='type-id-3' name='str' filepath='Objects/bytesobject.c' line='128' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyFile_OpenCodeObject' mangled-name='PyFile_OpenCodeObject' filepath='Objects/fileobject.c' line='548' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_OpenCodeObject'> - <parameter type-id='type-id-100' name='path' filepath='Objects/fileobject.c' line='548' column='1'/> + <parameter type-id='type-id-3' name='utf8path' filepath='Objects/fileobject.c' line='574' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyFile_SetOpenCodeHook' mangled-name='PyFile_SetOpenCodeHook' filepath='Objects/fileobject.c' line='528' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_SetOpenCodeHook'> @@ -6375,6 +7819,31 @@ <parameter type-id='type-id-8' name='closefd' filepath='Objects/fileobject.c' line='34' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyFile_OpenCodeObject' mangled-name='PyFile_OpenCodeObject' filepath='Objects/fileobject.c' line='548' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_OpenCodeObject'> + <parameter type-id='type-id-100' name='path' filepath='Objects/fileobject.c' line='548' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='Py_IsInitialized' mangled-name='Py_IsInitialized' filepath='./Include/pylifecycle.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__uflow' mangled-name='__uflow' filepath='/usr/include/stdio.h' line='858' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='flockfile' mangled-name='flockfile' filepath='/usr/include/stdio.h' line='840' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='funlockfile' mangled-name='funlockfile' filepath='/usr/include/stdio.h' line='847' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytes_Resize' mangled-name='_PyBytes_Resize' filepath='./Include/cpython/bytesobject.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_write' mangled-name='_Py_write' filepath='./Include/cpython/fileutils.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_AsUTF8String' mangled-name='_PyUnicode_AsUTF8String' filepath='./Include/cpython/unicodeobject.h' line='799' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/floatobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyFloat_Type' type-id='type-id-182' mangled-name='PyFloat_Type' visibility='default' filepath='./Include/floatobject.h' line='21' column='1' elf-symbol-id='PyFloat_Type'/> @@ -6402,9 +7871,9 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyFloat_Pack4' mangled-name='_PyFloat_Pack4' filepath='Objects/floatobject.c' line='2125' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Pack4'> - <parameter type-id='type-id-441' name='x' filepath='Objects/floatobject.c' line='2232' column='1'/> - <parameter type-id='type-id-416' name='p' filepath='Objects/floatobject.c' line='2232' column='1'/> - <parameter type-id='type-id-8' name='le' filepath='Objects/floatobject.c' line='2232' column='1'/> + <parameter type-id='type-id-441' name='x' filepath='Objects/floatobject.c' line='2125' column='1'/> + <parameter type-id='type-id-416' name='p' filepath='Objects/floatobject.c' line='2125' column='1'/> + <parameter type-id='type-id-8' name='le' filepath='Objects/floatobject.c' line='2125' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyFloat_Pack2' mangled-name='_PyFloat_Pack2' filepath='Objects/floatobject.c' line='2021' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Pack2'> @@ -6417,10 +7886,6 @@ <parameter type-id='type-id-223' name='out' filepath='Objects/floatobject.c' line='2001' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyFloat_AsDouble' mangled-name='PyFloat_AsDouble' filepath='Objects/floatobject.c' line='233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_AsDouble'> - <parameter type-id='type-id-100' name='op' filepath='Objects/floatobject.c' line='233' column='1'/> - <return type-id='type-id-441'/> - </function-decl> <function-decl name='PyFloat_FromString' mangled-name='PyFloat_FromString' filepath='Objects/floatobject.c' line='167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_FromString'> <parameter type-id='type-id-100' name='v' filepath='Objects/floatobject.c' line='167' column='1'/> <return type-id='type-id-100'/> @@ -6438,6 +7903,82 @@ <function-decl name='PyFloat_GetMax' mangled-name='PyFloat_GetMax' filepath='Objects/floatobject.c' line='31' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_GetMax'> <return type-id='type-id-441'/> </function-decl> + <function-decl name='PyFloat_AsDouble' mangled-name='PyFloat_AsDouble' filepath='Objects/floatobject.c' line='233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_AsDouble'> + <parameter type-id='type-id-100' name='op' filepath='Objects/floatobject.c' line='233' column='1'/> + <return type-id='type-id-441'/> + </function-decl> + <function-decl name='ldexp' mangled-name='ldexp' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_dg_infinity' mangled-name='_Py_dg_infinity' filepath='./Include/internal/pycore_dtoa.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_dg_stdnan' mangled-name='_Py_dg_stdnan' filepath='./Include/internal/pycore_dtoa.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='frexp' mangled-name='frexp' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDebugAllocatorStats' mangled-name='_PyDebugAllocatorStats' filepath='./Include/cpython/object.h' line='390' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyStructSequence_InitType2' mangled-name='PyStructSequence_InitType2' filepath='./Include/structseq.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_parse_inf_or_nan' mangled-name='_Py_parse_inf_or_nan' filepath='./Include/pystrtod.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='strtol' mangled-name='strtol' filepath='/usr/include/stdlib.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fmod' mangled-name='fmod' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_SetFromErrno' mangled-name='PyErr_SetFromErrno' filepath='./Include/pyerrors.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_Lshift' mangled-name='_PyLong_Lshift' filepath='./Include/longobject.h' line='236' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='modf' mangled-name='modf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_FromDouble' mangled-name='PyLong_FromDouble' filepath='./Include/longobject.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Negative' mangled-name='PyNumber_Negative' filepath='./Include/abstract.h' line='450' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_NumBits' mangled-name='_PyLong_NumBits' filepath='./Include/longobject.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyStructSequence_New' mangled-name='PyStructSequence_New' filepath='./Include/structseq.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_FromASCII' mangled-name='_PyUnicode_FromASCII' filepath='./Include/cpython/unicodeobject.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_get_387controlword' mangled-name='_Py_get_387controlword' filepath='./Include/pymath.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_set_387controlword' mangled-name='_Py_set_387controlword' filepath='./Include/pymath.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_dg_dtoa' mangled-name='_Py_dg_dtoa' filepath='./Include/internal/pycore_dtoa.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_dg_strtod' mangled-name='_Py_dg_strtod' filepath='./Include/internal/pycore_dtoa.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_dg_freedtoa' mangled-name='_Py_dg_freedtoa' filepath='./Include/internal/pycore_dtoa.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='round' mangled-name='round' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='298' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFloat_FormatAdvancedWriter' mangled-name='_PyFloat_FormatAdvancedWriter' filepath='./Include/floatobject.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/frameobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyFrame_Type' type-id='type-id-182' mangled-name='PyFrame_Type' visibility='default' filepath='./Include/cpython/frameobject.h' line='52' column='1' elf-symbol-id='PyFrame_Type'/> @@ -6489,17 +8030,41 @@ <parameter type-id='type-id-312' name='f' filepath='Objects/frameobject.c' line='35' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='PyCell_Set' mangled-name='PyCell_Set' filepath='./Include/cellobject.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_DelItem' mangled-name='PyObject_DelItem' filepath='./Include/abstract.h' line='309' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_SetItem' mangled-name='PyObject_SetItem' filepath='./Include/abstract.h' line='297' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_GetItemIdWithError' mangled-name='_PyDict_GetItemIdWithError' filepath='./Include/cpython/dictobject.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_GC_Resize' mangled-name='_PyObject_GC_Resize' filepath='./Include/objimpl.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_GC_NewVar' mangled-name='_PyObject_GC_NewVar' filepath='./Include/objimpl.h' line='170' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGen_Finalize' mangled-name='_PyGen_Finalize' filepath='./Include/genobject.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCode_Addr2Line' mangled-name='PyCode_Addr2Line' filepath='./Include/cpython/code.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/funcobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyFunction_Type' type-id='type-id-182' mangled-name='PyFunction_Type' visibility='default' filepath='./Include/funcobject.h' line='44' column='1' elf-symbol-id='PyFunction_Type'/> <var-decl name='PyClassMethod_Type' type-id='type-id-182' mangled-name='PyClassMethod_Type' visibility='default' filepath='./Include/funcobject.h' line='88' column='1' elf-symbol-id='PyClassMethod_Type'/> <var-decl name='PyStaticMethod_Type' type-id='type-id-182' mangled-name='PyStaticMethod_Type' visibility='default' filepath='./Include/funcobject.h' line='89' column='1' elf-symbol-id='PyStaticMethod_Type'/> <function-decl name='PyStaticMethod_New' mangled-name='PyStaticMethod_New' filepath='Objects/funcobject.c' line='1037' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStaticMethod_New'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='callable' filepath='Objects/funcobject.c' line='1037' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyClassMethod_New' mangled-name='PyClassMethod_New' filepath='Objects/funcobject.c' line='857' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyClassMethod_New'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='callable' filepath='Objects/funcobject.c' line='1037' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyFunction_SetAnnotations' mangled-name='PyFunction_SetAnnotations' filepath='Objects/funcobject.c' line='218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_SetAnnotations'> @@ -6508,7 +8073,7 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyFunction_GetAnnotations' mangled-name='PyFunction_GetAnnotations' filepath='Objects/funcobject.c' line='208' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetAnnotations'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyFunction_SetClosure' mangled-name='PyFunction_SetClosure' filepath='Objects/funcobject.c' line='186' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_SetClosure'> @@ -6517,7 +8082,7 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyFunction_GetClosure' mangled-name='PyFunction_GetClosure' filepath='Objects/funcobject.c' line='176' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetClosure'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyFunction_SetKwDefaults' mangled-name='PyFunction_SetKwDefaults' filepath='Objects/funcobject.c' line='155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_SetKwDefaults'> @@ -6526,7 +8091,7 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyFunction_GetKwDefaults' mangled-name='PyFunction_GetKwDefaults' filepath='Objects/funcobject.c' line='145' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetKwDefaults'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyFunction_SetDefaults' mangled-name='PyFunction_SetDefaults' filepath='Objects/funcobject.c' line='125' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_SetDefaults'> @@ -6535,24 +8100,24 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyFunction_GetDefaults' mangled-name='PyFunction_GetDefaults' filepath='Objects/funcobject.c' line='115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetDefaults'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyFunction_GetModule' mangled-name='PyFunction_GetModule' filepath='Objects/funcobject.c' line='105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetModule'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyFunction_GetGlobals' mangled-name='PyFunction_GetGlobals' filepath='Objects/funcobject.c' line='95' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetGlobals'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyFunction_GetCode' mangled-name='PyFunction_GetCode' filepath='Objects/funcobject.c' line='85' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetCode'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyFunction_New' mangled-name='PyFunction_New' filepath='Objects/funcobject.c' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_New'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1226' column='1'/> - <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='1226' column='1'/> + <parameter type-id='type-id-100' name='code' filepath='Objects/funcobject.c' line='79' column='1'/> + <parameter type-id='type-id-100' name='globals' filepath='Objects/funcobject.c' line='79' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyFunction_NewWithQualName' mangled-name='PyFunction_NewWithQualName' filepath='Objects/funcobject.c' line='11' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_NewWithQualName'> @@ -6561,6 +8126,12 @@ <parameter type-id='type-id-100' name='qualname' filepath='Objects/funcobject.c' line='11' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyMethod_New' mangled-name='PyMethod_New' filepath='./Include/classobject.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyTuple_Size' mangled-name='PyTuple_Size' filepath='./Include/tupleobject.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/interpreteridobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='_PyInterpreterID_Type' type-id='type-id-182' mangled-name='_PyInterpreterID_Type' visibility='default' filepath='./Include/cpython/interpreteridobject.h' line='11' column='1' elf-symbol-id='_PyInterpreterID_Type'/> @@ -6700,34 +8271,64 @@ <parameter type-id='type-id-316' name='id' filepath='Objects/interpreteridobject.c' line='262' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyLong_AsLongLong' mangled-name='PyLong_AsLongLong' filepath='./Include/longobject.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyInterpreterState_LookUpID' mangled-name='_PyInterpreterState_LookUpID' filepath='./Include/internal/pycore_interp.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyInterpreterState_IDIncref' mangled-name='_PyInterpreterState_IDIncref' filepath='./Include/internal/pycore_interp.h' line='185' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyInterpreterState_IDInitref' mangled-name='_PyInterpreterState_IDInitref' filepath='./Include/internal/pycore_interp.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyInterpreterState_GetID' mangled-name='PyInterpreterState_GetID' filepath='./Include/pystate.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_FromLongLong' mangled-name='PyLong_FromLongLong' filepath='./Include/longobject.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyInterpreterState_IDDecref' mangled-name='_PyInterpreterState_IDDecref' filepath='./Include/internal/pycore_interp.h' line='186' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyArg_ParseTupleAndKeywords' mangled-name='PyArg_ParseTupleAndKeywords' filepath='./Include/modsupport.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_AsLongLongAndOverflow' mangled-name='PyLong_AsLongLongAndOverflow' filepath='./Include/longobject.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/iterobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PySeqIter_Type' type-id='type-id-182' mangled-name='PySeqIter_Type' visibility='default' filepath='./Include/iterobject.h' line='8' column='1' elf-symbol-id='PySeqIter_Type'/> <var-decl name='PyCallIter_Type' type-id='type-id-182' mangled-name='PyCallIter_Type' visibility='default' filepath='./Include/iterobject.h' line='9' column='1' elf-symbol-id='PyCallIter_Type'/> <function-decl name='PyCallIter_New' mangled-name='PyCallIter_New' filepath='Objects/iterobject.c' line='181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCallIter_New'> - <parameter type-id='type-id-100' name='callable' filepath='Objects/call.c' line='445' column='1'/> - <parameter type-id='type-id-100' name='args' filepath='Objects/call.c' line='445' column='1'/> + <parameter type-id='type-id-100' name='callable' filepath='Objects/iterobject.c' line='181' column='1'/> + <parameter type-id='type-id-100' name='sentinel' filepath='Objects/iterobject.c' line='181' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PySeqIter_New' mangled-name='PySeqIter_New' filepath='Objects/iterobject.c' line='15' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySeqIter_New'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='seq' filepath='Objects/iterobject.c' line='15' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='_PyObject_HasLen' mangled-name='_PyObject_HasLen' filepath='./Include/cpython/abstract.h' line='257' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/listobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyList_Type' type-id='type-id-182' mangled-name='PyList_Type' visibility='default' filepath='./Include/listobject.h' line='20' column='1' elf-symbol-id='PyList_Type'/> <var-decl name='PyListIter_Type' type-id='type-id-182' mangled-name='PyListIter_Type' visibility='default' filepath='./Include/listobject.h' line='21' column='1' elf-symbol-id='PyListIter_Type'/> <var-decl name='PyListRevIter_Type' type-id='type-id-182' mangled-name='PyListRevIter_Type' visibility='default' filepath='./Include/listobject.h' line='22' column='1' elf-symbol-id='PyListRevIter_Type'/> - <function-decl name='PyList_AsTuple' mangled-name='PyList_AsTuple' filepath='Objects/listobject.c' line='2485' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_AsTuple'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <function-decl name='PyList_AsTuple' mangled-name='PyList_AsTuple' filepath='Objects/listobject.c' line='2492' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_AsTuple'> + <parameter type-id='type-id-100' name='v' filepath='Objects/listobject.c' line='2492' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyList_Reverse' mangled-name='PyList_Reverse' filepath='Objects/listobject.c' line='2471' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Reverse'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='284' column='1'/> + <function-decl name='PyList_Reverse' mangled-name='PyList_Reverse' filepath='Objects/listobject.c' line='2478' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Reverse'> + <parameter type-id='type-id-100' name='v' filepath='Objects/listobject.c' line='2478' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyList_Sort' mangled-name='PyList_Sort' filepath='Objects/listobject.c' line='2442' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Sort'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> + <function-decl name='PyList_Sort' mangled-name='PyList_Sort' filepath='Objects/listobject.c' line='2449' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Sort'> + <parameter type-id='type-id-100' name='v' filepath='Objects/listobject.c' line='2449' column='1'/> <return type-id='type-id-8'/> </function-decl> <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-465' visibility='default' filepath='./Include/cpython/listobject.h' line='9' column='1' id='type-id-466'> @@ -6743,48 +8344,48 @@ </class-decl> <typedef-decl name='PyListObject' type-id='type-id-466' filepath='./Include/cpython/listobject.h' line='26' column='1' id='type-id-465'/> <pointer-type-def type-id='type-id-465' size-in-bits='64' id='type-id-467'/> - <function-decl name='_PyList_Extend' mangled-name='_PyList_Extend' filepath='Objects/listobject.c' line='959' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyList_Extend'> - <parameter type-id='type-id-467' name='self' filepath='Objects/listobject.c' line='959' column='1'/> - <parameter type-id='type-id-100' name='iterable' filepath='Objects/listobject.c' line='959' column='1'/> + <function-decl name='_PyList_Extend' mangled-name='_PyList_Extend' filepath='Objects/listobject.c' line='966' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyList_Extend'> + <parameter type-id='type-id-467' name='self' filepath='Objects/listobject.c' line='966' column='1'/> + <parameter type-id='type-id-100' name='iterable' filepath='Objects/listobject.c' line='966' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyList_SetSlice' mangled-name='PyList_SetSlice' filepath='Objects/listobject.c' line='704' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_SetSlice'> - <parameter type-id='type-id-100' name='a' filepath='Objects/listobject.c' line='704' column='1'/> - <parameter type-id='type-id-15' name='ilow' filepath='Objects/listobject.c' line='704' column='1'/> - <parameter type-id='type-id-15' name='ihigh' filepath='Objects/listobject.c' line='704' column='1'/> - <parameter type-id='type-id-100' name='v' filepath='Objects/listobject.c' line='704' column='1'/> + <function-decl name='PyList_SetSlice' mangled-name='PyList_SetSlice' filepath='Objects/listobject.c' line='711' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_SetSlice'> + <parameter type-id='type-id-100' name='a' filepath='Objects/listobject.c' line='711' column='1'/> + <parameter type-id='type-id-15' name='ilow' filepath='Objects/listobject.c' line='711' column='1'/> + <parameter type-id='type-id-15' name='ihigh' filepath='Objects/listobject.c' line='711' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/listobject.c' line='711' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyList_GetSlice' mangled-name='PyList_GetSlice' filepath='Objects/listobject.c' line='465' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_GetSlice'> - <parameter type-id='type-id-100' name='a' filepath='Objects/listobject.c' line='465' column='1'/> - <parameter type-id='type-id-15' name='ilow' filepath='Objects/listobject.c' line='465' column='1'/> - <parameter type-id='type-id-15' name='ihigh' filepath='Objects/listobject.c' line='465' column='1'/> + <function-decl name='PyList_GetSlice' mangled-name='PyList_GetSlice' filepath='Objects/listobject.c' line='469' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_GetSlice'> + <parameter type-id='type-id-100' name='a' filepath='Objects/listobject.c' line='469' column='1'/> + <parameter type-id='type-id-15' name='ilow' filepath='Objects/listobject.c' line='469' column='1'/> + <parameter type-id='type-id-15' name='ihigh' filepath='Objects/listobject.c' line='469' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyList_Append' mangled-name='PyList_Append' filepath='Objects/listobject.c' line='313' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Append'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2643' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2643' column='1'/> + <function-decl name='PyList_Append' mangled-name='PyList_Append' filepath='Objects/listobject.c' line='314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Append'> + <parameter type-id='type-id-100' name='op' filepath='Objects/listobject.c' line='314' column='1'/> + <parameter type-id='type-id-100' name='newitem' filepath='Objects/listobject.c' line='314' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyList_Insert' mangled-name='PyList_Insert' filepath='Objects/listobject.c' line='283' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Insert'> - <parameter type-id='type-id-100' name='op' filepath='Objects/listobject.c' line='283' column='1'/> - <parameter type-id='type-id-15' name='where' filepath='Objects/listobject.c' line='283' column='1'/> - <parameter type-id='type-id-100' name='newitem' filepath='Objects/listobject.c' line='283' column='1'/> + <function-decl name='PyList_Insert' mangled-name='PyList_Insert' filepath='Objects/listobject.c' line='284' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Insert'> + <parameter type-id='type-id-100' name='op' filepath='Objects/listobject.c' line='284' column='1'/> + <parameter type-id='type-id-15' name='where' filepath='Objects/listobject.c' line='284' column='1'/> + <parameter type-id='type-id-100' name='newitem' filepath='Objects/listobject.c' line='284' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyList_SetItem' mangled-name='PyList_SetItem' filepath='Objects/listobject.c' line='229' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_SetItem'> - <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1793' column='1'/> - <parameter type-id='type-id-15' name='i' filepath='Objects/abstract.c' line='1793' column='1'/> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1793' column='1'/> + <function-decl name='PyList_SetItem' mangled-name='PyList_SetItem' filepath='Objects/listobject.c' line='230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_SetItem'> + <parameter type-id='type-id-100' name='op' filepath='Objects/listobject.c' line='230' column='1'/> + <parameter type-id='type-id-15' name='i' filepath='Objects/listobject.c' line='230' column='1'/> + <parameter type-id='type-id-100' name='newitem' filepath='Objects/listobject.c' line='231' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyList_GetItem' mangled-name='PyList_GetItem' filepath='Objects/listobject.c' line='209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_GetItem'> - <parameter type-id='type-id-100' name='op' filepath='Objects/listobject.c' line='209' column='1'/> - <parameter type-id='type-id-15' name='i' filepath='Objects/listobject.c' line='209' column='1'/> + <function-decl name='PyList_GetItem' mangled-name='PyList_GetItem' filepath='Objects/listobject.c' line='210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_GetItem'> + <parameter type-id='type-id-100' name='op' filepath='Objects/listobject.c' line='210' column='1'/> + <parameter type-id='type-id-15' name='i' filepath='Objects/listobject.c' line='210' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyList_Size' mangled-name='PyList_Size' filepath='Objects/listobject.c' line='183' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Size'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2203' column='1'/> + <function-decl name='PyList_Size' mangled-name='PyList_Size' filepath='Objects/listobject.c' line='184' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Size'> + <parameter type-id='type-id-100' name='op' filepath='Objects/bytesobject.c' line='1197' column='1'/> <return type-id='type-id-15'/> </function-decl> <function-decl name='PyList_New' mangled-name='PyList_New' filepath='Objects/listobject.c' line='133' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_New'> @@ -6795,6 +8396,24 @@ <parameter type-id='type-id-223' name='out' filepath='Objects/floatobject.c' line='2001' column='1'/> <return type-id='type-id-4'/> </function-decl> + <function-decl name='_PyArg_NoKwnames' mangled-name='_PyArg_NoKwnames' filepath='./Include/modsupport.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_GC_Track' mangled-name='PyObject_GC_Track' filepath='./Include/objimpl.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_SliceIndexNotNone' mangled-name='_PyEval_SliceIndexNotNone' filepath='./Include/cpython/ceval.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicodeWriter_WriteChar' mangled-name='_PyUnicodeWriter_WriteChar' filepath='./Include/cpython/unicodeobject.h' line='674' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_ReprLeave' mangled-name='Py_ReprLeave' filepath='./Include/object.h' line='276' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_ReprEnter' mangled-name='Py_ReprEnter' filepath='./Include/object.h' line='275' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/longobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='_PyLong_Zero' type-id='type-id-100' mangled-name='_PyLong_Zero' visibility='default' filepath='./Include/longobject.h' line='232' column='1' elf-symbol-id='_PyLong_Zero'/> @@ -6806,33 +8425,29 @@ </array-type-def> <var-decl name='_PyLong_DigitValue' type-id='type-id-468' mangled-name='_PyLong_DigitValue' visibility='default' filepath='./Include/longobject.h' line='79' column='1' elf-symbol-id='_PyLong_DigitValue'/> <var-decl name='PyLong_Type' type-id='type-id-182' mangled-name='PyLong_Type' visibility='default' filepath='./Include/longobject.h' line='12' column='1' elf-symbol-id='PyLong_Type'/> - <function-decl name='PyLong_GetInfo' mangled-name='PyLong_GetInfo' filepath='Objects/longobject.c' line='5736' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_GetInfo'> + <function-decl name='PyLong_GetInfo' mangled-name='PyLong_GetInfo' filepath='Objects/longobject.c' line='5737' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_GetInfo'> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyLong_DivmodNear' mangled-name='_PyLong_DivmodNear' filepath='Objects/longobject.c' line='5190' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_DivmodNear'> - <parameter type-id='type-id-100' name='a' filepath='Objects/longobject.c' line='5190' column='1'/> - <parameter type-id='type-id-100' name='b' filepath='Objects/longobject.c' line='5190' column='1'/> + <function-decl name='_PyLong_DivmodNear' mangled-name='_PyLong_DivmodNear' filepath='Objects/longobject.c' line='5191' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_DivmodNear'> + <parameter type-id='type-id-100' name='a' filepath='Objects/longobject.c' line='5191' column='1'/> + <parameter type-id='type-id-100' name='b' filepath='Objects/longobject.c' line='5191' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyLong_GCD' mangled-name='_PyLong_GCD' filepath='Objects/longobject.c' line='4828' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_GCD'> - <parameter type-id='type-id-100' name='aarg' filepath='Objects/longobject.c' line='4828' column='1'/> - <parameter type-id='type-id-100' name='barg' filepath='Objects/longobject.c' line='4828' column='1'/> + <function-decl name='_PyLong_GCD' mangled-name='_PyLong_GCD' filepath='Objects/longobject.c' line='4829' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_GCD'> + <parameter type-id='type-id-100' name='aarg' filepath='Objects/longobject.c' line='4829' column='1'/> + <parameter type-id='type-id-100' name='barg' filepath='Objects/longobject.c' line='4829' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyLong_Lshift' mangled-name='_PyLong_Lshift' filepath='Objects/longobject.c' line='4636' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Lshift'> - <parameter type-id='type-id-100' name='a' filepath='Objects/longobject.c' line='4636' column='1'/> - <parameter type-id='type-id-191' name='shiftby' filepath='Objects/longobject.c' line='4636' column='1'/> + <function-decl name='_PyLong_Lshift' mangled-name='_PyLong_Lshift' filepath='Objects/longobject.c' line='4637' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Lshift'> + <parameter type-id='type-id-100' name='a' filepath='Objects/longobject.c' line='4637' column='1'/> + <parameter type-id='type-id-191' name='shiftby' filepath='Objects/longobject.c' line='4637' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyLong_Rshift' mangled-name='_PyLong_Rshift' filepath='Objects/longobject.c' line='4565' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Rshift'> - <parameter type-id='type-id-100' name='a' filepath='Objects/longobject.c' line='4636' column='1'/> - <parameter type-id='type-id-191' name='shiftby' filepath='Objects/longobject.c' line='4636' column='1'/> + <function-decl name='_PyLong_Rshift' mangled-name='_PyLong_Rshift' filepath='Objects/longobject.c' line='4566' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Rshift'> + <parameter type-id='type-id-100' name='a' filepath='Objects/longobject.c' line='4637' column='1'/> + <parameter type-id='type-id-191' name='shiftby' filepath='Objects/longobject.c' line='4637' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyLong_AsDouble' mangled-name='PyLong_AsDouble' filepath='Objects/longobject.c' line='2977' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsDouble'> - <parameter type-id='type-id-100' name='v' filepath='Objects/longobject.c' line='2977' column='1'/> - <return type-id='type-id-441'/> - </function-decl> <function-decl name='_PyLong_Frexp' mangled-name='_PyLong_Frexp' filepath='Objects/longobject.c' line='2865' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Frexp'> <parameter type-id='type-id-430' name='a' filepath='Objects/longobject.c' line='2865' column='1'/> <parameter type-id='type-id-158' name='e' filepath='Objects/longobject.c' line='2865' column='1'/> @@ -6920,33 +8535,33 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyLong_Format' mangled-name='_PyLong_Format' filepath='Objects/longobject.c' line='2055' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Format'> - <parameter type-id='type-id-100' name='n' filepath='Objects/abstract.c' line='1569' column='1'/> - <parameter type-id='type-id-8' name='base' filepath='Objects/abstract.c' line='1569' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Objects/longobject.c' line='2055' column='1'/> + <parameter type-id='type-id-8' name='base' filepath='Objects/longobject.c' line='2055' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyLong_Size_t_Converter' mangled-name='_PyLong_Size_t_Converter' filepath='Objects/longobject.c' line='1541' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Size_t_Converter'> - <parameter type-id='type-id-100' name='o' filepath='Objects/capsule.c' line='181' column='1'/> - <parameter type-id='type-id-32' name='context' filepath='Objects/capsule.c' line='181' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Objects/longobject.c' line='1541' column='1'/> + <parameter type-id='type-id-32' name='ptr' filepath='Objects/longobject.c' line='1541' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyLong_UnsignedLongLong_Converter' mangled-name='_PyLong_UnsignedLongLong_Converter' filepath='Objects/longobject.c' line='1524' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_UnsignedLongLong_Converter'> - <parameter type-id='type-id-100' name='o' filepath='Objects/capsule.c' line='181' column='1'/> - <parameter type-id='type-id-32' name='context' filepath='Objects/capsule.c' line='181' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Objects/longobject.c' line='1541' column='1'/> + <parameter type-id='type-id-32' name='ptr' filepath='Objects/longobject.c' line='1541' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyLong_UnsignedLong_Converter' mangled-name='_PyLong_UnsignedLong_Converter' filepath='Objects/longobject.c' line='1507' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_UnsignedLong_Converter'> - <parameter type-id='type-id-100' name='o' filepath='Objects/capsule.c' line='181' column='1'/> - <parameter type-id='type-id-32' name='context' filepath='Objects/capsule.c' line='181' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Objects/longobject.c' line='1541' column='1'/> + <parameter type-id='type-id-32' name='ptr' filepath='Objects/longobject.c' line='1541' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyLong_UnsignedInt_Converter' mangled-name='_PyLong_UnsignedInt_Converter' filepath='Objects/longobject.c' line='1485' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_UnsignedInt_Converter'> - <parameter type-id='type-id-100' name='o' filepath='Objects/capsule.c' line='181' column='1'/> - <parameter type-id='type-id-32' name='context' filepath='Objects/capsule.c' line='181' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Objects/longobject.c' line='1485' column='1'/> + <parameter type-id='type-id-32' name='ptr' filepath='Objects/longobject.c' line='1485' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyLong_UnsignedShort_Converter' mangled-name='_PyLong_UnsignedShort_Converter' filepath='Objects/longobject.c' line='1463' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_UnsignedShort_Converter'> - <parameter type-id='type-id-100' name='o' filepath='Objects/capsule.c' line='181' column='1'/> - <parameter type-id='type-id-32' name='context' filepath='Objects/capsule.c' line='181' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Objects/longobject.c' line='1485' column='1'/> + <parameter type-id='type-id-32' name='ptr' filepath='Objects/longobject.c' line='1485' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyLong_AsLongLongAndOverflow' mangled-name='PyLong_AsLongLongAndOverflow' filepath='Objects/longobject.c' line='1387' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLongLongAndOverflow'> @@ -6958,24 +8573,12 @@ <parameter type-id='type-id-100' name='op' filepath='Objects/longobject.c' line='1353' column='1'/> <return type-id='type-id-365'/> </function-decl> - <function-decl name='PyLong_AsUnsignedLongLong' mangled-name='PyLong_AsUnsignedLongLong' filepath='Objects/longobject.c' line='1288' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsUnsignedLongLong'> - <parameter type-id='type-id-100' name='vv' filepath='Objects/longobject.c' line='1288' column='1'/> - <return type-id='type-id-365'/> - </function-decl> <function-decl name='PyLong_AsLongLong' mangled-name='PyLong_AsLongLong' filepath='Objects/longobject.c' line='1236' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLongLong'> <parameter type-id='type-id-100' name='vv' filepath='Objects/longobject.c' line='1236' column='1'/> <return type-id='type-id-362'/> </function-decl> - <function-decl name='PyLong_FromSsize_t' mangled-name='PyLong_FromSsize_t' filepath='Objects/longobject.c' line='1192' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromSsize_t'> - <parameter type-id='type-id-15' name='ival' filepath='Objects/longobject.c' line='1192' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyLong_FromLongLong' mangled-name='PyLong_FromLongLong' filepath='Objects/longobject.c' line='1145' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromLongLong'> - <parameter type-id='type-id-362' name='ival' filepath='Objects/longobject.c' line='1145' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PyLong_AsVoidPtr' mangled-name='PyLong_AsVoidPtr' filepath='Objects/longobject.c' line='1108' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsVoidPtr'> - <parameter type-id='type-id-100' name='o' filepath='Objects/capsule.c' line='122' column='1'/> + <parameter type-id='type-id-100' name='vv' filepath='Objects/longobject.c' line='1108' column='1'/> <return type-id='type-id-32'/> </function-decl> <function-decl name='PyLong_FromVoidPtr' mangled-name='PyLong_FromVoidPtr' filepath='Objects/longobject.c' line='1091' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromVoidPtr'> @@ -7022,13 +8625,9 @@ <return type-id='type-id-15'/> </function-decl> <function-decl name='_PyLong_AsInt' mangled-name='_PyLong_AsInt' filepath='Objects/longobject.c' line='590' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_AsInt'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='295' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Objects/longobject.c' line='590' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyLong_AsLong' mangled-name='PyLong_AsLong' filepath='Objects/longobject.c' line='573' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLong'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/longobject.c' line='573' column='1'/> - <return type-id='type-id-12'/> - </function-decl> <function-decl name='PyLong_AsLongAndOverflow' mangled-name='PyLong_AsLongAndOverflow' filepath='Objects/longobject.c' line='494' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLongAndOverflow'> <parameter type-id='type-id-100' name='vv' filepath='Objects/longobject.c' line='494' column='1'/> <parameter type-id='type-id-227' name='overflow' filepath='Objects/longobject.c' line='494' column='1'/> @@ -7046,30 +8645,71 @@ <parameter type-id='type-id-365' name='ival' filepath='Objects/longobject.c' line='401' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyLong_FromUnsignedLong' mangled-name='PyLong_FromUnsignedLong' filepath='Objects/longobject.c' line='393' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromUnsignedLong'> - <parameter type-id='type-id-33' name='ival' filepath='Objects/longobject.c' line='393' column='1'/> + <function-decl name='_PyLong_Copy' mangled-name='_PyLong_Copy' filepath='Objects/longobject.c' line='269' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Copy'> + <parameter type-id='type-id-430' name='src' filepath='Objects/longobject.c' line='269' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyLong_FromLong' mangled-name='PyLong_FromLong' filepath='Objects/longobject.c' line='297' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromLong'> - <parameter type-id='type-id-12' name='ival' filepath='Objects/longobject.c' line='297' column='1'/> + <function-decl name='_PyLong_FromNbIndexOrNbInt' mangled-name='_PyLong_FromNbIndexOrNbInt' filepath='Objects/longobject.c' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromNbIndexOrNbInt'> + <parameter type-id='type-id-100' name='integral' filepath='Objects/longobject.c' line='180' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyLong_Copy' mangled-name='_PyLong_Copy' filepath='Objects/longobject.c' line='269' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Copy'> - <parameter type-id='type-id-430' name='src' filepath='Objects/longobject.c' line='269' column='1'/> + <function-decl name='_PyLong_FromNbInt' mangled-name='_PyLong_FromNbInt' filepath='Objects/longobject.c' line='128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromNbInt'> + <parameter type-id='type-id-100' name='integral' filepath='Objects/longobject.c' line='128' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyLong_New' mangled-name='_PyLong_New' filepath='Objects/longobject.c' line='246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_New'> <parameter type-id='type-id-15' name='size' filepath='Objects/longobject.c' line='246' column='1'/> <return type-id='type-id-430'/> </function-decl> - <function-decl name='_PyLong_FromNbIndexOrNbInt' mangled-name='_PyLong_FromNbIndexOrNbInt' filepath='Objects/longobject.c' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromNbIndexOrNbInt'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> + <function-decl name='PyLong_FromLong' mangled-name='PyLong_FromLong' filepath='Objects/longobject.c' line='297' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromLong'> + <parameter type-id='type-id-12' name='ival' filepath='Objects/longobject.c' line='297' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyLong_FromNbInt' mangled-name='_PyLong_FromNbInt' filepath='Objects/longobject.c' line='128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromNbInt'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> + <function-decl name='PyLong_FromUnsignedLong' mangled-name='PyLong_FromUnsignedLong' filepath='Objects/longobject.c' line='393' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromUnsignedLong'> + <parameter type-id='type-id-33' name='ival' filepath='Objects/longobject.c' line='393' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyLong_AsLong' mangled-name='PyLong_AsLong' filepath='Objects/longobject.c' line='573' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLong'> + <parameter type-id='type-id-100' name='obj' filepath='Objects/longobject.c' line='573' column='1'/> + <return type-id='type-id-12'/> + </function-decl> + <function-decl name='PyLong_FromLongLong' mangled-name='PyLong_FromLongLong' filepath='Objects/longobject.c' line='1145' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromLongLong'> + <parameter type-id='type-id-362' name='ival' filepath='Objects/longobject.c' line='1145' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyLong_FromSsize_t' mangled-name='PyLong_FromSsize_t' filepath='Objects/longobject.c' line='1192' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromSsize_t'> + <parameter type-id='type-id-15' name='ival' filepath='Objects/longobject.c' line='1192' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyLong_AsUnsignedLongLong' mangled-name='PyLong_AsUnsignedLongLong' filepath='Objects/longobject.c' line='1288' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsUnsignedLongLong'> + <parameter type-id='type-id-100' name='vv' filepath='Objects/longobject.c' line='1288' column='1'/> + <return type-id='type-id-365'/> + </function-decl> + <function-decl name='PyLong_AsDouble' mangled-name='PyLong_AsDouble' filepath='Objects/longobject.c' line='2977' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsDouble'> + <parameter type-id='type-id-100' name='v' filepath='Objects/longobject.c' line='2977' column='1'/> + <return type-id='type-id-441'/> + </function-decl> + <function-decl name='_Py_bit_length' mangled-name='_Py_bit_length' filepath='./Include/pymath.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_FromWideChar' mangled-name='PyUnicode_FromWideChar' filepath='./Include/unicodeobject.h' line='282' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicodeWriter_PrepareInternal' mangled-name='_PyUnicodeWriter_PrepareInternal' filepath='./Include/cpython/unicodeobject.h' line='651' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytesWriter_Prepare' mangled-name='_PyBytesWriter_Prepare' filepath='./Include/cpython/bytesobject.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_EqualToASCIIId' mangled-name='_PyUnicode_EqualToASCIIId' filepath='./Include/cpython/unicodeobject.h' line='1024' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Bytes' mangled-name='PyObject_Bytes' filepath='./Include/object.h' line='244' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_FormatAdvancedWriter' mangled-name='_PyLong_FormatAdvancedWriter' filepath='./Include/longobject.h' line='212' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/dictobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyDict_Type' type-id='type-id-182' mangled-name='PyDict_Type' visibility='default' filepath='./Include/dictobject.h' line='15' column='1' elf-symbol-id='PyDict_Type'/> @@ -7092,14 +8732,9 @@ <parameter type-id='type-id-100' name='other' filepath='Objects/dictobject.c' line='4320' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyDictView_New' mangled-name='_PyDictView_New' filepath='Objects/dictobject.c' line='4109' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDictView_New'> - <parameter type-id='type-id-100' name='dict' filepath='Objects/dictobject.c' line='4109' column='1'/> - <parameter type-id='type-id-75' name='type' filepath='Objects/dictobject.c' line='4109' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PyDict_DelItemString' mangled-name='PyDict_DelItemString' filepath='Objects/dictobject.c' line='3524' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_DelItemString'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='264' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='264' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/dictobject.c' line='3524' column='1'/> + <parameter type-id='type-id-3' name='key' filepath='Objects/dictobject.c' line='3524' column='1'/> <return type-id='type-id-8'/> </function-decl> <pointer-type-def type-id='type-id-309' size-in-bits='64' id='type-id-476'/> @@ -7109,9 +8744,9 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyDict_SetItemString' mangled-name='PyDict_SetItemString' filepath='Objects/dictobject.c' line='3501' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetItemString'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2227' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2227' column='1'/> - <parameter type-id='type-id-100' name='value' filepath='Objects/abstract.c' line='2227' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/dictobject.c' line='3501' column='1'/> + <parameter type-id='type-id-3' name='key' filepath='Objects/dictobject.c' line='3501' column='1'/> + <parameter type-id='type-id-100' name='item' filepath='Objects/dictobject.c' line='3501' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyDict_SetItemId' mangled-name='_PyDict_SetItemId' filepath='Objects/dictobject.c' line='3491' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SetItemId'> @@ -7121,8 +8756,8 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyDict_GetItemString' mangled-name='PyDict_GetItemString' filepath='Objects/dictobject.c' line='3477' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItemString'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2210' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2210' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/dictobject.c' line='3477' column='1'/> + <parameter type-id='type-id-3' name='key' filepath='Objects/dictobject.c' line='3477' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyDict_GetItemId' mangled-name='_PyDict_GetItemId' filepath='Objects/dictobject.c' line='3463' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItemId'> @@ -7195,19 +8830,19 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyDict_Items' mangled-name='PyDict_Items' filepath='Objects/dictobject.c' line='2769' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Items'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='mp' filepath='Objects/dictobject.c' line='2769' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyDict_Values' mangled-name='PyDict_Values' filepath='Objects/dictobject.c' line='2759' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Values'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='mp' filepath='Objects/dictobject.c' line='2769' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyDict_Keys' mangled-name='PyDict_Keys' filepath='Objects/dictobject.c' line='2749' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Keys'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='mp' filepath='Objects/dictobject.c' line='2769' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyDict_Size' mangled-name='PyDict_Size' filepath='Objects/dictobject.c' line='2739' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Size'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2203' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/bytesobject.c' line='1197' column='1'/> <return type-id='type-id-15'/> </function-decl> <function-decl name='PyDict_Copy' mangled-name='PyDict_Copy' filepath='Objects/dictobject.c' line='2665' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Copy'> @@ -7227,8 +8862,8 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyDict_Update' mangled-name='PyDict_Update' filepath='Objects/dictobject.c' line='2640' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Update'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2643' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2643' column='1'/> + <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='2155' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='2155' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyDict_MergeFromSeq2' mangled-name='PyDict_MergeFromSeq2' filepath='Objects/dictobject.c' line='2410' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_MergeFromSeq2'> @@ -7237,12 +8872,6 @@ <parameter type-id='type-id-8' name='override' filepath='Objects/dictobject.c' line='2410' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyDict_Pop' mangled-name='_PyDict_Pop' filepath='Objects/dictobject.c' line='1894' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Pop'> - <parameter type-id='type-id-100' name='callable' filepath='Objects/call.c' line='412' column='1'/> - <parameter type-id='type-id-100' name='args' filepath='Objects/call.c' line='413' column='1'/> - <parameter type-id='type-id-100' name='kwargs' filepath='Objects/call.c' line='413' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PyDict_Next' mangled-name='PyDict_Next' filepath='Objects/dictobject.c' line='1830' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Next'> <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1830' column='1'/> <parameter type-id='type-id-158' name='ppos' filepath='Objects/dictobject.c' line='1830' column='1'/> @@ -7250,19 +8879,6 @@ <parameter type-id='type-id-303' name='pvalue' filepath='Objects/dictobject.c' line='1830' column='1'/> <return type-id='type-id-8'/> </function-decl> - <pointer-type-def type-id='type-id-150' size-in-bits='64' id='type-id-486'/> - <function-decl name='_PyDict_Next' mangled-name='_PyDict_Next' filepath='Objects/dictobject.c' line='1768' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Next'> - <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1768' column='1'/> - <parameter type-id='type-id-158' name='ppos' filepath='Objects/dictobject.c' line='1768' column='1'/> - <parameter type-id='type-id-303' name='pkey' filepath='Objects/dictobject.c' line='1768' column='1'/> - <parameter type-id='type-id-303' name='pvalue' filepath='Objects/dictobject.c' line='1769' column='1'/> - <parameter type-id='type-id-486' name='phash' filepath='Objects/dictobject.c' line='1769' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='PyDict_Clear' mangled-name='PyDict_Clear' filepath='Objects/dictobject.c' line='1727' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Clear'> - <parameter type-id='type-id-100' name='self' filepath='Objects/genobject.c' line='44' column='1'/> - <return type-id='type-id-4'/> - </function-decl> <function-decl name='_PyDict_DelItemIf' mangled-name='_PyDict_DelItemIf' filepath='Objects/dictobject.c' line='1677' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DelItemIf'> <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1677' column='1'/> <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='1677' column='1'/> @@ -7270,14 +8886,14 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyDict_DelItem_KnownHash' mangled-name='_PyDict_DelItem_KnownHash' filepath='Objects/dictobject.c' line='1639' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DelItem_KnownHash'> - <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='3305' column='1'/> - <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='3305' column='1'/> - <parameter type-id='type-id-150' name='hash' filepath='Objects/dictobject.c' line='3305' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1639' column='1'/> + <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='1639' column='1'/> + <parameter type-id='type-id-150' name='hash' filepath='Objects/dictobject.c' line='1639' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyDict_DelItem' mangled-name='PyDict_DelItem' filepath='Objects/dictobject.c' line='1624' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_DelItem'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2629' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2629' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1624' column='1'/> + <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='1624' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyDict_SetItem_KnownHash' mangled-name='_PyDict_SetItem_KnownHash' filepath='Objects/dictobject.c' line='1577' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SetItem_KnownHash'> @@ -7287,15 +8903,9 @@ <parameter type-id='type-id-150' name='hash' filepath='Objects/dictobject.c' line='1578' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyDict_SetItem' mangled-name='PyDict_SetItem' filepath='Objects/dictobject.c' line='1550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetItem'> - <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1550' column='1'/> - <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='1550' column='1'/> - <parameter type-id='type-id-100' name='value' filepath='Objects/dictobject.c' line='1550' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='_PyDict_GetItemStringWithError' mangled-name='_PyDict_GetItemStringWithError' filepath='Objects/dictobject.c' line='1495' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItemStringWithError'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2210' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2210' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/dictobject.c' line='1495' column='1'/> + <parameter type-id='type-id-3' name='key' filepath='Objects/dictobject.c' line='1495' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyDict_GetItemIdWithError' mangled-name='_PyDict_GetItemIdWithError' filepath='Objects/dictobject.c' line='1483' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItemIdWithError'> @@ -7303,17 +8913,6 @@ <parameter type-id='type-id-308' name='key' filepath='Objects/dictobject.c' line='1483' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyDict_GetItemWithError' mangled-name='PyDict_GetItemWithError' filepath='Objects/dictobject.c' line='1456' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItemWithError'> - <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1456' column='1'/> - <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='1456' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='_PyDict_GetItem_KnownHash' mangled-name='_PyDict_GetItem_KnownHash' filepath='Objects/dictobject.c' line='1433' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItem_KnownHash'> - <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1433' column='1'/> - <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='1433' column='1'/> - <parameter type-id='type-id-150' name='hash' filepath='Objects/dictobject.c' line='1433' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PyDict_GetItem' mangled-name='PyDict_GetItem' filepath='Objects/dictobject.c' line='1382' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItem'> <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1382' column='1'/> <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='1382' column='1'/> @@ -7343,6 +8942,80 @@ <parameter type-id='type-id-223' name='out' filepath='Objects/floatobject.c' line='2001' column='1'/> <return type-id='type-id-4'/> </function-decl> + <function-decl name='_PyDict_GetItem_KnownHash' mangled-name='_PyDict_GetItem_KnownHash' filepath='Objects/dictobject.c' line='1433' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItem_KnownHash'> + <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1433' column='1'/> + <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='1433' column='1'/> + <parameter type-id='type-id-150' name='hash' filepath='Objects/dictobject.c' line='1433' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyDict_GetItemWithError' mangled-name='PyDict_GetItemWithError' filepath='Objects/dictobject.c' line='1456' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItemWithError'> + <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1456' column='1'/> + <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='1456' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyDict_SetItem' mangled-name='PyDict_SetItem' filepath='Objects/dictobject.c' line='1550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetItem'> + <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1550' column='1'/> + <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='1550' column='1'/> + <parameter type-id='type-id-100' name='value' filepath='Objects/dictobject.c' line='1550' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='PyDict_Clear' mangled-name='PyDict_Clear' filepath='Objects/dictobject.c' line='1727' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Clear'> + <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1727' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <pointer-type-def type-id='type-id-150' size-in-bits='64' id='type-id-486'/> + <function-decl name='_PyDict_Next' mangled-name='_PyDict_Next' filepath='Objects/dictobject.c' line='1768' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Next'> + <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1768' column='1'/> + <parameter type-id='type-id-158' name='ppos' filepath='Objects/dictobject.c' line='1768' column='1'/> + <parameter type-id='type-id-303' name='pkey' filepath='Objects/dictobject.c' line='1768' column='1'/> + <parameter type-id='type-id-303' name='pvalue' filepath='Objects/dictobject.c' line='1769' column='1'/> + <parameter type-id='type-id-486' name='phash' filepath='Objects/dictobject.c' line='1769' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='_PyDict_Pop' mangled-name='_PyDict_Pop' filepath='Objects/dictobject.c' line='1894' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Pop'> + <parameter type-id='type-id-100' name='callable' filepath='Objects/call.c' line='298' column='1'/> + <parameter type-id='type-id-100' name='args' filepath='Objects/call.c' line='298' column='1'/> + <parameter type-id='type-id-100' name='kwargs' filepath='Objects/call.c' line='298' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='_PyDictView_New' mangled-name='_PyDictView_New' filepath='Objects/dictobject.c' line='4109' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDictView_New'> + <parameter type-id='type-id-100' name='dict' filepath='Objects/dictobject.c' line='4109' column='1'/> + <parameter type-id='type-id-75' name='type' filepath='Objects/dictobject.c' line='4109' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PySet_New' mangled-name='PySet_New' filepath='./Include/setobject.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySet_Update' mangled-name='_PySet_Update' filepath='./Include/setobject.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_CallMethodIdObjArgs' mangled-name='_PyObject_CallMethodIdObjArgs' filepath='./Include/cpython/abstract.h' line='223' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySet_Add' mangled-name='PySet_Add' filepath='./Include/setobject.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySequence_List' mangled-name='PySequence_List' filepath='./Include/abstract.h' line='683' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_FromSize_t' mangled-name='PyLong_FromSize_t' filepath='./Include/longobject.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyArg_ValidateKeywordArguments' mangled-name='PyArg_ValidateKeywordArguments' filepath='./Include/modsupport.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_IS_GC' mangled-name='PyObject_IS_GC' filepath='./Include/cpython/objimpl.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_SetKeyError' mangled-name='_PyErr_SetKeyError' filepath='./Include/cpython/pyerrors.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMapping_Keys' mangled-name='PyMapping_Keys' filepath='./Include/abstract.h' line='811' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_AssertFailed' mangled-name='_PyObject_AssertFailed' filepath='./Include/cpython/object.h' line='435' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> <function-type size-in-bits='64' id='type-id-483'> <parameter type-id='type-id-482'/> <parameter type-id='type-id-100'/> @@ -7358,8 +9031,8 @@ <var-decl name='PyODictItems_Type' type-id='type-id-182' mangled-name='PyODictItems_Type' visibility='default' filepath='./Include/odictobject.h' line='18' column='1' elf-symbol-id='PyODictItems_Type'/> <var-decl name='PyODictValues_Type' type-id='type-id-182' mangled-name='PyODictValues_Type' visibility='default' filepath='./Include/odictobject.h' line='19' column='1' elf-symbol-id='PyODictValues_Type'/> <function-decl name='PyODict_DelItem' mangled-name='PyODict_DelItem' filepath='Objects/odictobject.c' line='1678' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_DelItem'> - <parameter type-id='type-id-100' name='seq' filepath='Objects/abstract.c' line='2142' column='1'/> - <parameter type-id='type-id-100' name='ob' filepath='Objects/abstract.c' line='2142' column='1'/> + <parameter type-id='type-id-100' name='od' filepath='Objects/odictobject.c' line='1678' column='1'/> + <parameter type-id='type-id-100' name='key' filepath='Objects/odictobject.c' line='1678' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyODict_SetItem' mangled-name='PyODict_SetItem' filepath='Objects/odictobject.c' line='1669' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_SetItem'> @@ -7371,6 +9044,33 @@ <function-decl name='PyODict_New' mangled-name='PyODict_New' filepath='Objects/odictobject.c' line='1645' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_New'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='_PyDictView_New' mangled-name='_PyDictView_New' filepath='./Include/cpython/dictobject.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_GetItem' mangled-name='PyDict_GetItem' filepath='./Include/dictobject.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_DelItem_KnownHash' mangled-name='_PyDict_DelItem_KnownHash' filepath='./Include/cpython/dictobject.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_ChainExceptions' mangled-name='_PyErr_ChainExceptions' filepath='./Include/cpython/pyerrors.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_SetItem_KnownHash' mangled-name='_PyDict_SetItem_KnownHash' filepath='./Include/cpython/dictobject.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_Clear' mangled-name='PyDict_Clear' filepath='./Include/dictobject.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_GetItem_KnownHash' mangled-name='_PyDict_GetItem_KnownHash' filepath='./Include/cpython/dictobject.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_SizeOf' mangled-name='_PyDict_SizeOf' filepath='./Include/cpython/dictobject.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_FromKeys' mangled-name='_PyDict_FromKeys' filepath='./Include/cpython/dictobject.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/memoryobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='_PyManagedBuffer_Type' type-id='type-id-182' mangled-name='_PyManagedBuffer_Type' visibility='default' filepath='./Include/memoryobject.h' line='10' column='1' elf-symbol-id='_PyManagedBuffer_Type'/> @@ -7388,10 +9088,6 @@ <parameter type-id='type-id-1' name='order' filepath='Objects/memoryobject.c' line='926' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyMemoryView_FromObject' mangled-name='PyMemoryView_FromObject' filepath='Objects/memoryobject.c' line='794' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMemoryView_FromObject'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1510' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PyMemoryView_FromBuffer' mangled-name='PyMemoryView_FromBuffer' filepath='Objects/memoryobject.c' line='764' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMemoryView_FromBuffer'> <parameter type-id='type-id-160' name='info' filepath='Objects/memoryobject.c' line='764' column='1'/> <return type-id='type-id-100'/> @@ -7402,16 +9098,41 @@ <parameter type-id='type-id-8' name='flags' filepath='Objects/memoryobject.c' line='735' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyMemoryView_FromObject' mangled-name='PyMemoryView_FromObject' filepath='Objects/memoryobject.c' line='794' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMemoryView_FromObject'> + <parameter type-id='type-id-100' name='v' filepath='Objects/memoryobject.c' line='794' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyLong_FromUnsignedLongLong' mangled-name='PyLong_FromUnsignedLongLong' filepath='./Include/longobject.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_FromUnsignedLong' mangled-name='PyLong_FromUnsignedLong' filepath='./Include/longobject.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_AsUnsignedLong' mangled-name='PyLong_AsUnsignedLong' filepath='./Include/longobject.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_AsSize_t' mangled-name='PyLong_AsSize_t' filepath='./Include/longobject.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_AsUnsignedLongLong' mangled-name='PyLong_AsUnsignedLongLong' filepath='./Include/longobject.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_AsVoidPtr' mangled-name='PyLong_AsVoidPtr' filepath='./Include/longobject.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_AsASCIIString' mangled-name='PyUnicode_AsASCIIString' filepath='./Include/unicodeobject.h' line='636' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/methodobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyCFunction_Type' type-id='type-id-182' mangled-name='PyCFunction_Type' visibility='default' filepath='./Include/methodobject.h' line='14' column='1' elf-symbol-id='PyCFunction_Type'/> <var-decl name='PyCMethod_Type' type-id='type-id-182' mangled-name='PyCMethod_Type' visibility='default' filepath='./Include/cpython/methodobject.h' line='5' column='1' elf-symbol-id='PyCMethod_Type'/> <function-decl name='PyCFunction_GetFlags' mangled-name='PyCFunction_GetFlags' filepath='Objects/methodobject.c' line='139' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_GetFlags'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/methodobject.c' line='139' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyCFunction_GetSelf' mangled-name='PyCFunction_GetSelf' filepath='Objects/methodobject.c' line='129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_GetSelf'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/methodobject.c' line='129' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyCFunction_GetFunction' mangled-name='PyCFunction_GetFunction' filepath='Objects/methodobject.c' line='119' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_GetFunction'> @@ -7431,6 +9152,9 @@ <parameter type-id='type-id-100' name='module' filepath='Objects/methodobject.c' line='38' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyVectorcall_Call' mangled-name='PyVectorcall_Call' filepath='./Include/cpython/abstract.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/moduleobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyModuleDef_Type' type-id='type-id-182' mangled-name='PyModuleDef_Type' visibility='default' filepath='./Include/moduleobject.h' line='41' column='1' elf-symbol-id='PyModuleDef_Type'/> @@ -7515,25 +9239,17 @@ <parameter type-id='type-id-100' name='m' filepath='Objects/moduleobject.c' line='523' column='1'/> <return type-id='type-id-3'/> </function-decl> - <function-decl name='PyModule_GetFilenameObject' mangled-name='PyModule_GetFilenameObject' filepath='Objects/moduleobject.c' line='501' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetFilenameObject'> - <parameter type-id='type-id-100' name='path' filepath='Objects/fileobject.c' line='548' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PyModule_GetName' mangled-name='PyModule_GetName' filepath='Objects/moduleobject.c' line='491' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetName'> - <parameter type-id='type-id-100' name='o' filepath='Objects/capsule.c' line='98' column='1'/> + <parameter type-id='type-id-100' name='m' filepath='Objects/moduleobject.c' line='491' column='1'/> <return type-id='type-id-3'/> </function-decl> - <function-decl name='PyModule_GetNameObject' mangled-name='PyModule_GetNameObject' filepath='Objects/moduleobject.c' line='470' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetNameObject'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PyModule_GetDict' mangled-name='PyModule_GetDict' filepath='Objects/moduleobject.c' line='457' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetDict'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='m' filepath='Objects/moduleobject.c' line='457' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyModule_SetDocString' mangled-name='PyModule_SetDocString' filepath='Objects/moduleobject.c' line='443' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_SetDocString'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2246' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2246' column='1'/> + <parameter type-id='type-id-100' name='m' filepath='Objects/moduleobject.c' line='443' column='1'/> + <parameter type-id='type-id-3' name='doc' filepath='Objects/moduleobject.c' line='443' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyModule_AddFunctions' mangled-name='PyModule_AddFunctions' filepath='Objects/moduleobject.c' line='429' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddFunctions'> @@ -7563,7 +9279,7 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyModule_New' mangled-name='PyModule_New' filepath='Objects/moduleobject.c' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_New'> - <parameter type-id='type-id-3' name='str' filepath='Objects/bytesobject.c' line='128' column='1'/> + <parameter type-id='type-id-3' name='utf8path' filepath='Objects/fileobject.c' line='574' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyModule_NewObject' mangled-name='PyModule_NewObject' filepath='Objects/moduleobject.c' line='84' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_NewObject'> @@ -7574,6 +9290,29 @@ <parameter type-id='type-id-495' name='def' filepath='Objects/moduleobject.c' line='39' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyModule_GetNameObject' mangled-name='PyModule_GetNameObject' filepath='Objects/moduleobject.c' line='470' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetNameObject'> + <parameter type-id='type-id-100' name='m' filepath='Objects/moduleobject.c' line='470' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyModule_GetFilenameObject' mangled-name='PyModule_GetFilenameObject' filepath='Objects/moduleobject.c' line='501' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetFilenameObject'> + <parameter type-id='type-id-100' name='m' filepath='Objects/moduleobject.c' line='470' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PySys_FormatStderr' mangled-name='PySys_FormatStderr' filepath='./Include/sysmodule.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_CallMethod' mangled-name='PyObject_CallMethod' filepath='./Include/abstract.h' line='194' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='strrchr' mangled-name='strrchr' filepath='/usr/include/string.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImport_IsInitialized' mangled-name='_PyImport_IsInitialized' filepath='./Include/cpython/import.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_GetItemId' mangled-name='_PyDict_GetItemId' filepath='./Include/cpython/dictobject.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> <function-type size-in-bits='64' id='type-id-492'> <return type-id='type-id-100'/> </function-type> @@ -7581,9 +9320,12 @@ <abi-instr version='1.0' address-size='64' path='Objects/namespaceobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='_PyNamespace_Type' type-id='type-id-182' mangled-name='_PyNamespace_Type' visibility='default' filepath='./Include/namespaceobject.h' line='11' column='1' elf-symbol-id='_PyNamespace_Type'/> <function-decl name='_PyNamespace_New' mangled-name='_PyNamespace_New' filepath='Objects/namespaceobject.c' line='247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyNamespace_New'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1296' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyDict_Update' mangled-name='PyDict_Update' filepath='./Include/dictobject.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/object.c' comp-dir-path='/src' language='LANG_C99'> @@ -7629,7 +9371,7 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyTrash_thread_deposit_object' mangled-name='_PyTrash_thread_deposit_object' filepath='Objects/object.c' line='2044' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_thread_deposit_object'> - <parameter type-id='type-id-100' name='m' filepath='Objects/moduleobject.c' line='556' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/object.c' line='2044' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyTrash_deposit_object' mangled-name='_PyTrash_deposit_object' filepath='Objects/object.c' line='2030' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_deposit_object'> @@ -7641,11 +9383,11 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='Py_ReprEnter' mangled-name='Py_ReprEnter' filepath='Objects/object.c' line='1958' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_ReprEnter'> - <parameter type-id='type-id-100' name='dict' filepath='Objects/dictobject.c' line='957' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Objects/object.c' line='1958' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyObject_DebugTypeStats' mangled-name='_PyObject_DebugTypeStats' filepath='Objects/object.c' line='1936' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_DebugTypeStats'> - <parameter type-id='type-id-223' name='out' filepath='Objects/floatobject.c' line='2001' column='1'/> + <parameter type-id='type-id-223' name='out' filepath='Objects/object.c' line='1936' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_Py_NewReference' mangled-name='_Py_NewReference' filepath='Objects/object.c' line='1822' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_NewReference'> @@ -7653,7 +9395,7 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='PyObject_Dir' mangled-name='PyObject_Dir' filepath='Objects/object.c' line='1505' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Dir'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Objects/object.c' line='1505' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyCallable_Check' mangled-name='PyCallable_Check' filepath='Objects/object.c' line='1433' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCallable_Check'> @@ -7661,11 +9403,7 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_Not' mangled-name='PyObject_Not' filepath='Objects/object.c' line='1421' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Not'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='284' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='PyObject_IsTrue' mangled-name='PyObject_IsTrue' filepath='Objects/object.c' line='1393' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IsTrue'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='284' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='1421' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_GenericSetDict' mangled-name='PyObject_GenericSetDict' filepath='Objects/object.c' line='1365' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericSetDict'> @@ -7688,8 +9426,8 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_GenericGetAttr' mangled-name='PyObject_GenericGetAttr' filepath='Objects/object.c' line='1278' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericGetAttr'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1226' column='1'/> - <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='1226' column='1'/> + <parameter type-id='type-id-100' name='code' filepath='Objects/funcobject.c' line='79' column='1'/> + <parameter type-id='type-id-100' name='globals' filepath='Objects/funcobject.c' line='79' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyObject_GenericGetAttrWithDict' mangled-name='_PyObject_GenericGetAttrWithDict' filepath='Objects/object.c' line='1165' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GenericGetAttrWithDict'> @@ -7706,11 +9444,11 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyObject_NextNotImplemented' mangled-name='_PyObject_NextNotImplemented' filepath='Objects/object.c' line='1065' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_NextNotImplemented'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyObject_SelfIter' mangled-name='PyObject_SelfIter' filepath='Objects/object.c' line='1053' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SelfIter'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='390' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyObject_GetDictPtr' mangled-name='_PyObject_GetDictPtr' filepath='Objects/object.c' line='1030' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetDictPtr'> @@ -7724,8 +9462,8 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_HasAttr' mangled-name='PyObject_HasAttr' filepath='Objects/object.c' line='964' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_HasAttr'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2629' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2629' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='964' column='1'/> + <parameter type-id='type-id-100' name='name' filepath='Objects/object.c' line='964' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyObject_LookupAttrId' mangled-name='_PyObject_LookupAttrId' filepath='Objects/object.c' line='953' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_LookupAttrId'> @@ -7741,8 +9479,8 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_GetAttr' mangled-name='PyObject_GetAttr' filepath='Objects/object.c' line='879' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetAttr'> - <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1685' column='1'/> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1685' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='879' column='1'/> + <parameter type-id='type-id-100' name='name' filepath='Objects/object.c' line='879' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyObject_SetAttrId' mangled-name='_PyObject_SetAttrId' filepath='Objects/object.c' line='868' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_SetAttrId'> @@ -7762,13 +9500,13 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyObject_IsAbstract' mangled-name='_PyObject_IsAbstract' filepath='Objects/object.c' line='829' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_IsAbstract'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='295' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Objects/object.c' line='829' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_SetAttrString' mangled-name='PyObject_SetAttrString' filepath='Objects/object.c' line='813' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetAttrString'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2227' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2227' column='1'/> - <parameter type-id='type-id-100' name='value' filepath='Objects/abstract.c' line='2227' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='813' column='1'/> + <parameter type-id='type-id-3' name='name' filepath='Objects/object.c' line='813' column='1'/> + <parameter type-id='type-id-100' name='w' filepath='Objects/object.c' line='813' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_HasAttrString' mangled-name='PyObject_HasAttrString' filepath='Objects/object.c' line='801' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_HasAttrString'> @@ -7776,11 +9514,6 @@ <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2246' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyObject_GetAttrString' mangled-name='PyObject_GetAttrString' filepath='Objects/object.c' line='786' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetAttrString'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2210' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2210' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PyObject_Hash' mangled-name='PyObject_Hash' filepath='Objects/object.c' line='765' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Hash'> <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='765' column='1'/> <return type-id='type-id-150'/> @@ -7806,27 +9539,15 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyObject_Bytes' mangled-name='PyObject_Bytes' filepath='Objects/object.c' line='529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Bytes'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='529' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyObject_ASCII' mangled-name='PyObject_ASCII' filepath='Objects/object.c' line='502' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ASCII'> - <parameter type-id='type-id-100' name='path' filepath='Objects/fileobject.c' line='548' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyObject_Str' mangled-name='PyObject_Str' filepath='Objects/object.c' line='442' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Str'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyObject_Repr' mangled-name='PyObject_Repr' filepath='Objects/object.c' line='389' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Repr'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='502' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyObject_Dump' mangled-name='_PyObject_Dump' filepath='Objects/object.c' line='348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_Dump'> - <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='982' column='1'/> - <return type-id='type-id-4'/> - </function-decl> <function-decl name='_PyObject_IsFreed' mangled-name='_PyObject_IsFreed' filepath='Objects/object.c' line='327' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_IsFreed'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/object.c' line='327' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_Py_BreakPoint' mangled-name='_Py_BreakPoint' filepath='Objects/object.c' line='315' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_BreakPoint'> @@ -7839,11 +9560,11 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_CallFinalizerFromDealloc' mangled-name='PyObject_CallFinalizerFromDealloc' filepath='Objects/object.c' line='202' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallFinalizerFromDealloc'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='295' column='1'/> + <parameter type-id='type-id-100' name='self' filepath='Objects/object.c' line='202' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_CallFinalizer' mangled-name='PyObject_CallFinalizer' filepath='Objects/object.c' line='185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallFinalizer'> - <parameter type-id='type-id-100' name='m' filepath='Objects/moduleobject.c' line='556' column='1'/> + <parameter type-id='type-id-100' name='self' filepath='Objects/object.c' line='185' column='1'/> <return type-id='type-id-4'/> </function-decl> <pointer-type-def type-id='type-id-77' size-in-bits='64' id='type-id-497'/> @@ -7868,11 +9589,11 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='Py_DecRef' mangled-name='Py_DecRef' filepath='Objects/object.c' line='135' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_DecRef'> - <parameter type-id='type-id-100' name='op' filepath='Objects/object.c' line='1822' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/object.c' line='135' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='Py_IncRef' mangled-name='Py_IncRef' filepath='Objects/object.c' line='129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IncRef'> - <parameter type-id='type-id-100' name='op' filepath='Objects/object.c' line='1822' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='Objects/object.c' line='135' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyObject_CheckConsistency' mangled-name='_PyObject_CheckConsistency' filepath='Objects/object.c' line='30' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CheckConsistency'> @@ -7880,6 +9601,96 @@ <parameter type-id='type-id-8' name='check_content' filepath='Objects/object.c' line='30' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='PyObject_IsTrue' mangled-name='PyObject_IsTrue' filepath='Objects/object.c' line='1393' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IsTrue'> + <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='1393' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='PyObject_Repr' mangled-name='PyObject_Repr' filepath='Objects/object.c' line='389' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Repr'> + <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='389' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyObject_Str' mangled-name='PyObject_Str' filepath='Objects/object.c' line='442' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Str'> + <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='442' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='_PyObject_Dump' mangled-name='_PyObject_Dump' filepath='Objects/object.c' line='348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_Dump'> + <parameter type-id='type-id-100' name='op' filepath='Objects/object.c' line='348' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_GetAttrString' mangled-name='PyObject_GetAttrString' filepath='Objects/object.c' line='786' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetAttrString'> + <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='786' column='1'/> + <parameter type-id='type-id-3' name='name' filepath='Objects/object.c' line='786' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='_PyMem_DumpTraceback' mangled-name='_PyMem_DumpTraceback' filepath='Objects/object.c' line='21' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThreadState_GetDict' mangled-name='PyThreadState_GetDict' filepath='./Include/pystate.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_DebugMallocStats' mangled-name='_PyDict_DebugMallocStats' filepath='./Include/cpython/dictobject.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFloat_DebugMallocStats' mangled-name='_PyFloat_DebugMallocStats' filepath='./Include/floatobject.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFrame_DebugMallocStats' mangled-name='_PyFrame_DebugMallocStats' filepath='./Include/cpython/frameobject.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyList_DebugMallocStats' mangled-name='_PyList_DebugMallocStats' filepath='./Include/cpython/listobject.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTuple_DebugMallocStats' mangled-name='_PyTuple_DebugMallocStats' filepath='./Include/cpython/tupleobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTraceMalloc_NewReference' mangled-name='_PyTraceMalloc_NewReference' filepath='./Include/cpython/object.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTypes_InitSlotDefs' mangled-name='_PyTypes_InitSlotDefs' filepath='./Include/internal/pycore_pylifecycle.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyList_Sort' mangled-name='PyList_Sort' filepath='./Include/listobject.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyEval_GetLocals' mangled-name='PyEval_GetLocals' filepath='./Include/ceval.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_DelItem' mangled-name='PyDict_DelItem' filepath='./Include/dictobject.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObjectDict_SetItem' mangled-name='_PyObjectDict_SetItem' filepath='./Include/cpython/dictobject.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBytes_FromObject' mangled-name='PyBytes_FromObject' filepath='./Include/bytesobject.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_AsASCIIString' mangled-name='_PyUnicode_AsASCIIString' filepath='./Include/cpython/unicodeobject.h' line='905' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_DecodeASCII' mangled-name='PyUnicode_DecodeASCII' filepath='./Include/unicodeobject.h' line='630' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fwrite' mangled-name='fwrite' filepath='/usr/include/stdio.h' line='652' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='ferror' mangled-name='ferror' filepath='/usr/include/stdio.h' line='761' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyType_CheckConsistency' mangled-name='_PyType_CheckConsistency' filepath='./Include/internal/pycore_object.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_CheckConsistency' mangled-name='_PyDict_CheckConsistency' filepath='./Include/internal/pycore_object.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_CheckConsistency' mangled-name='_PyUnicode_CheckConsistency' filepath='./Include/cpython/unicodeobject.h' line='246' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyGILState_Ensure' mangled-name='PyGILState_Ensure' filepath='./Include/pystate.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyGILState_Release' mangled-name='PyGILState_Release' filepath='./Include/pystate.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/obmalloc.c' comp-dir-path='/src' language='LANG_C99'> <class-decl name='_PyTraceMalloc_Config' size-in-bits='96' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_pymem.h' line='75' column='1' id='type-id-498'> @@ -7900,10 +9711,6 @@ <enumerator name='TRACEMALLOC_FINALIZED' value='2'/> </enum-decl> <var-decl name='_Py_tracemalloc_config' type-id='type-id-498' mangled-name='_Py_tracemalloc_config' visibility='default' filepath='./Include/internal/pycore_pymem.h' line='98' column='1' elf-symbol-id='_Py_tracemalloc_config'/> - <function-decl name='_PyObject_DebugMallocStats' mangled-name='_PyObject_DebugMallocStats' filepath='Objects/obmalloc.c' line='2595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_DebugMallocStats'> - <parameter type-id='type-id-223' name='out' filepath='Objects/obmalloc.c' line='2595' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='_PyDebugAllocatorStats' mangled-name='_PyDebugAllocatorStats' filepath='Objects/obmalloc.c' line='2550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDebugAllocatorStats'> <parameter type-id='type-id-223' name='out' filepath='Objects/obmalloc.c' line='2550' column='1'/> <parameter type-id='type-id-3' name='block_name' filepath='Objects/obmalloc.c' line='2551' column='1'/> @@ -8005,14 +9812,37 @@ <parameter type-id='type-id-508' name='allocator' filepath='Objects/obmalloc.c' line='556' column='1'/> <return type-id='type-id-4'/> </function-decl> - <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/pymem.h' line='29' column='1' id='type-id-509'> + <function-decl name='PyMem_SetupDebugHooks' mangled-name='PyMem_SetupDebugHooks' filepath='Objects/obmalloc.c' line='512' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_SetupDebugHooks'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyMem_GetCurrentAllocatorName' mangled-name='_PyMem_GetCurrentAllocatorName' filepath='Objects/obmalloc.c' line='374' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_GetCurrentAllocatorName'> + <return type-id='type-id-3'/> + </function-decl> + <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/pymem.h' line='40' column='1' id='type-id-509'> + <underlying-type type-id='type-id-23'/> + <enumerator name='PYMEM_ALLOCATOR_NOT_SET' value='0'/> + <enumerator name='PYMEM_ALLOCATOR_DEFAULT' value='1'/> + <enumerator name='PYMEM_ALLOCATOR_DEBUG' value='2'/> + <enumerator name='PYMEM_ALLOCATOR_MALLOC' value='3'/> + <enumerator name='PYMEM_ALLOCATOR_MALLOC_DEBUG' value='4'/> + <enumerator name='PYMEM_ALLOCATOR_PYMALLOC' value='5'/> + <enumerator name='PYMEM_ALLOCATOR_PYMALLOC_DEBUG' value='6'/> + </enum-decl> + <typedef-decl name='PyMemAllocatorName' type-id='type-id-509' filepath='./Include/cpython/pymem.h' line='50' column='1' id='type-id-510'/> + <pointer-type-def type-id='type-id-510' size-in-bits='64' id='type-id-511'/> + <function-decl name='_PyMem_GetAllocatorName' mangled-name='_PyMem_GetAllocatorName' filepath='Objects/obmalloc.c' line='271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_GetAllocatorName'> + <parameter type-id='type-id-3' name='name' filepath='Objects/obmalloc.c' line='271' column='1'/> + <parameter type-id='type-id-511' name='allocator' filepath='Objects/obmalloc.c' line='271' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/pymem.h' line='29' column='1' id='type-id-512'> <underlying-type type-id='type-id-23'/> <enumerator name='PYMEM_DOMAIN_RAW' value='0'/> <enumerator name='PYMEM_DOMAIN_MEM' value='1'/> <enumerator name='PYMEM_DOMAIN_OBJ' value='2'/> </enum-decl> - <typedef-decl name='PyMemAllocatorDomain' type-id='type-id-509' filepath='./Include/cpython/pymem.h' line='38' column='1' id='type-id-510'/> - <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-511' visibility='default' filepath='./Include/cpython/pymem.h' line='53' column='1' id='type-id-512'> + <typedef-decl name='PyMemAllocatorDomain' type-id='type-id-512' filepath='./Include/cpython/pymem.h' line='38' column='1' id='type-id-513'/> + <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-514' visibility='default' filepath='./Include/cpython/pymem.h' line='53' column='1' id='type-id-515'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='ctx' type-id='type-id-32' visibility='default' filepath='./Include/cpython/pymem.h' line='55' column='1'/> </data-member> @@ -8020,63 +9850,70 @@ <var-decl name='malloc' type-id='type-id-504' visibility='default' filepath='./Include/cpython/pymem.h' line='58' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='128'> - <var-decl name='calloc' type-id='type-id-513' visibility='default' filepath='./Include/cpython/pymem.h' line='61' column='1'/> + <var-decl name='calloc' type-id='type-id-516' visibility='default' filepath='./Include/cpython/pymem.h' line='61' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='192'> - <var-decl name='realloc' type-id='type-id-514' visibility='default' filepath='./Include/cpython/pymem.h' line='64' column='1'/> + <var-decl name='realloc' type-id='type-id-517' visibility='default' filepath='./Include/cpython/pymem.h' line='64' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='256'> - <var-decl name='free' type-id='type-id-515' visibility='default' filepath='./Include/cpython/pymem.h' line='67' column='1'/> + <var-decl name='free' type-id='type-id-518' visibility='default' filepath='./Include/cpython/pymem.h' line='67' column='1'/> </data-member> </class-decl> - <pointer-type-def type-id='type-id-516' size-in-bits='64' id='type-id-513'/> - <pointer-type-def type-id='type-id-517' size-in-bits='64' id='type-id-514'/> - <pointer-type-def type-id='type-id-518' size-in-bits='64' id='type-id-515'/> - <typedef-decl name='PyMemAllocatorEx' type-id='type-id-512' filepath='./Include/cpython/pymem.h' line='68' column='1' id='type-id-511'/> - <pointer-type-def type-id='type-id-511' size-in-bits='64' id='type-id-519'/> + <pointer-type-def type-id='type-id-519' size-in-bits='64' id='type-id-516'/> + <pointer-type-def type-id='type-id-520' size-in-bits='64' id='type-id-517'/> + <pointer-type-def type-id='type-id-521' size-in-bits='64' id='type-id-518'/> + <typedef-decl name='PyMemAllocatorEx' type-id='type-id-515' filepath='./Include/cpython/pymem.h' line='68' column='1' id='type-id-514'/> + <pointer-type-def type-id='type-id-514' size-in-bits='64' id='type-id-522'/> + <function-decl name='_PyMem_SetDefaultAllocator' mangled-name='_PyMem_SetDefaultAllocator' filepath='Objects/obmalloc.c' line='258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_SetDefaultAllocator'> + <parameter type-id='type-id-513' name='domain' filepath='Objects/obmalloc.c' line='258' column='1'/> + <parameter type-id='type-id-522' name='old_alloc' filepath='Objects/obmalloc.c' line='259' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='PyMem_GetAllocator' mangled-name='PyMem_GetAllocator' filepath='Objects/obmalloc.c' line='520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_GetAllocator'> + <parameter type-id='type-id-513' name='domain' filepath='Objects/obmalloc.c' line='520' column='1'/> + <parameter type-id='type-id-522' name='allocator' filepath='Objects/obmalloc.c' line='520' column='1'/> + <return type-id='type-id-4'/> + </function-decl> <function-decl name='PyMem_SetAllocator' mangled-name='PyMem_SetAllocator' filepath='Objects/obmalloc.c' line='538' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_SetAllocator'> - <parameter type-id='type-id-510' name='domain' filepath='Objects/obmalloc.c' line='538' column='1'/> - <parameter type-id='type-id-519' name='allocator' filepath='Objects/obmalloc.c' line='538' column='1'/> + <parameter type-id='type-id-513' name='domain' filepath='Objects/obmalloc.c' line='520' column='1'/> + <parameter type-id='type-id-522' name='allocator' filepath='Objects/obmalloc.c' line='520' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyMem_GetAllocator' mangled-name='PyMem_GetAllocator' filepath='Objects/obmalloc.c' line='520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_GetAllocator'> - <parameter type-id='type-id-510' name='domain' filepath='Objects/obmalloc.c' line='538' column='1'/> - <parameter type-id='type-id-519' name='allocator' filepath='Objects/obmalloc.c' line='538' column='1'/> + <function-decl name='_PyObject_DebugMallocStats' mangled-name='_PyObject_DebugMallocStats' filepath='Objects/obmalloc.c' line='2595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_DebugMallocStats'> + <parameter type-id='type-id-223' name='out' filepath='Objects/obmalloc.c' line='2595' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='fputs' mangled-name='fputs' filepath='/usr/include/stdio.h' line='626' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyMem_SetupDebugHooks' mangled-name='PyMem_SetupDebugHooks' filepath='Objects/obmalloc.c' line='512' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_SetupDebugHooks'> + <function-decl name='fputc' mangled-name='fputc' filepath='/usr/include/stdio.h' line='521' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyMem_GetCurrentAllocatorName' mangled-name='_PyMem_GetCurrentAllocatorName' filepath='Objects/obmalloc.c' line='374' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_GetCurrentAllocatorName'> - <return type-id='type-id-3'/> + <function-decl name='PyGILState_Check' mangled-name='PyGILState_Check' filepath='./Include/cpython/pystate.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> - <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/pymem.h' line='40' column='1' id='type-id-520'> - <underlying-type type-id='type-id-23'/> - <enumerator name='PYMEM_ALLOCATOR_NOT_SET' value='0'/> - <enumerator name='PYMEM_ALLOCATOR_DEFAULT' value='1'/> - <enumerator name='PYMEM_ALLOCATOR_DEBUG' value='2'/> - <enumerator name='PYMEM_ALLOCATOR_MALLOC' value='3'/> - <enumerator name='PYMEM_ALLOCATOR_MALLOC_DEBUG' value='4'/> - <enumerator name='PYMEM_ALLOCATOR_PYMALLOC' value='5'/> - <enumerator name='PYMEM_ALLOCATOR_PYMALLOC_DEBUG' value='6'/> - </enum-decl> - <typedef-decl name='PyMemAllocatorName' type-id='type-id-520' filepath='./Include/cpython/pymem.h' line='50' column='1' id='type-id-521'/> - <function-decl name='_PyMem_SetupAllocators' mangled-name='_PyMem_SetupAllocators' filepath='Objects/obmalloc.c' line='307' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_SetupAllocators'> - <parameter type-id='type-id-521' name='allocator' filepath='Objects/obmalloc.c' line='307' column='1'/> - <return type-id='type-id-8'/> + <function-decl name='__builtin___memcpy_chk' mangled-name='__memcpy_chk' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> - <pointer-type-def type-id='type-id-521' size-in-bits='64' id='type-id-522'/> - <function-decl name='_PyMem_GetAllocatorName' mangled-name='_PyMem_GetAllocatorName' filepath='Objects/obmalloc.c' line='271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_GetAllocatorName'> - <parameter type-id='type-id-3' name='name' filepath='Objects/obmalloc.c' line='271' column='1'/> - <parameter type-id='type-id-522' name='allocator' filepath='Objects/obmalloc.c' line='271' column='1'/> - <return type-id='type-id-8'/> + <function-decl name='getenv' mangled-name='getenv' filepath='/usr/include/stdlib.h' line='634' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyMem_SetDefaultAllocator' mangled-name='_PyMem_SetDefaultAllocator' filepath='Objects/obmalloc.c' line='258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_SetDefaultAllocator'> - <parameter type-id='type-id-510' name='domain' filepath='Objects/obmalloc.c' line='258' column='1'/> - <parameter type-id='type-id-519' name='old_alloc' filepath='Objects/obmalloc.c' line='259' column='1'/> - <return type-id='type-id-8'/> + <function-decl name='wcslen' mangled-name='wcslen' filepath='/usr/include/wchar.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='munmap' mangled-name='munmap' filepath='/usr/include/x86_64-linux-gnu/sys/mman.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='mmap' mangled-name='mmap64' filepath='/usr/include/x86_64-linux-gnu/sys/mman.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='calloc' mangled-name='calloc' filepath='/usr/include/stdlib.h' line='542' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> - <function-type size-in-bits='64' id='type-id-518'> + <function-decl name='_Py_FatalErrorFormat' mangled-name='_Py_FatalErrorFormat' filepath='./Include/cpython/pyerrors.h' line='191' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-type size-in-bits='64' id='type-id-521'> <parameter type-id='type-id-32'/> <parameter type-id='type-id-32'/> <return type-id='type-id-4'/> @@ -8092,13 +9929,13 @@ <parameter type-id='type-id-191'/> <return type-id='type-id-32'/> </function-type> - <function-type size-in-bits='64' id='type-id-516'> + <function-type size-in-bits='64' id='type-id-519'> <parameter type-id='type-id-32'/> <parameter type-id='type-id-191'/> <parameter type-id='type-id-191'/> <return type-id='type-id-32'/> </function-type> - <function-type size-in-bits='64' id='type-id-517'> + <function-type size-in-bits='64' id='type-id-520'> <parameter type-id='type-id-32'/> <parameter type-id='type-id-32'/> <parameter type-id='type-id-191'/> @@ -8108,22 +9945,46 @@ <abi-instr version='1.0' address-size='64' path='Objects/picklebufobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyPickleBuffer_Type' type-id='type-id-182' mangled-name='PyPickleBuffer_Type' visibility='default' filepath='./Include/picklebufobject.h' line='13' column='1' elf-symbol-id='PyPickleBuffer_Type'/> <function-decl name='PyPickleBuffer_Release' mangled-name='PyPickleBuffer_Release' filepath='Objects/picklebufobject.c' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPickleBuffer_Release'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='284' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Objects/picklebufobject.c' line='55' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyPickleBuffer_GetBuffer' mangled-name='PyPickleBuffer_GetBuffer' filepath='Objects/picklebufobject.c' line='36' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPickleBuffer_GetBuffer'> <parameter type-id='type-id-100' name='obj' filepath='Objects/picklebufobject.c' line='36' column='1'/> - <return type-id='type-id-284'/> + <return type-id='type-id-286'/> </function-decl> <function-decl name='PyPickleBuffer_FromObject' mangled-name='PyPickleBuffer_FromObject' filepath='Objects/picklebufobject.c' line='17' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPickleBuffer_FromObject'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> + <parameter type-id='type-id-100' name='base' filepath='Objects/picklebufobject.c' line='17' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyMemoryView_FromObject' mangled-name='PyMemoryView_FromObject' filepath='./Include/memoryobject.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/rangeobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyRange_Type' type-id='type-id-182' mangled-name='PyRange_Type' visibility='default' filepath='./Include/rangeobject.h' line='18' column='1' elf-symbol-id='PyRange_Type'/> <var-decl name='PyRangeIter_Type' type-id='type-id-182' mangled-name='PyRangeIter_Type' visibility='default' filepath='./Include/rangeobject.h' line='19' column='1' elf-symbol-id='PyRangeIter_Type'/> <var-decl name='PyLongRangeIter_Type' type-id='type-id-182' mangled-name='PyLongRangeIter_Type' visibility='default' filepath='./Include/rangeobject.h' line='20' column='1' elf-symbol-id='PyLongRangeIter_Type'/> + <function-decl name='PyNumber_Subtract' mangled-name='PyNumber_Subtract' filepath='./Include/abstract.h' line='404' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Multiply' mangled-name='PyNumber_Multiply' filepath='./Include/abstract.h' line='409' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySequence_IterSearch' mangled-name='_PySequence_IterSearch' filepath='./Include/cpython/abstract.h' line='360' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Not' mangled-name='PyObject_Not' filepath='./Include/object.h' line='262' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Remainder' mangled-name='PyNumber_Remainder' filepath='./Include/abstract.h' line='431' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_FloorDivide' mangled-name='PyNumber_FloorDivide' filepath='./Include/abstract.h' line='420' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySlice_GetLongIndices' mangled-name='_PySlice_GetLongIndices' filepath='./Include/sliceobject.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/setobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PySetIter_Type' type-id='type-id-182' mangled-name='PySetIter_Type' visibility='default' filepath='./Include/setobject.h' line='78' column='1' elf-symbol-id='PySetIter_Type'/> @@ -8131,12 +9992,12 @@ <var-decl name='PyFrozenSet_Type' type-id='type-id-182' mangled-name='PyFrozenSet_Type' visibility='default' filepath='./Include/setobject.h' line='77' column='1' elf-symbol-id='PyFrozenSet_Type'/> <var-decl name='_PySet_Dummy' type-id='type-id-100' mangled-name='_PySet_Dummy' visibility='default' filepath='./Include/setobject.h' line='69' column='1' elf-symbol-id='_PySet_Dummy'/> <function-decl name='_PySet_Update' mangled-name='_PySet_Update' filepath='Objects/setobject.c' line='2335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySet_Update'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2643' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2643' column='1'/> + <parameter type-id='type-id-100' name='set' filepath='Objects/setobject.c' line='2335' column='1'/> + <parameter type-id='type-id-100' name='iterable' filepath='Objects/setobject.c' line='2335' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PySet_Pop' mangled-name='PySet_Pop' filepath='Objects/setobject.c' line='2325' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Pop'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/listobject.c' line='2492' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PySet_NextEntry' mangled-name='_PySet_NextEntry' filepath='Objects/setobject.c' line='2309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySet_NextEntry'> @@ -8147,36 +10008,45 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PySet_Add' mangled-name='PySet_Add' filepath='Objects/setobject.c' line='2292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Add'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2643' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2643' column='1'/> + <parameter type-id='type-id-100' name='anyset' filepath='Objects/setobject.c' line='2292' column='1'/> + <parameter type-id='type-id-100' name='key' filepath='Objects/setobject.c' line='2292' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PySet_Discard' mangled-name='PySet_Discard' filepath='Objects/setobject.c' line='2282' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Discard'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2643' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2643' column='1'/> + <parameter type-id='type-id-100' name='set' filepath='Objects/setobject.c' line='2282' column='1'/> + <parameter type-id='type-id-100' name='key' filepath='Objects/setobject.c' line='2282' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PySet_Contains' mangled-name='PySet_Contains' filepath='Objects/setobject.c' line='2272' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Contains'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2643' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2643' column='1'/> + <parameter type-id='type-id-100' name='anyset' filepath='Objects/setobject.c' line='2292' column='1'/> + <parameter type-id='type-id-100' name='key' filepath='Objects/setobject.c' line='2292' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PySet_Clear' mangled-name='PySet_Clear' filepath='Objects/setobject.c' line='2262' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Clear'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> + <parameter type-id='type-id-100' name='set' filepath='Objects/setobject.c' line='2262' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PySet_Size' mangled-name='PySet_Size' filepath='Objects/setobject.c' line='2252' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Size'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2203' column='1'/> + <parameter type-id='type-id-100' name='anyset' filepath='Objects/setobject.c' line='2252' column='1'/> <return type-id='type-id-15'/> </function-decl> <function-decl name='PyFrozenSet_New' mangled-name='PyFrozenSet_New' filepath='Objects/setobject.c' line='2246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrozenSet_New'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='390' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PySet_New' mangled-name='PySet_New' filepath='Objects/setobject.c' line='2240' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_New'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='390' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='_PyDict_Next' mangled-name='_PyDict_Next' filepath='./Include/cpython/dictobject.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_Contains' mangled-name='_PyDict_Contains' filepath='./Include/cpython/dictobject.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_EQ' mangled-name='_PyUnicode_EQ' filepath='./Include/cpython/unicodeobject.h' line='1223' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/sliceobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyEllipsis_Type' type-id='type-id-182' mangled-name='PyEllipsis_Type' visibility='default' filepath='./Include/sliceobject.h' line='29' column='1' elf-symbol-id='PyEllipsis_Type'/> @@ -8243,9 +10113,9 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PySlice_New' mangled-name='PySlice_New' filepath='Objects/sliceobject.c' line='117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySlice_New'> - <parameter type-id='type-id-100' name='callable' filepath='Objects/call.c' line='412' column='1'/> - <parameter type-id='type-id-100' name='args' filepath='Objects/call.c' line='413' column='1'/> - <parameter type-id='type-id-100' name='kwargs' filepath='Objects/call.c' line='413' column='1'/> + <parameter type-id='type-id-100' name='start' filepath='Objects/sliceobject.c' line='117' column='1'/> + <parameter type-id='type-id-100' name='stop' filepath='Objects/sliceobject.c' line='117' column='1'/> + <parameter type-id='type-id-100' name='step' filepath='Objects/sliceobject.c' line='117' column='1'/> <return type-id='type-id-100'/> </function-decl> </abi-instr> @@ -8291,8 +10161,8 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyStructSequence_GetItem' mangled-name='PyStructSequence_GetItem' filepath='Objects/structseq.c' line='64' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_GetItem'> - <parameter type-id='type-id-100' name='op' filepath='Objects/listobject.c' line='209' column='1'/> - <parameter type-id='type-id-15' name='i' filepath='Objects/listobject.c' line='209' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/structseq.c' line='64' column='1'/> + <parameter type-id='type-id-15' name='i' filepath='Objects/structseq.c' line='64' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyStructSequence_SetItem' mangled-name='PyStructSequence_SetItem' filepath='Objects/structseq.c' line='58' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_SetItem'> @@ -8305,6 +10175,12 @@ <parameter type-id='type-id-75' name='type' filepath='Objects/structseq.c' line='40' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyType_FromSpecWithBases' mangled-name='PyType_FromSpecWithBases' filepath='./Include/object.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_GetItemString' mangled-name='PyDict_GetItemString' filepath='./Include/dictobject.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/tupleobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyTuple_Type' type-id='type-id-182' mangled-name='PyTuple_Type' visibility='default' filepath='./Include/tupleobject.h' line='23' column='1' elf-symbol-id='PyTuple_Type'/> @@ -8315,9 +10191,9 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PyTuple_GetSlice' mangled-name='PyTuple_GetSlice' filepath='Objects/tupleobject.c' line='452' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_GetSlice'> - <parameter type-id='type-id-100' name='a' filepath='Objects/listobject.c' line='465' column='1'/> - <parameter type-id='type-id-15' name='ilow' filepath='Objects/listobject.c' line='465' column='1'/> - <parameter type-id='type-id-15' name='ihigh' filepath='Objects/listobject.c' line='465' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/tupleobject.c' line='452' column='1'/> + <parameter type-id='type-id-15' name='i' filepath='Objects/tupleobject.c' line='452' column='1'/> + <parameter type-id='type-id-15' name='j' filepath='Objects/tupleobject.c' line='452' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyTuple_Pack' mangled-name='PyTuple_Pack' filepath='Objects/tupleobject.c' line='196' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_Pack'> @@ -8330,58 +10206,54 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='PyTuple_SetItem' mangled-name='PyTuple_SetItem' filepath='Objects/tupleobject.c' line='154' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_SetItem'> - <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1793' column='1'/> - <parameter type-id='type-id-15' name='i' filepath='Objects/abstract.c' line='1793' column='1'/> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='1793' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/tupleobject.c' line='154' column='1'/> + <parameter type-id='type-id-15' name='i' filepath='Objects/tupleobject.c' line='154' column='1'/> + <parameter type-id='type-id-100' name='newitem' filepath='Objects/tupleobject.c' line='154' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyTuple_GetItem' mangled-name='PyTuple_GetItem' filepath='Objects/tupleobject.c' line='140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_GetItem'> - <parameter type-id='type-id-100' name='op' filepath='Objects/listobject.c' line='209' column='1'/> - <parameter type-id='type-id-15' name='i' filepath='Objects/listobject.c' line='209' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/tupleobject.c' line='140' column='1'/> + <parameter type-id='type-id-15' name='i' filepath='Objects/tupleobject.c' line='140' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyTuple_Size' mangled-name='PyTuple_Size' filepath='Objects/tupleobject.c' line='129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_Size'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2203' column='1'/> + <parameter type-id='type-id-100' name='op' filepath='Objects/bytesobject.c' line='1197' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='PyTuple_New' mangled-name='PyTuple_New' filepath='Objects/tupleobject.c' line='100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_New'> - <parameter type-id='type-id-15' name='size' filepath='Objects/tupleobject.c' line='100' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='_PyTuple_DebugMallocStats' mangled-name='_PyTuple_DebugMallocStats' filepath='Objects/tupleobject.c' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTuple_DebugMallocStats'> <parameter type-id='type-id-223' name='out' filepath='Objects/tupleobject.c' line='41' column='1'/> <return type-id='type-id-4'/> </function-decl> + <function-decl name='PyTuple_New' mangled-name='PyTuple_New' filepath='Objects/tupleobject.c' line='100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_New'> + <parameter type-id='type-id-15' name='size' filepath='Objects/tupleobject.c' line='100' column='1'/> + <return type-id='type-id-100'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/typeobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyType_Type' type-id='type-id-182' mangled-name='PyType_Type' visibility='default' filepath='./Include/object.h' line='227' column='1' elf-symbol-id='PyType_Type'/> <var-decl name='PyBaseObject_Type' type-id='type-id-182' mangled-name='PyBaseObject_Type' visibility='default' filepath='./Include/object.h' line='228' column='1' elf-symbol-id='PyBaseObject_Type'/> <var-decl name='PySuper_Type' type-id='type-id-182' mangled-name='PySuper_Type' visibility='default' filepath='./Include/object.h' line='229' column='1' elf-symbol-id='PySuper_Type'/> - <function-decl name='PyType_Ready' mangled-name='PyType_Ready' filepath='Objects/typeobject.c' line='5368' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_Ready'> - <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='5368' column='1'/> + <function-decl name='PyType_Ready' mangled-name='PyType_Ready' filepath='Objects/typeobject.c' line='5391' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_Ready'> + <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='5391' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyType_LookupId' mangled-name='_PyType_LookupId' filepath='Objects/typeobject.c' line='3280' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_LookupId'> - <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='3280' column='1'/> - <parameter type-id='type-id-308' name='name' filepath='Objects/typeobject.c' line='3280' column='1'/> + <function-decl name='_PyType_LookupId' mangled-name='_PyType_LookupId' filepath='Objects/typeobject.c' line='3303' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_LookupId'> + <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='3303' column='1'/> + <parameter type-id='type-id-308' name='name' filepath='Objects/typeobject.c' line='3303' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyType_Lookup' mangled-name='_PyType_Lookup' filepath='Objects/typeobject.c' line='3220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_Lookup'> - <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='3220' column='1'/> - <parameter type-id='type-id-100' name='name' filepath='Objects/typeobject.c' line='3220' column='1'/> + <function-decl name='_PyType_Lookup' mangled-name='_PyType_Lookup' filepath='Objects/typeobject.c' line='3243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_Lookup'> + <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='3243' column='1'/> + <parameter type-id='type-id-100' name='name' filepath='Objects/typeobject.c' line='3243' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyType_GetModuleState' mangled-name='PyType_GetModuleState' filepath='Objects/typeobject.c' line='3146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetModuleState'> - <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='3146' column='1'/> + <function-decl name='PyType_GetModuleState' mangled-name='PyType_GetModuleState' filepath='Objects/typeobject.c' line='3169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetModuleState'> + <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='3169' column='1'/> <return type-id='type-id-32'/> </function-decl> - <function-decl name='PyType_GetModule' mangled-name='PyType_GetModule' filepath='Objects/typeobject.c' line='3122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetModule'> - <parameter type-id='type-id-75' name='tp' filepath='Objects/object.c' line='163' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyType_GetSlot' mangled-name='PyType_GetSlot' filepath='Objects/typeobject.c' line='3108' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetSlot'> - <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='3108' column='1'/> - <parameter type-id='type-id-8' name='slot' filepath='Objects/typeobject.c' line='3108' column='1'/> + <function-decl name='PyType_GetSlot' mangled-name='PyType_GetSlot' filepath='Objects/typeobject.c' line='3131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetSlot'> + <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='3131' column='1'/> + <parameter type-id='type-id-8' name='slot' filepath='Objects/typeobject.c' line='3131' column='1'/> <return type-id='type-id-32'/> </function-decl> <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-531' visibility='default' filepath='./Include/object.h' line='201' column='1' id='type-id-532'> @@ -8413,40 +10285,35 @@ <pointer-type-def type-id='type-id-534' size-in-bits='64' id='type-id-533'/> <typedef-decl name='PyType_Spec' type-id='type-id-532' filepath='./Include/object.h' line='207' column='1' id='type-id-531'/> <pointer-type-def type-id='type-id-531' size-in-bits='64' id='type-id-536'/> - <function-decl name='PyType_FromSpec' mangled-name='PyType_FromSpec' filepath='Objects/typeobject.c' line='3102' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromSpec'> - <parameter type-id='type-id-536' name='spec' filepath='Objects/typeobject.c' line='3102' column='1'/> + <function-decl name='PyType_FromSpec' mangled-name='PyType_FromSpec' filepath='Objects/typeobject.c' line='3117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromSpec'> + <parameter type-id='type-id-536' name='spec' filepath='Objects/typeobject.c' line='3117' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyType_FromModuleAndSpec' mangled-name='PyType_FromModuleAndSpec' filepath='Objects/typeobject.c' line='2876' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromModuleAndSpec'> - <parameter type-id='type-id-100' name='module' filepath='Objects/typeobject.c' line='2876' column='1'/> - <parameter type-id='type-id-536' name='spec' filepath='Objects/typeobject.c' line='2876' column='1'/> - <parameter type-id='type-id-100' name='bases' filepath='Objects/typeobject.c' line='2876' column='1'/> + <function-decl name='PyType_FromModuleAndSpec' mangled-name='PyType_FromModuleAndSpec' filepath='Objects/typeobject.c' line='2891' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromModuleAndSpec'> + <parameter type-id='type-id-100' name='module' filepath='Objects/typeobject.c' line='2891' column='1'/> + <parameter type-id='type-id-536' name='spec' filepath='Objects/typeobject.c' line='2891' column='1'/> + <parameter type-id='type-id-100' name='bases' filepath='Objects/typeobject.c' line='2891' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyType_FromSpecWithBases' mangled-name='PyType_FromSpecWithBases' filepath='Objects/typeobject.c' line='2870' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromSpecWithBases'> - <parameter type-id='type-id-536' name='spec' filepath='Objects/typeobject.c' line='2870' column='1'/> - <parameter type-id='type-id-100' name='bases' filepath='Objects/typeobject.c' line='2870' column='1'/> + <function-decl name='PyType_FromSpecWithBases' mangled-name='PyType_FromSpecWithBases' filepath='Objects/typeobject.c' line='2885' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromSpecWithBases'> + <parameter type-id='type-id-536' name='spec' filepath='Objects/typeobject.c' line='2885' column='1'/> + <parameter type-id='type-id-100' name='bases' filepath='Objects/typeobject.c' line='2885' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyType_CalculateMetaclass' mangled-name='_PyType_CalculateMetaclass' filepath='Objects/typeobject.c' line='2341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_CalculateMetaclass'> - <parameter type-id='type-id-75' name='metatype' filepath='Objects/typeobject.c' line='2341' column='1'/> - <parameter type-id='type-id-100' name='bases' filepath='Objects/typeobject.c' line='2341' column='1'/> + <function-decl name='_PyType_CalculateMetaclass' mangled-name='_PyType_CalculateMetaclass' filepath='Objects/typeobject.c' line='2356' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_CalculateMetaclass'> + <parameter type-id='type-id-75' name='metatype' filepath='Objects/typeobject.c' line='2356' column='1'/> + <parameter type-id='type-id-100' name='bases' filepath='Objects/typeobject.c' line='2356' column='1'/> <return type-id='type-id-75'/> </function-decl> - <function-decl name='PyType_GetFlags' mangled-name='PyType_GetFlags' filepath='Objects/typeobject.c' line='2334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetFlags'> - <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='2334' column='1'/> + <function-decl name='PyType_GetFlags' mangled-name='PyType_GetFlags' filepath='Objects/typeobject.c' line='2349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetFlags'> + <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='2349' column='1'/> <return type-id='type-id-33'/> </function-decl> - <function-decl name='_PyObject_LookupSpecial' mangled-name='_PyObject_LookupSpecial' filepath='Objects/typeobject.c' line='1442' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_LookupSpecial'> - <parameter type-id='type-id-100' name='self' filepath='Objects/typeobject.c' line='1442' column='1'/> - <parameter type-id='type-id-476' name='attrid' filepath='Objects/typeobject.c' line='1442' column='1'/> + <function-decl name='_PyObject_LookupSpecial' mangled-name='_PyObject_LookupSpecial' filepath='Objects/typeobject.c' line='1457' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_LookupSpecial'> + <parameter type-id='type-id-100' name='self' filepath='Objects/typeobject.c' line='1457' column='1'/> + <parameter type-id='type-id-476' name='attrid' filepath='Objects/typeobject.c' line='1457' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyType_IsSubtype' mangled-name='PyType_IsSubtype' filepath='Objects/typeobject.c' line='1404' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_IsSubtype'> - <parameter type-id='type-id-75' name='a' filepath='Objects/typeobject.c' line='1404' column='1'/> - <parameter type-id='type-id-75' name='b' filepath='Objects/typeobject.c' line='1404' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='PyType_GenericNew' mangled-name='PyType_GenericNew' filepath='Objects/typeobject.c' line='1073' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GenericNew'> <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='1073' column='1'/> <parameter type-id='type-id-100' name='args' filepath='Objects/typeobject.c' line='1073' column='1'/> @@ -8462,27 +10329,132 @@ <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='447' column='1'/> <return type-id='type-id-3'/> </function-decl> - <function-decl name='PyType_Modified' mangled-name='PyType_Modified' filepath='Objects/typeobject.c' line='261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_Modified'> - <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='261' column='1'/> - <return type-id='type-id-4'/> - </function-decl> <function-decl name='PyType_ClearCache' mangled-name='PyType_ClearCache' filepath='Objects/typeobject.c' line='221' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_ClearCache'> <return type-id='type-id-107'/> </function-decl> - <function-decl name='_PyType_GetTextSignatureFromInternalDoc' mangled-name='_PyType_GetTextSignatureFromInternalDoc' filepath='Objects/typeobject.c' line='199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_GetTextSignatureFromInternalDoc'> - <parameter type-id='type-id-3' name='name' filepath='Objects/typeobject.c' line='199' column='1'/> - <parameter type-id='type-id-3' name='internal_doc' filepath='Objects/typeobject.c' line='199' column='1'/> - <return type-id='type-id-100'/> + <function-decl name='_PyType_CheckConsistency' mangled-name='_PyType_CheckConsistency' filepath='Objects/typeobject.c' line='151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_CheckConsistency'> + <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='151' column='1'/> + <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyType_GetDocFromInternalDoc' mangled-name='_PyType_GetDocFromInternalDoc' filepath='Objects/typeobject.c' line='187' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_GetDocFromInternalDoc'> <parameter type-id='type-id-3' name='name' filepath='Objects/typeobject.c' line='187' column='1'/> <parameter type-id='type-id-3' name='internal_doc' filepath='Objects/typeobject.c' line='187' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyType_CheckConsistency' mangled-name='_PyType_CheckConsistency' filepath='Objects/typeobject.c' line='151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_CheckConsistency'> - <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='151' column='1'/> + <function-decl name='_PyType_GetTextSignatureFromInternalDoc' mangled-name='_PyType_GetTextSignatureFromInternalDoc' filepath='Objects/typeobject.c' line='199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_GetTextSignatureFromInternalDoc'> + <parameter type-id='type-id-3' name='name' filepath='Objects/typeobject.c' line='199' column='1'/> + <parameter type-id='type-id-3' name='internal_doc' filepath='Objects/typeobject.c' line='199' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyType_Modified' mangled-name='PyType_Modified' filepath='Objects/typeobject.c' line='261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_Modified'> + <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='261' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyType_IsSubtype' mangled-name='PyType_IsSubtype' filepath='Objects/typeobject.c' line='1419' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_IsSubtype'> + <parameter type-id='type-id-75' name='a' filepath='Objects/typeobject.c' line='1419' column='1'/> + <parameter type-id='type-id-75' name='b' filepath='Objects/typeobject.c' line='1419' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='PyType_GetModule' mangled-name='PyType_GetModule' filepath='Objects/typeobject.c' line='3145' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetModule'> + <parameter type-id='type-id-75' name='type' filepath='Objects/typeobject.c' line='3145' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyThreadState_GetFrame' mangled-name='PyThreadState_GetFrame' filepath='./Include/pystate.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFrame_GetCode' mangled-name='PyFrame_GetCode' filepath='./Include/pyframe.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_Call_Prepend' mangled-name='_PyObject_Call_Prepend' filepath='./Include/internal/pycore_call.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_Call' mangled-name='_PyObject_Call' filepath='./Include/internal/pycore_call.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_HashNotImplemented' mangled-name='PyObject_HashNotImplemented' filepath='./Include/object.h' line='260' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDescr_NewWrapper' mangled-name='PyDescr_NewWrapper' filepath='./Include/descrobject.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyStaticMethod_New' mangled-name='PyStaticMethod_New' filepath='./Include/funcobject.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDescr_NewClassMethod' mangled-name='PyDescr_NewClassMethod' filepath='./Include/descrobject.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDescr_NewMethod' mangled-name='PyDescr_NewMethod' filepath='./Include/descrobject.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDescr_NewMember' mangled-name='PyDescr_NewMember' filepath='./Include/descrobject.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDescr_NewGetSet' mangled-name='PyDescr_NewGetSet' filepath='./Include/descrobject.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDictKeys_DecRef' mangled-name='_PyDictKeys_DecRef' filepath='Objects/typeobject.c' line='3476' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_GenericSetAttrWithDict' mangled-name='_PyObject_GenericSetAttrWithDict' filepath='./Include/cpython/object.h' line='342' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyModule_GetState' mangled-name='PyModule_GetState' filepath='./Include/moduleobject.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_DelItemString' mangled-name='PyDict_DelItemString' filepath='./Include/dictobject.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_NewKeysForClass' mangled-name='_PyDict_NewKeysForClass' filepath='./Include/cpython/dictobject.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_IsIdentifier' mangled-name='PyUnicode_IsIdentifier' filepath='./Include/unicodeobject.h' line='1020' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_DelItemId' mangled-name='_PyDict_DelItemId' filepath='./Include/cpython/dictobject.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyEval_GetGlobals' mangled-name='PyEval_GetGlobals' filepath='./Include/ceval.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Mangle' mangled-name='_Py_Mangle' filepath='./Include/compile.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyClassMethod_New' mangled-name='PyClassMethod_New' filepath='./Include/funcobject.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_GenericGetDict' mangled-name='PyObject_GenericGetDict' filepath='./Include/cpython/dictobject.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyWeakref_ClearRef' mangled-name='_PyWeakref_ClearRef' filepath='./Include/weakrefobject.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_GC_Malloc' mangled-name='_PyObject_GC_Malloc' filepath='./Include/cpython/objimpl.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_IsFreed' mangled-name='_PyObject_IsFreed' filepath='./Include/cpython/object.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyImport_GetModule' mangled-name='PyImport_GetModule' filepath='./Include/import.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyImport_Import' mangled-name='PyImport_Import' filepath='./Include/import.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_KeysSize' mangled-name='_PyDict_KeysSize' filepath='./Include/cpython/dictobject.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_RealIsInstance' mangled-name='_PyObject_RealIsInstance' filepath='./Include/cpython/abstract.h' line='365' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDictProxy_New' mangled-name='PyDictProxy_New' filepath='./Include/descrobject.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyWeakref_NewRef' mangled-name='PyWeakref_NewRef' filepath='./Include/weakrefobject.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_LookupAttr' mangled-name='_PyObject_LookupAttr' filepath='./Include/cpython/object.h' line='327' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/unicodeobject.c' comp-dir-path='/src' language='LANG_C99'> @@ -8491,847 +10463,1035 @@ </array-type-def> <qualified-type-def type-id='type-id-537' const='yes' id='type-id-538'/> - <var-decl name='_Py_ascii_whitespace' type-id='type-id-538' mangled-name='_Py_ascii_whitespace' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='1054' column='1' elf-symbol-id='_Py_ascii_whitespace'/> + <var-decl name='_Py_ascii_whitespace' type-id='type-id-538' mangled-name='_Py_ascii_whitespace' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='1062' column='1' elf-symbol-id='_Py_ascii_whitespace'/> <var-decl name='PyUnicode_Type' type-id='type-id-182' mangled-name='PyUnicode_Type' visibility='default' filepath='./Include/unicodeobject.h' line='111' column='1' elf-symbol-id='PyUnicode_Type'/> <var-decl name='PyUnicodeIter_Type' type-id='type-id-182' mangled-name='PyUnicodeIter_Type' visibility='default' filepath='./Include/unicodeobject.h' line='112' column='1' elf-symbol-id='PyUnicodeIter_Type'/> - <function-decl name='PyInit__string' mangled-name='PyInit__string' filepath='Objects/unicodeobject.c' line='16258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__string'> + <function-decl name='PyInit__string' mangled-name='PyInit__string' filepath='Objects/unicodeobject.c' line='16323' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__string'> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsUnicodeCopy' mangled-name='PyUnicode_AsUnicodeCopy' filepath='Objects/unicodeobject.c' line='15967' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeCopy'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='15967' column='1'/> + <function-decl name='PyUnicode_AsUnicodeCopy' mangled-name='PyUnicode_AsUnicodeCopy' filepath='Objects/unicodeobject.c' line='16032' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeCopy'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='16032' column='1'/> <return type-id='type-id-470'/> </function-decl> - <function-decl name='Py_UNICODE_strrchr' mangled-name='Py_UNICODE_strrchr' filepath='Objects/unicodeobject.c' line='15954' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strrchr'> - <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='15954' column='1'/> - <parameter type-id='type-id-453' name='c' filepath='Objects/unicodeobject.c' line='15954' column='1'/> + <function-decl name='Py_UNICODE_strrchr' mangled-name='Py_UNICODE_strrchr' filepath='Objects/unicodeobject.c' line='16019' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strrchr'> + <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='16019' column='1'/> + <parameter type-id='type-id-453' name='c' filepath='Objects/unicodeobject.c' line='16019' column='1'/> <return type-id='type-id-470'/> </function-decl> - <function-decl name='Py_UNICODE_strchr' mangled-name='Py_UNICODE_strchr' filepath='Objects/unicodeobject.c' line='15944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strchr'> - <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='15954' column='1'/> - <parameter type-id='type-id-453' name='c' filepath='Objects/unicodeobject.c' line='15954' column='1'/> + <function-decl name='Py_UNICODE_strchr' mangled-name='Py_UNICODE_strchr' filepath='Objects/unicodeobject.c' line='16009' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strchr'> + <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='16009' column='1'/> + <parameter type-id='type-id-453' name='c' filepath='Objects/unicodeobject.c' line='16009' column='1'/> <return type-id='type-id-470'/> </function-decl> - <function-decl name='Py_UNICODE_strncmp' mangled-name='Py_UNICODE_strncmp' filepath='Objects/unicodeobject.c' line='15927' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strncmp'> - <parameter type-id='type-id-455' name='s1' filepath='Objects/unicodeobject.c' line='15927' column='1'/> - <parameter type-id='type-id-455' name='s2' filepath='Objects/unicodeobject.c' line='15927' column='1'/> - <parameter type-id='type-id-191' name='n' filepath='Objects/unicodeobject.c' line='15927' column='1'/> + <function-decl name='Py_UNICODE_strncmp' mangled-name='Py_UNICODE_strncmp' filepath='Objects/unicodeobject.c' line='15992' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strncmp'> + <parameter type-id='type-id-455' name='s1' filepath='Objects/unicodeobject.c' line='15992' column='1'/> + <parameter type-id='type-id-455' name='s2' filepath='Objects/unicodeobject.c' line='15992' column='1'/> + <parameter type-id='type-id-191' name='n' filepath='Objects/unicodeobject.c' line='15992' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='Py_UNICODE_strcmp' mangled-name='Py_UNICODE_strcmp' filepath='Objects/unicodeobject.c' line='15913' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strcmp'> - <parameter type-id='type-id-455' name='s1' filepath='Objects/unicodeobject.c' line='15913' column='1'/> - <parameter type-id='type-id-455' name='s2' filepath='Objects/unicodeobject.c' line='15913' column='1'/> + <function-decl name='Py_UNICODE_strcmp' mangled-name='Py_UNICODE_strcmp' filepath='Objects/unicodeobject.c' line='15978' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strcmp'> + <parameter type-id='type-id-455' name='s1' filepath='Objects/unicodeobject.c' line='15978' column='1'/> + <parameter type-id='type-id-455' name='s2' filepath='Objects/unicodeobject.c' line='15978' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='Py_UNICODE_strcat' mangled-name='Py_UNICODE_strcat' filepath='Objects/unicodeobject.c' line='15904' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strcat'> - <parameter type-id='type-id-470' name='s1' filepath='Objects/unicodeobject.c' line='15904' column='1'/> - <parameter type-id='type-id-455' name='s2' filepath='Objects/unicodeobject.c' line='15904' column='1'/> + <function-decl name='Py_UNICODE_strcat' mangled-name='Py_UNICODE_strcat' filepath='Objects/unicodeobject.c' line='15969' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strcat'> + <parameter type-id='type-id-470' name='s1' filepath='Objects/unicodeobject.c' line='15969' column='1'/> + <parameter type-id='type-id-455' name='s2' filepath='Objects/unicodeobject.c' line='15969' column='1'/> <return type-id='type-id-470'/> </function-decl> - <function-decl name='Py_UNICODE_strncpy' mangled-name='Py_UNICODE_strncpy' filepath='Objects/unicodeobject.c' line='15894' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strncpy'> - <parameter type-id='type-id-470' name='s1' filepath='Objects/unicodeobject.c' line='15894' column='1'/> - <parameter type-id='type-id-455' name='s2' filepath='Objects/unicodeobject.c' line='15894' column='1'/> - <parameter type-id='type-id-191' name='n' filepath='Objects/unicodeobject.c' line='15894' column='1'/> + <function-decl name='Py_UNICODE_strncpy' mangled-name='Py_UNICODE_strncpy' filepath='Objects/unicodeobject.c' line='15959' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strncpy'> + <parameter type-id='type-id-470' name='s1' filepath='Objects/unicodeobject.c' line='15959' column='1'/> + <parameter type-id='type-id-455' name='s2' filepath='Objects/unicodeobject.c' line='15959' column='1'/> + <parameter type-id='type-id-191' name='n' filepath='Objects/unicodeobject.c' line='15959' column='1'/> <return type-id='type-id-470'/> </function-decl> - <function-decl name='Py_UNICODE_strcpy' mangled-name='Py_UNICODE_strcpy' filepath='Objects/unicodeobject.c' line='15886' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strcpy'> - <parameter type-id='type-id-470' name='s1' filepath='Objects/unicodeobject.c' line='15904' column='1'/> - <parameter type-id='type-id-455' name='s2' filepath='Objects/unicodeobject.c' line='15904' column='1'/> + <function-decl name='Py_UNICODE_strcpy' mangled-name='Py_UNICODE_strcpy' filepath='Objects/unicodeobject.c' line='15951' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strcpy'> + <parameter type-id='type-id-470' name='s1' filepath='Objects/unicodeobject.c' line='15951' column='1'/> + <parameter type-id='type-id-455' name='s2' filepath='Objects/unicodeobject.c' line='15951' column='1'/> <return type-id='type-id-470'/> </function-decl> - <function-decl name='Py_UNICODE_strlen' mangled-name='Py_UNICODE_strlen' filepath='Objects/unicodeobject.c' line='15880' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strlen'> - <parameter type-id='type-id-455' name='u' filepath='Objects/unicodeobject.c' line='15880' column='1'/> + <function-decl name='Py_UNICODE_strlen' mangled-name='Py_UNICODE_strlen' filepath='Objects/unicodeobject.c' line='15945' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strlen'> + <parameter type-id='type-id-455' name='u' filepath='Objects/unicodeobject.c' line='15945' column='1'/> <return type-id='type-id-191'/> </function-decl> - <function-decl name='PyUnicode_InternFromString' mangled-name='PyUnicode_InternFromString' filepath='Objects/unicodeobject.c' line='15647' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternFromString'> - <parameter type-id='type-id-3' name='cp' filepath='Objects/unicodeobject.c' line='15647' column='1'/> + <function-decl name='PyUnicode_InternFromString' mangled-name='PyUnicode_InternFromString' filepath='Objects/unicodeobject.c' line='15712' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternFromString'> + <parameter type-id='type-id-3' name='cp' filepath='Objects/unicodeobject.c' line='15712' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_InternImmortal' mangled-name='PyUnicode_InternImmortal' filepath='Objects/unicodeobject.c' line='15637' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternImmortal'> - <parameter type-id='type-id-303' name='p' filepath='Objects/unicodeobject.c' line='15637' column='1'/> + <function-decl name='PyUnicode_InternImmortal' mangled-name='PyUnicode_InternImmortal' filepath='Objects/unicodeobject.c' line='15702' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternImmortal'> + <parameter type-id='type-id-303' name='p' filepath='Objects/unicodeobject.c' line='15702' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyUnicode_InternInPlace' mangled-name='PyUnicode_InternInPlace' filepath='Objects/unicodeobject.c' line='15584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternInPlace'> - <parameter type-id='type-id-303' name='p' filepath='Objects/unicodeobject.c' line='15584' column='1'/> + <function-decl name='PyUnicode_InternInPlace' mangled-name='PyUnicode_InternInPlace' filepath='Objects/unicodeobject.c' line='15649' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternInPlace'> + <parameter type-id='type-id-303' name='p' filepath='Objects/unicodeobject.c' line='15649' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyUnicode_Format' mangled-name='PyUnicode_Format' filepath='Objects/unicodeobject.c' line='15273' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Format'> - <parameter type-id='type-id-100' name='format' filepath='Objects/unicodeobject.c' line='15273' column='1'/> - <parameter type-id='type-id-100' name='args' filepath='Objects/unicodeobject.c' line='15273' column='1'/> + <function-decl name='PyUnicode_Format' mangled-name='PyUnicode_Format' filepath='Objects/unicodeobject.c' line='15338' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Format'> + <parameter type-id='type-id-100' name='format' filepath='Objects/unicodeobject.c' line='15338' column='1'/> + <parameter type-id='type-id-100' name='args' filepath='Objects/unicodeobject.c' line='15338' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_FormatLong' mangled-name='_PyUnicode_FormatLong' filepath='Objects/unicodeobject.c' line='14499' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FormatLong'> - <parameter type-id='type-id-100' name='val' filepath='Objects/unicodeobject.c' line='14499' column='1'/> - <parameter type-id='type-id-8' name='alt' filepath='Objects/unicodeobject.c' line='14499' column='1'/> - <parameter type-id='type-id-8' name='prec' filepath='Objects/unicodeobject.c' line='14499' column='1'/> - <parameter type-id='type-id-8' name='type' filepath='Objects/unicodeobject.c' line='14499' column='1'/> + <function-decl name='_PyUnicode_FormatLong' mangled-name='_PyUnicode_FormatLong' filepath='Objects/unicodeobject.c' line='14564' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FormatLong'> + <parameter type-id='type-id-100' name='val' filepath='Objects/unicodeobject.c' line='14564' column='1'/> + <parameter type-id='type-id-8' name='alt' filepath='Objects/unicodeobject.c' line='14564' column='1'/> + <parameter type-id='type-id-8' name='prec' filepath='Objects/unicodeobject.c' line='14564' column='1'/> + <parameter type-id='type-id-8' name='type' filepath='Objects/unicodeobject.c' line='14564' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicodeWriter_Dealloc' mangled-name='_PyUnicodeWriter_Dealloc' filepath='Objects/unicodeobject.c' line='14136' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Dealloc'> - <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='14136' column='1'/> + <function-decl name='_PyUnicodeWriter_Dealloc' mangled-name='_PyUnicodeWriter_Dealloc' filepath='Objects/unicodeobject.c' line='14201' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Dealloc'> + <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='14201' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyUnicodeWriter_Finish' mangled-name='_PyUnicodeWriter_Finish' filepath='Objects/unicodeobject.c' line='14104' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Finish'> - <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='14104' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='_PyUnicodeWriter_WriteLatin1String' mangled-name='_PyUnicodeWriter_WriteLatin1String' filepath='Objects/unicodeobject.c' line='14090' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteLatin1String'> - <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='14090' column='1'/> - <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='14091' column='1'/> - <parameter type-id='type-id-15' name='len' filepath='Objects/unicodeobject.c' line='14091' column='1'/> + <function-decl name='_PyUnicodeWriter_WriteLatin1String' mangled-name='_PyUnicodeWriter_WriteLatin1String' filepath='Objects/unicodeobject.c' line='14155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteLatin1String'> + <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='14155' column='1'/> + <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='14156' column='1'/> + <parameter type-id='type-id-15' name='len' filepath='Objects/unicodeobject.c' line='14156' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyUnicodeWriter_WriteASCIIString' mangled-name='_PyUnicodeWriter_WriteASCIIString' filepath='Objects/unicodeobject.c' line='14030' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteASCIIString'> - <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='14030' column='1'/> - <parameter type-id='type-id-3' name='ascii' filepath='Objects/unicodeobject.c' line='14031' column='1'/> - <parameter type-id='type-id-15' name='len' filepath='Objects/unicodeobject.c' line='14031' column='1'/> + <function-decl name='_PyUnicodeWriter_WriteASCIIString' mangled-name='_PyUnicodeWriter_WriteASCIIString' filepath='Objects/unicodeobject.c' line='14095' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteASCIIString'> + <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='14095' column='1'/> + <parameter type-id='type-id-3' name='ascii' filepath='Objects/unicodeobject.c' line='14096' column='1'/> + <parameter type-id='type-id-15' name='len' filepath='Objects/unicodeobject.c' line='14096' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyUnicodeWriter_WriteSubstring' mangled-name='_PyUnicodeWriter_WriteSubstring' filepath='Objects/unicodeobject.c' line='13995' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteSubstring'> - <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='13995' column='1'/> - <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='13995' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='13996' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='13996' column='1'/> + <function-decl name='_PyUnicodeWriter_WriteStr' mangled-name='_PyUnicodeWriter_WriteStr' filepath='Objects/unicodeobject.c' line='14029' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteStr'> + <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='14029' column='1'/> + <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='14029' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyUnicodeWriter_WriteStr' mangled-name='_PyUnicodeWriter_WriteStr' filepath='Objects/unicodeobject.c' line='13964' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteStr'> - <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='13964' column='1'/> - <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='13964' column='1'/> + <function-decl name='_PyUnicodeWriter_WriteChar' mangled-name='_PyUnicodeWriter_WriteChar' filepath='Objects/unicodeobject.c' line='14023' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteChar'> + <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='14023' column='1'/> + <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodeobject.c' line='14023' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyUnicodeWriter_WriteChar' mangled-name='_PyUnicodeWriter_WriteChar' filepath='Objects/unicodeobject.c' line='13958' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteChar'> - <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='13958' column='1'/> - <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodeobject.c' line='13958' column='1'/> + <function-decl name='_PyUnicodeWriter_PrepareKindInternal' mangled-name='_PyUnicodeWriter_PrepareKindInternal' filepath='Objects/unicodeobject.c' line='13991' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_PrepareKindInternal'> + <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='13991' column='1'/> + <parameter type-id='type-id-473' name='kind' filepath='Objects/unicodeobject.c' line='13992' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyUnicodeWriter_PrepareKindInternal' mangled-name='_PyUnicodeWriter_PrepareKindInternal' filepath='Objects/unicodeobject.c' line='13926' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_PrepareKindInternal'> - <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='13926' column='1'/> - <parameter type-id='type-id-473' name='kind' filepath='Objects/unicodeobject.c' line='13927' column='1'/> + <function-decl name='_PyUnicodeWriter_PrepareInternal' mangled-name='_PyUnicodeWriter_PrepareInternal' filepath='Objects/unicodeobject.c' line='13914' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_PrepareInternal'> + <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='13914' column='1'/> + <parameter type-id='type-id-15' name='length' filepath='Objects/unicodeobject.c' line='13915' column='1'/> + <parameter type-id='type-id-474' name='maxchar' filepath='Objects/unicodeobject.c' line='13915' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyUnicodeWriter_PrepareInternal' mangled-name='_PyUnicodeWriter_PrepareInternal' filepath='Objects/unicodeobject.c' line='13849' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_PrepareInternal'> - <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='13849' column='1'/> - <parameter type-id='type-id-15' name='length' filepath='Objects/unicodeobject.c' line='13850' column='1'/> - <parameter type-id='type-id-474' name='maxchar' filepath='Objects/unicodeobject.c' line='13850' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='_PyUnicodeWriter_Init' mangled-name='_PyUnicodeWriter_Init' filepath='Objects/unicodeobject.c' line='13825' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Init'> - <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='13825' column='1'/> + <function-decl name='_PyUnicodeWriter_Init' mangled-name='_PyUnicodeWriter_Init' filepath='Objects/unicodeobject.c' line='13890' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Init'> + <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='13890' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyUnicode_RSplit' mangled-name='PyUnicode_RSplit' filepath='Objects/unicodeobject.c' line='13400' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RSplit'> - <parameter type-id='type-id-100' name='s' filepath='Objects/unicodeobject.c' line='13400' column='1'/> - <parameter type-id='type-id-100' name='sep' filepath='Objects/unicodeobject.c' line='13400' column='1'/> - <parameter type-id='type-id-15' name='maxsplit' filepath='Objects/unicodeobject.c' line='13400' column='1'/> + <function-decl name='PyUnicode_RSplit' mangled-name='PyUnicode_RSplit' filepath='Objects/unicodeobject.c' line='13465' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RSplit'> + <parameter type-id='type-id-100' name='s' filepath='Objects/unicodeobject.c' line='13465' column='1'/> + <parameter type-id='type-id-100' name='sep' filepath='Objects/unicodeobject.c' line='13465' column='1'/> + <parameter type-id='type-id-15' name='maxsplit' filepath='Objects/unicodeobject.c' line='13465' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_RPartition' mangled-name='PyUnicode_RPartition' filepath='Objects/unicodeobject.c' line='13300' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RPartition'> - <parameter type-id='type-id-100' name='str_obj' filepath='Objects/unicodeobject.c' line='13300' column='1'/> - <parameter type-id='type-id-100' name='sep_obj' filepath='Objects/unicodeobject.c' line='13300' column='1'/> + <function-decl name='PyUnicode_Split' mangled-name='PyUnicode_Split' filepath='Objects/unicodeobject.c' line='13269' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Split'> + <parameter type-id='type-id-100' name='s' filepath='Objects/unicodeobject.c' line='13465' column='1'/> + <parameter type-id='type-id-100' name='sep' filepath='Objects/unicodeobject.c' line='13465' column='1'/> + <parameter type-id='type-id-15' name='maxsplit' filepath='Objects/unicodeobject.c' line='13465' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_Partition' mangled-name='PyUnicode_Partition' filepath='Objects/unicodeobject.c' line='13242' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Partition'> - <parameter type-id='type-id-100' name='str_obj' filepath='Objects/unicodeobject.c' line='13300' column='1'/> - <parameter type-id='type-id-100' name='sep_obj' filepath='Objects/unicodeobject.c' line='13300' column='1'/> + <function-decl name='PyUnicode_Replace' mangled-name='PyUnicode_Replace' filepath='Objects/unicodeobject.c' line='12917' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Replace'> + <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='12917' column='1'/> + <parameter type-id='type-id-100' name='substr' filepath='Objects/unicodeobject.c' line='12918' column='1'/> + <parameter type-id='type-id-100' name='replstr' filepath='Objects/unicodeobject.c' line='12919' column='1'/> + <parameter type-id='type-id-15' name='maxcount' filepath='Objects/unicodeobject.c' line='12920' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_Split' mangled-name='PyUnicode_Split' filepath='Objects/unicodeobject.c' line='13204' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Split'> - <parameter type-id='type-id-100' name='s' filepath='Objects/unicodeobject.c' line='13400' column='1'/> - <parameter type-id='type-id-100' name='sep' filepath='Objects/unicodeobject.c' line='13400' column='1'/> - <parameter type-id='type-id-15' name='maxsplit' filepath='Objects/unicodeobject.c' line='13400' column='1'/> + <function-decl name='PyUnicode_Substring' mangled-name='PyUnicode_Substring' filepath='Objects/unicodeobject.c' line='12675' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Substring'> + <parameter type-id='type-id-100' name='self' filepath='Objects/unicodeobject.c' line='12675' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='12675' column='1'/> + <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='12675' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_Replace' mangled-name='PyUnicode_Replace' filepath='Objects/unicodeobject.c' line='12852' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Replace'> - <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='12852' column='1'/> - <parameter type-id='type-id-100' name='substr' filepath='Objects/unicodeobject.c' line='12853' column='1'/> - <parameter type-id='type-id-100' name='replstr' filepath='Objects/unicodeobject.c' line='12854' column='1'/> - <parameter type-id='type-id-15' name='maxcount' filepath='Objects/unicodeobject.c' line='12855' column='1'/> + <function-decl name='_PyUnicode_XStrip' mangled-name='_PyUnicode_XStrip' filepath='Objects/unicodeobject.c' line='12625' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_XStrip'> + <parameter type-id='type-id-100' name='self' filepath='Objects/unicodeobject.c' line='12625' column='1'/> + <parameter type-id='type-id-8' name='striptype' filepath='Objects/unicodeobject.c' line='12625' column='1'/> + <parameter type-id='type-id-100' name='sepobj' filepath='Objects/unicodeobject.c' line='12625' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_Substring' mangled-name='PyUnicode_Substring' filepath='Objects/unicodeobject.c' line='12610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Substring'> - <parameter type-id='type-id-100' name='self' filepath='Objects/unicodeobject.c' line='12610' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='12610' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='12610' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='_PyUnicode_XStrip' mangled-name='_PyUnicode_XStrip' filepath='Objects/unicodeobject.c' line='12560' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_XStrip'> - <parameter type-id='type-id-100' name='self' filepath='Objects/unicodeobject.c' line='12560' column='1'/> - <parameter type-id='type-id-8' name='striptype' filepath='Objects/unicodeobject.c' line='12560' column='1'/> - <parameter type-id='type-id-100' name='sepobj' filepath='Objects/unicodeobject.c' line='12560' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicode_IsIdentifier' mangled-name='PyUnicode_IsIdentifier' filepath='Objects/unicodeobject.c' line='12374' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_IsIdentifier'> - <parameter type-id='type-id-100' name='self' filepath='Objects/unicodeobject.c' line='12374' column='1'/> + <function-decl name='PyUnicode_IsIdentifier' mangled-name='PyUnicode_IsIdentifier' filepath='Objects/unicodeobject.c' line='12439' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_IsIdentifier'> + <parameter type-id='type-id-100' name='self' filepath='Objects/unicodeobject.c' line='12439' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyUnicode_ScanIdentifier' mangled-name='_PyUnicode_ScanIdentifier' filepath='Objects/unicodeobject.c' line='12337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ScanIdentifier'> - <parameter type-id='type-id-100' name='self' filepath='Objects/unicodeobject.c' line='12337' column='1'/> + <function-decl name='_PyUnicode_ScanIdentifier' mangled-name='_PyUnicode_ScanIdentifier' filepath='Objects/unicodeobject.c' line='12402' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ScanIdentifier'> + <parameter type-id='type-id-100' name='self' filepath='Objects/unicodeobject.c' line='12402' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='PyUnicode_AppendAndDel' mangled-name='PyUnicode_AppendAndDel' filepath='Objects/unicodeobject.c' line='11609' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AppendAndDel'> + <function-decl name='PyUnicode_AppendAndDel' mangled-name='PyUnicode_AppendAndDel' filepath='Objects/unicodeobject.c' line='11674' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AppendAndDel'> <parameter type-id='type-id-303' name='pv' filepath='Objects/bytesobject.c' line='2978' column='1'/> <parameter type-id='type-id-100' name='w' filepath='Objects/bytesobject.c' line='2978' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyUnicode_Append' mangled-name='PyUnicode_Append' filepath='Objects/unicodeobject.c' line='11528' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Append'> - <parameter type-id='type-id-303' name='p_left' filepath='Objects/unicodeobject.c' line='11528' column='1'/> - <parameter type-id='type-id-100' name='right' filepath='Objects/unicodeobject.c' line='11528' column='1'/> + <function-decl name='PyUnicode_Append' mangled-name='PyUnicode_Append' filepath='Objects/unicodeobject.c' line='11593' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Append'> + <parameter type-id='type-id-303' name='p_left' filepath='Objects/unicodeobject.c' line='11593' column='1'/> + <parameter type-id='type-id-100' name='right' filepath='Objects/unicodeobject.c' line='11593' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyUnicode_Concat' mangled-name='PyUnicode_Concat' filepath='Objects/unicodeobject.c' line='11480' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Concat'> - <parameter type-id='type-id-100' name='left' filepath='Objects/unicodeobject.c' line='11480' column='1'/> - <parameter type-id='type-id-100' name='right' filepath='Objects/unicodeobject.c' line='11480' column='1'/> + <function-decl name='PyUnicode_Concat' mangled-name='PyUnicode_Concat' filepath='Objects/unicodeobject.c' line='11545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Concat'> + <parameter type-id='type-id-100' name='left' filepath='Objects/unicodeobject.c' line='11545' column='1'/> + <parameter type-id='type-id-100' name='right' filepath='Objects/unicodeobject.c' line='11545' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_Contains' mangled-name='PyUnicode_Contains' filepath='Objects/unicodeobject.c' line='11417' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Contains'> - <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='11417' column='1'/> - <parameter type-id='type-id-100' name='substr' filepath='Objects/unicodeobject.c' line='11417' column='1'/> + <function-decl name='_PyUnicode_EQ' mangled-name='_PyUnicode_EQ' filepath='Objects/unicodeobject.c' line='11476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EQ'> + <parameter type-id='type-id-100' name='self' filepath='Objects/exceptions.c' line='325' column='1'/> + <parameter type-id='type-id-100' name='tb' filepath='Objects/exceptions.c' line='325' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyUnicode_EQ' mangled-name='_PyUnicode_EQ' filepath='Objects/unicodeobject.c' line='11411' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EQ'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2643' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2643' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='PyUnicode_RichCompare' mangled-name='PyUnicode_RichCompare' filepath='Objects/unicodeobject.c' line='11372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RichCompare'> - <parameter type-id='type-id-100' name='left' filepath='Objects/unicodeobject.c' line='11372' column='1'/> - <parameter type-id='type-id-100' name='right' filepath='Objects/unicodeobject.c' line='11372' column='1'/> - <parameter type-id='type-id-8' name='op' filepath='Objects/unicodeobject.c' line='11372' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='_PyUnicode_EqualToASCIIId' mangled-name='_PyUnicode_EqualToASCIIId' filepath='Objects/unicodeobject.c' line='11327' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EqualToASCIIId'> - <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='857' column='1'/> - <parameter type-id='type-id-476' name='name' filepath='Objects/object.c' line='857' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='_PyUnicode_EqualToASCIIString' mangled-name='_PyUnicode_EqualToASCIIString' filepath='Objects/unicodeobject.c' line='11304' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EqualToASCIIString'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2246' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2246' column='1'/> + <function-decl name='_PyUnicode_EqualToASCIIId' mangled-name='_PyUnicode_EqualToASCIIId' filepath='Objects/unicodeobject.c' line='11392' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EqualToASCIIId'> + <parameter type-id='type-id-100' name='left' filepath='Objects/unicodeobject.c' line='11392' column='1'/> + <parameter type-id='type-id-476' name='right' filepath='Objects/unicodeobject.c' line='11392' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyUnicode_CompareWithASCIIString' mangled-name='PyUnicode_CompareWithASCIIString' filepath='Objects/unicodeobject.c' line='11225' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_CompareWithASCIIString'> - <parameter type-id='type-id-100' name='uni' filepath='Objects/unicodeobject.c' line='11225' column='1'/> - <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='11225' column='1'/> + <function-decl name='PyUnicode_CompareWithASCIIString' mangled-name='PyUnicode_CompareWithASCIIString' filepath='Objects/unicodeobject.c' line='11290' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_CompareWithASCIIString'> + <parameter type-id='type-id-100' name='uni' filepath='Objects/unicodeobject.c' line='11290' column='1'/> + <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='11290' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyUnicode_Compare' mangled-name='PyUnicode_Compare' filepath='Objects/unicodeobject.c' line='11204' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Compare'> - <parameter type-id='type-id-100' name='derived' filepath='Objects/abstract.c' line='2643' column='1'/> - <parameter type-id='type-id-100' name='cls' filepath='Objects/abstract.c' line='2643' column='1'/> + <function-decl name='PyUnicode_Compare' mangled-name='PyUnicode_Compare' filepath='Objects/unicodeobject.c' line='11269' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Compare'> + <parameter type-id='type-id-100' name='left' filepath='Objects/unicodeobject.c' line='11269' column='1'/> + <parameter type-id='type-id-100' name='right' filepath='Objects/unicodeobject.c' line='11269' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyUnicode_Splitlines' mangled-name='PyUnicode_Splitlines' filepath='Objects/unicodeobject.c' line='10390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Splitlines'> - <parameter type-id='type-id-100' name='string' filepath='Objects/unicodeobject.c' line='10390' column='1'/> - <parameter type-id='type-id-8' name='keepends' filepath='Objects/unicodeobject.c' line='10390' column='1'/> + <function-decl name='PyUnicode_Splitlines' mangled-name='PyUnicode_Splitlines' filepath='Objects/unicodeobject.c' line='10455' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Splitlines'> + <parameter type-id='type-id-100' name='string' filepath='Objects/unicodeobject.c' line='10455' column='1'/> + <parameter type-id='type-id-8' name='keepends' filepath='Objects/unicodeobject.c' line='10455' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_Fill' mangled-name='PyUnicode_Fill' filepath='Objects/unicodeobject.c' line='10314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Fill'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='10314' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='10314' column='1'/> - <parameter type-id='type-id-15' name='length' filepath='Objects/unicodeobject.c' line='10314' column='1'/> - <parameter type-id='type-id-474' name='fill_char' filepath='Objects/unicodeobject.c' line='10315' column='1'/> + <function-decl name='PyUnicode_Fill' mangled-name='PyUnicode_Fill' filepath='Objects/unicodeobject.c' line='10379' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Fill'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='10379' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='10379' column='1'/> + <parameter type-id='type-id-15' name='length' filepath='Objects/unicodeobject.c' line='10379' column='1'/> + <parameter type-id='type-id-474' name='fill_char' filepath='Objects/unicodeobject.c' line='10380' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='_PyUnicode_FastFill' mangled-name='_PyUnicode_FastFill' filepath='Objects/unicodeobject.c' line='10300' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FastFill'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='10300' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='10300' column='1'/> - <parameter type-id='type-id-15' name='length' filepath='Objects/unicodeobject.c' line='10300' column='1'/> - <parameter type-id='type-id-474' name='fill_char' filepath='Objects/unicodeobject.c' line='10301' column='1'/> + <function-decl name='_PyUnicode_FastFill' mangled-name='_PyUnicode_FastFill' filepath='Objects/unicodeobject.c' line='10365' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FastFill'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='10365' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='10365' column='1'/> + <parameter type-id='type-id-15' name='length' filepath='Objects/unicodeobject.c' line='10365' column='1'/> + <parameter type-id='type-id-474' name='fill_char' filepath='Objects/unicodeobject.c' line='10366' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyUnicode_JoinArray' mangled-name='_PyUnicode_JoinArray' filepath='Objects/unicodeobject.c' line='10128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_JoinArray'> - <parameter type-id='type-id-100' name='separator' filepath='Objects/unicodeobject.c' line='10128' column='1'/> - <parameter type-id='type-id-190' name='items' filepath='Objects/unicodeobject.c' line='10128' column='1'/> - <parameter type-id='type-id-15' name='seqlen' filepath='Objects/unicodeobject.c' line='10128' column='1'/> + <function-decl name='PyUnicode_Join' mangled-name='PyUnicode_Join' filepath='Objects/unicodeobject.c' line='10169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Join'> + <parameter type-id='type-id-100' name='separator' filepath='Objects/unicodeobject.c' line='10169' column='1'/> + <parameter type-id='type-id-100' name='seq' filepath='Objects/unicodeobject.c' line='10169' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_Join' mangled-name='PyUnicode_Join' filepath='Objects/unicodeobject.c' line='10104' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Join'> - <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1456' column='1'/> - <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='1456' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicode_Tailmatch' mangled-name='PyUnicode_Tailmatch' filepath='Objects/unicodeobject.c' line='9857' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Tailmatch'> - <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='9857' column='1'/> - <parameter type-id='type-id-100' name='substr' filepath='Objects/unicodeobject.c' line='9858' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='9859' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='9860' column='1'/> - <parameter type-id='type-id-8' name='direction' filepath='Objects/unicodeobject.c' line='9861' column='1'/> + <function-decl name='PyUnicode_Tailmatch' mangled-name='PyUnicode_Tailmatch' filepath='Objects/unicodeobject.c' line='9922' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Tailmatch'> + <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='9922' column='1'/> + <parameter type-id='type-id-100' name='substr' filepath='Objects/unicodeobject.c' line='9923' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='9924' column='1'/> + <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='9925' column='1'/> + <parameter type-id='type-id-8' name='direction' filepath='Objects/unicodeobject.c' line='9926' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='PyUnicode_FindChar' mangled-name='PyUnicode_FindChar' filepath='Objects/unicodeobject.c' line='9768' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FindChar'> - <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='9768' column='1'/> - <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodeobject.c' line='9768' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='9769' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='9769' column='1'/> - <parameter type-id='type-id-8' name='direction' filepath='Objects/unicodeobject.c' line='9770' column='1'/> + <function-decl name='PyUnicode_FindChar' mangled-name='PyUnicode_FindChar' filepath='Objects/unicodeobject.c' line='9833' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FindChar'> + <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='9833' column='1'/> + <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodeobject.c' line='9833' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='9834' column='1'/> + <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='9834' column='1'/> + <parameter type-id='type-id-8' name='direction' filepath='Objects/unicodeobject.c' line='9835' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='PyUnicode_Find' mangled-name='PyUnicode_Find' filepath='Objects/unicodeobject.c' line='9755' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Find'> - <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='9857' column='1'/> - <parameter type-id='type-id-100' name='substr' filepath='Objects/unicodeobject.c' line='9858' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='9859' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='9860' column='1'/> - <parameter type-id='type-id-8' name='direction' filepath='Objects/unicodeobject.c' line='9861' column='1'/> + <function-decl name='PyUnicode_Find' mangled-name='PyUnicode_Find' filepath='Objects/unicodeobject.c' line='9820' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Find'> + <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='9820' column='1'/> + <parameter type-id='type-id-100' name='substr' filepath='Objects/unicodeobject.c' line='9821' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='9822' column='1'/> + <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='9823' column='1'/> + <parameter type-id='type-id-8' name='direction' filepath='Objects/unicodeobject.c' line='9824' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='PyUnicode_Count' mangled-name='PyUnicode_Count' filepath='Objects/unicodeobject.c' line='9681' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Count'> - <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='9681' column='1'/> - <parameter type-id='type-id-100' name='substr' filepath='Objects/unicodeobject.c' line='9682' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='9683' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='9684' column='1'/> + <function-decl name='PyUnicode_Count' mangled-name='PyUnicode_Count' filepath='Objects/unicodeobject.c' line='9746' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Count'> + <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='9746' column='1'/> + <parameter type-id='type-id-100' name='substr' filepath='Objects/unicodeobject.c' line='9747' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='9748' column='1'/> + <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='9749' column='1'/> <return type-id='type-id-15'/> </function-decl> <pointer-type-def type-id='type-id-474' size-in-bits='64' id='type-id-539'/> - <function-decl name='_PyUnicode_InsertThousandsGrouping' mangled-name='_PyUnicode_InsertThousandsGrouping' filepath='Objects/unicodeobject.c' line='9561' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_InsertThousandsGrouping'> - <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='9562' column='1'/> - <parameter type-id='type-id-15' name='n_buffer' filepath='Objects/unicodeobject.c' line='9563' column='1'/> - <parameter type-id='type-id-100' name='digits' filepath='Objects/unicodeobject.c' line='9564' column='1'/> - <parameter type-id='type-id-15' name='d_pos' filepath='Objects/unicodeobject.c' line='9565' column='1'/> - <parameter type-id='type-id-15' name='n_digits' filepath='Objects/unicodeobject.c' line='9566' column='1'/> - <parameter type-id='type-id-15' name='min_width' filepath='Objects/unicodeobject.c' line='9567' column='1'/> - <parameter type-id='type-id-3' name='grouping' filepath='Objects/unicodeobject.c' line='9568' column='1'/> - <parameter type-id='type-id-100' name='thousands_sep' filepath='Objects/unicodeobject.c' line='9569' column='1'/> - <parameter type-id='type-id-539' name='maxchar' filepath='Objects/unicodeobject.c' line='9570' column='1'/> + <function-decl name='_PyUnicode_InsertThousandsGrouping' mangled-name='_PyUnicode_InsertThousandsGrouping' filepath='Objects/unicodeobject.c' line='9626' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_InsertThousandsGrouping'> + <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='9627' column='1'/> + <parameter type-id='type-id-15' name='n_buffer' filepath='Objects/unicodeobject.c' line='9628' column='1'/> + <parameter type-id='type-id-100' name='digits' filepath='Objects/unicodeobject.c' line='9629' column='1'/> + <parameter type-id='type-id-15' name='d_pos' filepath='Objects/unicodeobject.c' line='9630' column='1'/> + <parameter type-id='type-id-15' name='n_digits' filepath='Objects/unicodeobject.c' line='9631' column='1'/> + <parameter type-id='type-id-15' name='min_width' filepath='Objects/unicodeobject.c' line='9632' column='1'/> + <parameter type-id='type-id-3' name='grouping' filepath='Objects/unicodeobject.c' line='9633' column='1'/> + <parameter type-id='type-id-100' name='thousands_sep' filepath='Objects/unicodeobject.c' line='9634' column='1'/> + <parameter type-id='type-id-539' name='maxchar' filepath='Objects/unicodeobject.c' line='9635' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='PyUnicode_EncodeDecimal' mangled-name='PyUnicode_EncodeDecimal' filepath='Objects/unicodeobject.c' line='9372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeDecimal'> - <parameter type-id='type-id-470' name='s' filepath='Objects/unicodeobject.c' line='9372' column='1'/> - <parameter type-id='type-id-15' name='length' filepath='Objects/unicodeobject.c' line='9373' column='1'/> - <parameter type-id='type-id-7' name='output' filepath='Objects/unicodeobject.c' line='9374' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9375' column='1'/> + <function-decl name='PyUnicode_EncodeDecimal' mangled-name='PyUnicode_EncodeDecimal' filepath='Objects/unicodeobject.c' line='9437' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeDecimal'> + <parameter type-id='type-id-470' name='s' filepath='Objects/unicodeobject.c' line='9437' column='1'/> + <parameter type-id='type-id-15' name='length' filepath='Objects/unicodeobject.c' line='9438' column='1'/> + <parameter type-id='type-id-7' name='output' filepath='Objects/unicodeobject.c' line='9439' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9440' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyUnicode_TransformDecimalToASCII' mangled-name='PyUnicode_TransformDecimalToASCII' filepath='Objects/unicodeobject.c' line='9331' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_TransformDecimalToASCII'> - <parameter type-id='type-id-470' name='s' filepath='Objects/unicodeobject.c' line='9331' column='1'/> - <parameter type-id='type-id-15' name='length' filepath='Objects/unicodeobject.c' line='9332' column='1'/> + <function-decl name='PyUnicode_TransformDecimalToASCII' mangled-name='PyUnicode_TransformDecimalToASCII' filepath='Objects/unicodeobject.c' line='9396' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_TransformDecimalToASCII'> + <parameter type-id='type-id-470' name='s' filepath='Objects/unicodeobject.c' line='9396' column='1'/> + <parameter type-id='type-id-15' name='length' filepath='Objects/unicodeobject.c' line='9397' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_TransformDecimalAndSpaceToASCII' mangled-name='_PyUnicode_TransformDecimalAndSpaceToASCII' filepath='Objects/unicodeobject.c' line='9282' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_TransformDecimalAndSpaceToASCII'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='9282' column='1'/> + <function-decl name='_PyUnicode_TransformDecimalAndSpaceToASCII' mangled-name='_PyUnicode_TransformDecimalAndSpaceToASCII' filepath='Objects/unicodeobject.c' line='9347' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_TransformDecimalAndSpaceToASCII'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='9347' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_Translate' mangled-name='PyUnicode_Translate' filepath='Objects/unicodeobject.c' line='9272' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Translate'> - <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='9272' column='1'/> - <parameter type-id='type-id-100' name='mapping' filepath='Objects/unicodeobject.c' line='9273' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9274' column='1'/> + <function-decl name='PyUnicode_Translate' mangled-name='PyUnicode_Translate' filepath='Objects/unicodeobject.c' line='9337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Translate'> + <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='9337' column='1'/> + <parameter type-id='type-id-100' name='mapping' filepath='Objects/unicodeobject.c' line='9338' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9339' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_TranslateCharmap' mangled-name='PyUnicode_TranslateCharmap' filepath='Objects/unicodeobject.c' line='9257' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_TranslateCharmap'> - <parameter type-id='type-id-455' name='p' filepath='Objects/unicodeobject.c' line='9257' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='9258' column='1'/> - <parameter type-id='type-id-100' name='mapping' filepath='Objects/unicodeobject.c' line='9259' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9260' column='1'/> + <function-decl name='PyUnicode_TranslateCharmap' mangled-name='PyUnicode_TranslateCharmap' filepath='Objects/unicodeobject.c' line='9322' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_TranslateCharmap'> + <parameter type-id='type-id-455' name='p' filepath='Objects/unicodeobject.c' line='9322' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='9323' column='1'/> + <parameter type-id='type-id-100' name='mapping' filepath='Objects/unicodeobject.c' line='9324' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9325' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsCharmapString' mangled-name='PyUnicode_AsCharmapString' filepath='Objects/unicodeobject.c' line='8832' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsCharmapString'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1226' column='1'/> - <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='1226' column='1'/> + <function-decl name='PyUnicode_AsCharmapString' mangled-name='PyUnicode_AsCharmapString' filepath='Objects/unicodeobject.c' line='8897' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsCharmapString'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='8897' column='1'/> + <parameter type-id='type-id-100' name='mapping' filepath='Objects/unicodeobject.c' line='8898' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_EncodeCharmap' mangled-name='PyUnicode_EncodeCharmap' filepath='Objects/unicodeobject.c' line='8817' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeCharmap'> - <parameter type-id='type-id-455' name='p' filepath='Objects/unicodeobject.c' line='9257' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='9258' column='1'/> - <parameter type-id='type-id-100' name='mapping' filepath='Objects/unicodeobject.c' line='9259' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9260' column='1'/> + <function-decl name='PyUnicode_EncodeCharmap' mangled-name='PyUnicode_EncodeCharmap' filepath='Objects/unicodeobject.c' line='8882' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeCharmap'> + <parameter type-id='type-id-455' name='p' filepath='Objects/unicodeobject.c' line='9322' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='9323' column='1'/> + <parameter type-id='type-id-100' name='mapping' filepath='Objects/unicodeobject.c' line='9324' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9325' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_EncodeCharmap' mangled-name='_PyUnicode_EncodeCharmap' filepath='Objects/unicodeobject.c' line='8745' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeCharmap'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='8745' column='1'/> - <parameter type-id='type-id-100' name='mapping' filepath='Objects/unicodeobject.c' line='8746' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='8747' column='1'/> + <function-decl name='_PyUnicode_EncodeCharmap' mangled-name='_PyUnicode_EncodeCharmap' filepath='Objects/unicodeobject.c' line='8810' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeCharmap'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='8810' column='1'/> + <parameter type-id='type-id-100' name='mapping' filepath='Objects/unicodeobject.c' line='8811' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='8812' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_BuildEncodingMap' mangled-name='PyUnicode_BuildEncodingMap' filepath='Objects/unicodeobject.c' line='8334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_BuildEncodingMap'> - <parameter type-id='type-id-100' name='string' filepath='Objects/unicodeobject.c' line='8334' column='1'/> + <function-decl name='PyUnicode_BuildEncodingMap' mangled-name='PyUnicode_BuildEncodingMap' filepath='Objects/unicodeobject.c' line='8399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_BuildEncodingMap'> + <parameter type-id='type-id-100' name='string' filepath='Objects/unicodeobject.c' line='8399' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeCharmap' mangled-name='PyUnicode_DecodeCharmap' filepath='Objects/unicodeobject.c' line='8233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeCharmap'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='8233' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='8234' column='1'/> - <parameter type-id='type-id-100' name='mapping' filepath='Objects/unicodeobject.c' line='8235' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='8236' column='1'/> + <function-decl name='PyUnicode_DecodeCharmap' mangled-name='PyUnicode_DecodeCharmap' filepath='Objects/unicodeobject.c' line='8298' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeCharmap'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='8298' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='8299' column='1'/> + <parameter type-id='type-id-100' name='mapping' filepath='Objects/unicodeobject.c' line='8300' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='8301' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsASCIIString' mangled-name='PyUnicode_AsASCIIString' filepath='Objects/unicodeobject.c' line='7284' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsASCIIString'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <function-decl name='PyUnicode_AsASCIIString' mangled-name='PyUnicode_AsASCIIString' filepath='Objects/unicodeobject.c' line='7349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsASCIIString'> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_AsASCIIString' mangled-name='_PyUnicode_AsASCIIString' filepath='Objects/unicodeobject.c' line='7267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsASCIIString'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='7267' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7267' column='1'/> + <function-decl name='PyUnicode_EncodeASCII' mangled-name='PyUnicode_EncodeASCII' filepath='Objects/unicodeobject.c' line='7318' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeASCII'> + <parameter type-id='type-id-455' name='p' filepath='Objects/unicodeobject.c' line='7318' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='7319' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7320' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_EncodeASCII' mangled-name='PyUnicode_EncodeASCII' filepath='Objects/unicodeobject.c' line='7253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeASCII'> - <parameter type-id='type-id-455' name='p' filepath='Objects/unicodeobject.c' line='7253' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='7254' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7255' column='1'/> + <function-decl name='PyUnicode_DecodeASCII' mangled-name='PyUnicode_DecodeASCII' filepath='Objects/unicodeobject.c' line='7219' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeASCII'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='7219' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='7220' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7221' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeASCII' mangled-name='PyUnicode_DecodeASCII' filepath='Objects/unicodeobject.c' line='7154' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeASCII'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='7154' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='7155' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7156' column='1'/> + <function-decl name='PyUnicode_AsLatin1String' mangled-name='PyUnicode_AsLatin1String' filepath='Objects/unicodeobject.c' line='7211' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsLatin1String'> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsLatin1String' mangled-name='PyUnicode_AsLatin1String' filepath='Objects/unicodeobject.c' line='7146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsLatin1String'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <function-decl name='PyUnicode_EncodeLatin1' mangled-name='PyUnicode_EncodeLatin1' filepath='Objects/unicodeobject.c' line='7178' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeLatin1'> + <parameter type-id='type-id-455' name='p' filepath='Objects/unicodeobject.c' line='7318' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='7319' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7320' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_AsLatin1String' mangled-name='_PyUnicode_AsLatin1String' filepath='Objects/unicodeobject.c' line='7127' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsLatin1String'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='7267' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7267' column='1'/> + <function-decl name='PyUnicode_DecodeLatin1' mangled-name='PyUnicode_DecodeLatin1' filepath='Objects/unicodeobject.c' line='6895' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLatin1'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6895' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6896' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6897' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_EncodeLatin1' mangled-name='PyUnicode_EncodeLatin1' filepath='Objects/unicodeobject.c' line='7113' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeLatin1'> - <parameter type-id='type-id-455' name='p' filepath='Objects/unicodeobject.c' line='7253' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='7254' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7255' column='1'/> + <function-decl name='PyUnicode_EncodeRawUnicodeEscape' mangled-name='PyUnicode_EncodeRawUnicodeEscape' filepath='Objects/unicodeobject.c' line='6880' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeRawUnicodeEscape'> + <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='6880' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6881' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeLatin1' mangled-name='PyUnicode_DecodeLatin1' filepath='Objects/unicodeobject.c' line='6830' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLatin1'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6830' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6831' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6832' column='1'/> + <function-decl name='PyUnicode_AsRawUnicodeEscapeString' mangled-name='PyUnicode_AsRawUnicodeEscapeString' filepath='Objects/unicodeobject.c' line='6801' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsRawUnicodeEscapeString'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='6801' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_EncodeRawUnicodeEscape' mangled-name='PyUnicode_EncodeRawUnicodeEscape' filepath='Objects/unicodeobject.c' line='6815' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeRawUnicodeEscape'> - <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='6815' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6816' column='1'/> + <function-decl name='PyUnicode_DecodeRawUnicodeEscape' mangled-name='PyUnicode_DecodeRawUnicodeEscape' filepath='Objects/unicodeobject.c' line='6682' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeRawUnicodeEscape'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6682' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6683' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6684' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsRawUnicodeEscapeString' mangled-name='PyUnicode_AsRawUnicodeEscapeString' filepath='Objects/unicodeobject.c' line='6736' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsRawUnicodeEscapeString'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='6736' column='1'/> + <function-decl name='PyUnicode_EncodeUnicodeEscape' mangled-name='PyUnicode_EncodeUnicodeEscape' filepath='Objects/unicodeobject.c' line='6665' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUnicodeEscape'> + <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='6880' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6881' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeRawUnicodeEscape' mangled-name='PyUnicode_DecodeRawUnicodeEscape' filepath='Objects/unicodeobject.c' line='6617' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeRawUnicodeEscape'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6617' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6618' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6619' column='1'/> + <function-decl name='PyUnicode_AsUnicodeEscapeString' mangled-name='PyUnicode_AsUnicodeEscapeString' filepath='Objects/unicodeobject.c' line='6547' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeEscapeString'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='6801' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_EncodeUnicodeEscape' mangled-name='PyUnicode_EncodeUnicodeEscape' filepath='Objects/unicodeobject.c' line='6600' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUnicodeEscape'> - <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='6815' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6816' column='1'/> + <function-decl name='PyUnicode_DecodeUnicodeEscape' mangled-name='PyUnicode_DecodeUnicodeEscape' filepath='Objects/unicodeobject.c' line='6537' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUnicodeEscape'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6895' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6896' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6897' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsUnicodeEscapeString' mangled-name='PyUnicode_AsUnicodeEscapeString' filepath='Objects/unicodeobject.c' line='6482' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeEscapeString'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='6736' column='1'/> + <function-decl name='_PyUnicode_DecodeUnicodeEscapeStateful' mangled-name='_PyUnicode_DecodeUnicodeEscapeStateful' filepath='Objects/unicodeobject.c' line='6514' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_DecodeUnicodeEscapeStateful'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6514' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6515' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6516' column='1'/> + <parameter type-id='type-id-158' name='consumed' filepath='Objects/unicodeobject.c' line='6517' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeUnicodeEscape' mangled-name='PyUnicode_DecodeUnicodeEscape' filepath='Objects/unicodeobject.c' line='6459' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUnicodeEscape'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6459' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6460' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6461' column='1'/> + <function-decl name='_PyUnicode_DecodeUnicodeEscapeInternal' mangled-name='_PyUnicode_DecodeUnicodeEscapeInternal' filepath='Objects/unicodeobject.c' line='6274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_DecodeUnicodeEscapeInternal'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6274' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6275' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6276' column='1'/> + <parameter type-id='type-id-158' name='consumed' filepath='Objects/unicodeobject.c' line='6277' column='1'/> + <parameter type-id='type-id-284' name='first_invalid_escape' filepath='Objects/unicodeobject.c' line='6278' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_DecodeUnicodeEscape' mangled-name='_PyUnicode_DecodeUnicodeEscape' filepath='Objects/unicodeobject.c' line='6234' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_DecodeUnicodeEscape'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6234' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6235' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6236' column='1'/> - <parameter type-id='type-id-286' name='first_invalid_escape' filepath='Objects/unicodeobject.c' line='6237' column='1'/> + <function-decl name='PyUnicode_AsUTF16String' mangled-name='PyUnicode_AsUTF16String' filepath='Objects/unicodeobject.c' line='6264' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF16String'> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsUTF16String' mangled-name='PyUnicode_AsUTF16String' filepath='Objects/unicodeobject.c' line='6224' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF16String'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <function-decl name='PyUnicode_EncodeUTF16' mangled-name='PyUnicode_EncodeUTF16' filepath='Objects/unicodeobject.c' line='6249' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF16'> + <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='6249' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6250' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6251' column='1'/> + <parameter type-id='type-id-8' name='byteorder' filepath='Objects/unicodeobject.c' line='6252' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_EncodeUTF16' mangled-name='PyUnicode_EncodeUTF16' filepath='Objects/unicodeobject.c' line='6209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF16'> - <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='6209' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6210' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6211' column='1'/> - <parameter type-id='type-id-8' name='byteorder' filepath='Objects/unicodeobject.c' line='6212' column='1'/> + <function-decl name='_PyUnicode_EncodeUTF16' mangled-name='_PyUnicode_EncodeUTF16' filepath='Objects/unicodeobject.c' line='6083' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF16'> + <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='6083' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6084' column='1'/> + <parameter type-id='type-id-8' name='byteorder' filepath='Objects/unicodeobject.c' line='6085' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_EncodeUTF16' mangled-name='_PyUnicode_EncodeUTF16' filepath='Objects/unicodeobject.c' line='6043' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF16'> - <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='6043' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6044' column='1'/> - <parameter type-id='type-id-8' name='byteorder' filepath='Objects/unicodeobject.c' line='6045' column='1'/> + <function-decl name='PyUnicode_DecodeUTF16Stateful' mangled-name='PyUnicode_DecodeUTF16Stateful' filepath='Objects/unicodeobject.c' line='5928' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF16Stateful'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5928' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='5929' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5930' column='1'/> + <parameter type-id='type-id-227' name='byteorder' filepath='Objects/unicodeobject.c' line='5931' column='1'/> + <parameter type-id='type-id-158' name='consumed' filepath='Objects/unicodeobject.c' line='5932' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeUTF16Stateful' mangled-name='PyUnicode_DecodeUTF16Stateful' filepath='Objects/unicodeobject.c' line='5888' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF16Stateful'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5888' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='5889' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5890' column='1'/> - <parameter type-id='type-id-227' name='byteorder' filepath='Objects/unicodeobject.c' line='5891' column='1'/> - <parameter type-id='type-id-158' name='consumed' filepath='Objects/unicodeobject.c' line='5892' column='1'/> + <function-decl name='PyUnicode_DecodeUTF16' mangled-name='PyUnicode_DecodeUTF16' filepath='Objects/unicodeobject.c' line='5919' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF16'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5919' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='5920' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5921' column='1'/> + <parameter type-id='type-id-227' name='byteorder' filepath='Objects/unicodeobject.c' line='5922' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeUTF16' mangled-name='PyUnicode_DecodeUTF16' filepath='Objects/unicodeobject.c' line='5879' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF16'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5879' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='5880' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5881' column='1'/> - <parameter type-id='type-id-227' name='byteorder' filepath='Objects/unicodeobject.c' line='5882' column='1'/> + <function-decl name='PyUnicode_AsUTF32String' mangled-name='PyUnicode_AsUTF32String' filepath='Objects/unicodeobject.c' line='5911' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF32String'> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsUTF32String' mangled-name='PyUnicode_AsUTF32String' filepath='Objects/unicodeobject.c' line='5871' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF32String'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <function-decl name='PyUnicode_EncodeUTF32' mangled-name='PyUnicode_EncodeUTF32' filepath='Objects/unicodeobject.c' line='5896' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF32'> + <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='6249' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6250' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6251' column='1'/> + <parameter type-id='type-id-8' name='byteorder' filepath='Objects/unicodeobject.c' line='6252' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_EncodeUTF32' mangled-name='PyUnicode_EncodeUTF32' filepath='Objects/unicodeobject.c' line='5856' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF32'> - <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='6209' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6210' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6211' column='1'/> - <parameter type-id='type-id-8' name='byteorder' filepath='Objects/unicodeobject.c' line='6212' column='1'/> + <function-decl name='_PyUnicode_EncodeUTF32' mangled-name='_PyUnicode_EncodeUTF32' filepath='Objects/unicodeobject.c' line='5749' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF32'> + <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='5749' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5750' column='1'/> + <parameter type-id='type-id-8' name='byteorder' filepath='Objects/unicodeobject.c' line='5751' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_EncodeUTF32' mangled-name='_PyUnicode_EncodeUTF32' filepath='Objects/unicodeobject.c' line='5709' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF32'> - <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='5709' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5710' column='1'/> - <parameter type-id='type-id-8' name='byteorder' filepath='Objects/unicodeobject.c' line='5711' column='1'/> + <function-decl name='PyUnicode_DecodeUTF32Stateful' mangled-name='PyUnicode_DecodeUTF32Stateful' filepath='Objects/unicodeobject.c' line='5604' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF32Stateful'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5604' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='5605' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5606' column='1'/> + <parameter type-id='type-id-227' name='byteorder' filepath='Objects/unicodeobject.c' line='5607' column='1'/> + <parameter type-id='type-id-158' name='consumed' filepath='Objects/unicodeobject.c' line='5608' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeUTF32Stateful' mangled-name='PyUnicode_DecodeUTF32Stateful' filepath='Objects/unicodeobject.c' line='5564' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF32Stateful'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5564' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='5565' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5566' column='1'/> - <parameter type-id='type-id-227' name='byteorder' filepath='Objects/unicodeobject.c' line='5567' column='1'/> - <parameter type-id='type-id-158' name='consumed' filepath='Objects/unicodeobject.c' line='5568' column='1'/> + <function-decl name='PyUnicode_DecodeUTF32' mangled-name='PyUnicode_DecodeUTF32' filepath='Objects/unicodeobject.c' line='5595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF32'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5919' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='5920' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5921' column='1'/> + <parameter type-id='type-id-227' name='byteorder' filepath='Objects/unicodeobject.c' line='5922' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeUTF32' mangled-name='PyUnicode_DecodeUTF32' filepath='Objects/unicodeobject.c' line='5555' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF32'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5879' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='5880' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5881' column='1'/> - <parameter type-id='type-id-227' name='byteorder' filepath='Objects/unicodeobject.c' line='5882' column='1'/> + <function-decl name='PyUnicode_AsUTF8String' mangled-name='PyUnicode_AsUTF8String' filepath='Objects/unicodeobject.c' line='5587' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF8String'> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsUTF8String' mangled-name='PyUnicode_AsUTF8String' filepath='Objects/unicodeobject.c' line='5547' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF8String'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicode_EncodeUTF8' mangled-name='PyUnicode_EncodeUTF8' filepath='Objects/unicodeobject.c' line='5532' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF8'> - <parameter type-id='type-id-455' name='p' filepath='Objects/unicodeobject.c' line='7253' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='7254' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7255' column='1'/> + <function-decl name='PyUnicode_EncodeUTF8' mangled-name='PyUnicode_EncodeUTF8' filepath='Objects/unicodeobject.c' line='5572' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF8'> + <parameter type-id='type-id-455' name='p' filepath='Objects/unicodeobject.c' line='7318' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='7319' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7320' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_AsUTF8String' mangled-name='_PyUnicode_AsUTF8String' filepath='Objects/unicodeobject.c' line='5525' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsUTF8String'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='7267' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7267' column='1'/> + <function-decl name='_PyUnicode_AsUTF8String' mangled-name='_PyUnicode_AsUTF8String' filepath='Objects/unicodeobject.c' line='5565' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsUTF8String'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='5565' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5565' column='1'/> <return type-id='type-id-100'/> </function-decl> <pointer-type-def type-id='type-id-191' size-in-bits='64' id='type-id-540'/> - <function-decl name='_Py_EncodeUTF8Ex' mangled-name='_Py_EncodeUTF8Ex' filepath='Objects/unicodeobject.c' line='5295' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeUTF8Ex'> - <parameter type-id='type-id-501' name='text' filepath='Objects/unicodeobject.c' line='5295' column='1'/> - <parameter type-id='type-id-304' name='str' filepath='Objects/unicodeobject.c' line='5295' column='1'/> - <parameter type-id='type-id-540' name='error_pos' filepath='Objects/unicodeobject.c' line='5295' column='1'/> - <parameter type-id='type-id-286' name='reason' filepath='Objects/unicodeobject.c' line='5296' column='1'/> - <parameter type-id='type-id-8' name='raw_malloc' filepath='Objects/unicodeobject.c' line='5296' column='1'/> - <parameter type-id='type-id-400' name='errors' filepath='Objects/unicodeobject.c' line='5296' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='_Py_DecodeUTF8_surrogateescape' mangled-name='_Py_DecodeUTF8_surrogateescape' filepath='Objects/unicodeobject.c' line='5265' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DecodeUTF8_surrogateescape'> - <parameter type-id='type-id-3' name='arg' filepath='Objects/unicodeobject.c' line='5265' column='1'/> - <parameter type-id='type-id-15' name='arglen' filepath='Objects/unicodeobject.c' line='5265' column='1'/> - <parameter type-id='type-id-540' name='wlen' filepath='Objects/unicodeobject.c' line='5266' column='1'/> + <function-decl name='_Py_EncodeUTF8Ex' mangled-name='_Py_EncodeUTF8Ex' filepath='Objects/unicodeobject.c' line='5335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeUTF8Ex'> + <parameter type-id='type-id-501' name='text' filepath='Objects/unicodeobject.c' line='5335' column='1'/> + <parameter type-id='type-id-304' name='str' filepath='Objects/unicodeobject.c' line='5335' column='1'/> + <parameter type-id='type-id-540' name='error_pos' filepath='Objects/unicodeobject.c' line='5335' column='1'/> + <parameter type-id='type-id-284' name='reason' filepath='Objects/unicodeobject.c' line='5336' column='1'/> + <parameter type-id='type-id-8' name='raw_malloc' filepath='Objects/unicodeobject.c' line='5336' column='1'/> + <parameter type-id='type-id-400' name='errors' filepath='Objects/unicodeobject.c' line='5336' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='_Py_DecodeUTF8_surrogateescape' mangled-name='_Py_DecodeUTF8_surrogateescape' filepath='Objects/unicodeobject.c' line='5305' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DecodeUTF8_surrogateescape'> + <parameter type-id='type-id-3' name='arg' filepath='Objects/unicodeobject.c' line='5305' column='1'/> + <parameter type-id='type-id-15' name='arglen' filepath='Objects/unicodeobject.c' line='5305' column='1'/> + <parameter type-id='type-id-540' name='wlen' filepath='Objects/unicodeobject.c' line='5306' column='1'/> <return type-id='type-id-403'/> </function-decl> - <function-decl name='_Py_DecodeUTF8Ex' mangled-name='_Py_DecodeUTF8Ex' filepath='Objects/unicodeobject.c' line='5156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DecodeUTF8Ex'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5156' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='5156' column='1'/> - <parameter type-id='type-id-407' name='wstr' filepath='Objects/unicodeobject.c' line='5156' column='1'/> - <parameter type-id='type-id-540' name='wlen' filepath='Objects/unicodeobject.c' line='5156' column='1'/> - <parameter type-id='type-id-286' name='reason' filepath='Objects/unicodeobject.c' line='5157' column='1'/> - <parameter type-id='type-id-400' name='errors' filepath='Objects/unicodeobject.c' line='5157' column='1'/> + <function-decl name='_Py_DecodeUTF8Ex' mangled-name='_Py_DecodeUTF8Ex' filepath='Objects/unicodeobject.c' line='5196' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DecodeUTF8Ex'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5196' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='5196' column='1'/> + <parameter type-id='type-id-407' name='wstr' filepath='Objects/unicodeobject.c' line='5196' column='1'/> + <parameter type-id='type-id-540' name='wlen' filepath='Objects/unicodeobject.c' line='5196' column='1'/> + <parameter type-id='type-id-284' name='reason' filepath='Objects/unicodeobject.c' line='5197' column='1'/> + <parameter type-id='type-id-400' name='errors' filepath='Objects/unicodeobject.c' line='5197' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyUnicode_DecodeUTF8Stateful' mangled-name='PyUnicode_DecodeUTF8Stateful' filepath='Objects/unicodeobject.c' line='5134' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF8Stateful'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5134' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='5135' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5136' column='1'/> - <parameter type-id='type-id-158' name='consumed' filepath='Objects/unicodeobject.c' line='5137' column='1'/> + <function-decl name='PyUnicode_DecodeUTF8Stateful' mangled-name='PyUnicode_DecodeUTF8Stateful' filepath='Objects/unicodeobject.c' line='5174' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF8Stateful'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5174' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='5175' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5176' column='1'/> + <parameter type-id='type-id-158' name='consumed' filepath='Objects/unicodeobject.c' line='5177' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeUTF8' mangled-name='PyUnicode_DecodeUTF8' filepath='Objects/unicodeobject.c' line='4890' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF8'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6830' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6831' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6832' column='1'/> + <function-decl name='PyUnicode_DecodeUTF8' mangled-name='PyUnicode_DecodeUTF8' filepath='Objects/unicodeobject.c' line='4930' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF8'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6895' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6896' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6897' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_EncodeUTF7' mangled-name='PyUnicode_EncodeUTF7' filepath='Objects/unicodeobject.c' line='4865' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF7'> - <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='4865' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='4866' column='1'/> - <parameter type-id='type-id-8' name='base64SetO' filepath='Objects/unicodeobject.c' line='4867' column='1'/> - <parameter type-id='type-id-8' name='base64WhiteSpace' filepath='Objects/unicodeobject.c' line='4868' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='4869' column='1'/> + <function-decl name='PyUnicode_EncodeUTF7' mangled-name='PyUnicode_EncodeUTF7' filepath='Objects/unicodeobject.c' line='4905' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF7'> + <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='4905' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='4906' column='1'/> + <parameter type-id='type-id-8' name='base64SetO' filepath='Objects/unicodeobject.c' line='4907' column='1'/> + <parameter type-id='type-id-8' name='base64WhiteSpace' filepath='Objects/unicodeobject.c' line='4908' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='4909' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_EncodeUTF7' mangled-name='_PyUnicode_EncodeUTF7' filepath='Objects/unicodeobject.c' line='4764' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF7'> - <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='4764' column='1'/> - <parameter type-id='type-id-8' name='base64SetO' filepath='Objects/unicodeobject.c' line='4765' column='1'/> - <parameter type-id='type-id-8' name='base64WhiteSpace' filepath='Objects/unicodeobject.c' line='4766' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='4767' column='1'/> + <function-decl name='_PyUnicode_EncodeUTF7' mangled-name='_PyUnicode_EncodeUTF7' filepath='Objects/unicodeobject.c' line='4804' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF7'> + <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='4804' column='1'/> + <parameter type-id='type-id-8' name='base64SetO' filepath='Objects/unicodeobject.c' line='4805' column='1'/> + <parameter type-id='type-id-8' name='base64WhiteSpace' filepath='Objects/unicodeobject.c' line='4806' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='4807' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeUTF7Stateful' mangled-name='PyUnicode_DecodeUTF7Stateful' filepath='Objects/unicodeobject.c' line='4566' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF7Stateful'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='4566' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='4567' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='4568' column='1'/> - <parameter type-id='type-id-158' name='consumed' filepath='Objects/unicodeobject.c' line='4569' column='1'/> + <function-decl name='PyUnicode_DecodeUTF7Stateful' mangled-name='PyUnicode_DecodeUTF7Stateful' filepath='Objects/unicodeobject.c' line='4606' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF7Stateful'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='4606' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='4607' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='4608' column='1'/> + <parameter type-id='type-id-158' name='consumed' filepath='Objects/unicodeobject.c' line='4609' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeUTF7' mangled-name='PyUnicode_DecodeUTF7' filepath='Objects/unicodeobject.c' line='4551' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF7'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6830' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6831' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6832' column='1'/> + <function-decl name='PyUnicode_DecodeUTF7' mangled-name='PyUnicode_DecodeUTF7' filepath='Objects/unicodeobject.c' line='4591' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF7'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6895' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='6896' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6897' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_GetDefaultEncoding' mangled-name='PyUnicode_GetDefaultEncoding' filepath='Objects/unicodeobject.c' line='4208' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetDefaultEncoding'> + <function-decl name='PyUnicode_GetDefaultEncoding' mangled-name='PyUnicode_GetDefaultEncoding' filepath='Objects/unicodeobject.c' line='4248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetDefaultEncoding'> <return type-id='type-id-3'/> </function-decl> - <function-decl name='PyUnicode_WriteChar' mangled-name='PyUnicode_WriteChar' filepath='Objects/unicodeobject.c' line='4185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_WriteChar'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4185' column='1'/> - <parameter type-id='type-id-15' name='index' filepath='Objects/unicodeobject.c' line='4185' column='1'/> - <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodeobject.c' line='4185' column='1'/> + <function-decl name='PyUnicode_WriteChar' mangled-name='PyUnicode_WriteChar' filepath='Objects/unicodeobject.c' line='4225' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_WriteChar'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4225' column='1'/> + <parameter type-id='type-id-15' name='index' filepath='Objects/unicodeobject.c' line='4225' column='1'/> + <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodeobject.c' line='4225' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyUnicode_ReadChar' mangled-name='PyUnicode_ReadChar' filepath='Objects/unicodeobject.c' line='4163' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_ReadChar'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4163' column='1'/> - <parameter type-id='type-id-15' name='index' filepath='Objects/unicodeobject.c' line='4163' column='1'/> + <function-decl name='PyUnicode_ReadChar' mangled-name='PyUnicode_ReadChar' filepath='Objects/unicodeobject.c' line='4203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_ReadChar'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4203' column='1'/> + <parameter type-id='type-id-15' name='index' filepath='Objects/unicodeobject.c' line='4203' column='1'/> <return type-id='type-id-474'/> </function-decl> - <function-decl name='PyUnicode_GetLength' mangled-name='PyUnicode_GetLength' filepath='Objects/unicodeobject.c' line='4151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetLength'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2203' column='1'/> + <function-decl name='PyUnicode_GetLength' mangled-name='PyUnicode_GetLength' filepath='Objects/unicodeobject.c' line='4191' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetLength'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4191' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='PyUnicode_GetSize' mangled-name='PyUnicode_GetSize' filepath='Objects/unicodeobject.c' line='4132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetSize'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4132' column='1'/> + <function-decl name='PyUnicode_GetSize' mangled-name='PyUnicode_GetSize' filepath='Objects/unicodeobject.c' line='4172' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetSize'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4172' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='_PyUnicode_AsUnicode' mangled-name='_PyUnicode_AsUnicode' filepath='Objects/unicodeobject.c' line='4117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsUnicode'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4117' column='1'/> + <function-decl name='_PyUnicode_AsUnicode' mangled-name='_PyUnicode_AsUnicode' filepath='Objects/unicodeobject.c' line='4157' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsUnicode'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4157' column='1'/> <return type-id='type-id-455'/> </function-decl> - <function-decl name='PyUnicode_AsUnicode' mangled-name='PyUnicode_AsUnicode' filepath='Objects/unicodeobject.c' line='4111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicode'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4111' column='1'/> + <function-decl name='PyUnicode_AsUnicode' mangled-name='PyUnicode_AsUnicode' filepath='Objects/unicodeobject.c' line='4151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicode'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4151' column='1'/> <return type-id='type-id-470'/> </function-decl> - <function-decl name='PyUnicode_AsUnicodeAndSize' mangled-name='PyUnicode_AsUnicodeAndSize' filepath='Objects/unicodeobject.c' line='4072' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeAndSize'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4072' column='1'/> - <parameter type-id='type-id-158' name='size' filepath='Objects/unicodeobject.c' line='4072' column='1'/> + <function-decl name='PyUnicode_AsUnicodeAndSize' mangled-name='PyUnicode_AsUnicodeAndSize' filepath='Objects/unicodeobject.c' line='4112' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeAndSize'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4112' column='1'/> + <parameter type-id='type-id-158' name='size' filepath='Objects/unicodeobject.c' line='4112' column='1'/> <return type-id='type-id-470'/> </function-decl> - <function-decl name='PyUnicode_AsUTF8' mangled-name='PyUnicode_AsUTF8' filepath='Objects/unicodeobject.c' line='4066' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF8'> - <parameter type-id='type-id-100' name='ob' filepath='Objects/exceptions.c' line='365' column='1'/> + <function-decl name='PyUnicode_AsUTF8' mangled-name='PyUnicode_AsUTF8' filepath='Objects/unicodeobject.c' line='4106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF8'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4106' column='1'/> <return type-id='type-id-3'/> </function-decl> - <function-decl name='PyUnicode_AsUTF8AndSize' mangled-name='PyUnicode_AsUTF8AndSize' filepath='Objects/unicodeobject.c' line='4045' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF8AndSize'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4045' column='1'/> - <parameter type-id='type-id-158' name='psize' filepath='Objects/unicodeobject.c' line='4045' column='1'/> + <function-decl name='PyUnicode_AsUTF8AndSize' mangled-name='PyUnicode_AsUTF8AndSize' filepath='Objects/unicodeobject.c' line='4085' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF8AndSize'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4085' column='1'/> + <parameter type-id='type-id-158' name='psize' filepath='Objects/unicodeobject.c' line='4085' column='1'/> <return type-id='type-id-3'/> </function-decl> - <function-decl name='PyUnicode_FSDecoder' mangled-name='PyUnicode_FSDecoder' filepath='Objects/unicodeobject.c' line='3972' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FSDecoder'> - <parameter type-id='type-id-100' name='arg' filepath='Objects/unicodeobject.c' line='3972' column='1'/> - <parameter type-id='type-id-32' name='addr' filepath='Objects/unicodeobject.c' line='3972' column='1'/> + <function-decl name='PyUnicode_FSDecoder' mangled-name='PyUnicode_FSDecoder' filepath='Objects/unicodeobject.c' line='4012' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FSDecoder'> + <parameter type-id='type-id-100' name='arg' filepath='Objects/unicodeobject.c' line='4012' column='1'/> + <parameter type-id='type-id-32' name='addr' filepath='Objects/unicodeobject.c' line='4012' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyUnicode_FSConverter' mangled-name='PyUnicode_FSConverter' filepath='Objects/unicodeobject.c' line='3932' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FSConverter'> - <parameter type-id='type-id-100' name='arg' filepath='Objects/unicodeobject.c' line='3932' column='1'/> - <parameter type-id='type-id-32' name='addr' filepath='Objects/unicodeobject.c' line='3932' column='1'/> + <function-decl name='PyUnicode_FSConverter' mangled-name='PyUnicode_FSConverter' filepath='Objects/unicodeobject.c' line='3972' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FSConverter'> + <parameter type-id='type-id-100' name='arg' filepath='Objects/unicodeobject.c' line='3972' column='1'/> + <parameter type-id='type-id-32' name='addr' filepath='Objects/unicodeobject.c' line='3972' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyUnicode_DecodeFSDefaultAndSize' mangled-name='PyUnicode_DecodeFSDefaultAndSize' filepath='Objects/unicodeobject.c' line='3896' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeFSDefaultAndSize'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='3896' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='3896' column='1'/> + <function-decl name='PyUnicode_DecodeFSDefaultAndSize' mangled-name='PyUnicode_DecodeFSDefaultAndSize' filepath='Objects/unicodeobject.c' line='3936' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeFSDefaultAndSize'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='3936' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='3936' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeFSDefault' mangled-name='PyUnicode_DecodeFSDefault' filepath='Objects/unicodeobject.c' line='3890' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeFSDefault'> - <parameter type-id='type-id-3' name='cp' filepath='Objects/unicodeobject.c' line='15647' column='1'/> + <function-decl name='PyUnicode_DecodeFSDefault' mangled-name='PyUnicode_DecodeFSDefault' filepath='Objects/unicodeobject.c' line='3930' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeFSDefault'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='3930' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeLocale' mangled-name='PyUnicode_DecodeLocale' filepath='Objects/unicodeobject.c' line='3881' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLocale'> - <parameter type-id='type-id-3' name='name' filepath='Objects/typeobject.c' line='199' column='1'/> - <parameter type-id='type-id-3' name='internal_doc' filepath='Objects/typeobject.c' line='199' column='1'/> + <function-decl name='PyUnicode_DecodeLocale' mangled-name='PyUnicode_DecodeLocale' filepath='Objects/unicodeobject.c' line='3921' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLocale'> + <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='3921' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3921' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_DecodeLocaleAndSize' mangled-name='PyUnicode_DecodeLocaleAndSize' filepath='Objects/unicodeobject.c' line='3873' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLocaleAndSize'> - <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='3873' column='1'/> - <parameter type-id='type-id-15' name='len' filepath='Objects/unicodeobject.c' line='3873' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3874' column='1'/> + <function-decl name='PyUnicode_DecodeLocaleAndSize' mangled-name='PyUnicode_DecodeLocaleAndSize' filepath='Objects/unicodeobject.c' line='3913' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLocaleAndSize'> + <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='3913' column='1'/> + <parameter type-id='type-id-15' name='len' filepath='Objects/unicodeobject.c' line='3913' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3914' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsEncodedUnicode' mangled-name='PyUnicode_AsEncodedUnicode' filepath='Objects/unicodeobject.c' line='3793' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedUnicode'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3793' column='1'/> - <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3794' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3795' column='1'/> + <function-decl name='PyUnicode_AsEncodedUnicode' mangled-name='PyUnicode_AsEncodedUnicode' filepath='Objects/unicodeobject.c' line='3833' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedUnicode'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3833' column='1'/> + <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3834' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3835' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsEncodedString' mangled-name='PyUnicode_AsEncodedString' filepath='Objects/unicodeobject.c' line='3693' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedString'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3693' column='1'/> - <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3694' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3695' column='1'/> + <function-decl name='PyUnicode_EncodeFSDefault' mangled-name='PyUnicode_EncodeFSDefault' filepath='Objects/unicodeobject.c' line='3699' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeFSDefault'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3699' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_EncodeFSDefault' mangled-name='PyUnicode_EncodeFSDefault' filepath='Objects/unicodeobject.c' line='3659' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeFSDefault'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2650' column='1'/> + <function-decl name='PyUnicode_EncodeLocale' mangled-name='PyUnicode_EncodeLocale' filepath='Objects/unicodeobject.c' line='3692' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeLocale'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3692' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3692' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_EncodeLocale' mangled-name='PyUnicode_EncodeLocale' filepath='Objects/unicodeobject.c' line='3652' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeLocale'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='2015' column='1'/> - <parameter type-id='type-id-3' name='m' filepath='Objects/abstract.c' line='2015' column='1'/> + <function-decl name='PyUnicode_AsEncodedObject' mangled-name='PyUnicode_AsEncodedObject' filepath='Objects/unicodeobject.c' line='3610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedObject'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3610' column='1'/> + <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3611' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3612' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsEncodedObject' mangled-name='PyUnicode_AsEncodedObject' filepath='Objects/unicodeobject.c' line='3570' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedObject'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3793' column='1'/> - <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3794' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3795' column='1'/> + <function-decl name='PyUnicode_Encode' mangled-name='PyUnicode_Encode' filepath='Objects/unicodeobject.c' line='3594' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Encode'> + <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='3594' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='3595' column='1'/> + <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3596' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3597' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_Encode' mangled-name='PyUnicode_Encode' filepath='Objects/unicodeobject.c' line='3554' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Encode'> - <parameter type-id='type-id-455' name='s' filepath='Objects/unicodeobject.c' line='3554' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='3555' column='1'/> + <function-decl name='PyUnicode_AsDecodedUnicode' mangled-name='PyUnicode_AsDecodedUnicode' filepath='Objects/unicodeobject.c' line='3555' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsDecodedUnicode'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3555' column='1'/> <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3556' column='1'/> <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3557' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsDecodedUnicode' mangled-name='PyUnicode_AsDecodedUnicode' filepath='Objects/unicodeobject.c' line='3515' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsDecodedUnicode'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3793' column='1'/> - <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3794' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3795' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicode_AsDecodedObject' mangled-name='PyUnicode_AsDecodedObject' filepath='Objects/unicodeobject.c' line='3493' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsDecodedObject'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3493' column='1'/> - <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3494' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3495' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicode_Decode' mangled-name='PyUnicode_Decode' filepath='Objects/unicodeobject.c' line='3403' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Decode'> - <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='3403' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='3404' column='1'/> - <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3405' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3406' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicode_FromEncodedObject' mangled-name='PyUnicode_FromEncodedObject' filepath='Objects/unicodeobject.c' line='3301' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromEncodedObject'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/unicodeobject.c' line='3301' column='1'/> - <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3302' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3303' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyUnicode_FromObject' mangled-name='PyUnicode_FromObject' filepath='Objects/unicodeobject.c' line='3279' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromObject'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <function-decl name='PyUnicode_AsDecodedObject' mangled-name='PyUnicode_AsDecodedObject' filepath='Objects/unicodeobject.c' line='3533' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsDecodedObject'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3533' column='1'/> + <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3534' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3535' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_FromOrdinal' mangled-name='PyUnicode_FromOrdinal' filepath='Objects/unicodeobject.c' line='3267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromOrdinal'> - <parameter type-id='type-id-8' name='ordinal' filepath='Objects/unicodeobject.c' line='3267' column='1'/> + <function-decl name='PyUnicode_FromEncodedObject' mangled-name='PyUnicode_FromEncodedObject' filepath='Objects/unicodeobject.c' line='3341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromEncodedObject'> + <parameter type-id='type-id-100' name='obj' filepath='Objects/unicodeobject.c' line='3341' column='1'/> + <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3342' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3343' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsWideCharString' mangled-name='PyUnicode_AsWideCharString' filepath='Objects/unicodeobject.c' line='3230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsWideCharString'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3230' column='1'/> - <parameter type-id='type-id-158' name='size' filepath='Objects/unicodeobject.c' line='3231' column='1'/> + <function-decl name='PyUnicode_AsWideCharString' mangled-name='PyUnicode_AsWideCharString' filepath='Objects/unicodeobject.c' line='3259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsWideCharString'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3259' column='1'/> + <parameter type-id='type-id-158' name='size' filepath='Objects/unicodeobject.c' line='3260' column='1'/> <return type-id='type-id-403'/> </function-decl> - <function-decl name='PyUnicode_AsWideChar' mangled-name='PyUnicode_AsWideChar' filepath='Objects/unicodeobject.c' line='3199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsWideChar'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3199' column='1'/> - <parameter type-id='type-id-403' name='w' filepath='Objects/unicodeobject.c' line='3200' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='3201' column='1'/> + <function-decl name='PyUnicode_AsWideChar' mangled-name='PyUnicode_AsWideChar' filepath='Objects/unicodeobject.c' line='3217' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsWideChar'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3217' column='1'/> + <parameter type-id='type-id-403' name='w' filepath='Objects/unicodeobject.c' line='3218' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='3219' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='PyUnicode_FromFormat' mangled-name='PyUnicode_FromFormat' filepath='Objects/unicodeobject.c' line='3096' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromFormat'> + <function-decl name='PyUnicode_FromFormat' mangled-name='PyUnicode_FromFormat' filepath='Objects/unicodeobject.c' line='3114' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromFormat'> <parameter type-id='type-id-3' name='format' filepath='Objects/bytesobject.c' line='357' column='1'/> <parameter is-variadic='yes'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_FromFormatV' mangled-name='PyUnicode_FromFormatV' filepath='Objects/unicodeobject.c' line='3039' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromFormatV'> - <parameter type-id='type-id-3' name='format' filepath='Objects/unicodeobject.c' line='3039' column='1'/> - <parameter type-id='type-id-306' name='vargs' filepath='Objects/unicodeobject.c' line='3039' column='1'/> + <function-decl name='PyUnicode_FromFormatV' mangled-name='PyUnicode_FromFormatV' filepath='Objects/unicodeobject.c' line='3057' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromFormatV'> + <parameter type-id='type-id-3' name='format' filepath='Objects/unicodeobject.c' line='3057' column='1'/> + <parameter type-id='type-id-306' name='vargs' filepath='Objects/unicodeobject.c' line='3057' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_AsUCS4Copy' mangled-name='PyUnicode_AsUCS4Copy' filepath='Objects/unicodeobject.c' line='2663' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUCS4Copy'> - <parameter type-id='type-id-100' name='string' filepath='Objects/unicodeobject.c' line='2663' column='1'/> + <function-decl name='PyUnicode_AsUCS4Copy' mangled-name='PyUnicode_AsUCS4Copy' filepath='Objects/unicodeobject.c' line='2681' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUCS4Copy'> + <parameter type-id='type-id-100' name='string' filepath='Objects/unicodeobject.c' line='2681' column='1'/> <return type-id='type-id-539'/> </function-decl> - <function-decl name='PyUnicode_AsUCS4' mangled-name='PyUnicode_AsUCS4' filepath='Objects/unicodeobject.c' line='2652' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUCS4'> - <parameter type-id='type-id-100' name='string' filepath='Objects/unicodeobject.c' line='2652' column='1'/> - <parameter type-id='type-id-539' name='target' filepath='Objects/unicodeobject.c' line='2652' column='1'/> - <parameter type-id='type-id-15' name='targetsize' filepath='Objects/unicodeobject.c' line='2652' column='1'/> - <parameter type-id='type-id-8' name='copy_null' filepath='Objects/unicodeobject.c' line='2653' column='1'/> + <function-decl name='PyUnicode_AsUCS4' mangled-name='PyUnicode_AsUCS4' filepath='Objects/unicodeobject.c' line='2670' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUCS4'> + <parameter type-id='type-id-100' name='string' filepath='Objects/unicodeobject.c' line='2670' column='1'/> + <parameter type-id='type-id-539' name='target' filepath='Objects/unicodeobject.c' line='2670' column='1'/> + <parameter type-id='type-id-15' name='targetsize' filepath='Objects/unicodeobject.c' line='2670' column='1'/> + <parameter type-id='type-id-8' name='copy_null' filepath='Objects/unicodeobject.c' line='2671' column='1'/> <return type-id='type-id-539'/> </function-decl> - <function-decl name='_PyUnicode_Copy' mangled-name='_PyUnicode_Copy' filepath='Objects/unicodeobject.c' line='2529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_Copy'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> + <function-decl name='_PyUnicode_Copy' mangled-name='_PyUnicode_Copy' filepath='Objects/unicodeobject.c' line='2547' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_Copy'> + <parameter type-id='type-id-100' name='x' filepath='Objects/bytesobject.c' line='2805' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_FindMaxChar' mangled-name='_PyUnicode_FindMaxChar' filepath='Objects/unicodeobject.c' line='2446' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FindMaxChar'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='2446' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='2446' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='2446' column='1'/> + <function-decl name='_PyUnicode_FindMaxChar' mangled-name='_PyUnicode_FindMaxChar' filepath='Objects/unicodeobject.c' line='2464' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FindMaxChar'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='2464' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='2464' column='1'/> + <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='2464' column='1'/> <return type-id='type-id-474'/> </function-decl> - <function-decl name='PyUnicode_FromKindAndData' mangled-name='PyUnicode_FromKindAndData' filepath='Objects/unicodeobject.c' line='2426' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromKindAndData'> - <parameter type-id='type-id-8' name='kind' filepath='Objects/unicodeobject.c' line='2426' column='1'/> - <parameter type-id='type-id-32' name='buffer' filepath='Objects/unicodeobject.c' line='2426' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='2426' column='1'/> + <function-decl name='_PyUnicode_FromId' mangled-name='_PyUnicode_FromId' filepath='Objects/unicodeobject.c' line='2303' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FromId'> + <parameter type-id='type-id-476' name='id' filepath='Objects/unicodeobject.c' line='2303' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_FromASCII' mangled-name='_PyUnicode_FromASCII' filepath='Objects/unicodeobject.c' line='2317' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FromASCII'> - <parameter type-id='type-id-3' name='bytes' filepath='Objects/bytearrayobject.c' line='114' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/bytearrayobject.c' line='114' column='1'/> + <function-decl name='PyUnicode_FromString' mangled-name='PyUnicode_FromString' filepath='Objects/unicodeobject.c' line='2292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromString'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='3930' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_FromId' mangled-name='_PyUnicode_FromId' filepath='Objects/unicodeobject.c' line='2285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FromId'> - <parameter type-id='type-id-476' name='id' filepath='Objects/unicodeobject.c' line='2285' column='1'/> + <function-decl name='PyUnicode_FromStringAndSize' mangled-name='PyUnicode_FromStringAndSize' filepath='Objects/unicodeobject.c' line='2278' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromStringAndSize'> + <parameter type-id='type-id-3' name='u' filepath='Objects/unicodeobject.c' line='2278' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='2278' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_FromString' mangled-name='PyUnicode_FromString' filepath='Objects/unicodeobject.c' line='2274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromString'> - <parameter type-id='type-id-3' name='cp' filepath='Objects/unicodeobject.c' line='15647' column='1'/> + <function-decl name='PyUnicode_FromWideChar' mangled-name='PyUnicode_FromWideChar' filepath='Objects/unicodeobject.c' line='2196' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromWideChar'> + <parameter type-id='type-id-501' name='u' filepath='Objects/unicodeobject.c' line='2196' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='2196' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_FromStringAndSize' mangled-name='PyUnicode_FromStringAndSize' filepath='Objects/unicodeobject.c' line='2260' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromStringAndSize'> - <parameter type-id='type-id-3' name='u' filepath='Objects/unicodeobject.c' line='2260' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='2260' column='1'/> + <function-decl name='PyUnicode_FromUnicode' mangled-name='PyUnicode_FromUnicode' filepath='Objects/unicodeobject.c' line='2182' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromUnicode'> + <parameter type-id='type-id-455' name='u' filepath='Objects/unicodeobject.c' line='2182' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='2182' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_FromWideChar' mangled-name='PyUnicode_FromWideChar' filepath='Objects/unicodeobject.c' line='2192' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromWideChar'> - <parameter type-id='type-id-501' name='u' filepath='Objects/unicodeobject.c' line='2192' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='2192' column='1'/> + <function-decl name='_PyUnicode_Ready' mangled-name='_PyUnicode_Ready' filepath='Objects/unicodeobject.c' line='1807' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_Ready'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='1807' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='PyUnicode_CopyCharacters' mangled-name='PyUnicode_CopyCharacters' filepath='Objects/unicodeobject.c' line='1706' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_CopyCharacters'> + <parameter type-id='type-id-100' name='to' filepath='Objects/unicodeobject.c' line='1706' column='1'/> + <parameter type-id='type-id-15' name='to_start' filepath='Objects/unicodeobject.c' line='1706' column='1'/> + <parameter type-id='type-id-100' name='from' filepath='Objects/unicodeobject.c' line='1707' column='1'/> + <parameter type-id='type-id-15' name='from_start' filepath='Objects/unicodeobject.c' line='1707' column='1'/> + <parameter type-id='type-id-15' name='how_many' filepath='Objects/unicodeobject.c' line='1708' column='1'/> + <return type-id='type-id-15'/> + </function-decl> + <function-decl name='_PyUnicode_FastCopyCharacters' mangled-name='_PyUnicode_FastCopyCharacters' filepath='Objects/unicodeobject.c' line='1698' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FastCopyCharacters'> + <parameter type-id='type-id-100' name='to' filepath='Objects/unicodeobject.c' line='1699' column='1'/> + <parameter type-id='type-id-15' name='to_start' filepath='Objects/unicodeobject.c' line='1699' column='1'/> + <parameter type-id='type-id-100' name='from' filepath='Objects/unicodeobject.c' line='1700' column='1'/> + <parameter type-id='type-id-15' name='from_start' filepath='Objects/unicodeobject.c' line='1700' column='1'/> + <parameter type-id='type-id-15' name='how_many' filepath='Objects/unicodeobject.c' line='1700' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_New' mangled-name='PyUnicode_New' filepath='Objects/unicodeobject.c' line='1391' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_New'> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='1391' column='1'/> + <parameter type-id='type-id-474' name='maxchar' filepath='Objects/unicodeobject.c' line='1391' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_FromUnicode' mangled-name='PyUnicode_FromUnicode' filepath='Objects/unicodeobject.c' line='2178' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromUnicode'> - <parameter type-id='type-id-455' name='u' filepath='Objects/unicodeobject.c' line='2178' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='2178' column='1'/> + <function-decl name='_PyUnicode_CheckConsistency' mangled-name='_PyUnicode_CheckConsistency' filepath='Objects/unicodeobject.c' line='516' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_CheckConsistency'> + <parameter type-id='type-id-100' name='op' filepath='Objects/unicodeobject.c' line='516' column='1'/> + <parameter type-id='type-id-8' name='check_content' filepath='Objects/unicodeobject.c' line='516' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='PyUnicode_GetMax' mangled-name='PyUnicode_GetMax' filepath='Objects/unicodeobject.c' line='504' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetMax'> + <return type-id='type-id-453'/> + </function-decl> + <function-decl name='_Py_GetErrorHandler' mangled-name='_Py_GetErrorHandler' filepath='Objects/unicodeobject.c' line='398' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetErrorHandler'> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='398' column='1'/> + <return type-id='type-id-400'/> + </function-decl> + <function-decl name='PyUnicode_RichCompare' mangled-name='PyUnicode_RichCompare' filepath='Objects/unicodeobject.c' line='11437' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RichCompare'> + <parameter type-id='type-id-100' name='left' filepath='Objects/unicodeobject.c' line='11437' column='1'/> + <parameter type-id='type-id-100' name='right' filepath='Objects/unicodeobject.c' line='11437' column='1'/> + <parameter type-id='type-id-8' name='op' filepath='Objects/unicodeobject.c' line='11437' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_Resize' mangled-name='PyUnicode_Resize' filepath='Objects/unicodeobject.c' line='2056' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Resize'> - <parameter type-id='type-id-303' name='p_unicode' filepath='Objects/unicodeobject.c' line='2056' column='1'/> - <parameter type-id='type-id-15' name='length' filepath='Objects/unicodeobject.c' line='2056' column='1'/> + <function-decl name='PyUnicode_Contains' mangled-name='PyUnicode_Contains' filepath='Objects/unicodeobject.c' line='11482' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Contains'> + <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='11482' column='1'/> + <parameter type-id='type-id-100' name='substr' filepath='Objects/unicodeobject.c' line='11482' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyUnicode_Ready' mangled-name='_PyUnicode_Ready' filepath='Objects/unicodeobject.c' line='1803' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_Ready'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='1803' column='1'/> + <function-decl name='PyUnicode_Resize' mangled-name='PyUnicode_Resize' filepath='Objects/unicodeobject.c' line='2060' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Resize'> + <parameter type-id='type-id-303' name='p_unicode' filepath='Objects/unicodeobject.c' line='2060' column='1'/> + <parameter type-id='type-id-15' name='length' filepath='Objects/unicodeobject.c' line='2060' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyUnicode_CopyCharacters' mangled-name='PyUnicode_CopyCharacters' filepath='Objects/unicodeobject.c' line='1702' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_CopyCharacters'> - <parameter type-id='type-id-100' name='to' filepath='Objects/unicodeobject.c' line='1702' column='1'/> - <parameter type-id='type-id-15' name='to_start' filepath='Objects/unicodeobject.c' line='1702' column='1'/> - <parameter type-id='type-id-100' name='from' filepath='Objects/unicodeobject.c' line='1703' column='1'/> - <parameter type-id='type-id-15' name='from_start' filepath='Objects/unicodeobject.c' line='1703' column='1'/> - <parameter type-id='type-id-15' name='how_many' filepath='Objects/unicodeobject.c' line='1704' column='1'/> - <return type-id='type-id-15'/> + <function-decl name='_PyUnicode_FromASCII' mangled-name='_PyUnicode_FromASCII' filepath='Objects/unicodeobject.c' line='2335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FromASCII'> + <parameter type-id='type-id-3' name='buffer' filepath='Objects/unicodeobject.c' line='2335' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='2335' column='1'/> + <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_FastCopyCharacters' mangled-name='_PyUnicode_FastCopyCharacters' filepath='Objects/unicodeobject.c' line='1694' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FastCopyCharacters'> - <parameter type-id='type-id-100' name='to' filepath='Objects/unicodeobject.c' line='1695' column='1'/> - <parameter type-id='type-id-15' name='to_start' filepath='Objects/unicodeobject.c' line='1695' column='1'/> - <parameter type-id='type-id-100' name='from' filepath='Objects/unicodeobject.c' line='1696' column='1'/> - <parameter type-id='type-id-15' name='from_start' filepath='Objects/unicodeobject.c' line='1696' column='1'/> - <parameter type-id='type-id-15' name='how_many' filepath='Objects/unicodeobject.c' line='1696' column='1'/> - <return type-id='type-id-4'/> + <function-decl name='PyUnicode_FromKindAndData' mangled-name='PyUnicode_FromKindAndData' filepath='Objects/unicodeobject.c' line='2444' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromKindAndData'> + <parameter type-id='type-id-8' name='kind' filepath='Objects/unicodeobject.c' line='2444' column='1'/> + <parameter type-id='type-id-32' name='buffer' filepath='Objects/unicodeobject.c' line='2444' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='2444' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyUnicode_FromOrdinal' mangled-name='PyUnicode_FromOrdinal' filepath='Objects/unicodeobject.c' line='3307' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromOrdinal'> + <parameter type-id='type-id-8' name='ordinal' filepath='Objects/unicodeobject.c' line='3307' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyUnicode_FromObject' mangled-name='PyUnicode_FromObject' filepath='Objects/unicodeobject.c' line='3319' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromObject'> + <parameter type-id='type-id-100' name='obj' filepath='Objects/unicodeobject.c' line='3319' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='_PyUnicode_AsLatin1String' mangled-name='_PyUnicode_AsLatin1String' filepath='Objects/unicodeobject.c' line='7192' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsLatin1String'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='7192' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7192' column='1'/> + <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyUnicode_New' mangled-name='PyUnicode_New' filepath='Objects/unicodeobject.c' line='1387' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_New'> - <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='1387' column='1'/> - <parameter type-id='type-id-474' name='maxchar' filepath='Objects/unicodeobject.c' line='1387' column='1'/> + <function-decl name='_PyUnicode_AsASCIIString' mangled-name='_PyUnicode_AsASCIIString' filepath='Objects/unicodeobject.c' line='7332' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsASCIIString'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='7332' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7332' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyUnicode_CheckConsistency' mangled-name='_PyUnicode_CheckConsistency' filepath='Objects/unicodeobject.c' line='512' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_CheckConsistency'> - <parameter type-id='type-id-100' name='op' filepath='Objects/unicodeobject.c' line='512' column='1'/> - <parameter type-id='type-id-8' name='check_content' filepath='Objects/unicodeobject.c' line='512' column='1'/> + <function-decl name='PyUnicode_AsEncodedString' mangled-name='PyUnicode_AsEncodedString' filepath='Objects/unicodeobject.c' line='3733' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedString'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='3733' column='1'/> + <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3734' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3735' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='_PyUnicode_JoinArray' mangled-name='_PyUnicode_JoinArray' filepath='Objects/unicodeobject.c' line='10193' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_JoinArray'> + <parameter type-id='type-id-100' name='separator' filepath='Objects/unicodeobject.c' line='10193' column='1'/> + <parameter type-id='type-id-190' name='items' filepath='Objects/unicodeobject.c' line='10193' column='1'/> + <parameter type-id='type-id-15' name='seqlen' filepath='Objects/unicodeobject.c' line='10193' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='_PyUnicode_EqualToASCIIString' mangled-name='_PyUnicode_EqualToASCIIString' filepath='Objects/unicodeobject.c' line='11369' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EqualToASCIIString'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='11369' column='1'/> + <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='11369' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyUnicode_GetMax' mangled-name='PyUnicode_GetMax' filepath='Objects/unicodeobject.c' line='500' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetMax'> - <return type-id='type-id-453'/> + <function-decl name='PyUnicode_Partition' mangled-name='PyUnicode_Partition' filepath='Objects/unicodeobject.c' line='13307' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Partition'> + <parameter type-id='type-id-100' name='str_obj' filepath='Objects/unicodeobject.c' line='13307' column='1'/> + <parameter type-id='type-id-100' name='sep_obj' filepath='Objects/unicodeobject.c' line='13307' column='1'/> + <return type-id='type-id-100'/> </function-decl> - <function-decl name='_Py_GetErrorHandler' mangled-name='_Py_GetErrorHandler' filepath='Objects/unicodeobject.c' line='394' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetErrorHandler'> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='394' column='1'/> - <return type-id='type-id-400'/> + <function-decl name='PyUnicode_RPartition' mangled-name='PyUnicode_RPartition' filepath='Objects/unicodeobject.c' line='13365' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RPartition'> + <parameter type-id='type-id-100' name='str_obj' filepath='Objects/unicodeobject.c' line='13307' column='1'/> + <parameter type-id='type-id-100' name='sep_obj' filepath='Objects/unicodeobject.c' line='13307' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='_PyUnicodeWriter_WriteSubstring' mangled-name='_PyUnicodeWriter_WriteSubstring' filepath='Objects/unicodeobject.c' line='14060' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteSubstring'> + <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='14060' column='1'/> + <parameter type-id='type-id-100' name='str' filepath='Objects/unicodeobject.c' line='14060' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Objects/unicodeobject.c' line='14061' column='1'/> + <parameter type-id='type-id-15' name='end' filepath='Objects/unicodeobject.c' line='14061' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='_PyUnicodeWriter_Finish' mangled-name='_PyUnicodeWriter_Finish' filepath='Objects/unicodeobject.c' line='14169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Finish'> + <parameter type-id='type-id-475' name='writer' filepath='Objects/unicodeobject.c' line='14169' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyUnicode_Decode' mangled-name='PyUnicode_Decode' filepath='Objects/unicodeobject.c' line='3443' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Decode'> + <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='3443' column='1'/> + <parameter type-id='type-id-15' name='size' filepath='Objects/unicodeobject.c' line='3444' column='1'/> + <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3445' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3446' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyModule_Create2' mangled-name='PyModule_Create2' filepath='./Include/modsupport.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyInterpreterState_GetConfig' mangled-name='_PyInterpreterState_GetConfig' filepath='./Include/cpython/pystate.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_SetFileSystemEncoding' mangled-name='_Py_SetFileSystemEncoding' filepath='./Include/internal/pycore_pylifecycle.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_DumpPathConfig' mangled-name='_Py_DumpPathConfig' filepath='./Include/internal/pycore_pathconfig.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyCodec_Lookup' mangled-name='_PyCodec_Lookup' filepath='./Include/codecs.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyMem_RawWcsdup' mangled-name='_PyMem_RawWcsdup' filepath='./Include/cpython/pymem.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_SetDefault' mangled-name='PyDict_SetDefault' filepath='./Include/cpython/dictobject.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_FormatWriter' mangled-name='_PyLong_FormatWriter' filepath='./Include/longobject.h' line='197' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_ToBase' mangled-name='PyNumber_ToBase' filepath='./Include/abstract.h' line='611' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_ToDecimalDigit' mangled-name='_PyUnicode_ToDecimalDigit' filepath='./Include/cpython/unicodeobject.h' line='1139' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsXidStart' mangled-name='_PyUnicode_IsXidStart' filepath='./Include/cpython/unicodeobject.h' line='1083' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsXidContinue' mangled-name='_PyUnicode_IsXidContinue' filepath='./Include/cpython/unicodeobject.h' line='1087' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wmemcmp' mangled-name='wmemcmp' filepath='/usr/include/wchar.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsLinebreak' mangled-name='_PyUnicode_IsLinebreak' filepath='./Include/cpython/unicodeobject.h' line='1095' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsCaseIgnorable' mangled-name='_PyUnicode_IsCaseIgnorable' filepath='./Include/cpython/unicodeobject.h' line='1131' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsCased' mangled-name='_PyUnicode_IsCased' filepath='./Include/cpython/unicodeobject.h' line='1135' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCodec_StrictErrors' mangled-name='PyCodec_StrictErrors' filepath='./Include/codecs.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeTranslateError_SetStart' mangled-name='PyUnicodeTranslateError_SetStart' filepath='./Include/pyerrors.h' line='278' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeTranslateError_SetEnd' mangled-name='PyUnicodeTranslateError_SetEnd' filepath='./Include/pyerrors.h' line='290' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicodeTranslateError_Create' mangled-name='_PyUnicodeTranslateError_Create' filepath='./Include/cpython/pyerrors.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeTranslateError_SetReason' mangled-name='PyUnicodeTranslateError_SetReason' filepath='./Include/pyerrors.h' line='307' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCodec_LookupError' mangled-name='PyCodec_LookupError' filepath='./Include/codecs.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Init' mangled-name='PyObject_Init' filepath='./Include/objimpl.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytesWriter_WriteBytes' mangled-name='_PyBytesWriter_WriteBytes' filepath='./Include/cpython/bytesobject.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytesWriter_Init' mangled-name='_PyBytesWriter_Init' filepath='./Include/cpython/bytesobject.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytesWriter_Alloc' mangled-name='_PyBytesWriter_Alloc' filepath='./Include/cpython/bytesobject.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytesWriter_Finish' mangled-name='_PyBytesWriter_Finish' filepath='./Include/cpython/bytesobject.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytesWriter_Dealloc' mangled-name='_PyBytesWriter_Dealloc' filepath='./Include/cpython/bytesobject.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeEncodeError_SetStart' mangled-name='PyUnicodeEncodeError_SetStart' filepath='./Include/pyerrors.h' line='276' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeEncodeError_SetEnd' mangled-name='PyUnicodeEncodeError_SetEnd' filepath='./Include/pyerrors.h' line='288' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeEncodeError_SetReason' mangled-name='PyUnicodeEncodeError_SetReason' filepath='./Include/pyerrors.h' line='299' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCapsule_Import' mangled-name='PyCapsule_Import' filepath='./Include/pycapsule.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeDecodeError_SetStart' mangled-name='PyUnicodeDecodeError_SetStart' filepath='./Include/pyerrors.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeDecodeError_SetEnd' mangled-name='PyUnicodeDecodeError_SetEnd' filepath='./Include/pyerrors.h' line='289' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeDecodeError_SetReason' mangled-name='PyUnicodeDecodeError_SetReason' filepath='./Include/pyerrors.h' line='303' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeDecodeError_Create' mangled-name='PyUnicodeDecodeError_Create' filepath='./Include/pyerrors.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeDecodeError_GetObject' mangled-name='PyUnicodeDecodeError_GetObject' filepath='./Include/pyerrors.h' line='265' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyOS_FSPath' mangled-name='PyOS_FSPath' filepath='./Include/osmodule.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_DecodeLocaleEx' mangled-name='_Py_DecodeLocaleEx' filepath='./Include/cpython/fileutils.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCodec_Encode' mangled-name='PyCodec_Encode' filepath='./Include/codecs.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_EncodeLocaleEx' mangled-name='_Py_EncodeLocaleEx' filepath='./Include/cpython/fileutils.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCodec_Decode' mangled-name='PyCodec_Decode' filepath='./Include/codecs.h' line='95' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_WriteUnraisableMsg' mangled-name='_PyErr_WriteUnraisableMsg' filepath='./Include/cpython/pyerrors.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_ToUpperFull' mangled-name='_PyUnicode_ToUpperFull' filepath='./Include/cpython/unicodeobject.h' line='1121' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_ToLowerFull' mangled-name='_PyUnicode_ToLowerFull' filepath='./Include/cpython/unicodeobject.h' line='1111' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsUppercase' mangled-name='_PyUnicode_IsUppercase' filepath='./Include/cpython/unicodeobject.h' line='1075' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsLowercase' mangled-name='_PyUnicode_IsLowercase' filepath='./Include/cpython/unicodeobject.h' line='1071' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsNumeric' mangled-name='_PyUnicode_IsNumeric' filepath='./Include/cpython/unicodeobject.h' line='1159' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsDigit' mangled-name='_PyUnicode_IsDigit' filepath='./Include/cpython/unicodeobject.h' line='1155' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsDecimalDigit' mangled-name='_PyUnicode_IsDecimalDigit' filepath='./Include/cpython/unicodeobject.h' line='1151' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsAlpha' mangled-name='_PyUnicode_IsAlpha' filepath='./Include/cpython/unicodeobject.h' line='1167' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_IsTitlecase' mangled-name='_PyUnicode_IsTitlecase' filepath='./Include/cpython/unicodeobject.h' line='1079' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_ToFoldedFull' mangled-name='_PyUnicode_ToFoldedFull' filepath='./Include/cpython/unicodeobject.h' line='1126' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_ToTitleFull' mangled-name='_PyUnicode_ToTitleFull' filepath='./Include/cpython/unicodeobject.h' line='1116' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wcscmp' mangled-name='wcscmp' filepath='/usr/include/wchar.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyCodec_EncodeText' mangled-name='_PyCodec_EncodeText' filepath='./Include/codecs.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMemoryView_FromBuffer' mangled-name='PyMemoryView_FromBuffer' filepath='./Include/memoryobject.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyCodec_DecodeText' mangled-name='_PyCodec_DecodeText' filepath='./Include/codecs.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_FormatAdvancedWriter' mangled-name='_PyUnicode_FormatAdvancedWriter' filepath='./Include/cpython/unicodeobject.h' line='723' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Format' mangled-name='PyObject_Format' filepath='./Include/abstract.h' line='363' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/unicodectype.c' comp-dir-path='/src' language='LANG_C99'> @@ -9353,18 +11513,18 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyUnicode_ToUpperFull' mangled-name='_PyUnicode_ToUpperFull' filepath='Objects/unicodectype.c' line='243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToUpperFull'> - <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodectype.c' line='259' column='1'/> - <parameter type-id='type-id-539' name='res' filepath='Objects/unicodectype.c' line='259' column='1'/> + <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodectype.c' line='243' column='1'/> + <parameter type-id='type-id-539' name='res' filepath='Objects/unicodectype.c' line='243' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyUnicode_ToTitleFull' mangled-name='_PyUnicode_ToTitleFull' filepath='Objects/unicodectype.c' line='227' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToTitleFull'> - <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodectype.c' line='259' column='1'/> - <parameter type-id='type-id-539' name='res' filepath='Objects/unicodectype.c' line='259' column='1'/> + <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodectype.c' line='243' column='1'/> + <parameter type-id='type-id-539' name='res' filepath='Objects/unicodectype.c' line='243' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyUnicode_ToLowerFull' mangled-name='_PyUnicode_ToLowerFull' filepath='Objects/unicodectype.c' line='211' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToLowerFull'> - <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodectype.c' line='259' column='1'/> - <parameter type-id='type-id-539' name='res' filepath='Objects/unicodectype.c' line='259' column='1'/> + <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodectype.c' line='243' column='1'/> + <parameter type-id='type-id-539' name='res' filepath='Objects/unicodectype.c' line='243' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyUnicode_ToLowercase' mangled-name='_PyUnicode_ToLowercase' filepath='Objects/unicodectype.c' line='202' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToLowercase'> @@ -9432,31 +11592,27 @@ <parameter type-id='type-id-541' name='ch' filepath='Objects/unicodetype_db.h' line='6249' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyUnicode_ToNumeric' mangled-name='_PyUnicode_ToNumeric' filepath='Objects/unicodetype_db.h' line='4187' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToNumeric'> - <parameter type-id='type-id-474' name='ch' filepath='Objects/unicodetype_db.h' line='4187' column='1'/> - <return type-id='type-id-441'/> - </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Objects/weakrefobject.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='_PyWeakref_RefType' type-id='type-id-182' mangled-name='_PyWeakref_RefType' visibility='default' filepath='./Include/weakrefobject.h' line='43' column='1' elf-symbol-id='_PyWeakref_RefType'/> <var-decl name='_PyWeakref_ProxyType' type-id='type-id-182' mangled-name='_PyWeakref_ProxyType' visibility='default' filepath='./Include/weakrefobject.h' line='44' column='1' elf-symbol-id='_PyWeakref_ProxyType'/> <var-decl name='_PyWeakref_CallableProxyType' type-id='type-id-182' mangled-name='_PyWeakref_CallableProxyType' visibility='default' filepath='./Include/weakrefobject.h' line='45' column='1' elf-symbol-id='_PyWeakref_CallableProxyType'/> - <function-decl name='PyObject_ClearWeakRefs' mangled-name='PyObject_ClearWeakRefs' filepath='Objects/weakrefobject.c' line='975' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ClearWeakRefs'> - <parameter type-id='type-id-100' name='object' filepath='Objects/weakrefobject.c' line='975' column='1'/> + <function-decl name='PyObject_ClearWeakRefs' mangled-name='PyObject_ClearWeakRefs' filepath='Objects/weakrefobject.c' line='967' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ClearWeakRefs'> + <parameter type-id='type-id-100' name='object' filepath='Objects/weakrefobject.c' line='967' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyWeakref_GetObject' mangled-name='PyWeakref_GetObject' filepath='Objects/weakrefobject.c' line='945' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_GetObject'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <function-decl name='PyWeakref_GetObject' mangled-name='PyWeakref_GetObject' filepath='Objects/weakrefobject.c' line='937' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_GetObject'> + <parameter type-id='type-id-100' name='op' filepath='Objects/methodobject.c' line='129' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyWeakref_NewProxy' mangled-name='PyWeakref_NewProxy' filepath='Objects/weakrefobject.c' line='878' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_NewProxy'> - <parameter type-id='type-id-100' name='ob' filepath='Objects/weakrefobject.c' line='878' column='1'/> - <parameter type-id='type-id-100' name='callback' filepath='Objects/weakrefobject.c' line='878' column='1'/> + <function-decl name='PyWeakref_NewProxy' mangled-name='PyWeakref_NewProxy' filepath='Objects/weakrefobject.c' line='870' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_NewProxy'> + <parameter type-id='type-id-100' name='ob' filepath='Objects/weakrefobject.c' line='870' column='1'/> + <parameter type-id='type-id-100' name='callback' filepath='Objects/weakrefobject.c' line='870' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyWeakref_NewRef' mangled-name='PyWeakref_NewRef' filepath='Objects/weakrefobject.c' line='819' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_NewRef'> - <parameter type-id='type-id-100' name='ob' filepath='Objects/weakrefobject.c' line='819' column='1'/> - <parameter type-id='type-id-100' name='callback' filepath='Objects/weakrefobject.c' line='819' column='1'/> + <function-decl name='PyWeakref_NewRef' mangled-name='PyWeakref_NewRef' filepath='Objects/weakrefobject.c' line='811' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_NewRef'> + <parameter type-id='type-id-100' name='ob' filepath='Objects/weakrefobject.c' line='811' column='1'/> + <parameter type-id='type-id-100' name='callback' filepath='Objects/weakrefobject.c' line='811' column='1'/> <return type-id='type-id-100'/> </function-decl> <class-decl name='_PyWeakReference' size-in-bits='448' is-struct='yes' visibility='default' filepath='./Include/weakrefobject.h' line='16' column='1' id='type-id-542'> @@ -9489,6 +11645,78 @@ <parameter type-id='type-id-543' name='head' filepath='Objects/weakrefobject.c' line='11' column='1'/> <return type-id='type-id-15'/> </function-decl> + <function-decl name='PyNumber_InPlaceMatrixMultiply' mangled-name='PyNumber_InPlaceMatrixMultiply' filepath='./Include/abstract.h' line='546' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_MatrixMultiply' mangled-name='PyNumber_MatrixMultiply' filepath='./Include/abstract.h' line='413' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_InPlaceOr' mangled-name='PyNumber_InPlaceOr' filepath='./Include/abstract.h' line='605' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_InPlaceXor' mangled-name='PyNumber_InPlaceXor' filepath='./Include/abstract.h' line='599' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_InPlaceAnd' mangled-name='PyNumber_InPlaceAnd' filepath='./Include/abstract.h' line='593' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_InPlaceRshift' mangled-name='PyNumber_InPlaceRshift' filepath='./Include/abstract.h' line='587' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_InPlaceLshift' mangled-name='PyNumber_InPlaceLshift' filepath='./Include/abstract.h' line='581' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_InPlacePower' mangled-name='PyNumber_InPlacePower' filepath='./Include/abstract.h' line='574' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_InPlaceRemainder' mangled-name='PyNumber_InPlaceRemainder' filepath='./Include/abstract.h' line='567' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_InPlaceTrueDivide' mangled-name='PyNumber_InPlaceTrueDivide' filepath='./Include/abstract.h' line='560' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_InPlaceFloorDivide' mangled-name='PyNumber_InPlaceFloorDivide' filepath='./Include/abstract.h' line='553' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_InPlaceMultiply' mangled-name='PyNumber_InPlaceMultiply' filepath='./Include/abstract.h' line='542' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_InPlaceSubtract' mangled-name='PyNumber_InPlaceSubtract' filepath='./Include/abstract.h' line='536' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_InPlaceAdd' mangled-name='PyNumber_InPlaceAdd' filepath='./Include/abstract.h' line='530' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Xor' mangled-name='PyNumber_Xor' filepath='./Include/abstract.h' line='487' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_And' mangled-name='PyNumber_And' filepath='./Include/abstract.h' line='482' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Rshift' mangled-name='PyNumber_Rshift' filepath='./Include/abstract.h' line='476' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Lshift' mangled-name='PyNumber_Lshift' filepath='./Include/abstract.h' line='470' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Invert' mangled-name='PyNumber_Invert' filepath='./Include/abstract.h' line='465' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Absolute' mangled-name='PyNumber_Absolute' filepath='./Include/abstract.h' line='460' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Positive' mangled-name='PyNumber_Positive' filepath='./Include/abstract.h' line='455' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Power' mangled-name='PyNumber_Power' filepath='./Include/abstract.h' line='444' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_Divmod' mangled-name='PyNumber_Divmod' filepath='./Include/abstract.h' line='438' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_TrueDivide' mangled-name='PyNumber_TrueDivide' filepath='./Include/abstract.h' line='426' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/_warnings.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='_PyWarnings_Init' mangled-name='_PyWarnings_Init' filepath='Python/_warnings.c' line='1383' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWarnings_Init'> @@ -9542,11 +11770,74 @@ <parameter is-variadic='yes'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='PyModule_AddObject' mangled-name='PyModule_AddObject' filepath='./Include/modsupport.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_Splitlines' mangled-name='PyUnicode_Splitlines' filepath='./Include/unicodeobject.h' line='842' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyList_GetItem' mangled-name='PyList_GetItem' filepath='./Include/listobject.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFrame_GetBack' mangled-name='PyFrame_GetBack' filepath='./Include/cpython/frameobject.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_IsSubclass' mangled-name='PyObject_IsSubclass' filepath='./Include/abstract.h' line='839' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_GetLength' mangled-name='PyUnicode_GetLength' filepath='./Include/unicodeobject.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFile_WriteObject' mangled-name='PyFile_WriteObject' filepath='./Include/fileobject.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFile_WriteString' mangled-name='PyFile_WriteString' filepath='./Include/fileobject.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySys_GetObjectId' mangled-name='_PySys_GetObjectId' filepath='./Include/cpython/sysmodule.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_DisplaySourceLine' mangled-name='_Py_DisplaySourceLine' filepath='./Include/cpython/traceback.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_IsFinalizing' mangled-name='_Py_IsFinalizing' filepath='./Include/cpython/pylifecycle.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_Contains' mangled-name='PyUnicode_Contains' filepath='./Include/unicodeobject.h' line='1013' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/Python-ast.c' comp-dir-path='/src' language='LANG_C99'> - <function-decl name='PyInit__ast' mangled-name='PyInit__ast' filepath='Python/Python-ast.c' line='10096' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__ast'> + <function-decl name='PyInit__ast' mangled-name='PyInit__ast' filepath='Python/Python-ast.c' line='10796' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__ast'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyType_FromSpec' mangled-name='PyType_FromSpec' filepath='./Include/object.h' line='209' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_EnterRecursiveCall' mangled-name='Py_EnterRecursiveCall' filepath='./Include/ceval.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_LeaveRecursiveCall' mangled-name='Py_LeaveRecursiveCall' filepath='./Include/ceval.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyType_GenericNew' mangled-name='PyType_GenericNew' filepath='./Include/object.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyModuleDef_Init' mangled-name='PyModuleDef_Init' filepath='./Include/moduleobject.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyModule_AddIntConstant' mangled-name='PyModule_AddIntConstant' filepath='./Include/modsupport.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySequence_Index' mangled-name='PySequence_Index' filepath='./Include/abstract.h' line='739' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyType_GetSlot' mangled-name='PyType_GetSlot' filepath='./Include/object.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_CallFunction' mangled-name='PyObject_CallFunction' filepath='./Include/abstract.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/ast.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='_PyAST_GetDocString' mangled-name='_PyAST_GetDocString' filepath='Python/ast.c' line='5844' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAST_GetDocString'> @@ -9573,6 +11864,12 @@ <parameter type-id='type-id-204' name='mod' filepath='Python/ast.c' line='531' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='strstr' mangled-name='strstr' filepath='/usr/include/string.h' line='330' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyParser_SimpleParseStringFlagsFilename' mangled-name='PyParser_SimpleParseStringFlagsFilename' filepath='./Include/pythonrun.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/ast_opt.c' comp-dir-path='/src' language='LANG_C99'> <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-547' visibility='default' filepath='./Include/compile.h' line='94' column='1' id='type-id-548'> @@ -9591,110 +11888,187 @@ <parameter type-id='type-id-549' name='state' filepath='Python/ast_opt.c' line='747' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='_PyAST_GetDocString' mangled-name='_PyAST_GetDocString' filepath='./Include/ast.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + </abi-instr> + <abi-instr version='1.0' address-size='64' path='Python/ast_unparse.c' comp-dir-path='/src' language='LANG_C99'> + <function-decl name='PyUnicode_Find' mangled-name='PyUnicode_Find' filepath='./Include/unicodeobject.h' line='922' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_Replace' mangled-name='PyUnicode_Replace' filepath='./Include/unicodeobject.h' line='953' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/bltinmodule.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyFilter_Type' type-id='type-id-182' mangled-name='PyFilter_Type' visibility='default' filepath='./Include/bltinmodule.h' line='7' column='1' elf-symbol-id='PyFilter_Type'/> <var-decl name='PyMap_Type' type-id='type-id-182' mangled-name='PyMap_Type' visibility='default' filepath='./Include/bltinmodule.h' line='8' column='1' elf-symbol-id='PyMap_Type'/> <var-decl name='PyZip_Type' type-id='type-id-182' mangled-name='PyZip_Type' visibility='default' filepath='./Include/bltinmodule.h' line='9' column='1' elf-symbol-id='PyZip_Type'/> + <function-decl name='_PyModule_CreateInitialized' mangled-name='_PyModule_CreateInitialized' filepath='./Include/modsupport.h' line='221' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArg_ParseStackAndKeywords' mangled-name='_PyArg_ParseStackAndKeywords' filepath='./Include/modsupport.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyImport_ImportModuleLevelObject' mangled-name='PyImport_ImportModuleLevelObject' filepath='./Include/import.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMapping_SetItemString' mangled-name='PyMapping_SetItemString' filepath='./Include/abstract.h' line='832' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyType_CalculateMetaclass' mangled-name='_PyType_CalculateMetaclass' filepath='./Include/cpython/object.h' line='304' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyEval_EvalCodeEx' mangled-name='PyEval_EvalCodeEx' filepath='./Include/eval.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFile_GetLine' mangled-name='PyFile_GetLine' filepath='./Include/fileobject.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_SourceAsString' mangled-name='_Py_SourceAsString' filepath='./Include/pythonrun.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyEval_MergeCompilerFlags' mangled-name='PyEval_MergeCompilerFlags' filepath='./Include/cpython/ceval.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyRun_StringFlags' mangled-name='PyRun_StringFlags' filepath='./Include/pythonrun.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyEval_GetBuiltins' mangled-name='PyEval_GetBuiltins' filepath='./Include/ceval.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyEval_EvalCode' mangled-name='PyEval_EvalCode' filepath='./Include/eval.h' line='10' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyArena_New' mangled-name='PyArena_New' filepath='./Include/pyarena.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyAST_obj2mod' mangled-name='PyAST_obj2mod' filepath='./Include/Python-ast.h' line='690' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyAST_Validate' mangled-name='PyAST_Validate' filepath='./Include/ast.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyAST_CompileObject' mangled-name='PyAST_CompileObject' filepath='./Include/compile.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyArena_Free' mangled-name='PyArena_Free' filepath='./Include/pyarena.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyAST_Check' mangled-name='PyAST_Check' filepath='./Include/Python-ast.h' line='691' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_CompileStringObject' mangled-name='Py_CompileStringObject' filepath='./Include/pythonrun.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_FSDecoder' mangled-name='PyUnicode_FSDecoder' filepath='./Include/unicodeobject.h' line='753' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCallIter_New' mangled-name='PyCallIter_New' filepath='./Include/iterobject.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_FromOrdinal' mangled-name='PyUnicode_FromOrdinal' filepath='./Include/unicodeobject.h' line='329' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySys_GetObject' mangled-name='PySys_GetObject' filepath='./Include/sysmodule.h' line='10' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/ceval.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='_Py_CheckRecursionLimit' type-id='type-id-8' mangled-name='_Py_CheckRecursionLimit' visibility='default' filepath='./Include/internal/pycore_ceval.h' line='62' column='1' elf-symbol-id='_Py_CheckRecursionLimit'/> - <function-decl name='Py_LeaveRecursiveCall' mangled-name='Py_LeaveRecursiveCall' filepath='Python/ceval.c' line='5691' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_LeaveRecursiveCall'> - <return type-id='type-id-4'/> - </function-decl> - <function-decl name='Py_EnterRecursiveCall' mangled-name='Py_EnterRecursiveCall' filepath='Python/ceval.c' line='5684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_EnterRecursiveCall'> - <parameter type-id='type-id-3' name='where' filepath='Python/ceval.c' line='5684' column='1'/> + <function-decl name='Py_EnterRecursiveCall' mangled-name='Py_EnterRecursiveCall' filepath='Python/ceval.c' line='5687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_EnterRecursiveCall'> + <parameter type-id='type-id-3' name='where' filepath='Python/ceval.c' line='5687' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyEval_RequestCodeExtraIndex' mangled-name='_PyEval_RequestCodeExtraIndex' filepath='Python/ceval.c' line='5601' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_RequestCodeExtraIndex'> - <parameter type-id='type-id-106' name='free' filepath='Python/ceval.c' line='5601' column='1'/> + <function-decl name='_PyEval_RequestCodeExtraIndex' mangled-name='_PyEval_RequestCodeExtraIndex' filepath='Python/ceval.c' line='5604' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_RequestCodeExtraIndex'> + <parameter type-id='type-id-106' name='free' filepath='Python/ceval.c' line='5604' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='_PyEval_SliceIndexNotNone' mangled-name='_PyEval_SliceIndexNotNone' filepath='Python/ceval.c' line='5152' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SliceIndexNotNone'> - <parameter type-id='type-id-100' name='exc' filepath='Objects/exceptions.c' line='1758' column='1'/> - <parameter type-id='type-id-158' name='end' filepath='Objects/exceptions.c' line='1758' column='1'/> + <function-decl name='_PyEval_SliceIndexNotNone' mangled-name='_PyEval_SliceIndexNotNone' filepath='Python/ceval.c' line='5155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SliceIndexNotNone'> + <parameter type-id='type-id-100' name='v' filepath='Python/ceval.c' line='5155' column='1'/> + <parameter type-id='type-id-158' name='pi' filepath='Python/ceval.c' line='5155' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyEval_SliceIndex' mangled-name='_PyEval_SliceIndex' filepath='Python/ceval.c' line='5130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SliceIndex'> - <parameter type-id='type-id-100' name='v' filepath='Python/ceval.c' line='5130' column='1'/> - <parameter type-id='type-id-158' name='pi' filepath='Python/ceval.c' line='5130' column='1'/> + <function-decl name='_PyEval_SliceIndex' mangled-name='_PyEval_SliceIndex' filepath='Python/ceval.c' line='5133' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SliceIndex'> + <parameter type-id='type-id-100' name='v' filepath='Python/ceval.c' line='5133' column='1'/> + <parameter type-id='type-id-158' name='pi' filepath='Python/ceval.c' line='5133' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyEval_GetFuncDesc' mangled-name='PyEval_GetFuncDesc' filepath='Python/ceval.c' line='4979' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFuncDesc'> - <parameter type-id='type-id-100' name='ob' filepath='Objects/exceptions.c' line='365' column='1'/> + <function-decl name='PyEval_GetFuncDesc' mangled-name='PyEval_GetFuncDesc' filepath='Python/ceval.c' line='4982' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFuncDesc'> + <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='4106' column='1'/> <return type-id='type-id-3'/> </function-decl> - <function-decl name='PyEval_GetFuncName' mangled-name='PyEval_GetFuncName' filepath='Python/ceval.c' line='4966' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFuncName'> - <parameter type-id='type-id-100' name='ob' filepath='Objects/exceptions.c' line='365' column='1'/> + <function-decl name='PyEval_GetFuncName' mangled-name='PyEval_GetFuncName' filepath='Python/ceval.c' line='4969' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFuncName'> + <parameter type-id='type-id-100' name='func' filepath='Python/ceval.c' line='4969' column='1'/> <return type-id='type-id-3'/> </function-decl> - <function-decl name='PyEval_MergeCompilerFlags' mangled-name='PyEval_MergeCompilerFlags' filepath='Python/ceval.c' line='4941' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_MergeCompilerFlags'> - <parameter type-id='type-id-226' name='cf' filepath='Python/ceval.c' line='4941' column='1'/> + <function-decl name='PyEval_MergeCompilerFlags' mangled-name='PyEval_MergeCompilerFlags' filepath='Python/ceval.c' line='4944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_MergeCompilerFlags'> + <parameter type-id='type-id-226' name='cf' filepath='Python/ceval.c' line='4944' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyEval_GetGlobals' mangled-name='PyEval_GetGlobals' filepath='Python/ceval.c' line='4928' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetGlobals'> + <function-decl name='PyEval_GetGlobals' mangled-name='PyEval_GetGlobals' filepath='Python/ceval.c' line='4931' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetGlobals'> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyEval_GetLocals' mangled-name='PyEval_GetLocals' filepath='Python/ceval.c' line='4910' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetLocals'> + <function-decl name='PyEval_GetLocals' mangled-name='PyEval_GetLocals' filepath='Python/ceval.c' line='4913' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetLocals'> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyEval_GetBuiltinId' mangled-name='_PyEval_GetBuiltinId' filepath='Python/ceval.c' line='4896' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetBuiltinId'> - <parameter type-id='type-id-476' name='name' filepath='Python/ceval.c' line='4896' column='1'/> + <function-decl name='_PyEval_GetBuiltinId' mangled-name='_PyEval_GetBuiltinId' filepath='Python/ceval.c' line='4899' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetBuiltinId'> + <parameter type-id='type-id-476' name='name' filepath='Python/ceval.c' line='4899' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyEval_GetBuiltins' mangled-name='PyEval_GetBuiltins' filepath='Python/ceval.c' line='4884' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetBuiltins'> + <function-decl name='PyEval_GetBuiltins' mangled-name='PyEval_GetBuiltins' filepath='Python/ceval.c' line='4887' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetBuiltins'> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyEval_GetFrame' mangled-name='PyEval_GetFrame' filepath='Python/ceval.c' line='4877' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFrame'> + <function-decl name='PyEval_GetFrame' mangled-name='PyEval_GetFrame' filepath='Python/ceval.c' line='4880' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFrame'> <return type-id='type-id-312'/> </function-decl> - <function-decl name='_PyEval_GetAsyncGenFinalizer' mangled-name='_PyEval_GetAsyncGenFinalizer' filepath='Python/ceval.c' line='4870' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetAsyncGenFinalizer'> + <function-decl name='_PyEval_GetAsyncGenFinalizer' mangled-name='_PyEval_GetAsyncGenFinalizer' filepath='Python/ceval.c' line='4873' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetAsyncGenFinalizer'> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyEval_SetAsyncGenFinalizer' mangled-name='_PyEval_SetAsyncGenFinalizer' filepath='Python/ceval.c' line='4856' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetAsyncGenFinalizer'> - <parameter type-id='type-id-100' name='finalizer' filepath='Python/ceval.c' line='4856' column='1'/> + <function-decl name='_PyEval_SetAsyncGenFinalizer' mangled-name='_PyEval_SetAsyncGenFinalizer' filepath='Python/ceval.c' line='4859' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetAsyncGenFinalizer'> + <parameter type-id='type-id-100' name='finalizer' filepath='Python/ceval.c' line='4859' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyEval_GetAsyncGenFirstiter' mangled-name='_PyEval_GetAsyncGenFirstiter' filepath='Python/ceval.c' line='4849' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetAsyncGenFirstiter'> + <function-decl name='_PyEval_GetAsyncGenFirstiter' mangled-name='_PyEval_GetAsyncGenFirstiter' filepath='Python/ceval.c' line='4852' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetAsyncGenFirstiter'> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyEval_SetAsyncGenFirstiter' mangled-name='_PyEval_SetAsyncGenFirstiter' filepath='Python/ceval.c' line='4835' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetAsyncGenFirstiter'> - <parameter type-id='type-id-100' name='finalizer' filepath='Python/ceval.c' line='4856' column='1'/> + <function-decl name='_PyEval_SetAsyncGenFirstiter' mangled-name='_PyEval_SetAsyncGenFirstiter' filepath='Python/ceval.c' line='4838' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetAsyncGenFirstiter'> + <parameter type-id='type-id-100' name='finalizer' filepath='Python/ceval.c' line='4859' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyEval_GetCoroutineOriginTrackingDepth' mangled-name='_PyEval_GetCoroutineOriginTrackingDepth' filepath='Python/ceval.c' line='4828' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetCoroutineOriginTrackingDepth'> + <function-decl name='_PyEval_GetCoroutineOriginTrackingDepth' mangled-name='_PyEval_GetCoroutineOriginTrackingDepth' filepath='Python/ceval.c' line='4831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetCoroutineOriginTrackingDepth'> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyEval_SetCoroutineOriginTrackingDepth' mangled-name='_PyEval_SetCoroutineOriginTrackingDepth' filepath='Python/ceval.c' line='4821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetCoroutineOriginTrackingDepth'> - <parameter type-id='type-id-409' name='tstate' filepath='Python/ceval.c' line='4821' column='1'/> - <parameter type-id='type-id-8' name='new_depth' filepath='Python/ceval.c' line='4821' column='1'/> + <function-decl name='_PyEval_SetCoroutineOriginTrackingDepth' mangled-name='_PyEval_SetCoroutineOriginTrackingDepth' filepath='Python/ceval.c' line='4824' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetCoroutineOriginTrackingDepth'> + <parameter type-id='type-id-409' name='tstate' filepath='Python/ceval.c' line='4824' column='1'/> + <parameter type-id='type-id-8' name='new_depth' filepath='Python/ceval.c' line='4824' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyEval_SetTrace' mangled-name='PyEval_SetTrace' filepath='Python/ceval.c' line='4810' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_SetTrace'> - <parameter type-id='type-id-235' name='func' filepath='Python/ceval.c' line='4810' column='1'/> - <parameter type-id='type-id-100' name='arg' filepath='Python/ceval.c' line='4810' column='1'/> + <function-decl name='PyEval_SetTrace' mangled-name='PyEval_SetTrace' filepath='Python/ceval.c' line='4813' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_SetTrace'> + <parameter type-id='type-id-235' name='func' filepath='Python/ceval.c' line='4813' column='1'/> + <parameter type-id='type-id-100' name='arg' filepath='Python/ceval.c' line='4813' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyEval_SetTrace' mangled-name='_PyEval_SetTrace' filepath='Python/ceval.c' line='4775' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetTrace'> - <parameter type-id='type-id-409' name='tstate' filepath='Python/ceval.c' line='4775' column='1'/> - <parameter type-id='type-id-235' name='func' filepath='Python/ceval.c' line='4775' column='1'/> - <parameter type-id='type-id-100' name='arg' filepath='Python/ceval.c' line='4775' column='1'/> + <function-decl name='_PyEval_SetTrace' mangled-name='_PyEval_SetTrace' filepath='Python/ceval.c' line='4778' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetTrace'> + <parameter type-id='type-id-409' name='tstate' filepath='Python/ceval.c' line='4778' column='1'/> + <parameter type-id='type-id-235' name='func' filepath='Python/ceval.c' line='4778' column='1'/> + <parameter type-id='type-id-100' name='arg' filepath='Python/ceval.c' line='4778' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyEval_SetProfile' mangled-name='PyEval_SetProfile' filepath='Python/ceval.c' line='4765' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_SetProfile'> - <parameter type-id='type-id-235' name='func' filepath='Python/ceval.c' line='4810' column='1'/> - <parameter type-id='type-id-100' name='arg' filepath='Python/ceval.c' line='4810' column='1'/> + <function-decl name='PyEval_SetProfile' mangled-name='PyEval_SetProfile' filepath='Python/ceval.c' line='4768' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_SetProfile'> + <parameter type-id='type-id-235' name='func' filepath='Python/ceval.c' line='4813' column='1'/> + <parameter type-id='type-id-100' name='arg' filepath='Python/ceval.c' line='4813' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyEval_SetProfile' mangled-name='_PyEval_SetProfile' filepath='Python/ceval.c' line='4734' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetProfile'> - <parameter type-id='type-id-409' name='tstate' filepath='Python/ceval.c' line='4734' column='1'/> - <parameter type-id='type-id-235' name='func' filepath='Python/ceval.c' line='4734' column='1'/> - <parameter type-id='type-id-100' name='arg' filepath='Python/ceval.c' line='4734' column='1'/> + <function-decl name='_PyEval_SetProfile' mangled-name='_PyEval_SetProfile' filepath='Python/ceval.c' line='4737' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetProfile'> + <parameter type-id='type-id-409' name='tstate' filepath='Python/ceval.c' line='4737' column='1'/> + <parameter type-id='type-id-235' name='func' filepath='Python/ceval.c' line='4737' column='1'/> + <parameter type-id='type-id-100' name='arg' filepath='Python/ceval.c' line='4737' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyEval_CallTracing' mangled-name='_PyEval_CallTracing' filepath='Python/ceval.c' line='4680' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_CallTracing'> - <parameter type-id='type-id-100' name='op' filepath='Objects/dictobject.c' line='1456' column='1'/> - <parameter type-id='type-id-100' name='key' filepath='Objects/dictobject.c' line='1456' column='1'/> + <function-decl name='_PyEval_CallTracing' mangled-name='_PyEval_CallTracing' filepath='Python/ceval.c' line='4683' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_CallTracing'> + <parameter type-id='type-id-100' name='func' filepath='Python/ceval.c' line='4683' column='1'/> + <parameter type-id='type-id-100' name='args' filepath='Python/ceval.c' line='4683' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyEval_EvalCodeEx' mangled-name='PyEval_EvalCodeEx' filepath='Python/ceval.c' line='4369' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_EvalCodeEx'> @@ -9745,16 +12119,11 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyEval_EvalCode' mangled-name='PyEval_EvalCode' filepath='Python/ceval.c' line='824' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_EvalCode'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1233' column='1'/> - <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='1233' column='1'/> - <parameter type-id='type-id-100' name='z' filepath='Objects/abstract.c' line='1233' column='1'/> + <parameter type-id='type-id-100' name='co' filepath='Python/ceval.c' line='824' column='1'/> + <parameter type-id='type-id-100' name='globals' filepath='Python/ceval.c' line='824' column='1'/> + <parameter type-id='type-id-100' name='locals' filepath='Python/ceval.c' line='824' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_Py_CheckRecursiveCall' mangled-name='_Py_CheckRecursiveCall' filepath='Python/ceval.c' line='780' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_CheckRecursiveCall'> - <parameter type-id='type-id-409' name='tstate' filepath='Python/ceval.c' line='780' column='1'/> - <parameter type-id='type-id-3' name='where' filepath='Python/ceval.c' line='780' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='Py_SetRecursionLimit' mangled-name='Py_SetRecursionLimit' filepath='Python/ceval.c' line='765' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetRecursionLimit'> <parameter type-id='type-id-8' name='new_limit' filepath='Python/ceval.c' line='765' column='1'/> <return type-id='type-id-4'/> @@ -9796,7 +12165,7 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='PyEval_AcquireThread' mangled-name='PyEval_AcquireThread' filepath='Python/ceval.c' line='381' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_AcquireThread'> - <parameter type-id='type-id-409' name='tstate' filepath='Python/ceval.c' line='463' column='1'/> + <parameter type-id='type-id-409' name='tstate' filepath='Python/ceval.c' line='381' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PyEval_ReleaseLock' mangled-name='PyEval_ReleaseLock' filepath='Python/ceval.c' line='360' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_ReleaseLock'> @@ -9822,6 +12191,188 @@ <parameter type-id='type-id-33' name='microseconds' filepath='Python/ceval_gil.h' line='321' column='1'/> <return type-id='type-id-4'/> </function-decl> + <function-decl name='_Py_CheckRecursiveCall' mangled-name='_Py_CheckRecursiveCall' filepath='Python/ceval.c' line='780' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_CheckRecursiveCall'> + <parameter type-id='type-id-409' name='tstate' filepath='Python/ceval.c' line='780' column='1'/> + <parameter type-id='type-id-3' name='where' filepath='Python/ceval.c' line='780' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='PyUnicode_Append' mangled-name='PyUnicode_Append' filepath='./Include/unicodeobject.h' line='807' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFrame_FastToLocalsWithError' mangled-name='PyFrame_FastToLocalsWithError' filepath='./Include/cpython/frameobject.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_SetObject' mangled-name='_PyErr_SetObject' filepath='./Include/internal/pycore_pyerrors.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySys_Audit' mangled-name='_PySys_Audit' filepath='./Include/internal/pycore_sysmodule.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_Fetch' mangled-name='_PyErr_Fetch' filepath='./Include/internal/pycore_pyerrors.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_Restore' mangled-name='_PyErr_Restore' filepath='./Include/internal/pycore_pyerrors.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_NormalizeException' mangled-name='_PyErr_NormalizeException' filepath='./Include/internal/pycore_pyerrors.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCell_New' mangled-name='PyCell_New' filepath='./Include/cellobject.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyAsyncGen_New' mangled-name='PyAsyncGen_New' filepath='./Include/genobject.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyGen_NewWithQualName' mangled-name='PyGen_NewWithQualName' filepath='./Include/genobject.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCoro_New' mangled-name='PyCoro_New' filepath='./Include/genobject.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_Concat' mangled-name='PyUnicode_Concat' filepath='./Include/unicodeobject.h' line='799' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyCode_CheckLineNumber' mangled-name='_PyCode_CheckLineNumber' filepath='./Include/cpython/code.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_Format' mangled-name='PyUnicode_Format' filepath='./Include/unicodeobject.h' line='1002' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyException_SetCause' mangled-name='PyException_SetCause' filepath='./Include/pyerrors.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_GetTopmostException' mangled-name='_PyErr_GetTopmostException' filepath='./Include/cpython/pyerrors.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyCoro_GetAwaitableIter' mangled-name='_PyCoro_GetAwaitableIter' filepath='./Include/genobject.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGen_yf' mangled-name='_PyGen_yf' filepath='./Include/genobject.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_ExceptionMatches' mangled-name='_PyErr_ExceptionMatches' filepath='./Include/internal/pycore_pyerrors.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGen_FetchStopIterationValue' mangled-name='_PyGen_FetchStopIterationValue' filepath='./Include/genobject.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGen_Send' mangled-name='_PyGen_Send' filepath='./Include/genobject.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyAsyncGenValueWrapperNew' mangled-name='_PyAsyncGenValueWrapperNew' filepath='./Include/genobject.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFrame_BlockPop' mangled-name='PyFrame_BlockPop' filepath='./Include/cpython/frameobject.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_Clear' mangled-name='_PyErr_Clear' filepath='./Include/internal/pycore_pyerrors.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_LoadGlobal' mangled-name='_PyDict_LoadGlobal' filepath='./Include/cpython/dictobject.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_JoinArray' mangled-name='_PyUnicode_JoinArray' filepath='./Include/cpython/unicodeobject.h' line='1015' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_MergeEx' mangled-name='_PyDict_MergeEx' filepath='./Include/cpython/dictobject.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFrame_LocalsToFast' mangled-name='PyFrame_LocalsToFast' filepath='./Include/cpython/frameobject.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyModuleSpec_IsInitializing' mangled-name='_PyModuleSpec_IsInitializing' filepath='./Include/moduleobject.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_SetImportError' mangled-name='PyErr_SetImportError' filepath='./Include/pyerrors.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyModule_GetFilenameObject' mangled-name='PyModule_GetFilenameObject' filepath='./Include/moduleobject.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFrame_BlockSetup' mangled-name='PyFrame_BlockSetup' filepath='./Include/cpython/frameobject.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_FastCallDictTstate' mangled-name='_PyObject_FastCallDictTstate' filepath='./Include/internal/pycore_call.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFunction_NewWithQualName' mangled-name='PyFunction_NewWithQualName' filepath='./Include/funcobject.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySlice_New' mangled-name='PySlice_New' filepath='./Include/sliceobject.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyException_SetTraceback' mangled-name='PyException_SetTraceback' filepath='./Include/pyerrors.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_get_thread_ident' mangled-name='PyThread_get_thread_ident' filepath='./Include/pythread.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_CheckSignalsTstate' mangled-name='_PyErr_CheckSignalsTstate' filepath='./Include/internal/pycore_pyerrors.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_SetNone' mangled-name='_PyErr_SetNone' filepath='./Include/internal/pycore_pyerrors.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyThreadState_Swap' mangled-name='_PyThreadState_Swap' filepath='./Include/internal/pycore_pystate.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyCode_InitOpcache' mangled-name='_PyCode_InitOpcache' filepath='./Include/internal/pycore_code.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyTraceBack_Here' mangled-name='PyTraceBack_Here' filepath='./Include/traceback.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_free_lock' mangled-name='PyThread_free_lock' filepath='./Include/pythread.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_Print' mangled-name='_PyErr_Print' filepath='./Include/internal/pycore_pylifecycle.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyGILState_GetThisThreadState' mangled-name='PyGILState_GetThisThreadState' filepath='./Include/pystate.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyThread_at_fork_reinit' mangled-name='_PyThread_at_fork_reinit' filepath='./Include/pythread.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyThreadState_DeleteExcept' mangled-name='_PyThreadState_DeleteExcept' filepath='./Include/internal/pycore_pystate.h' line='113' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_cond_destroy' mangled-name='pthread_cond_destroy' filepath='/usr/include/pthread.h' line='970' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_mutex_destroy' mangled-name='pthread_mutex_destroy' filepath='/usr/include/pthread.h' line='730' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_init_thread' mangled-name='PyThread_init_thread' filepath='./Include/pythread.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyThread_cond_after' mangled-name='_PyThread_cond_after' filepath='Python/condvar.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_cond_timedwait' mangled-name='pthread_cond_timedwait' filepath='/usr/include/pthread.h' line='997' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_mutex_unlock' mangled-name='pthread_mutex_unlock' filepath='/usr/include/pthread.h' line='756' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_mutex_lock' mangled-name='pthread_mutex_lock' filepath='/usr/include/pthread.h' line='738' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_cond_signal' mangled-name='pthread_cond_signal' filepath='/usr/include/pthread.h' line='974' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_exit_thread' mangled-name='PyThread_exit_thread' filepath='./Include/pythread.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_cond_wait' mangled-name='pthread_cond_wait' filepath='/usr/include/pthread.h' line='986' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_mutex_init' mangled-name='pthread_mutex_init' filepath='/usr/include/pthread.h' line='725' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyThread_cond_init' mangled-name='_PyThread_cond_init' filepath='Python/condvar.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/codecs.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='Py_hexdigits' type-id='type-id-3' mangled-name='Py_hexdigits' visibility='default' filepath='./Include/codecs.h' line='234' column='1' elf-symbol-id='Py_hexdigits'/> @@ -9842,22 +12393,13 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyCodec_IgnoreErrors' mangled-name='PyCodec_IgnoreErrors' filepath='Python/codecs.c' line='675' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_IgnoreErrors'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyCodec_StrictErrors' mangled-name='PyCodec_StrictErrors' filepath='Python/codecs.c' line='665' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_StrictErrors'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <parameter type-id='type-id-100' name='exc' filepath='Python/codecs.c' line='675' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyCodec_LookupError' mangled-name='PyCodec_LookupError' filepath='Python/codecs.c' line='638' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_LookupError'> - <parameter type-id='type-id-3' name='str' filepath='Objects/bytesobject.c' line='128' column='1'/> + <parameter type-id='type-id-3' name='name' filepath='Python/codecs.c' line='638' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyCodec_RegisterError' mangled-name='PyCodec_RegisterError' filepath='Python/codecs.c' line='622' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_RegisterError'> - <parameter type-id='type-id-3' name='name' filepath='Python/codecs.c' line='622' column='1'/> - <parameter type-id='type-id-100' name='error' filepath='Python/codecs.c' line='622' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='_PyCodec_DecodeText' mangled-name='_PyCodec_DecodeText' filepath='Python/codecs.c' line='603' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodec_DecodeText'> <parameter type-id='type-id-100' name='object' filepath='Python/codecs.c' line='603' column='1'/> <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='604' column='1'/> @@ -9876,15 +12418,15 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyCodec_Decode' mangled-name='PyCodec_Decode' filepath='Python/codecs.c' line='507' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Decode'> - <parameter type-id='type-id-100' name='object' filepath='Python/codecs.c' line='603' column='1'/> - <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='604' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='605' column='1'/> + <parameter type-id='type-id-100' name='object' filepath='Python/codecs.c' line='507' column='1'/> + <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='508' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='509' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyCodec_Encode' mangled-name='PyCodec_Encode' filepath='Python/codecs.c' line='494' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Encode'> - <parameter type-id='type-id-100' name='object' filepath='Python/codecs.c' line='603' column='1'/> - <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='604' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='605' column='1'/> + <parameter type-id='type-id-100' name='object' filepath='Python/codecs.c' line='507' column='1'/> + <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='508' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='509' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyCodec_StreamWriter' mangled-name='PyCodec_StreamWriter' filepath='Python/codecs.c' line='379' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_StreamWriter'> @@ -9918,13 +12460,13 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyCodecInfo_GetIncrementalEncoder' mangled-name='_PyCodecInfo_GetIncrementalEncoder' filepath='Python/codecs.c' line='336' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodecInfo_GetIncrementalEncoder'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='7267' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7267' column='1'/> + <parameter type-id='type-id-100' name='codec_info' filepath='Python/codecs.c' line='336' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='337' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyCodecInfo_GetIncrementalDecoder' mangled-name='_PyCodecInfo_GetIncrementalDecoder' filepath='Python/codecs.c' line='329' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodecInfo_GetIncrementalDecoder'> - <parameter type-id='type-id-100' name='unicode' filepath='Objects/unicodeobject.c' line='7267' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7267' column='1'/> + <parameter type-id='type-id-100' name='codec_info' filepath='Python/codecs.c' line='336' column='1'/> + <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='337' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyCodec_KnownEncoding' mangled-name='PyCodec_KnownEncoding' filepath='Python/codecs.c' line='213' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_KnownEncoding'> @@ -9943,17 +12485,71 @@ <parameter type-id='type-id-100' name='search_function' filepath='Python/codecs.c' line='34' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='PyCodec_RegisterError' mangled-name='PyCodec_RegisterError' filepath='Python/codecs.c' line='622' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_RegisterError'> + <parameter type-id='type-id-3' name='name' filepath='Python/codecs.c' line='622' column='1'/> + <parameter type-id='type-id-100' name='error' filepath='Python/codecs.c' line='622' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='PyCodec_StrictErrors' mangled-name='PyCodec_StrictErrors' filepath='Python/codecs.c' line='665' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_StrictErrors'> + <parameter type-id='type-id-100' name='mp' filepath='Objects/dictobject.c' line='2769' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyUnicodeDecodeError_GetStart' mangled-name='PyUnicodeDecodeError_GetStart' filepath='./Include/pyerrors.h' line='271' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeDecodeError_GetEnd' mangled-name='PyUnicodeDecodeError_GetEnd' filepath='./Include/pyerrors.h' line='283' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_FromKindAndData' mangled-name='PyUnicode_FromKindAndData' filepath='./Include/cpython/unicodeobject.h' line='558' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeEncodeError_GetStart' mangled-name='PyUnicodeEncodeError_GetStart' filepath='./Include/pyerrors.h' line='270' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeEncodeError_GetEnd' mangled-name='PyUnicodeEncodeError_GetEnd' filepath='./Include/pyerrors.h' line='282' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeEncodeError_GetObject' mangled-name='PyUnicodeEncodeError_GetObject' filepath='./Include/pyerrors.h' line='264' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeDecodeError_GetEncoding' mangled-name='PyUnicodeDecodeError_GetEncoding' filepath='./Include/pyerrors.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeEncodeError_GetEncoding' mangled-name='PyUnicodeEncodeError_GetEncoding' filepath='./Include/pyerrors.h' line='260' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeTranslateError_GetStart' mangled-name='PyUnicodeTranslateError_GetStart' filepath='./Include/pyerrors.h' line='272' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeTranslateError_GetEnd' mangled-name='PyUnicodeTranslateError_GetEnd' filepath='./Include/pyerrors.h' line='284' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicodeTranslateError_GetObject' mangled-name='PyUnicodeTranslateError_GetObject' filepath='./Include/pyerrors.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_GetItemStringWithError' mangled-name='_PyDict_GetItemStringWithError' filepath='./Include/cpython/dictobject.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_TrySetFromCause' mangled-name='_PyErr_TrySetFromCause' filepath='./Include/cpython/pyerrors.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_normalize_encoding' mangled-name='_Py_normalize_encoding' filepath='Python/codecs.c' line='53' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyList_Size' mangled-name='PyList_Size' filepath='./Include/listobject.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/compile.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyCompile_OpcodeStackEffect' mangled-name='PyCompile_OpcodeStackEffect' filepath='Python/compile.c' line='1132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCompile_OpcodeStackEffect'> - <parameter type-id='type-id-8' name='c1' filepath='Parser/token.c' line='109' column='1'/> - <parameter type-id='type-id-8' name='c2' filepath='Parser/token.c' line='109' column='1'/> + <parameter type-id='type-id-8' name='opcode' filepath='Python/compile.c' line='1132' column='1'/> + <parameter type-id='type-id-8' name='oparg' filepath='Python/compile.c' line='1132' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyCompile_OpcodeStackEffectWithJump' mangled-name='PyCompile_OpcodeStackEffectWithJump' filepath='Python/compile.c' line='1126' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCompile_OpcodeStackEffectWithJump'> - <parameter type-id='type-id-8' name='c1' filepath='Parser/token.c' line='193' column='1'/> - <parameter type-id='type-id-8' name='c2' filepath='Parser/token.c' line='193' column='1'/> - <parameter type-id='type-id-8' name='c3' filepath='Parser/token.c' line='193' column='1'/> + <parameter type-id='type-id-8' name='opcode' filepath='Python/compile.c' line='1126' column='1'/> + <parameter type-id='type-id-8' name='oparg' filepath='Python/compile.c' line='1126' column='1'/> + <parameter type-id='type-id-8' name='jump' filepath='Python/compile.c' line='1126' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyNode_Compile' mangled-name='PyNode_Compile' filepath='Python/compile.c' line='394' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNode_Compile'> @@ -9982,6 +12578,51 @@ <parameter type-id='type-id-100' name='ident' filepath='Python/compile.c' line='231' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyCode_Optimize' mangled-name='PyCode_Optimize' filepath='./Include/cpython/code.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCode_NewWithPosOnlyArgs' mangled-name='PyCode_NewWithPosOnlyArgs' filepath='./Include/cpython/code.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyAST_ExprAsUnicode' mangled-name='_PyAST_ExprAsUnicode' filepath='./Include/ast.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyST_GetScope' mangled-name='PyST_GetScope' filepath='./Include/symtable.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCapsule_New' mangled-name='PyCapsule_New' filepath='./Include/pycapsule.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCapsule_GetPointer' mangled-name='PyCapsule_GetPointer' filepath='./Include/pycapsule.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySymtable_Lookup' mangled-name='PySymtable_Lookup' filepath='./Include/symtable.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyAST_FromNode' mangled-name='PyAST_FromNode' filepath='./Include/ast.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySymtable_Free' mangled-name='PySymtable_Free' filepath='./Include/symtable.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFuture_FromASTObject' mangled-name='PyFuture_FromASTObject' filepath='./Include/compile.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyAST_Optimize' mangled-name='_PyAST_Optimize' filepath='./Include/compile.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySymtable_BuildObject' mangled-name='PySymtable_BuildObject' filepath='./Include/symtable.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_CopyCharacters' mangled-name='PyUnicode_CopyCharacters' filepath='./Include/cpython/unicodeobject.h' line='499' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyCode_ConstantKey' mangled-name='_PyCode_ConstantKey' filepath='./Include/cpython/code.h' line='156' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySequence_DelItem' mangled-name='PySequence_DelItem' filepath='./Include/abstract.h' line='661' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/context.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyContext_Type' type-id='type-id-182' mangled-name='PyContext_Type' visibility='default' filepath='./Include/context.h' line='10' column='1' elf-symbol-id='PyContext_Type'/> @@ -9992,11 +12633,6 @@ <parameter type-id='type-id-100' name='otok' filepath='Python/context.c' line='289' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyContextVar_Set' mangled-name='PyContextVar_Set' filepath='Python/context.c' line='253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContextVar_Set'> - <parameter type-id='type-id-100' name='privateobj' filepath='Python/compile.c' line='231' column='1'/> - <parameter type-id='type-id-100' name='ident' filepath='Python/compile.c' line='231' column='1'/> - <return type-id='type-id-100'/> - </function-decl> <function-decl name='PyContextVar_Get' mangled-name='PyContextVar_Get' filepath='Python/context.c' line='190' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContextVar_Get'> <parameter type-id='type-id-100' name='ovar' filepath='Python/context.c' line='190' column='1'/> <parameter type-id='type-id-100' name='def' filepath='Python/context.c' line='190' column='1'/> @@ -10009,18 +12645,18 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyContext_Exit' mangled-name='PyContext_Exit' filepath='Python/context.c' line='168' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_Exit'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='284' column='1'/> + <parameter type-id='type-id-100' name='octx' filepath='Python/context.c' line='168' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyContext_Enter' mangled-name='PyContext_Enter' filepath='Python/context.c' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_Enter'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='284' column='1'/> + <parameter type-id='type-id-100' name='octx' filepath='Python/context.c' line='168' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyContext_CopyCurrent' mangled-name='PyContext_CopyCurrent' filepath='Python/context.c' line='95' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_CopyCurrent'> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyContext_Copy' mangled-name='PyContext_Copy' filepath='Python/context.c' line='86' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_Copy'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <parameter type-id='type-id-100' name='callable' filepath='Objects/funcobject.c' line='1037' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyContext_New' mangled-name='PyContext_New' filepath='Python/context.c' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_New'> @@ -10029,269 +12665,443 @@ <function-decl name='_PyContext_NewHamtForTests' mangled-name='_PyContext_NewHamtForTests' filepath='Python/context.c' line='72' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyContext_NewHamtForTests'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyContextVar_Set' mangled-name='PyContextVar_Set' filepath='Python/context.c' line='253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContextVar_Set'> + <parameter type-id='type-id-100' name='ovar' filepath='Python/context.c' line='253' column='1'/> + <parameter type-id='type-id-100' name='val' filepath='Python/context.c' line='253' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='_PyHamt_Init' mangled-name='_PyHamt_Init' filepath='./Include/internal/pycore_hamt.h' line='113' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyHamt_Fini' mangled-name='_PyHamt_Fini' filepath='./Include/internal/pycore_hamt.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyHamt_Assoc' mangled-name='_PyHamt_Assoc' filepath='./Include/internal/pycore_hamt.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyHamt_Find' mangled-name='_PyHamt_Find' filepath='./Include/internal/pycore_hamt.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyHamt_Len' mangled-name='_PyHamt_Len' filepath='./Include/internal/pycore_hamt.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyHamt_NewIterKeys' mangled-name='_PyHamt_NewIterKeys' filepath='./Include/internal/pycore_hamt.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyHamt_Without' mangled-name='_PyHamt_Without' filepath='./Include/internal/pycore_hamt.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyHamt_New' mangled-name='_PyHamt_New' filepath='./Include/internal/pycore_hamt.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyHamt_NewIterValues' mangled-name='_PyHamt_NewIterValues' filepath='./Include/internal/pycore_hamt.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyHamt_NewIterItems' mangled-name='_PyHamt_NewIterItems' filepath='./Include/internal/pycore_hamt.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyHamt_Eq' mangled-name='_PyHamt_Eq' filepath='./Include/internal/pycore_hamt.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_Size' mangled-name='PyDict_Size' filepath='./Include/dictobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/errors.c' comp-dir-path='/src' language='LANG_C99'> - <function-decl name='PyErr_ProgramTextObject' mangled-name='PyErr_ProgramTextObject' filepath='Python/errors.c' line='1696' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ProgramTextObject'> - <parameter type-id='type-id-100' name='n' filepath='Objects/abstract.c' line='1569' column='1'/> - <parameter type-id='type-id-8' name='base' filepath='Objects/abstract.c' line='1569' column='1'/> + <function-decl name='PyErr_ProgramTextObject' mangled-name='PyErr_ProgramTextObject' filepath='Python/errors.c' line='1722' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ProgramTextObject'> + <parameter type-id='type-id-100' name='filename' filepath='Python/errors.c' line='1722' column='1'/> + <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1722' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_ProgramText' mangled-name='PyErr_ProgramText' filepath='Python/errors.c' line='1684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ProgramText'> - <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='1684' column='1'/> - <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1684' column='1'/> + <function-decl name='PyErr_ProgramText' mangled-name='PyErr_ProgramText' filepath='Python/errors.c' line='1710' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ProgramText'> + <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='1710' column='1'/> + <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1710' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_SyntaxLocationEx' mangled-name='PyErr_SyntaxLocationEx' filepath='Python/errors.c' line='1623' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SyntaxLocationEx'> - <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='1623' column='1'/> - <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1623' column='1'/> - <parameter type-id='type-id-8' name='col_offset' filepath='Python/errors.c' line='1623' column='1'/> + <function-decl name='PyErr_SyntaxLocationEx' mangled-name='PyErr_SyntaxLocationEx' filepath='Python/errors.c' line='1649' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SyntaxLocationEx'> + <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='1649' column='1'/> + <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1649' column='1'/> + <parameter type-id='type-id-8' name='col_offset' filepath='Python/errors.c' line='1649' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_SyntaxLocationObject' mangled-name='PyErr_SyntaxLocationObject' filepath='Python/errors.c' line='1550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SyntaxLocationObject'> - <parameter type-id='type-id-100' name='filename' filepath='Python/errors.c' line='1550' column='1'/> - <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1550' column='1'/> - <parameter type-id='type-id-8' name='col_offset' filepath='Python/errors.c' line='1550' column='1'/> + <function-decl name='PyErr_SyntaxLocationObject' mangled-name='PyErr_SyntaxLocationObject' filepath='Python/errors.c' line='1576' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SyntaxLocationObject'> + <parameter type-id='type-id-100' name='filename' filepath='Python/errors.c' line='1576' column='1'/> + <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1576' column='1'/> + <parameter type-id='type-id-8' name='col_offset' filepath='Python/errors.c' line='1576' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_SyntaxLocation' mangled-name='PyErr_SyntaxLocation' filepath='Python/errors.c' line='1539' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SyntaxLocation'> - <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='1539' column='1'/> - <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1539' column='1'/> + <function-decl name='PyErr_SyntaxLocation' mangled-name='PyErr_SyntaxLocation' filepath='Python/errors.c' line='1565' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SyntaxLocation'> + <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='1565' column='1'/> + <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1565' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_WriteUnraisable' mangled-name='PyErr_WriteUnraisable' filepath='Python/errors.c' line='1529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WriteUnraisable'> - <parameter type-id='type-id-100' name='op' filepath='Objects/object.c' line='1822' column='1'/> + <function-decl name='PyErr_WriteUnraisable' mangled-name='PyErr_WriteUnraisable' filepath='Python/errors.c' line='1555' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WriteUnraisable'> + <parameter type-id='type-id-100' name='obj' filepath='Python/errors.c' line='1555' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_WriteUnraisableMsg' mangled-name='_PyErr_WriteUnraisableMsg' filepath='Python/errors.c' line='1426' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_WriteUnraisableMsg'> - <parameter type-id='type-id-3' name='err_msg_str' filepath='Python/errors.c' line='1426' column='1'/> - <parameter type-id='type-id-100' name='obj' filepath='Python/errors.c' line='1426' column='1'/> + <function-decl name='_PyErr_WriteUnraisableMsg' mangled-name='_PyErr_WriteUnraisableMsg' filepath='Python/errors.c' line='1452' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_WriteUnraisableMsg'> + <parameter type-id='type-id-3' name='err_msg_str' filepath='Python/errors.c' line='1452' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Python/errors.c' line='1452' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_NewExceptionWithDoc' mangled-name='PyErr_NewExceptionWithDoc' filepath='Python/errors.c' line='1136' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NewExceptionWithDoc'> - <parameter type-id='type-id-3' name='name' filepath='Python/errors.c' line='1136' column='1'/> - <parameter type-id='type-id-3' name='doc' filepath='Python/errors.c' line='1136' column='1'/> - <parameter type-id='type-id-100' name='base' filepath='Python/errors.c' line='1137' column='1'/> - <parameter type-id='type-id-100' name='dict' filepath='Python/errors.c' line='1137' column='1'/> + <function-decl name='PyErr_NewExceptionWithDoc' mangled-name='PyErr_NewExceptionWithDoc' filepath='Python/errors.c' line='1163' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NewExceptionWithDoc'> + <parameter type-id='type-id-3' name='name' filepath='Python/errors.c' line='1163' column='1'/> + <parameter type-id='type-id-3' name='doc' filepath='Python/errors.c' line='1163' column='1'/> + <parameter type-id='type-id-100' name='base' filepath='Python/errors.c' line='1164' column='1'/> + <parameter type-id='type-id-100' name='dict' filepath='Python/errors.c' line='1164' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_NewException' mangled-name='PyErr_NewException' filepath='Python/errors.c' line='1078' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NewException'> - <parameter type-id='type-id-3' name='name' filepath='Python/errors.c' line='1078' column='1'/> - <parameter type-id='type-id-100' name='base' filepath='Python/errors.c' line='1078' column='1'/> - <parameter type-id='type-id-100' name='dict' filepath='Python/errors.c' line='1078' column='1'/> + <function-decl name='PyErr_NewException' mangled-name='PyErr_NewException' filepath='Python/errors.c' line='1105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NewException'> + <parameter type-id='type-id-3' name='name' filepath='Python/errors.c' line='1105' column='1'/> + <parameter type-id='type-id-100' name='base' filepath='Python/errors.c' line='1105' column='1'/> + <parameter type-id='type-id-100' name='dict' filepath='Python/errors.c' line='1105' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_Format' mangled-name='PyErr_Format' filepath='Python/errors.c' line='1062' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Format'> - <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='1062' column='1'/> - <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1062' column='1'/> + <function-decl name='PyErr_Format' mangled-name='PyErr_Format' filepath='Python/errors.c' line='1089' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Format'> + <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='1089' column='1'/> + <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1089' column='1'/> <parameter is-variadic='yes'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyErr_Format' mangled-name='_PyErr_Format' filepath='Python/errors.c' line='1046' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Format'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='1046' column='1'/> - <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='1046' column='1'/> - <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1047' column='1'/> + <class-decl name='_ts' size-in-bits='2112' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='51' column='1' id='type-id-550'> + <data-member access='public' layout-offset-in-bits='0'> + <var-decl name='prev' type-id='type-id-232' visibility='default' filepath='./Include/cpython/pystate.h' line='54' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='64'> + <var-decl name='next' type-id='type-id-232' visibility='default' filepath='./Include/cpython/pystate.h' line='55' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='128'> + <var-decl name='interp' type-id='type-id-311' visibility='default' filepath='./Include/cpython/pystate.h' line='56' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='192'> + <var-decl name='frame' type-id='type-id-234' visibility='default' filepath='./Include/cpython/pystate.h' line='59' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='256'> + <var-decl name='recursion_depth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='60' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='288'> + <var-decl name='overflowed' type-id='type-id-1' visibility='default' filepath='./Include/cpython/pystate.h' line='61' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='296'> + <var-decl name='recursion_critical' type-id='type-id-1' visibility='default' filepath='./Include/cpython/pystate.h' line='63' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='320'> + <var-decl name='stackcheck_counter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='65' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='352'> + <var-decl name='tracing' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='70' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='384'> + <var-decl name='use_tracing' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='71' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='448'> + <var-decl name='c_profilefunc' type-id='type-id-235' visibility='default' filepath='./Include/cpython/pystate.h' line='73' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='512'> + <var-decl name='c_tracefunc' type-id='type-id-235' visibility='default' filepath='./Include/cpython/pystate.h' line='74' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='576'> + <var-decl name='c_profileobj' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='75' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='640'> + <var-decl name='c_traceobj' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='76' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='704'> + <var-decl name='curexc_type' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='79' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='768'> + <var-decl name='curexc_value' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='80' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='832'> + <var-decl name='curexc_traceback' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='81' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='896'> + <var-decl name='exc_state' type-id='type-id-236' visibility='default' filepath='./Include/cpython/pystate.h' line='86' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1152'> + <var-decl name='exc_info' type-id='type-id-237' visibility='default' filepath='./Include/cpython/pystate.h' line='90' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1216'> + <var-decl name='dict' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='92' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1280'> + <var-decl name='gilstate_counter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='94' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1344'> + <var-decl name='async_exc' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='96' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1408'> + <var-decl name='thread_id' type-id='type-id-33' visibility='default' filepath='./Include/cpython/pystate.h' line='97' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1472'> + <var-decl name='trash_delete_nesting' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='99' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1536'> + <var-decl name='trash_delete_later' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='100' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1600'> + <var-decl name='on_delete' type-id='type-id-188' visibility='default' filepath='./Include/cpython/pystate.h' line='125' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1664'> + <var-decl name='on_delete_data' type-id='type-id-32' visibility='default' filepath='./Include/cpython/pystate.h' line='126' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1728'> + <var-decl name='coroutine_origin_tracking_depth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='128' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1792'> + <var-decl name='async_gen_firstiter' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='130' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1856'> + <var-decl name='async_gen_finalizer' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='131' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1920'> + <var-decl name='context' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='133' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='1984'> + <var-decl name='context_ver' type-id='type-id-238' visibility='default' filepath='./Include/cpython/pystate.h' line='134' column='1'/> + </data-member> + <data-member access='public' layout-offset-in-bits='2048'> + <var-decl name='id' type-id='type-id-238' visibility='default' filepath='./Include/cpython/pystate.h' line='137' column='1'/> + </data-member> + </class-decl> + <typedef-decl name='PyThreadState' type-id='type-id-550' filepath='./Include/pystate.h' line='20' column='1' id='type-id-551'/> + <pointer-type-def type-id='type-id-551' size-in-bits='64' id='type-id-552'/> + <function-decl name='_PyErr_Format' mangled-name='_PyErr_Format' filepath='Python/errors.c' line='1073' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Format'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='1073' column='1'/> + <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='1073' column='1'/> + <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1074' column='1'/> <parameter is-variadic='yes'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_FormatV' mangled-name='PyErr_FormatV' filepath='Python/errors.c' line='1038' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_FormatV'> - <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='1038' column='1'/> - <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1038' column='1'/> - <parameter type-id='type-id-306' name='vargs' filepath='Python/errors.c' line='1038' column='1'/> + <function-decl name='PyErr_FormatV' mangled-name='PyErr_FormatV' filepath='Python/errors.c' line='1065' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_FormatV'> + <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='1065' column='1'/> + <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1065' column='1'/> + <parameter type-id='type-id-306' name='vargs' filepath='Python/errors.c' line='1065' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_BadInternalCall' mangled-name='PyErr_BadInternalCall' filepath='Python/errors.c' line='1009' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_BadInternalCall'> + <function-decl name='PyErr_BadInternalCall' mangled-name='PyErr_BadInternalCall' filepath='Python/errors.c' line='1036' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_BadInternalCall'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_BadInternalCall' mangled-name='_PyErr_BadInternalCall' filepath='Python/errors.c' line='997' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_BadInternalCall'> - <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='997' column='1'/> - <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='997' column='1'/> + <function-decl name='_PyErr_BadInternalCall' mangled-name='_PyErr_BadInternalCall' filepath='Python/errors.c' line='1024' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_BadInternalCall'> + <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='1024' column='1'/> + <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1024' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_SetImportError' mangled-name='PyErr_SetImportError' filepath='Python/errors.c' line='991' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetImportError'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1233' column='1'/> - <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='1233' column='1'/> - <parameter type-id='type-id-100' name='z' filepath='Objects/abstract.c' line='1233' column='1'/> + <function-decl name='PyErr_SetImportError' mangled-name='PyErr_SetImportError' filepath='Python/errors.c' line='1018' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetImportError'> + <parameter type-id='type-id-100' name='co' filepath='Python/ceval.c' line='824' column='1'/> + <parameter type-id='type-id-100' name='globals' filepath='Python/ceval.c' line='824' column='1'/> + <parameter type-id='type-id-100' name='locals' filepath='Python/ceval.c' line='824' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_SetImportErrorSubclass' mangled-name='PyErr_SetImportErrorSubclass' filepath='Python/errors.c' line='938' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetImportErrorSubclass'> - <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='938' column='1'/> - <parameter type-id='type-id-100' name='msg' filepath='Python/errors.c' line='938' column='1'/> - <parameter type-id='type-id-100' name='name' filepath='Python/errors.c' line='939' column='1'/> - <parameter type-id='type-id-100' name='path' filepath='Python/errors.c' line='939' column='1'/> + <function-decl name='PyErr_SetImportErrorSubclass' mangled-name='PyErr_SetImportErrorSubclass' filepath='Python/errors.c' line='965' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetImportErrorSubclass'> + <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='965' column='1'/> + <parameter type-id='type-id-100' name='msg' filepath='Python/errors.c' line='965' column='1'/> + <parameter type-id='type-id-100' name='name' filepath='Python/errors.c' line='966' column='1'/> + <parameter type-id='type-id-100' name='path' filepath='Python/errors.c' line='966' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_SetFromErrno' mangled-name='PyErr_SetFromErrno' filepath='Python/errors.c' line='788' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrno'> - <parameter type-id='type-id-100' name='input' filepath='Objects/bytearrayobject.c' line='88' column='1'/> + <function-decl name='PyErr_SetFromErrno' mangled-name='PyErr_SetFromErrno' filepath='Python/errors.c' line='815' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrno'> + <parameter type-id='type-id-100' name='im' filepath='Objects/classobject.c' line='25' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_SetFromErrnoWithFilename' mangled-name='PyErr_SetFromErrnoWithFilename' filepath='Python/errors.c' line='768' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilename'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2210' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2210' column='1'/> + <function-decl name='PyErr_SetFromErrnoWithFilename' mangled-name='PyErr_SetFromErrnoWithFilename' filepath='Python/errors.c' line='795' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilename'> + <parameter type-id='type-id-100' name='v' filepath='Objects/dictobject.c' line='3477' column='1'/> + <parameter type-id='type-id-3' name='key' filepath='Objects/dictobject.c' line='3477' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_SetFromErrnoWithFilenameObjects' mangled-name='PyErr_SetFromErrnoWithFilenameObjects' filepath='Python/errors.c' line='669' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilenameObjects'> - <parameter type-id='type-id-100' name='exc' filepath='Python/errors.c' line='669' column='1'/> - <parameter type-id='type-id-100' name='filenameObject' filepath='Python/errors.c' line='669' column='1'/> - <parameter type-id='type-id-100' name='filenameObject2' filepath='Python/errors.c' line='669' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyErr_SetFromErrnoWithFilenameObject' mangled-name='PyErr_SetFromErrnoWithFilenameObject' filepath='Python/errors.c' line='663' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilenameObject'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1226' column='1'/> - <parameter type-id='type-id-100' name='w' filepath='Objects/abstract.c' line='1226' column='1'/> + <function-decl name='PyErr_SetFromErrnoWithFilenameObjects' mangled-name='PyErr_SetFromErrnoWithFilenameObjects' filepath='Python/errors.c' line='696' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilenameObjects'> + <parameter type-id='type-id-100' name='exc' filepath='Python/errors.c' line='696' column='1'/> + <parameter type-id='type-id-100' name='filenameObject' filepath='Python/errors.c' line='696' column='1'/> + <parameter type-id='type-id-100' name='filenameObject2' filepath='Python/errors.c' line='696' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_NoMemory' mangled-name='PyErr_NoMemory' filepath='Python/errors.c' line='656' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NoMemory'> + <function-decl name='PyErr_SetFromErrnoWithFilenameObject' mangled-name='PyErr_SetFromErrnoWithFilenameObject' filepath='Python/errors.c' line='690' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilenameObject'> + <parameter type-id='type-id-100' name='code' filepath='Objects/funcobject.c' line='79' column='1'/> + <parameter type-id='type-id-100' name='globals' filepath='Objects/funcobject.c' line='79' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyErr_NoMemory' mangled-name='_PyErr_NoMemory' filepath='Python/errors.c' line='643' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_NoMemory'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='643' column='1'/> + <function-decl name='PyErr_NoMemory' mangled-name='PyErr_NoMemory' filepath='Python/errors.c' line='683' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NoMemory'> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_BadArgument' mangled-name='PyErr_BadArgument' filepath='Python/errors.c' line='634' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_BadArgument'> + <function-decl name='PyErr_BadArgument' mangled-name='PyErr_BadArgument' filepath='Python/errors.c' line='661' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_BadArgument'> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyErr_FormatFromCause' mangled-name='_PyErr_FormatFromCause' filepath='Python/errors.c' line='617' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_FormatFromCause'> - <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='1062' column='1'/> - <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1062' column='1'/> + <function-decl name='_PyErr_FormatFromCause' mangled-name='_PyErr_FormatFromCause' filepath='Python/errors.c' line='644' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_FormatFromCause'> + <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='644' column='1'/> + <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='644' column='1'/> <parameter is-variadic='yes'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyErr_FormatFromCauseTstate' mangled-name='_PyErr_FormatFromCauseTstate' filepath='Python/errors.c' line='602' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_FormatFromCauseTstate'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='1046' column='1'/> - <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='1046' column='1'/> - <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1047' column='1'/> + <function-decl name='_PyErr_FormatFromCauseTstate' mangled-name='_PyErr_FormatFromCauseTstate' filepath='Python/errors.c' line='629' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_FormatFromCauseTstate'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='629' column='1'/> + <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='629' column='1'/> + <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='630' column='1'/> <parameter is-variadic='yes'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyErr_ChainStackItem' mangled-name='_PyErr_ChainStackItem' filepath='Python/errors.c' line='526' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ChainStackItem'> - <parameter type-id='type-id-237' name='exc_info' filepath='Python/errors.c' line='526' column='1'/> + <function-decl name='_PyErr_ChainStackItem' mangled-name='_PyErr_ChainStackItem' filepath='Python/errors.c' line='553' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ChainStackItem'> + <parameter type-id='type-id-237' name='exc_info' filepath='Python/errors.c' line='553' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_ChainExceptions' mangled-name='_PyErr_ChainExceptions' filepath='Python/errors.c' line='484' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ChainExceptions'> - <parameter type-id='type-id-100' name='exc' filepath='Python/errors.c' line='484' column='1'/> - <parameter type-id='type-id-100' name='val' filepath='Python/errors.c' line='484' column='1'/> - <parameter type-id='type-id-100' name='tb' filepath='Python/errors.c' line='484' column='1'/> + <function-decl name='_PyErr_ChainExceptions' mangled-name='_PyErr_ChainExceptions' filepath='Python/errors.c' line='511' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ChainExceptions'> + <parameter type-id='type-id-100' name='exc' filepath='Python/errors.c' line='511' column='1'/> + <parameter type-id='type-id-100' name='val' filepath='Python/errors.c' line='511' column='1'/> + <parameter type-id='type-id-100' name='tb' filepath='Python/errors.c' line='511' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_SetExcInfo' mangled-name='PyErr_SetExcInfo' filepath='Python/errors.c' line='460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetExcInfo'> - <parameter type-id='type-id-100' name='p_type' filepath='Python/errors.c' line='460' column='1'/> - <parameter type-id='type-id-100' name='p_value' filepath='Python/errors.c' line='460' column='1'/> - <parameter type-id='type-id-100' name='p_traceback' filepath='Python/errors.c' line='460' column='1'/> + <function-decl name='PyErr_SetExcInfo' mangled-name='PyErr_SetExcInfo' filepath='Python/errors.c' line='487' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetExcInfo'> + <parameter type-id='type-id-100' name='p_type' filepath='Python/errors.c' line='487' column='1'/> + <parameter type-id='type-id-100' name='p_value' filepath='Python/errors.c' line='487' column='1'/> + <parameter type-id='type-id-100' name='p_traceback' filepath='Python/errors.c' line='487' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_GetExcInfo' mangled-name='PyErr_GetExcInfo' filepath='Python/errors.c' line='453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_GetExcInfo'> - <parameter type-id='type-id-303' name='p_type' filepath='Python/errors.c' line='453' column='1'/> - <parameter type-id='type-id-303' name='p_value' filepath='Python/errors.c' line='453' column='1'/> - <parameter type-id='type-id-303' name='p_traceback' filepath='Python/errors.c' line='453' column='1'/> + <function-decl name='PyErr_GetExcInfo' mangled-name='PyErr_GetExcInfo' filepath='Python/errors.c' line='480' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_GetExcInfo'> + <parameter type-id='type-id-303' name='p_type' filepath='Python/errors.c' line='480' column='1'/> + <parameter type-id='type-id-303' name='p_value' filepath='Python/errors.c' line='480' column='1'/> + <parameter type-id='type-id-303' name='p_traceback' filepath='Python/errors.c' line='480' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_GetExcInfo' mangled-name='_PyErr_GetExcInfo' filepath='Python/errors.c' line='438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_GetExcInfo'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='438' column='1'/> - <parameter type-id='type-id-303' name='p_type' filepath='Python/errors.c' line='439' column='1'/> - <parameter type-id='type-id-303' name='p_value' filepath='Python/errors.c' line='439' column='1'/> - <parameter type-id='type-id-303' name='p_traceback' filepath='Python/errors.c' line='439' column='1'/> + <function-decl name='_PyErr_GetExcInfo' mangled-name='_PyErr_GetExcInfo' filepath='Python/errors.c' line='465' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_GetExcInfo'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='465' column='1'/> + <parameter type-id='type-id-303' name='p_type' filepath='Python/errors.c' line='466' column='1'/> + <parameter type-id='type-id-303' name='p_value' filepath='Python/errors.c' line='466' column='1'/> + <parameter type-id='type-id-303' name='p_traceback' filepath='Python/errors.c' line='466' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_Clear' mangled-name='PyErr_Clear' filepath='Python/errors.c' line='430' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Clear'> + <function-decl name='_PyErr_Clear' mangled-name='_PyErr_Clear' filepath='Python/errors.c' line='450' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Clear'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='450' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_Clear' mangled-name='_PyErr_Clear' filepath='Python/errors.c' line='423' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Clear'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='423' column='1'/> + <function-decl name='PyErr_Fetch' mangled-name='PyErr_Fetch' filepath='Python/errors.c' line='442' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Fetch'> + <parameter type-id='type-id-303' name='p_type' filepath='Python/errors.c' line='480' column='1'/> + <parameter type-id='type-id-303' name='p_value' filepath='Python/errors.c' line='480' column='1'/> + <parameter type-id='type-id-303' name='p_traceback' filepath='Python/errors.c' line='480' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_Fetch' mangled-name='PyErr_Fetch' filepath='Python/errors.c' line='415' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Fetch'> - <parameter type-id='type-id-303' name='p_type' filepath='Python/errors.c' line='453' column='1'/> - <parameter type-id='type-id-303' name='p_value' filepath='Python/errors.c' line='453' column='1'/> - <parameter type-id='type-id-303' name='p_traceback' filepath='Python/errors.c' line='453' column='1'/> + <function-decl name='_PyErr_Fetch' mangled-name='_PyErr_Fetch' filepath='Python/errors.c' line='428' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Fetch'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='428' column='1'/> + <parameter type-id='type-id-303' name='p_type' filepath='Python/errors.c' line='428' column='1'/> + <parameter type-id='type-id-303' name='p_value' filepath='Python/errors.c' line='428' column='1'/> + <parameter type-id='type-id-303' name='p_traceback' filepath='Python/errors.c' line='429' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_Fetch' mangled-name='_PyErr_Fetch' filepath='Python/errors.c' line='401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Fetch'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='401' column='1'/> - <parameter type-id='type-id-303' name='p_type' filepath='Python/errors.c' line='401' column='1'/> - <parameter type-id='type-id-303' name='p_value' filepath='Python/errors.c' line='401' column='1'/> - <parameter type-id='type-id-303' name='p_traceback' filepath='Python/errors.c' line='402' column='1'/> + <function-decl name='PyErr_NormalizeException' mangled-name='PyErr_NormalizeException' filepath='Python/errors.c' line='420' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NormalizeException'> + <parameter type-id='type-id-303' name='p_type' filepath='Python/errors.c' line='480' column='1'/> + <parameter type-id='type-id-303' name='p_value' filepath='Python/errors.c' line='480' column='1'/> + <parameter type-id='type-id-303' name='p_traceback' filepath='Python/errors.c' line='480' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_NormalizeException' mangled-name='PyErr_NormalizeException' filepath='Python/errors.c' line='393' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NormalizeException'> - <parameter type-id='type-id-303' name='p_type' filepath='Python/errors.c' line='453' column='1'/> - <parameter type-id='type-id-303' name='p_value' filepath='Python/errors.c' line='453' column='1'/> - <parameter type-id='type-id-303' name='p_traceback' filepath='Python/errors.c' line='453' column='1'/> + <function-decl name='_PyErr_NormalizeException' mangled-name='_PyErr_NormalizeException' filepath='Python/errors.c' line='316' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_NormalizeException'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='316' column='1'/> + <parameter type-id='type-id-303' name='exc' filepath='Python/errors.c' line='316' column='1'/> + <parameter type-id='type-id-303' name='val' filepath='Python/errors.c' line='317' column='1'/> + <parameter type-id='type-id-303' name='tb' filepath='Python/errors.c' line='317' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_NormalizeException' mangled-name='_PyErr_NormalizeException' filepath='Python/errors.c' line='289' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_NormalizeException'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='289' column='1'/> - <parameter type-id='type-id-303' name='exc' filepath='Python/errors.c' line='289' column='1'/> - <parameter type-id='type-id-303' name='val' filepath='Python/errors.c' line='290' column='1'/> - <parameter type-id='type-id-303' name='tb' filepath='Python/errors.c' line='290' column='1'/> - <return type-id='type-id-4'/> - </function-decl> - <function-decl name='PyErr_ExceptionMatches' mangled-name='PyErr_ExceptionMatches' filepath='Python/errors.c' line='271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ExceptionMatches'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='284' column='1'/> + <function-decl name='PyErr_ExceptionMatches' mangled-name='PyErr_ExceptionMatches' filepath='Python/errors.c' line='298' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ExceptionMatches'> + <parameter type-id='type-id-100' name='exc' filepath='Python/errors.c' line='298' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyErr_ExceptionMatches' mangled-name='_PyErr_ExceptionMatches' filepath='Python/errors.c' line='264' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ExceptionMatches'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='264' column='1'/> - <parameter type-id='type-id-100' name='exc' filepath='Python/errors.c' line='264' column='1'/> + <function-decl name='_PyErr_ExceptionMatches' mangled-name='_PyErr_ExceptionMatches' filepath='Python/errors.c' line='291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ExceptionMatches'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='291' column='1'/> + <parameter type-id='type-id-100' name='exc' filepath='Python/errors.c' line='291' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyErr_GivenExceptionMatches' mangled-name='PyErr_GivenExceptionMatches' filepath='Python/errors.c' line='232' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_GivenExceptionMatches'> - <parameter type-id='type-id-100' name='op' filepath='Objects/funcobject.c' line='218' column='1'/> - <parameter type-id='type-id-100' name='annotations' filepath='Objects/funcobject.c' line='218' column='1'/> + <function-decl name='PyErr_Occurred' mangled-name='PyErr_Occurred' filepath='Python/errors.c' line='248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Occurred'> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyErr_SetString' mangled-name='PyErr_SetString' filepath='Python/errors.c' line='240' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetString'> + <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='240' column='1'/> + <parameter type-id='type-id-3' name='string' filepath='Python/errors.c' line='240' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_SetString' mangled-name='_PyErr_SetString' filepath='Python/errors.c' line='231' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetString'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='231' column='1'/> + <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='231' column='1'/> + <parameter type-id='type-id-3' name='string' filepath='Python/errors.c' line='232' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_SetNone' mangled-name='PyErr_SetNone' filepath='Python/errors.c' line='223' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetNone'> + <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='223' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_SetNone' mangled-name='_PyErr_SetNone' filepath='Python/errors.c' line='216' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetNone'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='216' column='1'/> + <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='216' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_SetKeyError' mangled-name='_PyErr_SetKeyError' filepath='Python/errors.c' line='203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetKeyError'> + <parameter type-id='type-id-100' name='arg' filepath='Python/errors.c' line='203' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_SetObject' mangled-name='PyErr_SetObject' filepath='Python/errors.c' line='193' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetObject'> + <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='193' column='1'/> + <parameter type-id='type-id-100' name='value' filepath='Python/errors.c' line='193' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_GetTopmostException' mangled-name='_PyErr_GetTopmostException' filepath='Python/errors.c' line='77' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_GetTopmostException'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='77' column='1'/> + <return type-id='type-id-237'/> + </function-decl> + <function-decl name='PyErr_Restore' mangled-name='PyErr_Restore' filepath='Python/errors.c' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Restore'> + <parameter type-id='type-id-100' name='type' filepath='Python/errors.c' line='69' column='1'/> + <parameter type-id='type-id-100' name='value' filepath='Python/errors.c' line='69' column='1'/> + <parameter type-id='type-id-100' name='traceback' filepath='Python/errors.c' line='69' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_Restore' mangled-name='_PyErr_Restore' filepath='Python/errors.c' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Restore'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='41' column='1'/> + <parameter type-id='type-id-100' name='type' filepath='Python/errors.c' line='41' column='1'/> + <parameter type-id='type-id-100' name='value' filepath='Python/errors.c' line='41' column='1'/> + <parameter type-id='type-id-100' name='traceback' filepath='Python/errors.c' line='42' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_GivenExceptionMatches' mangled-name='PyErr_GivenExceptionMatches' filepath='Python/errors.c' line='259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_GivenExceptionMatches'> + <parameter type-id='type-id-100' name='self' filepath='Objects/exceptions.c' line='325' column='1'/> + <parameter type-id='type-id-100' name='tb' filepath='Objects/exceptions.c' line='325' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyErr_Occurred' mangled-name='PyErr_Occurred' filepath='Python/errors.c' line='221' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Occurred'> + <function-decl name='_PyErr_SetObject' mangled-name='_PyErr_SetObject' filepath='Python/errors.c' line='115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetObject'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='115' column='1'/> + <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='115' column='1'/> + <parameter type-id='type-id-100' name='value' filepath='Python/errors.c' line='115' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_NoMemory' mangled-name='_PyErr_NoMemory' filepath='Python/errors.c' line='670' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_NoMemory'> + <parameter type-id='type-id-552' name='tstate' filepath='Python/errors.c' line='670' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyErr_SetString' mangled-name='PyErr_SetString' filepath='Python/errors.c' line='213' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetString'> - <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='213' column='1'/> - <parameter type-id='type-id-3' name='string' filepath='Python/errors.c' line='213' column='1'/> + <function-decl name='_Py_fopen_obj' mangled-name='_Py_fopen_obj' filepath='./Include/cpython/fileutils.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_SetString' mangled-name='_PyErr_SetString' filepath='Python/errors.c' line='204' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetString'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='204' column='1'/> - <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='204' column='1'/> - <parameter type-id='type-id-3' name='string' filepath='Python/errors.c' line='205' column='1'/> + <function-decl name='_Py_fopen' mangled-name='_Py_fopen' filepath='./Include/cpython/fileutils.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_SetNone' mangled-name='PyErr_SetNone' filepath='Python/errors.c' line='196' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetNone'> - <parameter type-id='type-id-100' name='m' filepath='Objects/moduleobject.c' line='556' column='1'/> + <function-decl name='_PyObject_HasAttrId' mangled-name='_PyObject_HasAttrId' filepath='./Include/cpython/object.h' line='317' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_SetNone' mangled-name='_PyErr_SetNone' filepath='Python/errors.c' line='189' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetNone'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='189' column='1'/> - <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='189' column='1'/> + <function-decl name='_PyTraceBack_FromFrame' mangled-name='_PyTraceBack_FromFrame' filepath='./Include/internal/pycore_traceback.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_SetKeyError' mangled-name='_PyErr_SetKeyError' filepath='Python/errors.c' line='176' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetKeyError'> - <parameter type-id='type-id-100' name='op' filepath='Objects/object.c' line='2030' column='1'/> + <function-decl name='_Py_FatalError_TstateNULL' mangled-name='_Py_FatalError_TstateNULL' filepath='./Include/internal/pycore_pystate.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_SetObject' mangled-name='PyErr_SetObject' filepath='Python/errors.c' line='166' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetObject'> - <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='166' column='1'/> - <parameter type-id='type-id-100' name='value' filepath='Python/errors.c' line='166' column='1'/> + <function-decl name='PyTraceBack_Print' mangled-name='PyTraceBack_Print' filepath='./Include/traceback.h' line='10' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_SetObject' mangled-name='_PyErr_SetObject' filepath='Python/errors.c' line='102' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetObject'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='102' column='1'/> - <parameter type-id='type-id-100' name='exception' filepath='Python/errors.c' line='102' column='1'/> - <parameter type-id='type-id-100' name='value' filepath='Python/errors.c' line='102' column='1'/> + <function-decl name='_PyType_GetQualName' mangled-name='_PyType_GetQualName' filepath='./Include/internal/pycore_object.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_GetTopmostException' mangled-name='_PyErr_GetTopmostException' filepath='Python/errors.c' line='76' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_GetTopmostException'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='76' column='1'/> - <return type-id='type-id-237'/> + <function-decl name='strerror' mangled-name='strerror' filepath='/usr/include/string.h' line='397' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_Restore' mangled-name='PyErr_Restore' filepath='Python/errors.c' line='68' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Restore'> - <parameter type-id='type-id-100' name='type' filepath='Python/errors.c' line='68' column='1'/> - <parameter type-id='type-id-100' name='value' filepath='Python/errors.c' line='68' column='1'/> - <parameter type-id='type-id-100' name='traceback' filepath='Python/errors.c' line='68' column='1'/> + <function-decl name='PyUnicode_DecodeLocale' mangled-name='PyUnicode_DecodeLocale' filepath='./Include/unicodeobject.h' line='728' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_Restore' mangled-name='_PyErr_Restore' filepath='Python/errors.c' line='40' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Restore'> - <parameter type-id='type-id-249' name='tstate' filepath='Python/errors.c' line='40' column='1'/> - <parameter type-id='type-id-100' name='type' filepath='Python/errors.c' line='40' column='1'/> - <parameter type-id='type-id-100' name='value' filepath='Python/errors.c' line='40' column='1'/> - <parameter type-id='type-id-100' name='traceback' filepath='Python/errors.c' line='41' column='1'/> + <function-decl name='PyException_SetContext' mangled-name='PyException_SetContext' filepath='./Include/pyerrors.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyException_GetContext' mangled-name='PyException_GetContext' filepath='./Include/pyerrors.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> </abi-instr> @@ -10301,9 +13111,60 @@ <parameter type-id='type-id-304' name='argv' filepath='Python/frozenmain.c' line='17' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='_PyRuntime_Initialize' mangled-name='_PyRuntime_Initialize' filepath='./Include/internal/pycore_runtime.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyStatus_Exception' mangled-name='PyStatus_Exception' filepath='./Include/cpython/initconfig.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyConfig_InitPythonConfig' mangled-name='PyConfig_InitPythonConfig' filepath='./Include/cpython/initconfig.h' line='427' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setlocale' mangled-name='setlocale' filepath='/usr/include/locale.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyMem_RawStrdup' mangled-name='_PyMem_RawStrdup' filepath='./Include/cpython/pymem.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_DecodeLocale' mangled-name='Py_DecodeLocale' filepath='./Include/fileutils.h' line='8' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setbuf' mangled-name='setbuf' filepath='/usr/include/stdio.h' line='304' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_SetProgramName' mangled-name='Py_SetProgramName' filepath='./Include/pylifecycle.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_InitializeFromConfig' mangled-name='Py_InitializeFromConfig' filepath='./Include/cpython/pylifecycle.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyConfig_Clear' mangled-name='PyConfig_Clear' filepath='./Include/cpython/initconfig.h' line='429' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySys_SetArgv' mangled-name='PySys_SetArgv' filepath='./Include/sysmodule.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyImport_ImportFrozenModule' mangled-name='PyImport_ImportFrozenModule' filepath='./Include/import.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_FinalizeEx' mangled-name='Py_FinalizeEx' filepath='./Include/pylifecycle.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_GetCopyright' mangled-name='Py_GetCopyright' filepath='./Include/pylifecycle.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_GetVersion' mangled-name='Py_GetVersion' filepath='./Include/pylifecycle.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyRun_AnyFileExFlags' mangled-name='PyRun_AnyFileExFlags' filepath='./Include/pythonrun.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_ExitStatusException' mangled-name='Py_ExitStatusException' filepath='./Include/cpython/pylifecycle.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/future.c' comp-dir-path='/src' language='LANG_C99'> - <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-550' visibility='default' filepath='./Include/compile.h' line='48' column='1' id='type-id-551'> + <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-553' visibility='default' filepath='./Include/compile.h' line='48' column='1' id='type-id-554'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='ff_features' type-id='type-id-8' visibility='default' filepath='./Include/compile.h' line='49' column='1'/> </data-member> @@ -10311,17 +13172,20 @@ <var-decl name='ff_lineno' type-id='type-id-8' visibility='default' filepath='./Include/compile.h' line='50' column='1'/> </data-member> </class-decl> - <typedef-decl name='PyFutureFeatures' type-id='type-id-551' filepath='./Include/compile.h' line='51' column='1' id='type-id-550'/> - <pointer-type-def type-id='type-id-550' size-in-bits='64' id='type-id-552'/> + <typedef-decl name='PyFutureFeatures' type-id='type-id-554' filepath='./Include/compile.h' line='51' column='1' id='type-id-553'/> + <pointer-type-def type-id='type-id-553' size-in-bits='64' id='type-id-555'/> <function-decl name='PyFuture_FromAST' mangled-name='PyFuture_FromAST' filepath='Python/future.c' line='147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFuture_FromAST'> <parameter type-id='type-id-204' name='mod' filepath='Python/future.c' line='147' column='1'/> <parameter type-id='type-id-3' name='filename_str' filepath='Python/future.c' line='147' column='1'/> - <return type-id='type-id-552'/> + <return type-id='type-id-555'/> </function-decl> <function-decl name='PyFuture_FromASTObject' mangled-name='PyFuture_FromASTObject' filepath='Python/future.c' line='126' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFuture_FromASTObject'> <parameter type-id='type-id-204' name='mod' filepath='Python/future.c' line='126' column='1'/> <parameter type-id='type-id-100' name='filename' filepath='Python/future.c' line='126' column='1'/> - <return type-id='type-id-552'/> + <return type-id='type-id-555'/> + </function-decl> + <function-decl name='PyErr_SyntaxLocationObject' mangled-name='PyErr_SyntaxLocationObject' filepath='./Include/cpython/pyerrors.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/getargs.c' comp-dir-path='/src' language='LANG_C99'> @@ -10331,13 +13195,13 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyArg_NoPositional' mangled-name='_PyArg_NoPositional' filepath='Python/getargs.c' line='2822' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_NoPositional'> - <parameter type-id='type-id-3' name='funcname' filepath='Python/getargs.c' line='2839' column='1'/> - <parameter type-id='type-id-100' name='kwnames' filepath='Python/getargs.c' line='2839' column='1'/> + <parameter type-id='type-id-3' name='funcname' filepath='Python/getargs.c' line='2822' column='1'/> + <parameter type-id='type-id-100' name='args' filepath='Python/getargs.c' line='2822' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyArg_NoKeywords' mangled-name='_PyArg_NoKeywords' filepath='Python/getargs.c' line='2803' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_NoKeywords'> - <parameter type-id='type-id-3' name='funcname' filepath='Python/getargs.c' line='2839' column='1'/> - <parameter type-id='type-id-100' name='kwnames' filepath='Python/getargs.c' line='2839' column='1'/> + <parameter type-id='type-id-3' name='funcname' filepath='Python/getargs.c' line='2822' column='1'/> + <parameter type-id='type-id-100' name='args' filepath='Python/getargs.c' line='2822' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyArg_UnpackStack' mangled-name='_PyArg_UnpackStack' filepath='Python/getargs.c' line='2776' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_UnpackStack'> @@ -10357,19 +13221,12 @@ <parameter is-variadic='yes'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyArg_CheckPositional' mangled-name='_PyArg_CheckPositional' filepath='Python/getargs.c' line='2688' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_CheckPositional'> - <parameter type-id='type-id-3' name='name' filepath='Python/getargs.c' line='2688' column='1'/> - <parameter type-id='type-id-15' name='nargs' filepath='Python/getargs.c' line='2688' column='1'/> - <parameter type-id='type-id-15' name='min' filepath='Python/getargs.c' line='2689' column='1'/> - <parameter type-id='type-id-15' name='max' filepath='Python/getargs.c' line='2689' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <class-decl name='_PyArg_Parser' size-in-bits='512' is-struct='yes' visibility='default' filepath='./Include/modsupport.h' line='92' column='1' id='type-id-553'> + <class-decl name='_PyArg_Parser' size-in-bits='512' is-struct='yes' visibility='default' filepath='./Include/modsupport.h' line='92' column='1' id='type-id-556'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='format' type-id='type-id-3' visibility='default' filepath='./Include/modsupport.h' line='93' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='64'> - <var-decl name='keywords' type-id='type-id-554' visibility='default' filepath='./Include/modsupport.h' line='94' column='1'/> + <var-decl name='keywords' type-id='type-id-557' visibility='default' filepath='./Include/modsupport.h' line='94' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='128'> <var-decl name='fname' type-id='type-id-3' visibility='default' filepath='./Include/modsupport.h' line='95' column='1'/> @@ -10390,17 +13247,17 @@ <var-decl name='kwtuple' type-id='type-id-100' visibility='default' filepath='./Include/modsupport.h' line='100' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='448'> - <var-decl name='next' type-id='type-id-555' visibility='default' filepath='./Include/modsupport.h' line='101' column='1'/> + <var-decl name='next' type-id='type-id-558' visibility='default' filepath='./Include/modsupport.h' line='101' column='1'/> </data-member> </class-decl> - <pointer-type-def type-id='type-id-16' size-in-bits='64' id='type-id-554'/> - <pointer-type-def type-id='type-id-553' size-in-bits='64' id='type-id-555'/> + <pointer-type-def type-id='type-id-16' size-in-bits='64' id='type-id-557'/> + <pointer-type-def type-id='type-id-556' size-in-bits='64' id='type-id-558'/> <function-decl name='_PyArg_UnpackKeywords' mangled-name='_PyArg_UnpackKeywords' filepath='Python/getargs.c' line='2343' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_UnpackKeywords'> <parameter type-id='type-id-190' name='args' filepath='Python/getargs.c' line='2343' column='1'/> <parameter type-id='type-id-15' name='nargs' filepath='Python/getargs.c' line='2343' column='1'/> <parameter type-id='type-id-100' name='kwargs' filepath='Python/getargs.c' line='2344' column='1'/> <parameter type-id='type-id-100' name='kwnames' filepath='Python/getargs.c' line='2344' column='1'/> - <parameter type-id='type-id-555' name='parser' filepath='Python/getargs.c' line='2345' column='1'/> + <parameter type-id='type-id-558' name='parser' filepath='Python/getargs.c' line='2345' column='1'/> <parameter type-id='type-id-8' name='minpos' filepath='Python/getargs.c' line='2346' column='1'/> <parameter type-id='type-id-8' name='maxpos' filepath='Python/getargs.c' line='2346' column='1'/> <parameter type-id='type-id-8' name='minkw' filepath='Python/getargs.c' line='2346' column='1'/> @@ -10408,20 +13265,20 @@ <return type-id='type-id-190'/> </function-decl> <function-decl name='PyArg_ValidateKeywordArguments' mangled-name='PyArg_ValidateKeywordArguments' filepath='Python/getargs.c' line='1632' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_ValidateKeywordArguments'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> + <parameter type-id='type-id-100' name='kwargs' filepath='Python/getargs.c' line='1632' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyArg_VaParseTupleAndKeywordsFast_SizeT' mangled-name='_PyArg_VaParseTupleAndKeywordsFast_SizeT' filepath='Python/getargs.c' line='1618' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParseTupleAndKeywordsFast_SizeT'> <parameter type-id='type-id-100' name='args' filepath='Python/getargs.c' line='1618' column='1'/> <parameter type-id='type-id-100' name='keywords' filepath='Python/getargs.c' line='1618' column='1'/> - <parameter type-id='type-id-555' name='parser' filepath='Python/getargs.c' line='1619' column='1'/> + <parameter type-id='type-id-558' name='parser' filepath='Python/getargs.c' line='1619' column='1'/> <parameter type-id='type-id-306' name='va' filepath='Python/getargs.c' line='1619' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyArg_VaParseTupleAndKeywordsFast' mangled-name='_PyArg_VaParseTupleAndKeywordsFast' filepath='Python/getargs.c' line='1604' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParseTupleAndKeywordsFast'> <parameter type-id='type-id-100' name='args' filepath='Python/getargs.c' line='1618' column='1'/> <parameter type-id='type-id-100' name='keywords' filepath='Python/getargs.c' line='1618' column='1'/> - <parameter type-id='type-id-555' name='parser' filepath='Python/getargs.c' line='1619' column='1'/> + <parameter type-id='type-id-558' name='parser' filepath='Python/getargs.c' line='1619' column='1'/> <parameter type-id='type-id-306' name='va' filepath='Python/getargs.c' line='1619' column='1'/> <return type-id='type-id-8'/> </function-decl> @@ -10429,7 +13286,7 @@ <parameter type-id='type-id-190' name='args' filepath='Python/getargs.c' line='1590' column='1'/> <parameter type-id='type-id-15' name='nargs' filepath='Python/getargs.c' line='1590' column='1'/> <parameter type-id='type-id-100' name='kwnames' filepath='Python/getargs.c' line='1590' column='1'/> - <parameter type-id='type-id-555' name='parser' filepath='Python/getargs.c' line='1591' column='1'/> + <parameter type-id='type-id-558' name='parser' filepath='Python/getargs.c' line='1591' column='1'/> <parameter is-variadic='yes'/> <return type-id='type-id-8'/> </function-decl> @@ -10437,21 +13294,21 @@ <parameter type-id='type-id-190' name='args' filepath='Python/getargs.c' line='1590' column='1'/> <parameter type-id='type-id-15' name='nargs' filepath='Python/getargs.c' line='1590' column='1'/> <parameter type-id='type-id-100' name='kwnames' filepath='Python/getargs.c' line='1590' column='1'/> - <parameter type-id='type-id-555' name='parser' filepath='Python/getargs.c' line='1591' column='1'/> + <parameter type-id='type-id-558' name='parser' filepath='Python/getargs.c' line='1591' column='1'/> <parameter is-variadic='yes'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyArg_ParseTupleAndKeywordsFast_SizeT' mangled-name='_PyArg_ParseTupleAndKeywordsFast_SizeT' filepath='Python/getargs.c' line='1564' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTupleAndKeywordsFast_SizeT'> <parameter type-id='type-id-100' name='args' filepath='Python/getargs.c' line='1564' column='1'/> <parameter type-id='type-id-100' name='keywords' filepath='Python/getargs.c' line='1564' column='1'/> - <parameter type-id='type-id-555' name='parser' filepath='Python/getargs.c' line='1565' column='1'/> + <parameter type-id='type-id-558' name='parser' filepath='Python/getargs.c' line='1565' column='1'/> <parameter is-variadic='yes'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyArg_ParseTupleAndKeywordsFast' mangled-name='_PyArg_ParseTupleAndKeywordsFast' filepath='Python/getargs.c' line='1551' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTupleAndKeywordsFast'> <parameter type-id='type-id-100' name='args' filepath='Python/getargs.c' line='1564' column='1'/> <parameter type-id='type-id-100' name='keywords' filepath='Python/getargs.c' line='1564' column='1'/> - <parameter type-id='type-id-555' name='parser' filepath='Python/getargs.c' line='1565' column='1'/> + <parameter type-id='type-id-558' name='parser' filepath='Python/getargs.c' line='1565' column='1'/> <parameter is-variadic='yes'/> <return type-id='type-id-8'/> </function-decl> @@ -10544,6 +13401,28 @@ <parameter is-variadic='yes'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='_PyArg_CheckPositional' mangled-name='_PyArg_CheckPositional' filepath='Python/getargs.c' line='2688' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_CheckPositional'> + <parameter type-id='type-id-3' name='name' filepath='Python/getargs.c' line='2688' column='1'/> + <parameter type-id='type-id-15' name='nargs' filepath='Python/getargs.c' line='2688' column='1'/> + <parameter type-id='type-id-15' name='min' filepath='Python/getargs.c' line='2689' column='1'/> + <parameter type-id='type-id-15' name='max' filepath='Python/getargs.c' line='2689' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='_PyDict_HasOnlyStringKeys' mangled-name='_PyDict_HasOnlyStringKeys' filepath='./Include/cpython/dictobject.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyByteArray_Size' mangled-name='PyByteArray_Size' filepath='./Include/bytearrayobject.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_AsUnicodeAndSize' mangled-name='PyUnicode_AsUnicodeAndSize' filepath='./Include/cpython/unicodeobject.h' line='595' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_AsUnsignedLongMask' mangled-name='PyLong_AsUnsignedLongMask' filepath='./Include/longobject.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_AsUnsignedLongLongMask' mangled-name='PyLong_AsUnsignedLongLongMask' filepath='./Include/longobject.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/getcompiler.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='Py_GetCompiler' mangled-name='Py_GetCompiler' filepath='Python/getcompiler.c' line='24' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetCompiler'> @@ -10564,6 +13443,12 @@ <function-decl name='Py_GetVersion' mangled-name='Py_GetVersion' filepath='Python/getversion.c' line='9' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetVersion'> <return type-id='type-id-3'/> </function-decl> + <function-decl name='Py_GetCompiler' mangled-name='Py_GetCompiler' filepath='./Include/pylifecycle.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_GetBuildInfo' mangled-name='Py_GetBuildInfo' filepath='./Include/pylifecycle.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/graminit.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='_PyParser_Grammar' type-id='type-id-254' mangled-name='_PyParser_Grammar' visibility='default' filepath='Python/graminit.c' line='5' column='1' elf-symbol-id='_PyParser_Grammar'/> @@ -10578,7 +13463,7 @@ <var-decl name='_PyHamt_CollisionNode_Type' type-id='type-id-182' mangled-name='_PyHamt_CollisionNode_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='67' column='1' elf-symbol-id='_PyHamt_CollisionNode_Type'/> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/hashtable.c' comp-dir-path='/src' language='LANG_C99'> - <class-decl name='_Py_hashtable_t' size-in-bits='640' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='60' column='1' id='type-id-556'> + <class-decl name='_Py_hashtable_t' size-in-bits='640' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='60' column='1' id='type-id-559'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='nentries' type-id='type-id-191' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='61' column='1'/> </data-member> @@ -10586,48 +13471,48 @@ <var-decl name='nbuckets' type-id='type-id-191' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='62' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='128'> - <var-decl name='buckets' type-id='type-id-557' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='63' column='1'/> + <var-decl name='buckets' type-id='type-id-560' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='63' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='192'> - <var-decl name='get_entry_func' type-id='type-id-558' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='65' column='1'/> + <var-decl name='get_entry_func' type-id='type-id-561' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='65' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='256'> - <var-decl name='hash_func' type-id='type-id-559' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='66' column='1'/> + <var-decl name='hash_func' type-id='type-id-562' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='66' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='320'> - <var-decl name='compare_func' type-id='type-id-560' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='67' column='1'/> + <var-decl name='compare_func' type-id='type-id-563' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='67' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='384'> - <var-decl name='key_destroy_func' type-id='type-id-561' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='68' column='1'/> + <var-decl name='key_destroy_func' type-id='type-id-564' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='68' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='448'> - <var-decl name='value_destroy_func' type-id='type-id-561' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='69' column='1'/> + <var-decl name='value_destroy_func' type-id='type-id-564' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='69' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='512'> - <var-decl name='alloc' type-id='type-id-562' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='70' column='1'/> + <var-decl name='alloc' type-id='type-id-565' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='70' column='1'/> </data-member> </class-decl> - <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-563' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='17' column='1' id='type-id-564'> + <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-566' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='17' column='1' id='type-id-567'> <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='head' type-id='type-id-565' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='18' column='1'/> + <var-decl name='head' type-id='type-id-568' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='18' column='1'/> </data-member> </class-decl> - <class-decl name='_Py_slist_item_s' size-in-bits='64' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='13' column='1' id='type-id-566'> + <class-decl name='_Py_slist_item_s' size-in-bits='64' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='13' column='1' id='type-id-569'> <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='next' type-id='type-id-567' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='14' column='1'/> + <var-decl name='next' type-id='type-id-570' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='14' column='1'/> </data-member> </class-decl> - <pointer-type-def type-id='type-id-566' size-in-bits='64' id='type-id-567'/> - <typedef-decl name='_Py_slist_item_t' type-id='type-id-566' filepath='./Include/internal/pycore_hashtable.h' line='15' column='1' id='type-id-568'/> - <pointer-type-def type-id='type-id-568' size-in-bits='64' id='type-id-565'/> - <typedef-decl name='_Py_slist_t' type-id='type-id-564' filepath='./Include/internal/pycore_hashtable.h' line='19' column='1' id='type-id-563'/> - <pointer-type-def type-id='type-id-563' size-in-bits='64' id='type-id-557'/> - <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-569' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='28' column='1' id='type-id-570'> + <pointer-type-def type-id='type-id-569' size-in-bits='64' id='type-id-570'/> + <typedef-decl name='_Py_slist_item_t' type-id='type-id-569' filepath='./Include/internal/pycore_hashtable.h' line='15' column='1' id='type-id-571'/> + <pointer-type-def type-id='type-id-571' size-in-bits='64' id='type-id-568'/> + <typedef-decl name='_Py_slist_t' type-id='type-id-567' filepath='./Include/internal/pycore_hashtable.h' line='19' column='1' id='type-id-566'/> + <pointer-type-def type-id='type-id-566' size-in-bits='64' id='type-id-560'/> + <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-572' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='28' column='1' id='type-id-573'> <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='_Py_slist_item' type-id='type-id-568' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='30' column='1'/> + <var-decl name='_Py_slist_item' type-id='type-id-571' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='30' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='64'> - <var-decl name='key_hash' type-id='type-id-571' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='32' column='1'/> + <var-decl name='key_hash' type-id='type-id-574' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='32' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='128'> <var-decl name='key' type-id='type-id-32' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='33' column='1'/> @@ -10636,78 +13521,78 @@ <var-decl name='value' type-id='type-id-32' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='34' column='1'/> </data-member> </class-decl> - <typedef-decl name='Py_uhash_t' type-id='type-id-191' filepath='./Include/pyport.h' line='117' column='1' id='type-id-571'/> - <typedef-decl name='_Py_hashtable_entry_t' type-id='type-id-570' filepath='./Include/internal/pycore_hashtable.h' line='35' column='1' id='type-id-569'/> - <pointer-type-def type-id='type-id-569' size-in-bits='64' id='type-id-572'/> - <typedef-decl name='_Py_hashtable_t' type-id='type-id-556' filepath='./Include/internal/pycore_hashtable.h' line='42' column='1' id='type-id-573'/> - <pointer-type-def type-id='type-id-573' size-in-bits='64' id='type-id-574'/> - <pointer-type-def type-id='type-id-575' size-in-bits='64' id='type-id-576'/> - <typedef-decl name='_Py_hashtable_get_entry_func' type-id='type-id-576' filepath='./Include/internal/pycore_hashtable.h' line='47' column='1' id='type-id-558'/> - <pointer-type-def type-id='type-id-577' size-in-bits='64' id='type-id-578'/> - <typedef-decl name='_Py_hashtable_hash_func' type-id='type-id-578' filepath='./Include/internal/pycore_hashtable.h' line='44' column='1' id='type-id-559'/> - <pointer-type-def type-id='type-id-579' size-in-bits='64' id='type-id-580'/> - <typedef-decl name='_Py_hashtable_compare_func' type-id='type-id-580' filepath='./Include/internal/pycore_hashtable.h' line='45' column='1' id='type-id-560'/> - <typedef-decl name='_Py_hashtable_destroy_func' type-id='type-id-188' filepath='./Include/internal/pycore_hashtable.h' line='46' column='1' id='type-id-561'/> - <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-562' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='50' column='1' id='type-id-581'> + <typedef-decl name='Py_uhash_t' type-id='type-id-191' filepath='./Include/pyport.h' line='117' column='1' id='type-id-574'/> + <typedef-decl name='_Py_hashtable_entry_t' type-id='type-id-573' filepath='./Include/internal/pycore_hashtable.h' line='35' column='1' id='type-id-572'/> + <pointer-type-def type-id='type-id-572' size-in-bits='64' id='type-id-575'/> + <typedef-decl name='_Py_hashtable_t' type-id='type-id-559' filepath='./Include/internal/pycore_hashtable.h' line='42' column='1' id='type-id-576'/> + <pointer-type-def type-id='type-id-576' size-in-bits='64' id='type-id-577'/> + <pointer-type-def type-id='type-id-578' size-in-bits='64' id='type-id-579'/> + <typedef-decl name='_Py_hashtable_get_entry_func' type-id='type-id-579' filepath='./Include/internal/pycore_hashtable.h' line='47' column='1' id='type-id-561'/> + <pointer-type-def type-id='type-id-580' size-in-bits='64' id='type-id-581'/> + <typedef-decl name='_Py_hashtable_hash_func' type-id='type-id-581' filepath='./Include/internal/pycore_hashtable.h' line='44' column='1' id='type-id-562'/> + <pointer-type-def type-id='type-id-582' size-in-bits='64' id='type-id-583'/> + <typedef-decl name='_Py_hashtable_compare_func' type-id='type-id-583' filepath='./Include/internal/pycore_hashtable.h' line='45' column='1' id='type-id-563'/> + <typedef-decl name='_Py_hashtable_destroy_func' type-id='type-id-188' filepath='./Include/internal/pycore_hashtable.h' line='46' column='1' id='type-id-564'/> + <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-565' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='50' column='1' id='type-id-584'> <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='malloc' type-id='type-id-582' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='52' column='1'/> + <var-decl name='malloc' type-id='type-id-585' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='52' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='64'> <var-decl name='free' type-id='type-id-188' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='55' column='1'/> </data-member> </class-decl> - <pointer-type-def type-id='type-id-583' size-in-bits='64' id='type-id-582'/> - <typedef-decl name='_Py_hashtable_allocator_t' type-id='type-id-581' filepath='./Include/internal/pycore_hashtable.h' line='56' column='1' id='type-id-562'/> + <pointer-type-def type-id='type-id-586' size-in-bits='64' id='type-id-585'/> + <typedef-decl name='_Py_hashtable_allocator_t' type-id='type-id-584' filepath='./Include/internal/pycore_hashtable.h' line='56' column='1' id='type-id-565'/> <function-decl name='_Py_hashtable_destroy' mangled-name='_Py_hashtable_destroy' filepath='Python/hashtable.c' line='404' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_destroy'> - <parameter type-id='type-id-574' name='ht' filepath='Python/hashtable.c' line='404' column='1'/> + <parameter type-id='type-id-577' name='ht' filepath='Python/hashtable.c' line='404' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_Py_hashtable_clear' mangled-name='_Py_hashtable_clear' filepath='Python/hashtable.c' line='385' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_clear'> - <parameter type-id='type-id-574' name='ht' filepath='Python/hashtable.c' line='404' column='1'/> + <parameter type-id='type-id-577' name='ht' filepath='Python/hashtable.c' line='404' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_Py_hashtable_new' mangled-name='_Py_hashtable_new' filepath='Python/hashtable.c' line='363' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_new'> - <parameter type-id='type-id-559' name='hash_func' filepath='Python/hashtable.c' line='363' column='1'/> - <parameter type-id='type-id-560' name='compare_func' filepath='Python/hashtable.c' line='364' column='1'/> - <return type-id='type-id-574'/> + <parameter type-id='type-id-562' name='hash_func' filepath='Python/hashtable.c' line='363' column='1'/> + <parameter type-id='type-id-563' name='compare_func' filepath='Python/hashtable.c' line='364' column='1'/> + <return type-id='type-id-577'/> </function-decl> - <pointer-type-def type-id='type-id-562' size-in-bits='64' id='type-id-584'/> + <pointer-type-def type-id='type-id-565' size-in-bits='64' id='type-id-587'/> <function-decl name='_Py_hashtable_new_full' mangled-name='_Py_hashtable_new_full' filepath='Python/hashtable.c' line='316' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_new_full'> - <parameter type-id='type-id-559' name='hash_func' filepath='Python/hashtable.c' line='316' column='1'/> - <parameter type-id='type-id-560' name='compare_func' filepath='Python/hashtable.c' line='317' column='1'/> - <parameter type-id='type-id-561' name='key_destroy_func' filepath='Python/hashtable.c' line='318' column='1'/> - <parameter type-id='type-id-561' name='value_destroy_func' filepath='Python/hashtable.c' line='319' column='1'/> - <parameter type-id='type-id-584' name='allocator' filepath='Python/hashtable.c' line='320' column='1'/> - <return type-id='type-id-574'/> + <parameter type-id='type-id-562' name='hash_func' filepath='Python/hashtable.c' line='316' column='1'/> + <parameter type-id='type-id-563' name='compare_func' filepath='Python/hashtable.c' line='317' column='1'/> + <parameter type-id='type-id-564' name='key_destroy_func' filepath='Python/hashtable.c' line='318' column='1'/> + <parameter type-id='type-id-564' name='value_destroy_func' filepath='Python/hashtable.c' line='319' column='1'/> + <parameter type-id='type-id-587' name='allocator' filepath='Python/hashtable.c' line='320' column='1'/> + <return type-id='type-id-577'/> </function-decl> - <pointer-type-def type-id='type-id-585' size-in-bits='64' id='type-id-586'/> - <typedef-decl name='_Py_hashtable_foreach_func' type-id='type-id-586' filepath='./Include/internal/pycore_hashtable.h' line='96' column='1' id='type-id-587'/> + <pointer-type-def type-id='type-id-588' size-in-bits='64' id='type-id-589'/> + <typedef-decl name='_Py_hashtable_foreach_func' type-id='type-id-589' filepath='./Include/internal/pycore_hashtable.h' line='96' column='1' id='type-id-590'/> <function-decl name='_Py_hashtable_foreach' mangled-name='_Py_hashtable_foreach' filepath='Python/hashtable.c' line='261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_foreach'> - <parameter type-id='type-id-574' name='ht' filepath='Python/hashtable.c' line='261' column='1'/> - <parameter type-id='type-id-587' name='func' filepath='Python/hashtable.c' line='262' column='1'/> + <parameter type-id='type-id-577' name='ht' filepath='Python/hashtable.c' line='261' column='1'/> + <parameter type-id='type-id-590' name='func' filepath='Python/hashtable.c' line='262' column='1'/> <parameter type-id='type-id-32' name='user_data' filepath='Python/hashtable.c' line='263' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_Py_hashtable_get' mangled-name='_Py_hashtable_get' filepath='Python/hashtable.c' line='248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_get'> - <parameter type-id='type-id-574' name='ht' filepath='Python/hashtable.c' line='248' column='1'/> + <parameter type-id='type-id-577' name='ht' filepath='Python/hashtable.c' line='248' column='1'/> <parameter type-id='type-id-32' name='key' filepath='Python/hashtable.c' line='248' column='1'/> <return type-id='type-id-32'/> </function-decl> <function-decl name='_Py_hashtable_set' mangled-name='_Py_hashtable_set' filepath='Python/hashtable.c' line='209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_set'> - <parameter type-id='type-id-574' name='ht' filepath='Python/hashtable.c' line='209' column='1'/> + <parameter type-id='type-id-577' name='ht' filepath='Python/hashtable.c' line='209' column='1'/> <parameter type-id='type-id-32' name='key' filepath='Python/hashtable.c' line='209' column='1'/> <parameter type-id='type-id-32' name='value' filepath='Python/hashtable.c' line='209' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_Py_hashtable_steal' mangled-name='_Py_hashtable_steal' filepath='Python/hashtable.c' line='174' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_steal'> - <parameter type-id='type-id-574' name='ht' filepath='Python/hashtable.c' line='174' column='1'/> + <parameter type-id='type-id-577' name='ht' filepath='Python/hashtable.c' line='174' column='1'/> <parameter type-id='type-id-32' name='key' filepath='Python/hashtable.c' line='174' column='1'/> <return type-id='type-id-32'/> </function-decl> - <qualified-type-def type-id='type-id-573' const='yes' id='type-id-588'/> - <pointer-type-def type-id='type-id-588' size-in-bits='64' id='type-id-589'/> + <qualified-type-def type-id='type-id-576' const='yes' id='type-id-591'/> + <pointer-type-def type-id='type-id-591' size-in-bits='64' id='type-id-592'/> <function-decl name='_Py_hashtable_size' mangled-name='_Py_hashtable_size' filepath='Python/hashtable.c' line='120' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_size'> - <parameter type-id='type-id-589' name='ht' filepath='Python/hashtable.c' line='120' column='1'/> + <parameter type-id='type-id-592' name='ht' filepath='Python/hashtable.c' line='120' column='1'/> <return type-id='type-id-191'/> </function-decl> <function-decl name='_Py_hashtable_compare_direct' mangled-name='_Py_hashtable_compare_direct' filepath='Python/hashtable.c' line='99' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_compare_direct'> @@ -10717,36 +13602,39 @@ </function-decl> <function-decl name='_Py_hashtable_hash_ptr' mangled-name='_Py_hashtable_hash_ptr' filepath='Python/hashtable.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_hash_ptr'> <parameter type-id='type-id-32' name='key' filepath='Python/hashtable.c' line='92' column='1'/> - <return type-id='type-id-571'/> + <return type-id='type-id-574'/> + </function-decl> + <function-decl name='_Py_HashPointerRaw' mangled-name='_Py_HashPointerRaw' filepath='./Include/pyhash.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> - <function-type size-in-bits='64' id='type-id-575'> - <parameter type-id='type-id-574'/> + <function-type size-in-bits='64' id='type-id-578'> + <parameter type-id='type-id-577'/> <parameter type-id='type-id-32'/> - <return type-id='type-id-572'/> + <return type-id='type-id-575'/> </function-type> - <function-type size-in-bits='64' id='type-id-585'> - <parameter type-id='type-id-574'/> + <function-type size-in-bits='64' id='type-id-588'> + <parameter type-id='type-id-577'/> <parameter type-id='type-id-32'/> <parameter type-id='type-id-32'/> <parameter type-id='type-id-32'/> <return type-id='type-id-8'/> </function-type> - <function-type size-in-bits='64' id='type-id-579'> + <function-type size-in-bits='64' id='type-id-582'> <parameter type-id='type-id-32'/> <parameter type-id='type-id-32'/> <return type-id='type-id-8'/> </function-type> - <function-type size-in-bits='64' id='type-id-577'> + <function-type size-in-bits='64' id='type-id-580'> <parameter type-id='type-id-32'/> - <return type-id='type-id-571'/> + <return type-id='type-id-574'/> </function-type> - <function-type size-in-bits='64' id='type-id-583'> + <function-type size-in-bits='64' id='type-id-586'> <parameter type-id='type-id-191'/> <return type-id='type-id-32'/> </function-type> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/import.c' comp-dir-path='/src' language='LANG_C99'> - <class-decl name='_inittab' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/import.h' line='30' column='1' id='type-id-590'> + <class-decl name='_inittab' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/import.h' line='30' column='1' id='type-id-593'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/cpython/import.h' line='31' column='1'/> </data-member> @@ -10754,144 +13642,144 @@ <var-decl name='initfunc' type-id='type-id-491' visibility='default' filepath='./Include/cpython/import.h' line='32' column='1'/> </data-member> </class-decl> - <pointer-type-def type-id='type-id-590' size-in-bits='64' id='type-id-591'/> - <var-decl name='PyImport_Inittab' type-id='type-id-591' mangled-name='PyImport_Inittab' visibility='default' filepath='./Include/cpython/import.h' line='34' column='1' elf-symbol-id='PyImport_Inittab'/> - <function-decl name='PyImport_AppendInittab' mangled-name='PyImport_AppendInittab' filepath='Python/import.c' line='2491' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AppendInittab'> - <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='2491' column='1'/> - <parameter type-id='type-id-491' name='initfunc' filepath='Python/import.c' line='2491' column='1'/> + <pointer-type-def type-id='type-id-593' size-in-bits='64' id='type-id-594'/> + <var-decl name='PyImport_Inittab' type-id='type-id-594' mangled-name='PyImport_Inittab' visibility='default' filepath='./Include/cpython/import.h' line='34' column='1' elf-symbol-id='PyImport_Inittab'/> + <function-decl name='PyImport_AppendInittab' mangled-name='PyImport_AppendInittab' filepath='Python/import.c' line='2496' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AppendInittab'> + <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='2496' column='1'/> + <parameter type-id='type-id-491' name='initfunc' filepath='Python/import.c' line='2496' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyImport_ExtendInittab' mangled-name='PyImport_ExtendInittab' filepath='Python/import.c' line='2445' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExtendInittab'> - <parameter type-id='type-id-591' name='newtab' filepath='Python/import.c' line='2445' column='1'/> + <function-decl name='PyImport_ExtendInittab' mangled-name='PyImport_ExtendInittab' filepath='Python/import.c' line='2450' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExtendInittab'> + <parameter type-id='type-id-594' name='newtab' filepath='Python/import.c' line='2450' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyInit__imp' mangled-name='PyInit__imp' filepath='Python/import.c' line='2406' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__imp'> + <function-decl name='PyInit__imp' mangled-name='PyInit__imp' filepath='Python/import.c' line='2411' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__imp'> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_Import' mangled-name='PyImport_Import' filepath='Python/import.c' line='2015' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_Import'> - <parameter type-id='type-id-100' name='module_name' filepath='Python/import.c' line='2015' column='1'/> + <function-decl name='PyImport_Import' mangled-name='PyImport_Import' filepath='Python/import.c' line='2020' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_Import'> + <parameter type-id='type-id-100' name='module_name' filepath='Python/import.c' line='2020' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_ReloadModule' mangled-name='PyImport_ReloadModule' filepath='Python/import.c' line='1982' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ReloadModule'> - <parameter type-id='type-id-100' name='m' filepath='Python/import.c' line='1982' column='1'/> + <function-decl name='PyImport_ReloadModule' mangled-name='PyImport_ReloadModule' filepath='Python/import.c' line='1987' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ReloadModule'> + <parameter type-id='type-id-100' name='m' filepath='Python/import.c' line='1987' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_ImportModuleLevel' mangled-name='PyImport_ImportModuleLevel' filepath='Python/import.c' line='1964' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleLevel'> - <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='1964' column='1'/> - <parameter type-id='type-id-100' name='globals' filepath='Python/import.c' line='1964' column='1'/> - <parameter type-id='type-id-100' name='locals' filepath='Python/import.c' line='1964' column='1'/> - <parameter type-id='type-id-100' name='fromlist' filepath='Python/import.c' line='1965' column='1'/> - <parameter type-id='type-id-8' name='level' filepath='Python/import.c' line='1965' column='1'/> + <function-decl name='PyImport_ImportModuleLevel' mangled-name='PyImport_ImportModuleLevel' filepath='Python/import.c' line='1969' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleLevel'> + <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='1969' column='1'/> + <parameter type-id='type-id-100' name='globals' filepath='Python/import.c' line='1969' column='1'/> + <parameter type-id='type-id-100' name='locals' filepath='Python/import.c' line='1969' column='1'/> + <parameter type-id='type-id-100' name='fromlist' filepath='Python/import.c' line='1970' column='1'/> + <parameter type-id='type-id-8' name='level' filepath='Python/import.c' line='1970' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_ImportModuleLevelObject' mangled-name='PyImport_ImportModuleLevelObject' filepath='Python/import.c' line='1812' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleLevelObject'> - <parameter type-id='type-id-100' name='name' filepath='Python/import.c' line='1812' column='1'/> - <parameter type-id='type-id-100' name='globals' filepath='Python/import.c' line='1812' column='1'/> - <parameter type-id='type-id-100' name='locals' filepath='Python/import.c' line='1813' column='1'/> - <parameter type-id='type-id-100' name='fromlist' filepath='Python/import.c' line='1813' column='1'/> - <parameter type-id='type-id-8' name='level' filepath='Python/import.c' line='1814' column='1'/> + <function-decl name='PyImport_ImportModuleLevelObject' mangled-name='PyImport_ImportModuleLevelObject' filepath='Python/import.c' line='1817' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleLevelObject'> + <parameter type-id='type-id-100' name='name' filepath='Python/import.c' line='1817' column='1'/> + <parameter type-id='type-id-100' name='globals' filepath='Python/import.c' line='1817' column='1'/> + <parameter type-id='type-id-100' name='locals' filepath='Python/import.c' line='1818' column='1'/> + <parameter type-id='type-id-100' name='fromlist' filepath='Python/import.c' line='1818' column='1'/> + <parameter type-id='type-id-8' name='level' filepath='Python/import.c' line='1819' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_GetModule' mangled-name='PyImport_GetModule' filepath='Python/import.c' line='1795' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetModule'> + <function-decl name='PyImport_GetModule' mangled-name='PyImport_GetModule' filepath='Python/import.c' line='1800' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetModule'> <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_ImportModuleNoBlock' mangled-name='PyImport_ImportModuleNoBlock' filepath='Python/import.c' line='1504' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleNoBlock'> - <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='355' column='1'/> + <function-decl name='PyImport_ImportModuleNoBlock' mangled-name='PyImport_ImportModuleNoBlock' filepath='Python/import.c' line='1509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleNoBlock'> + <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='1509' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_ImportModule' mangled-name='PyImport_ImportModule' filepath='Python/import.c' line='1480' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModule'> - <parameter type-id='type-id-3' name='str' filepath='Objects/bytesobject.c' line='128' column='1'/> + <function-decl name='PyImport_ImportModule' mangled-name='PyImport_ImportModule' filepath='Python/import.c' line='1485' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModule'> + <parameter type-id='type-id-3' name='utf8path' filepath='Objects/fileobject.c' line='574' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_ImportFrozenModule' mangled-name='PyImport_ImportFrozenModule' filepath='Python/import.c' line='1463' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportFrozenModule'> - <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='1463' column='1'/> + <function-decl name='PyImport_ImportFrozenModule' mangled-name='PyImport_ImportFrozenModule' filepath='Python/import.c' line='1468' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportFrozenModule'> + <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='1468' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyImport_ImportFrozenModuleObject' mangled-name='PyImport_ImportFrozenModuleObject' filepath='Python/import.c' line='1397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportFrozenModuleObject'> - <parameter type-id='type-id-100' name='name' filepath='Python/import.c' line='1397' column='1'/> + <function-decl name='PyImport_ImportFrozenModuleObject' mangled-name='PyImport_ImportFrozenModuleObject' filepath='Python/import.c' line='1402' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportFrozenModuleObject'> + <parameter type-id='type-id-100' name='name' filepath='Python/import.c' line='1402' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyImport_GetImporter' mangled-name='PyImport_GetImporter' filepath='Python/import.c' line='1233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetImporter'> - <parameter type-id='type-id-100' name='m' filepath='Python/import.c' line='1982' column='1'/> + <function-decl name='PyImport_GetImporter' mangled-name='PyImport_GetImporter' filepath='Python/import.c' line='1238' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetImporter'> + <parameter type-id='type-id-100' name='path' filepath='Python/import.c' line='1238' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_ExecCodeModuleObject' mangled-name='PyImport_ExecCodeModuleObject' filepath='Python/import.c' line='1061' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleObject'> - <parameter type-id='type-id-100' name='name' filepath='Python/import.c' line='1061' column='1'/> - <parameter type-id='type-id-100' name='co' filepath='Python/import.c' line='1061' column='1'/> - <parameter type-id='type-id-100' name='pathname' filepath='Python/import.c' line='1061' column='1'/> - <parameter type-id='type-id-100' name='cpathname' filepath='Python/import.c' line='1062' column='1'/> + <function-decl name='PyImport_ExecCodeModuleObject' mangled-name='PyImport_ExecCodeModuleObject' filepath='Python/import.c' line='1066' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleObject'> + <parameter type-id='type-id-100' name='name' filepath='Python/import.c' line='1066' column='1'/> + <parameter type-id='type-id-100' name='co' filepath='Python/import.c' line='1066' column='1'/> + <parameter type-id='type-id-100' name='pathname' filepath='Python/import.c' line='1066' column='1'/> + <parameter type-id='type-id-100' name='cpathname' filepath='Python/import.c' line='1067' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_ExecCodeModuleWithPathnames' mangled-name='PyImport_ExecCodeModuleWithPathnames' filepath='Python/import.c' line='959' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleWithPathnames'> - <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='959' column='1'/> - <parameter type-id='type-id-100' name='co' filepath='Python/import.c' line='959' column='1'/> - <parameter type-id='type-id-3' name='pathname' filepath='Python/import.c' line='960' column='1'/> - <parameter type-id='type-id-3' name='cpathname' filepath='Python/import.c' line='961' column='1'/> + <function-decl name='PyImport_ExecCodeModuleWithPathnames' mangled-name='PyImport_ExecCodeModuleWithPathnames' filepath='Python/import.c' line='964' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleWithPathnames'> + <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='964' column='1'/> + <parameter type-id='type-id-100' name='co' filepath='Python/import.c' line='964' column='1'/> + <parameter type-id='type-id-3' name='pathname' filepath='Python/import.c' line='965' column='1'/> + <parameter type-id='type-id-3' name='cpathname' filepath='Python/import.c' line='966' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_ExecCodeModuleEx' mangled-name='PyImport_ExecCodeModuleEx' filepath='Python/import.c' line='952' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleEx'> - <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='379' column='1'/> - <parameter type-id='type-id-100' name='stream' filepath='Python/codecs.c' line='380' column='1'/> - <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='381' column='1'/> + <function-decl name='PyImport_ExecCodeModuleEx' mangled-name='PyImport_ExecCodeModuleEx' filepath='Python/import.c' line='957' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleEx'> + <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='957' column='1'/> + <parameter type-id='type-id-100' name='co' filepath='Python/import.c' line='957' column='1'/> + <parameter type-id='type-id-3' name='pathname' filepath='Python/import.c' line='957' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_ExecCodeModule' mangled-name='PyImport_ExecCodeModule' filepath='Python/import.c' line='945' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModule'> - <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='945' column='1'/> - <parameter type-id='type-id-100' name='co' filepath='Python/import.c' line='945' column='1'/> + <function-decl name='PyImport_ExecCodeModule' mangled-name='PyImport_ExecCodeModule' filepath='Python/import.c' line='950' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModule'> + <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='950' column='1'/> + <parameter type-id='type-id-100' name='co' filepath='Python/import.c' line='950' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_AddModule' mangled-name='PyImport_AddModule' filepath='Python/import.c' line='896' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AddModule'> - <parameter type-id='type-id-3' name='str' filepath='Objects/bytesobject.c' line='128' column='1'/> + <function-decl name='PyImport_AddModule' mangled-name='PyImport_AddModule' filepath='Python/import.c' line='901' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AddModule'> + <parameter type-id='type-id-3' name='utf8path' filepath='Objects/fileobject.c' line='574' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyImport_AddModuleObject' mangled-name='PyImport_AddModuleObject' filepath='Python/import.c' line='888' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AddModuleObject'> - <parameter type-id='type-id-100' name='iter' filepath='Objects/abstract.c' line='2691' column='1'/> + <function-decl name='PyImport_AddModuleObject' mangled-name='PyImport_AddModuleObject' filepath='Python/import.c' line='893' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AddModuleObject'> + <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='35' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyImport_FindExtensionObject' mangled-name='_PyImport_FindExtensionObject' filepath='Python/import.c' line='822' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FindExtensionObject'> - <parameter type-id='type-id-100' name='callable' filepath='Objects/call.c' line='445' column='1'/> - <parameter type-id='type-id-100' name='args' filepath='Objects/call.c' line='445' column='1'/> + <function-decl name='_PyImport_FindExtensionObject' mangled-name='_PyImport_FindExtensionObject' filepath='Python/import.c' line='827' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FindExtensionObject'> + <parameter type-id='type-id-100' name='name' filepath='Python/import.c' line='827' column='1'/> + <parameter type-id='type-id-100' name='filename' filepath='Python/import.c' line='827' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyImport_FixupBuiltin' mangled-name='_PyImport_FixupBuiltin' filepath='Python/import.c' line='750' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FixupBuiltin'> - <parameter type-id='type-id-100' name='o' filepath='Objects/abstract.c' line='2227' column='1'/> - <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2227' column='1'/> - <parameter type-id='type-id-100' name='value' filepath='Objects/abstract.c' line='2227' column='1'/> + <function-decl name='_PyImport_FixupBuiltin' mangled-name='_PyImport_FixupBuiltin' filepath='Python/import.c' line='755' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FixupBuiltin'> + <parameter type-id='type-id-100' name='mod' filepath='Python/import.c' line='755' column='1'/> + <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='755' column='1'/> + <parameter type-id='type-id-100' name='modules' filepath='Python/import.c' line='755' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyImport_FixupExtensionObject' mangled-name='_PyImport_FixupExtensionObject' filepath='Python/import.c' line='687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FixupExtensionObject'> - <parameter type-id='type-id-100' name='mod' filepath='Python/import.c' line='687' column='1'/> - <parameter type-id='type-id-100' name='name' filepath='Python/import.c' line='687' column='1'/> - <parameter type-id='type-id-100' name='filename' filepath='Python/import.c' line='688' column='1'/> - <parameter type-id='type-id-100' name='modules' filepath='Python/import.c' line='688' column='1'/> + <function-decl name='_PyImport_FixupExtensionObject' mangled-name='_PyImport_FixupExtensionObject' filepath='Python/import.c' line='690' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FixupExtensionObject'> + <parameter type-id='type-id-100' name='mod' filepath='Python/import.c' line='690' column='1'/> + <parameter type-id='type-id-100' name='name' filepath='Python/import.c' line='690' column='1'/> + <parameter type-id='type-id-100' name='filename' filepath='Python/import.c' line='691' column='1'/> + <parameter type-id='type-id-100' name='modules' filepath='Python/import.c' line='691' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyImport_GetMagicTag' mangled-name='PyImport_GetMagicTag' filepath='Python/import.c' line='664' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetMagicTag'> + <function-decl name='PyImport_GetMagicTag' mangled-name='PyImport_GetMagicTag' filepath='Python/import.c' line='667' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetMagicTag'> <return type-id='type-id-3'/> </function-decl> - <function-decl name='PyImport_GetMagicNumber' mangled-name='PyImport_GetMagicNumber' filepath='Python/import.c' line='642' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetMagicNumber'> + <function-decl name='PyImport_GetMagicNumber' mangled-name='PyImport_GetMagicNumber' filepath='Python/import.c' line='645' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetMagicNumber'> <return type-id='type-id-12'/> </function-decl> - <function-decl name='_PyImport_SetModuleString' mangled-name='_PyImport_SetModuleString' filepath='Python/import.c' line='349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_SetModuleString'> - <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='349' column='1'/> - <parameter type-id='type-id-100' name='m' filepath='Python/import.c' line='349' column='1'/> + <function-decl name='_PyImport_SetModuleString' mangled-name='_PyImport_SetModuleString' filepath='Python/import.c' line='352' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_SetModuleString'> + <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='352' column='1'/> + <parameter type-id='type-id-100' name='m' filepath='Python/import.c' line='352' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyImport_SetModule' mangled-name='_PyImport_SetModule' filepath='Python/import.c' line='341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_SetModule'> + <function-decl name='_PyImport_SetModule' mangled-name='_PyImport_SetModule' filepath='Python/import.c' line='344' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_SetModule'> <parameter type-id='type-id-100' name='seq' filepath='Objects/abstract.c' line='2142' column='1'/> <parameter type-id='type-id-100' name='ob' filepath='Objects/abstract.c' line='2142' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyImport_GetModuleId' mangled-name='_PyImport_GetModuleId' filepath='Python/import.c' line='331' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_GetModuleId'> - <parameter type-id='type-id-308' name='nameid' filepath='Python/import.c' line='331' column='1'/> + <function-decl name='_PyImport_GetModuleId' mangled-name='_PyImport_GetModuleId' filepath='Python/import.c' line='334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_GetModuleId'> + <parameter type-id='type-id-308' name='nameid' filepath='Python/import.c' line='334' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyImport_IsInitialized' mangled-name='_PyImport_IsInitialized' filepath='Python/import.c' line='323' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_IsInitialized'> - <parameter type-id='type-id-311' name='interp' filepath='Python/import.c' line='323' column='1'/> + <function-decl name='_PyImport_IsInitialized' mangled-name='_PyImport_IsInitialized' filepath='Python/import.c' line='326' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_IsInitialized'> + <parameter type-id='type-id-311' name='interp' filepath='Python/import.c' line='326' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyImport_GetModuleDict' mangled-name='PyImport_GetModuleDict' filepath='Python/import.c' line='309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetModuleDict'> + <function-decl name='PyImport_GetModuleDict' mangled-name='PyImport_GetModuleDict' filepath='Python/import.c' line='312' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetModuleDict'> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyImport_ReleaseLock' mangled-name='_PyImport_ReleaseLock' filepath='Python/import.c' line='183' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_ReleaseLock'> @@ -10900,6 +13788,83 @@ <function-decl name='_PyImport_AcquireLock' mangled-name='_PyImport_AcquireLock' filepath='Python/import.c' line='156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_AcquireLock'> <return type-id='type-id-4'/> </function-decl> + <function-decl name='_PyMem_SetDefaultAllocator' mangled-name='_PyMem_SetDefaultAllocator' filepath='./Include/internal/pycore_pymem.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMem_SetAllocator' mangled-name='PyMem_SetAllocator' filepath='./Include/cpython/pymem.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_GetPerfCounter' mangled-name='_PyTime_GetPerfCounter' filepath='./Include/pytime.h' line='229' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_AsMicroseconds' mangled-name='_PyTime_AsMicroseconds' filepath='./Include/pytime.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMarshal_ReadObjectFromString' mangled-name='PyMarshal_ReadObjectFromString' filepath='./Include/marshal.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyModule_GetDef' mangled-name='PyModule_GetDef' filepath='./Include/moduleobject.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyModule_FromDefAndSpec2' mangled-name='PyModule_FromDefAndSpec2' filepath='./Include/modsupport.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_Pop' mangled-name='_PyDict_Pop' filepath='./Include/cpython/dictobject.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyModule_NewObject' mangled-name='PyModule_NewObject' filepath='./Include/moduleobject.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyState_AddModule' mangled-name='_PyState_AddModule' filepath='./Include/internal/pycore_pystate.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyModule_Clear' mangled-name='_PyModule_Clear' filepath='./Include/moduleobject.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyModule_ClearDict' mangled-name='_PyModule_ClearDict' filepath='./Include/moduleobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyInterpreterState_ClearModules' mangled-name='_PyInterpreterState_ClearModules' filepath='./Include/internal/pycore_interp.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGC_CollectNoFail' mangled-name='_PyGC_CollectNoFail' filepath='./Include/cpython/objimpl.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGC_DumpShutdownStats' mangled-name='_PyGC_DumpShutdownStats' filepath='./Include/internal/pycore_pylifecycle.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyList_Insert' mangled-name='PyList_Insert' filepath='./Include/listobject.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySys_SetObject' mangled-name='PySys_SetObject' filepath='./Include/sysmodule.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_KeyedHash' mangled-name='_Py_KeyedHash' filepath='./Include/internal/pycore_pyhash.h' line='8' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImport_LoadDynamicModuleWithSpec' mangled-name='_PyImport_LoadDynamicModuleWithSpec' filepath='Python/importdl.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyModule_ExecDef' mangled-name='PyModule_ExecDef' filepath='./Include/modsupport.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + </abi-instr> + <abi-instr version='1.0' address-size='64' path='./Python/importdl.c' comp-dir-path='/src' language='LANG_C99'> + <function-decl name='_PyObject_CallMethodId' mangled-name='_PyObject_CallMethodId' filepath='./Include/cpython/abstract.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_EncodeFSDefault' mangled-name='PyUnicode_EncodeFSDefault' filepath='./Include/unicodeobject.h' line='787' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImport_FindSharedFuncptr' mangled-name='_PyImport_FindSharedFuncptr' filepath='./Python/importdl.c' line='21' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyImport_GetModuleDict' mangled-name='PyImport_GetModuleDict' filepath='./Include/import.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImport_FixupExtensionObject' mangled-name='_PyImport_FixupExtensionObject' filepath='./Include/cpython/import.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Python/initconfig.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='Py_UTF8Mode' type-id='type-id-8' mangled-name='Py_UTF8Mode' visibility='default' filepath='./Include/fileobject.h' line='29' column='1' elf-symbol-id='Py_UTF8Mode'/> @@ -10921,9 +13886,9 @@ <function-decl name='_Py_GetConfigsAsDict' mangled-name='_Py_GetConfigsAsDict' filepath='./Python/initconfig.c' line='2614' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetConfigsAsDict'> <return type-id='type-id-100'/> </function-decl> - <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-592' visibility='default' filepath='./Include/cpython/initconfig.h' line='10' column='1' id='type-id-593'> + <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-595' visibility='default' filepath='./Include/cpython/initconfig.h' line='10' column='1' id='type-id-596'> <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='_type' type-id='type-id-594' visibility='default' filepath='./Include/cpython/initconfig.h' line='15' column='1'/> + <var-decl name='_type' type-id='type-id-597' visibility='default' filepath='./Include/cpython/initconfig.h' line='15' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='64'> <var-decl name='func' type-id='type-id-3' visibility='default' filepath='./Include/cpython/initconfig.h' line='16' column='1'/> @@ -10935,72 +13900,66 @@ <var-decl name='exitcode' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='18' column='1'/> </data-member> </class-decl> - <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/initconfig.h' line='11' column='1' id='type-id-594'> + <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/initconfig.h' line='11' column='1' id='type-id-597'> <underlying-type type-id='type-id-23'/> <enumerator name='_PyStatus_TYPE_OK' value='0'/> <enumerator name='_PyStatus_TYPE_ERROR' value='1'/> <enumerator name='_PyStatus_TYPE_EXIT' value='2'/> </enum-decl> - <typedef-decl name='PyStatus' type-id='type-id-593' filepath='./Include/cpython/initconfig.h' line='19' column='1' id='type-id-592'/> - <pointer-type-def type-id='type-id-321' size-in-bits='64' id='type-id-595'/> + <typedef-decl name='PyStatus' type-id='type-id-596' filepath='./Include/cpython/initconfig.h' line='19' column='1' id='type-id-595'/> + <pointer-type-def type-id='type-id-321' size-in-bits='64' id='type-id-598'/> <function-decl name='PyConfig_Read' mangled-name='PyConfig_Read' filepath='./Python/initconfig.c' line='2503' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_Read'> - <parameter type-id='type-id-595' name='config' filepath='./Python/initconfig.c' line='2503' column='1'/> - <return type-id='type-id-592'/> + <parameter type-id='type-id-598' name='config' filepath='./Python/initconfig.c' line='2503' column='1'/> + <return type-id='type-id-595'/> </function-decl> - <pointer-type-def type-id='type-id-404' size-in-bits='64' id='type-id-596'/> + <pointer-type-def type-id='type-id-404' size-in-bits='64' id='type-id-599'/> <function-decl name='PyConfig_SetWideStringList' mangled-name='PyConfig_SetWideStringList' filepath='./Python/initconfig.c' line='2479' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetWideStringList'> - <parameter type-id='type-id-595' name='config' filepath='./Python/initconfig.c' line='2479' column='1'/> - <parameter type-id='type-id-596' name='list' filepath='./Python/initconfig.c' line='2479' column='1'/> + <parameter type-id='type-id-598' name='config' filepath='./Python/initconfig.c' line='2479' column='1'/> + <parameter type-id='type-id-599' name='list' filepath='./Python/initconfig.c' line='2479' column='1'/> <parameter type-id='type-id-15' name='length' filepath='./Python/initconfig.c' line='2480' column='1'/> <parameter type-id='type-id-407' name='items' filepath='./Python/initconfig.c' line='2480' column='1'/> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> </function-decl> - <qualified-type-def type-id='type-id-403' const='yes' id='type-id-597'/> - <pointer-type-def type-id='type-id-597' size-in-bits='64' id='type-id-598'/> + <qualified-type-def type-id='type-id-403' const='yes' id='type-id-600'/> + <pointer-type-def type-id='type-id-600' size-in-bits='64' id='type-id-601'/> <function-decl name='PyConfig_SetArgv' mangled-name='PyConfig_SetArgv' filepath='./Python/initconfig.c' line='2467' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetArgv'> - <parameter type-id='type-id-595' name='config' filepath='./Python/initconfig.c' line='2467' column='1'/> + <parameter type-id='type-id-598' name='config' filepath='./Python/initconfig.c' line='2467' column='1'/> <parameter type-id='type-id-15' name='argc' filepath='./Python/initconfig.c' line='2467' column='1'/> - <parameter type-id='type-id-598' name='argv' filepath='./Python/initconfig.c' line='2467' column='1'/> - <return type-id='type-id-592'/> + <parameter type-id='type-id-601' name='argv' filepath='./Python/initconfig.c' line='2467' column='1'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='PyConfig_SetBytesArgv' mangled-name='PyConfig_SetBytesArgv' filepath='./Python/initconfig.c' line='2455' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetBytesArgv'> - <parameter type-id='type-id-595' name='config' filepath='./Python/initconfig.c' line='2455' column='1'/> + <parameter type-id='type-id-598' name='config' filepath='./Python/initconfig.c' line='2455' column='1'/> <parameter type-id='type-id-15' name='argc' filepath='./Python/initconfig.c' line='2455' column='1'/> <parameter type-id='type-id-280' name='argv' filepath='./Python/initconfig.c' line='2455' column='1'/> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='PyConfig_SetBytesString' mangled-name='PyConfig_SetBytesString' filepath='./Python/initconfig.c' line='771' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetBytesString'> - <parameter type-id='type-id-595' name='config' filepath='./Python/initconfig.c' line='771' column='1'/> + <parameter type-id='type-id-598' name='config' filepath='./Python/initconfig.c' line='771' column='1'/> <parameter type-id='type-id-407' name='config_str' filepath='./Python/initconfig.c' line='771' column='1'/> <parameter type-id='type-id-3' name='str' filepath='./Python/initconfig.c' line='772' column='1'/> - <return type-id='type-id-592'/> - </function-decl> - <function-decl name='PyConfig_SetString' mangled-name='PyConfig_SetString' filepath='./Python/initconfig.c' line='709' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetString'> - <parameter type-id='type-id-595' name='config' filepath='./Python/initconfig.c' line='709' column='1'/> - <parameter type-id='type-id-407' name='config_str' filepath='./Python/initconfig.c' line='709' column='1'/> - <parameter type-id='type-id-501' name='str' filepath='./Python/initconfig.c' line='709' column='1'/> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='PyConfig_InitIsolatedConfig' mangled-name='PyConfig_InitIsolatedConfig' filepath='./Python/initconfig.c' line='687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_InitIsolatedConfig'> - <parameter type-id='type-id-595' name='config' filepath='./Python/initconfig.c' line='687' column='1'/> + <parameter type-id='type-id-598' name='config' filepath='./Python/initconfig.c' line='687' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PyConfig_InitPythonConfig' mangled-name='PyConfig_InitPythonConfig' filepath='./Python/initconfig.c' line='676' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_InitPythonConfig'> - <parameter type-id='type-id-595' name='config' filepath='./Python/initconfig.c' line='687' column='1'/> + <parameter type-id='type-id-598' name='config' filepath='./Python/initconfig.c' line='687' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyConfig_InitCompatConfig' mangled-name='_PyConfig_InitCompatConfig' filepath='./Python/initconfig.c' line='612' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyConfig_InitCompatConfig'> - <parameter type-id='type-id-595' name='config' filepath='./Python/initconfig.c' line='687' column='1'/> + <parameter type-id='type-id-598' name='config' filepath='./Python/initconfig.c' line='687' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PyConfig_Clear' mangled-name='PyConfig_Clear' filepath='./Python/initconfig.c' line='570' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_Clear'> - <parameter type-id='type-id-595' name='config' filepath='./Python/initconfig.c' line='687' column='1'/> + <parameter type-id='type-id-598' name='config' filepath='./Python/initconfig.c' line='570' column='1'/> <return type-id='type-id-4'/> </function-decl> - <pointer-type-def type-id='type-id-407' size-in-bits='64' id='type-id-599'/> + <pointer-type-def type-id='type-id-407' size-in-bits='64' id='type-id-602'/> <function-decl name='Py_GetArgcArgv' mangled-name='Py_GetArgcArgv' filepath='./Python/initconfig.c' line='553' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetArgcArgv'> <parameter type-id='type-id-227' name='argc' filepath='./Python/initconfig.c' line='553' column='1'/> - <parameter type-id='type-id-599' name='argv' filepath='./Python/initconfig.c' line='553' column='1'/> + <parameter type-id='type-id-602' name='argv' filepath='./Python/initconfig.c' line='553' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_Py_ClearArgcArgv' mangled-name='_Py_ClearArgcArgv' filepath='./Python/initconfig.c' line='525' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ClearArgcArgv'> @@ -11014,92 +13973,179 @@ <parameter type-id='type-id-3' name='errors' filepath='./Python/initconfig.c' line='443' column='1'/> <return type-id='type-id-8'/> </function-decl> - <qualified-type-def type-id='type-id-404' const='yes' id='type-id-600'/> - <pointer-type-def type-id='type-id-600' size-in-bits='64' id='type-id-601'/> + <qualified-type-def type-id='type-id-404' const='yes' id='type-id-603'/> + <pointer-type-def type-id='type-id-603' size-in-bits='64' id='type-id-604'/> <function-decl name='_PyWideStringList_AsList' mangled-name='_PyWideStringList_AsList' filepath='./Python/initconfig.c' line='412' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWideStringList_AsList'> - <parameter type-id='type-id-601' name='list' filepath='./Python/initconfig.c' line='412' column='1'/> + <parameter type-id='type-id-604' name='list' filepath='./Python/initconfig.c' line='412' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyWideStringList_Extend' mangled-name='_PyWideStringList_Extend' filepath='./Python/initconfig.c' line='387' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWideStringList_Extend'> - <parameter type-id='type-id-596' name='list' filepath='./Python/initconfig.c' line='387' column='1'/> - <parameter type-id='type-id-601' name='list2' filepath='./Python/initconfig.c' line='387' column='1'/> - <return type-id='type-id-592'/> + <parameter type-id='type-id-599' name='list' filepath='./Python/initconfig.c' line='387' column='1'/> + <parameter type-id='type-id-604' name='list2' filepath='./Python/initconfig.c' line='387' column='1'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='PyWideStringList_Append' mangled-name='PyWideStringList_Append' filepath='./Python/initconfig.c' line='380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWideStringList_Append'> - <parameter type-id='type-id-596' name='list' filepath='./Python/initconfig.c' line='380' column='1'/> + <parameter type-id='type-id-599' name='list' filepath='./Python/initconfig.c' line='380' column='1'/> <parameter type-id='type-id-501' name='item' filepath='./Python/initconfig.c' line='380' column='1'/> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='PyWideStringList_Insert' mangled-name='PyWideStringList_Insert' filepath='./Python/initconfig.c' line='339' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWideStringList_Insert'> - <parameter type-id='type-id-596' name='list' filepath='./Python/initconfig.c' line='339' column='1'/> + <parameter type-id='type-id-599' name='list' filepath='./Python/initconfig.c' line='339' column='1'/> <parameter type-id='type-id-15' name='index' filepath='./Python/initconfig.c' line='340' column='1'/> <parameter type-id='type-id-501' name='item' filepath='./Python/initconfig.c' line='340' column='1'/> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='_PyWideStringList_Copy' mangled-name='_PyWideStringList_Copy' filepath='./Python/initconfig.c' line='304' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWideStringList_Copy'> - <parameter type-id='type-id-596' name='list' filepath='./Python/initconfig.c' line='304' column='1'/> - <parameter type-id='type-id-601' name='list2' filepath='./Python/initconfig.c' line='304' column='1'/> + <parameter type-id='type-id-599' name='list' filepath='./Python/initconfig.c' line='304' column='1'/> + <parameter type-id='type-id-604' name='list2' filepath='./Python/initconfig.c' line='304' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyWideStringList_Clear' mangled-name='_PyWideStringList_Clear' filepath='./Python/initconfig.c' line='291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWideStringList_Clear'> - <parameter type-id='type-id-596' name='list' filepath='./Python/initconfig.c' line='291' column='1'/> + <parameter type-id='type-id-599' name='list' filepath='./Python/initconfig.c' line='291' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PyStatus_Exception' mangled-name='PyStatus_Exception' filepath='./Python/initconfig.c' line='268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_Exception'> - <parameter type-id='type-id-592' name='status' filepath='./Python/initconfig.c' line='268' column='1'/> + <parameter type-id='type-id-595' name='status' filepath='./Python/initconfig.c' line='268' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyStatus_IsExit' mangled-name='PyStatus_IsExit' filepath='./Python/initconfig.c' line='265' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_IsExit'> - <parameter type-id='type-id-592' name='status' filepath='./Python/initconfig.c' line='268' column='1'/> + <parameter type-id='type-id-595' name='status' filepath='./Python/initconfig.c' line='268' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyStatus_IsError' mangled-name='PyStatus_IsError' filepath='./Python/initconfig.c' line='262' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_IsError'> - <parameter type-id='type-id-592' name='status' filepath='./Python/initconfig.c' line='268' column='1'/> + <parameter type-id='type-id-595' name='status' filepath='./Python/initconfig.c' line='268' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyStatus_Exit' mangled-name='PyStatus_Exit' filepath='./Python/initconfig.c' line='258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_Exit'> <parameter type-id='type-id-8' name='exitcode' filepath='./Python/initconfig.c' line='258' column='1'/> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='PyStatus_NoMemory' mangled-name='PyStatus_NoMemory' filepath='./Python/initconfig.c' line='255' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_NoMemory'> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='PyStatus_Error' mangled-name='PyStatus_Error' filepath='./Python/initconfig.c' line='249' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_Error'> <parameter type-id='type-id-3' name='err_msg' filepath='./Python/initconfig.c' line='249' column='1'/> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='PyStatus_Ok' mangled-name='PyStatus_Ok' filepath='./Python/initconfig.c' line='246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_Ok'> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> + </function-decl> + <function-decl name='PyConfig_SetString' mangled-name='PyConfig_SetString' filepath='./Python/initconfig.c' line='709' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetString'> + <parameter type-id='type-id-598' name='config' filepath='./Python/initconfig.c' line='709' column='1'/> + <parameter type-id='type-id-407' name='config_str' filepath='./Python/initconfig.c' line='709' column='1'/> + <parameter type-id='type-id-501' name='str' filepath='./Python/initconfig.c' line='709' column='1'/> + <return type-id='type-id-595'/> + </function-decl> + <function-decl name='_PyPreConfig_AsDict' mangled-name='_PyPreConfig_AsDict' filepath='./Include/internal/pycore_initconfig.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPreConfig_InitFromPreConfig' mangled-name='_PyPreConfig_InitFromPreConfig' filepath='./Include/internal/pycore_initconfig.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPreConfig_GetConfig' mangled-name='_PyPreConfig_GetConfig' filepath='./Include/internal/pycore_initconfig.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPreCmdline_Read' mangled-name='_PyPreCmdline_Read' filepath='./Include/internal/pycore_initconfig.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPreCmdline_SetConfig' mangled-name='_PyPreCmdline_SetConfig' filepath='./Include/internal/pycore_initconfig.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_isabs' mangled-name='_Py_isabs' filepath='./Include/cpython/fileutils.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_abspath' mangled-name='_Py_abspath' filepath='./Include/cpython/fileutils.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_PreInitializeFromConfig' mangled-name='_Py_PreInitializeFromConfig' filepath='./Include/internal/pycore_pylifecycle.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wcstok' mangled-name='wcstok' filepath='/usr/include/wchar.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyOS_GetOpt' mangled-name='_PyOS_GetOpt' filepath='./Include/internal/pycore_getopt.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyOS_ResetGetOpt' mangled-name='_PyOS_ResetGetOpt' filepath='./Include/internal/pycore_getopt.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySys_ReadPreinitWarnOptions' mangled-name='_PySys_ReadPreinitWarnOptions' filepath='./Include/internal/pycore_pylifecycle.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_GetEnv' mangled-name='_Py_GetEnv' filepath='./Include/internal/pycore_initconfig.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='strtoul' mangled-name='strtoul' filepath='/usr/include/stdlib.h' line='180' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_get_env_flag' mangled-name='_Py_get_env_flag' filepath='./Include/internal/pycore_initconfig.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_get_xoption' mangled-name='_Py_get_xoption' filepath='./Include/internal/pycore_initconfig.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wcstol' mangled-name='wcstol' filepath='/usr/include/wchar.h' line='428' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wcschr' mangled-name='wcschr' filepath='/usr/include/wchar.h' line='164' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_str_to_int' mangled-name='_Py_str_to_int' filepath='./Include/internal/pycore_initconfig.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_IsLocaleCoercionTarget' mangled-name='_Py_IsLocaleCoercionTarget' filepath='./Include/internal/pycore_pylifecycle.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='nl_langinfo' mangled-name='nl_langinfo' filepath='/usr/include/langinfo.h' line='661' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_GetForceASCII' mangled-name='_Py_GetForceASCII' filepath='./Include/internal/pycore_fileutils.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyConfig_InitPathConfig' mangled-name='_PyConfig_InitPathConfig' filepath='./Include/internal/pycore_initconfig.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPreCmdline_Clear' mangled-name='_PyPreCmdline_Clear' filepath='./Include/internal/pycore_initconfig.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySys_ReadPreinitXOptions' mangled-name='_PySys_ReadPreinitXOptions' filepath='./Include/internal/pycore_pylifecycle.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArgv_AsWstrList' mangled-name='_PyArgv_AsWstrList' filepath='./Include/internal/pycore_initconfig.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setvbuf' mangled-name='setvbuf' filepath='/usr/include/stdio.h' line='308' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/marshal.c' comp-dir-path='/src' language='LANG_C99'> - <function-decl name='PyMarshal_Init' mangled-name='PyMarshal_Init' filepath='Python/marshal.c' line='1802' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_Init'> + <function-decl name='PyMarshal_Init' mangled-name='PyMarshal_Init' filepath='Python/marshal.c' line='1812' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_Init'> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyMarshal_WriteObjectToString' mangled-name='PyMarshal_WriteObjectToString' filepath='Python/marshal.c' line='1563' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_WriteObjectToString'> - <parameter type-id='type-id-100' name='x' filepath='Python/marshal.c' line='1563' column='1'/> - <parameter type-id='type-id-8' name='version' filepath='Python/marshal.c' line='1563' column='1'/> + <function-decl name='PyMarshal_WriteObjectToString' mangled-name='PyMarshal_WriteObjectToString' filepath='Python/marshal.c' line='1570' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_WriteObjectToString'> + <parameter type-id='type-id-100' name='x' filepath='Python/marshal.c' line='1570' column='1'/> + <parameter type-id='type-id-8' name='version' filepath='Python/marshal.c' line='1570' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyMarshal_ReadObjectFromString' mangled-name='PyMarshal_ReadObjectFromString' filepath='Python/marshal.c' line='1542' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadObjectFromString'> - <parameter type-id='type-id-3' name='bytes' filepath='Objects/bytearrayobject.c' line='114' column='1'/> - <parameter type-id='type-id-15' name='size' filepath='Objects/bytearrayobject.c' line='114' column='1'/> + <function-decl name='PyMarshal_ReadObjectFromString' mangled-name='PyMarshal_ReadObjectFromString' filepath='Python/marshal.c' line='1549' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadObjectFromString'> + <parameter type-id='type-id-3' name='str' filepath='Python/marshal.c' line='1549' column='1'/> + <parameter type-id='type-id-15' name='len' filepath='Python/marshal.c' line='1549' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyMarshal_ReadObjectFromFile' mangled-name='PyMarshal_ReadObjectFromFile' filepath='Python/marshal.c' line='1522' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadObjectFromFile'> - <parameter type-id='type-id-223' name='fp' filepath='Python/marshal.c' line='1522' column='1'/> + <function-decl name='PyMarshal_ReadObjectFromFile' mangled-name='PyMarshal_ReadObjectFromFile' filepath='Python/marshal.c' line='1529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadObjectFromFile'> + <parameter type-id='type-id-223' name='fp' filepath='Python/marshal.c' line='1529' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyMarshal_ReadLastObjectFromFile' mangled-name='PyMarshal_ReadLastObjectFromFile' filepath='Python/marshal.c' line='1497' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadLastObjectFromFile'> - <parameter type-id='type-id-223' name='fp' filepath='Python/marshal.c' line='1497' column='1'/> + <function-decl name='PyMarshal_ReadLastObjectFromFile' mangled-name='PyMarshal_ReadLastObjectFromFile' filepath='Python/marshal.c' line='1504' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadLastObjectFromFile'> + <parameter type-id='type-id-223' name='fp' filepath='Python/marshal.c' line='1504' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyMarshal_ReadLongFromFile' mangled-name='PyMarshal_ReadLongFromFile' filepath='Python/marshal.c' line='1461' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadLongFromFile'> - <parameter type-id='type-id-223' name='fp' filepath='Python/marshal.c' line='1461' column='1'/> + <function-decl name='PyMarshal_ReadLongFromFile' mangled-name='PyMarshal_ReadLongFromFile' filepath='Python/marshal.c' line='1468' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadLongFromFile'> + <parameter type-id='type-id-223' name='fp' filepath='Python/marshal.c' line='1468' column='1'/> <return type-id='type-id-12'/> </function-decl> - <function-decl name='PyMarshal_ReadShortFromFile' mangled-name='PyMarshal_ReadShortFromFile' filepath='Python/marshal.c' line='1445' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadShortFromFile'> - <parameter type-id='type-id-223' name='fp' filepath='Python/marshal.c' line='1445' column='1'/> + <function-decl name='PyMarshal_ReadShortFromFile' mangled-name='PyMarshal_ReadShortFromFile' filepath='Python/marshal.c' line='1452' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadShortFromFile'> + <parameter type-id='type-id-223' name='fp' filepath='Python/marshal.c' line='1452' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyMarshal_WriteObjectToFile' mangled-name='PyMarshal_WriteObjectToFile' filepath='Python/marshal.c' line='595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_WriteObjectToFile'> @@ -11114,6 +14160,39 @@ <parameter type-id='type-id-8' name='version' filepath='Python/marshal.c' line='580' column='1'/> <return type-id='type-id-4'/> </function-decl> + <function-decl name='_Py_hashtable_new_full' mangled-name='_Py_hashtable_new_full' filepath='./Include/internal/pycore_hashtable.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_hashtable_set' mangled-name='_Py_hashtable_set' filepath='./Include/internal/pycore_hashtable.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_hashtable_destroy' mangled-name='_Py_hashtable_destroy' filepath='./Include/internal/pycore_hashtable.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__fread_alias' mangled-name='fread' filepath='/usr/include/x86_64-linux-gnu/bits/stdio2.h' line='271' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_fstat_noraise' mangled-name='_Py_fstat_noraise' filepath='./Include/cpython/fileutils.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFloat_Unpack8' mangled-name='_PyFloat_Unpack8' filepath='./Include/floatobject.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_FromByteArray' mangled-name='_PyLong_FromByteArray' filepath='./Include/longobject.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_New' mangled-name='_PyLong_New' filepath='./Include/longintrepr.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFloat_Pack8' mangled-name='_PyFloat_Pack8' filepath='./Include/floatobject.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyComplex_RealAsDouble' mangled-name='PyComplex_RealAsDouble' filepath='./Include/complexobject.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyComplex_ImagAsDouble' mangled-name='PyComplex_ImagAsDouble' filepath='./Include/complexobject.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/modsupport.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='_Py_PackageContext' type-id='type-id-3' mangled-name='_Py_PackageContext' visibility='default' filepath='./Include/modsupport.h' line='249' column='1' elf-symbol-id='_Py_PackageContext'/> @@ -11177,10 +14256,13 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='_Py_convert_optional_to_ssize_t' mangled-name='_Py_convert_optional_to_ssize_t' filepath='Python/modsupport.c' line='18' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_convert_optional_to_ssize_t'> - <parameter type-id='type-id-100' name='o' filepath='Objects/capsule.c' line='181' column='1'/> - <parameter type-id='type-id-32' name='context' filepath='Objects/capsule.c' line='181' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Python/modsupport.c' line='18' column='1'/> + <parameter type-id='type-id-32' name='result' filepath='Python/modsupport.c' line='18' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='PyModule_GetName' mangled-name='PyModule_GetName' filepath='./Include/moduleobject.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/mysnprintf.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyOS_vsnprintf' mangled-name='PyOS_vsnprintf' filepath='Python/mysnprintf.c' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_vsnprintf'> @@ -11197,6 +14279,9 @@ <parameter is-variadic='yes'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='__builtin___vsnprintf_chk' mangled-name='__vsnprintf_chk' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/mystrtoul.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyOS_strtol' mangled-name='PyOS_strtol' filepath='Python/mystrtoul.c' line='263' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_strtol'> @@ -11213,7 +14298,7 @@ </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/pathconfig.c' comp-dir-path='/src' language='LANG_C99'> - <class-decl name='_PyPathConfig' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='11' column='1' id='type-id-602'> + <class-decl name='_PyPathConfig' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='11' column='1' id='type-id-605'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='program_full_path' type-id='type-id-403' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='13' column='1'/> </data-member> @@ -11233,8 +14318,8 @@ <var-decl name='home' type-id='type-id-403' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='21' column='1'/> </data-member> </class-decl> - <typedef-decl name='_PyPathConfig' type-id='type-id-602' filepath='./Include/internal/pycore_pathconfig.h' line='31' column='1' id='type-id-603'/> - <var-decl name='_Py_path_config' type-id='type-id-603' mangled-name='_Py_path_config' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='44' column='1' elf-symbol-id='_Py_path_config'/> + <typedef-decl name='_PyPathConfig' type-id='type-id-605' filepath='./Include/internal/pycore_pathconfig.h' line='31' column='1' id='type-id-606'/> + <var-decl name='_Py_path_config' type-id='type-id-606' mangled-name='_Py_path_config' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='44' column='1' elf-symbol-id='_Py_path_config'/> <function-decl name='Py_GetProgramName' mangled-name='Py_GetProgramName' filepath='Python/pathconfig.c' line='588' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetProgramName'> <return type-id='type-id-403'/> </function-decl> @@ -11269,6 +14354,39 @@ <parameter type-id='type-id-501' name='path' filepath='Python/pathconfig.c' line='450' column='1'/> <return type-id='type-id-4'/> </function-decl> + <function-decl name='_Py_DecodeUTF8_surrogateescape' mangled-name='_Py_DecodeUTF8_surrogateescape' filepath='./Include/internal/pycore_fileutils.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__wcsncpy_alias' mangled-name='wcsncpy' filepath='/usr/include/x86_64-linux-gnu/bits/wchar2.h' line='179' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wcsrchr' mangled-name='wcsrchr' filepath='/usr/include/wchar.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_wgetcwd' mangled-name='_Py_wgetcwd' filepath='./Include/cpython/fileutils.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_wreadlink' mangled-name='_Py_wreadlink' filepath='./Include/cpython/fileutils.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_wrealpath' mangled-name='_Py_wrealpath' filepath='./Include/cpython/fileutils.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPathConfig_Calculate' mangled-name='_PyPathConfig_Calculate' filepath='./Include/internal/pycore_pathconfig.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyWideStringList_Append' mangled-name='PyWideStringList_Append' filepath='./Include/cpython/initconfig.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyWideStringList_Clear' mangled-name='_PyWideStringList_Clear' filepath='./Include/internal/pycore_initconfig.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyConfig_InitCompatConfig' mangled-name='_PyConfig_InitCompatConfig' filepath='./Include/internal/pycore_initconfig.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyConfig_Read' mangled-name='PyConfig_Read' filepath='./Include/cpython/initconfig.h' line='438' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/peephole.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyCode_Optimize' mangled-name='PyCode_Optimize' filepath='Python/peephole.c' line='230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCode_Optimize'> @@ -11284,7 +14402,7 @@ <var-decl name='Py_HasFileSystemDefaultEncoding' type-id='type-id-8' mangled-name='Py_HasFileSystemDefaultEncoding' visibility='default' filepath='./Include/fileobject.h' line='26' column='1' elf-symbol-id='Py_HasFileSystemDefaultEncoding'/> <var-decl name='Py_FileSystemDefaultEncodeErrors' type-id='type-id-3' mangled-name='Py_FileSystemDefaultEncodeErrors' visibility='default' filepath='./Include/fileobject.h' line='24' column='1' elf-symbol-id='Py_FileSystemDefaultEncodeErrors'/> <function-decl name='_Py_get_xoption' mangled-name='_Py_get_xoption' filepath='Python/preconfig.c' line='566' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_xoption'> - <parameter type-id='type-id-601' name='xoptions' filepath='Python/preconfig.c' line='566' column='1'/> + <parameter type-id='type-id-604' name='xoptions' filepath='Python/preconfig.c' line='566' column='1'/> <parameter type-id='type-id-501' name='name' filepath='Python/preconfig.c' line='566' column='1'/> <return type-id='type-id-501'/> </function-decl> @@ -11304,20 +14422,20 @@ <parameter type-id='type-id-3' name='name' filepath='Python/preconfig.c' line='511' column='1'/> <return type-id='type-id-3'/> </function-decl> - <pointer-type-def type-id='type-id-334' size-in-bits='64' id='type-id-604'/> + <pointer-type-def type-id='type-id-334' size-in-bits='64' id='type-id-607'/> <function-decl name='PyPreConfig_InitIsolatedConfig' mangled-name='PyPreConfig_InitIsolatedConfig' filepath='Python/preconfig.c' line='323' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPreConfig_InitIsolatedConfig'> - <parameter type-id='type-id-604' name='config' filepath='Python/preconfig.c' line='323' column='1'/> + <parameter type-id='type-id-607' name='config' filepath='Python/preconfig.c' line='323' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PyPreConfig_InitPythonConfig' mangled-name='PyPreConfig_InitPythonConfig' filepath='Python/preconfig.c' line='302' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPreConfig_InitPythonConfig'> - <parameter type-id='type-id-604' name='config' filepath='Python/preconfig.c' line='323' column='1'/> + <parameter type-id='type-id-607' name='config' filepath='Python/preconfig.c' line='323' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyPreConfig_InitCompatConfig' mangled-name='_PyPreConfig_InitCompatConfig' filepath='Python/preconfig.c' line='274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyPreConfig_InitCompatConfig'> - <parameter type-id='type-id-604' name='config' filepath='Python/preconfig.c' line='323' column='1'/> + <parameter type-id='type-id-607' name='config' filepath='Python/preconfig.c' line='274' column='1'/> <return type-id='type-id-4'/> </function-decl> - <class-decl name='_PyArgv' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='64' column='1' id='type-id-605'> + <class-decl name='_PyArgv' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='64' column='1' id='type-id-608'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='argc' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='65' column='1'/> </data-member> @@ -11328,31 +14446,55 @@ <var-decl name='bytes_argv' type-id='type-id-280' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='67' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='192'> - <var-decl name='wchar_argv' type-id='type-id-598' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='68' column='1'/> + <var-decl name='wchar_argv' type-id='type-id-601' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='68' column='1'/> </data-member> </class-decl> - <typedef-decl name='_PyArgv' type-id='type-id-605' filepath='./Include/internal/pycore_initconfig.h' line='69' column='1' id='type-id-606'/> - <qualified-type-def type-id='type-id-606' const='yes' id='type-id-607'/> - <pointer-type-def type-id='type-id-607' size-in-bits='64' id='type-id-608'/> + <typedef-decl name='_PyArgv' type-id='type-id-608' filepath='./Include/internal/pycore_initconfig.h' line='69' column='1' id='type-id-609'/> + <qualified-type-def type-id='type-id-609' const='yes' id='type-id-610'/> + <pointer-type-def type-id='type-id-610' size-in-bits='64' id='type-id-611'/> <function-decl name='_PyArgv_AsWstrList' mangled-name='_PyArgv_AsWstrList' filepath='Python/preconfig.c' line='77' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArgv_AsWstrList'> - <parameter type-id='type-id-608' name='args' filepath='Python/preconfig.c' line='77' column='1'/> - <parameter type-id='type-id-596' name='list' filepath='Python/preconfig.c' line='77' column='1'/> - <return type-id='type-id-592'/> + <parameter type-id='type-id-611' name='args' filepath='Python/preconfig.c' line='77' column='1'/> + <parameter type-id='type-id-599' name='list' filepath='Python/preconfig.c' line='77' column='1'/> + <return type-id='type-id-595'/> + </function-decl> + <function-decl name='_Py_SetLocaleFromEnv' mangled-name='_Py_SetLocaleFromEnv' filepath='./Include/cpython/pylifecycle.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyMem_SetupAllocators' mangled-name='_PyMem_SetupAllocators' filepath='./Include/internal/pycore_pymem.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_CoerceLegacyLocale' mangled-name='_Py_CoerceLegacyLocale' filepath='./Include/cpython/pylifecycle.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_LegacyLocaleDetected' mangled-name='_Py_LegacyLocaleDetected' filepath='./Include/cpython/pylifecycle.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyMem_GetAllocatorName' mangled-name='_PyMem_GetAllocatorName' filepath='./Include/internal/pycore_pymem.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wcsncmp' mangled-name='wcsncmp' filepath='/usr/include/wchar.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyWideStringList_Extend' mangled-name='_PyWideStringList_Extend' filepath='./Include/internal/pycore_initconfig.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyWideStringList_Copy' mangled-name='_PyWideStringList_Copy' filepath='./Include/internal/pycore_initconfig.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/pyarena.c' comp-dir-path='/src' language='LANG_C99'> <class-decl name='_arena' size-in-bits='192' is-struct='yes' visibility='default' filepath='Python/pyarena.c' line='45' column='1' id='type-id-228'> <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='a_head' type-id='type-id-609' visibility='default' filepath='Python/pyarena.c' line='50' column='1'/> + <var-decl name='a_head' type-id='type-id-612' visibility='default' filepath='Python/pyarena.c' line='50' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='64'> - <var-decl name='a_cur' type-id='type-id-609' visibility='default' filepath='Python/pyarena.c' line='57' column='1'/> + <var-decl name='a_cur' type-id='type-id-612' visibility='default' filepath='Python/pyarena.c' line='57' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='128'> <var-decl name='a_objects' type-id='type-id-100' visibility='default' filepath='Python/pyarena.c' line='63' column='1'/> </data-member> </class-decl> - <class-decl name='_block' size-in-bits='256' is-struct='yes' visibility='default' filepath='Python/pyarena.c' line='16' column='1' id='type-id-610'> + <class-decl name='_block' size-in-bits='256' is-struct='yes' visibility='default' filepath='Python/pyarena.c' line='16' column='1' id='type-id-613'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='ab_size' type-id='type-id-191' visibility='default' filepath='Python/pyarena.c' line='21' column='1'/> </data-member> @@ -11360,15 +14502,15 @@ <var-decl name='ab_offset' type-id='type-id-191' visibility='default' filepath='Python/pyarena.c' line='26' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='128'> - <var-decl name='ab_next' type-id='type-id-611' visibility='default' filepath='Python/pyarena.c' line='32' column='1'/> + <var-decl name='ab_next' type-id='type-id-614' visibility='default' filepath='Python/pyarena.c' line='32' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='192'> <var-decl name='ab_mem' type-id='type-id-32' visibility='default' filepath='Python/pyarena.c' line='37' column='1'/> </data-member> </class-decl> - <pointer-type-def type-id='type-id-610' size-in-bits='64' id='type-id-611'/> - <typedef-decl name='block' type-id='type-id-610' filepath='Python/pyarena.c' line='38' column='1' id='type-id-612'/> - <pointer-type-def type-id='type-id-612' size-in-bits='64' id='type-id-609'/> + <pointer-type-def type-id='type-id-613' size-in-bits='64' id='type-id-614'/> + <typedef-decl name='block' type-id='type-id-613' filepath='Python/pyarena.c' line='38' column='1' id='type-id-615'/> + <pointer-type-def type-id='type-id-615' size-in-bits='64' id='type-id-612'/> <function-decl name='PyArena_AddPyObject' mangled-name='PyArena_AddPyObject' filepath='Python/pyarena.c' line='203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArena_AddPyObject'> <parameter type-id='type-id-230' name='arena' filepath='Python/pyarena.c' line='203' column='1'/> <parameter type-id='type-id-100' name='obj' filepath='Python/pyarena.c' line='203' column='1'/> @@ -11388,47 +14530,47 @@ </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/pyctype.c' comp-dir-path='/src' language='LANG_C99'> - <qualified-type-def type-id='type-id-107' const='yes' id='type-id-613'/> + <qualified-type-def type-id='type-id-107' const='yes' id='type-id-616'/> - <array-type-def dimensions='1' type-id='type-id-613' size-in-bits='8192' id='type-id-614'> + <array-type-def dimensions='1' type-id='type-id-616' size-in-bits='8192' id='type-id-617'> <subrange length='256' type-id='type-id-33' id='type-id-469'/> </array-type-def> - <qualified-type-def type-id='type-id-614' const='yes' id='type-id-615'/> - <var-decl name='_Py_ctype_table' type-id='type-id-615' mangled-name='_Py_ctype_table' visibility='default' filepath='./Include/pyctype.h' line='13' column='1' elf-symbol-id='_Py_ctype_table'/> + <qualified-type-def type-id='type-id-617' const='yes' id='type-id-618'/> + <var-decl name='_Py_ctype_table' type-id='type-id-618' mangled-name='_Py_ctype_table' visibility='default' filepath='./Include/pyctype.h' line='16' column='1' elf-symbol-id='_Py_ctype_table'/> - <array-type-def dimensions='1' type-id='type-id-459' size-in-bits='2048' id='type-id-616'> + <array-type-def dimensions='1' type-id='type-id-459' size-in-bits='2048' id='type-id-619'> <subrange length='256' type-id='type-id-33' id='type-id-469'/> </array-type-def> - <qualified-type-def type-id='type-id-616' const='yes' id='type-id-617'/> - <var-decl name='_Py_ctype_tolower' type-id='type-id-617' mangled-name='_Py_ctype_tolower' visibility='default' filepath='./Include/pyctype.h' line='26' column='1' elf-symbol-id='_Py_ctype_tolower'/> - <var-decl name='_Py_ctype_toupper' type-id='type-id-617' mangled-name='_Py_ctype_toupper' visibility='default' filepath='./Include/pyctype.h' line='27' column='1' elf-symbol-id='_Py_ctype_toupper'/> + <qualified-type-def type-id='type-id-619' const='yes' id='type-id-620'/> + <var-decl name='_Py_ctype_tolower' type-id='type-id-620' mangled-name='_Py_ctype_tolower' visibility='default' filepath='./Include/pyctype.h' line='29' column='1' elf-symbol-id='_Py_ctype_tolower'/> + <var-decl name='_Py_ctype_toupper' type-id='type-id-620' mangled-name='_Py_ctype_toupper' visibility='default' filepath='./Include/pyctype.h' line='30' column='1' elf-symbol-id='_Py_ctype_toupper'/> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/pyhash.c' comp-dir-path='/src' language='LANG_C99'> - <union-decl name='__anonymous_union__' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='56' column='1' id='type-id-618'> + <union-decl name='__anonymous_union__' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='56' column='1' id='type-id-621'> <data-member access='private'> - <var-decl name='uc' type-id='type-id-619' visibility='default' filepath='./Include/pyhash.h' line='58' column='1'/> + <var-decl name='uc' type-id='type-id-622' visibility='default' filepath='./Include/pyhash.h' line='58' column='1'/> </data-member> <data-member access='private'> - <var-decl name='fnv' type-id='type-id-620' visibility='default' filepath='./Include/pyhash.h' line='63' column='1'/> + <var-decl name='fnv' type-id='type-id-623' visibility='default' filepath='./Include/pyhash.h' line='63' column='1'/> </data-member> <data-member access='private'> - <var-decl name='siphash' type-id='type-id-621' visibility='default' filepath='./Include/pyhash.h' line='68' column='1'/> + <var-decl name='siphash' type-id='type-id-624' visibility='default' filepath='./Include/pyhash.h' line='68' column='1'/> </data-member> <data-member access='private'> - <var-decl name='djbx33a' type-id='type-id-622' visibility='default' filepath='./Include/pyhash.h' line='73' column='1'/> + <var-decl name='djbx33a' type-id='type-id-625' visibility='default' filepath='./Include/pyhash.h' line='73' column='1'/> </data-member> <data-member access='private'> - <var-decl name='expat' type-id='type-id-623' visibility='default' filepath='./Include/pyhash.h' line='77' column='1'/> + <var-decl name='expat' type-id='type-id-626' visibility='default' filepath='./Include/pyhash.h' line='77' column='1'/> </data-member> </union-decl> - <array-type-def dimensions='1' type-id='type-id-418' size-in-bits='192' id='type-id-619'> - <subrange length='24' type-id='type-id-33' id='type-id-624'/> + <array-type-def dimensions='1' type-id='type-id-418' size-in-bits='192' id='type-id-622'> + <subrange length='24' type-id='type-id-33' id='type-id-627'/> </array-type-def> - <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='60' column='1' id='type-id-620'> + <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='60' column='1' id='type-id-623'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='prefix' type-id='type-id-150' visibility='default' filepath='./Include/pyhash.h' line='61' column='1'/> </data-member> @@ -11436,7 +14578,7 @@ <var-decl name='suffix' type-id='type-id-150' visibility='default' filepath='./Include/pyhash.h' line='62' column='1'/> </data-member> </class-decl> - <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='65' column='1' id='type-id-621'> + <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='65' column='1' id='type-id-624'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='k0' type-id='type-id-238' visibility='default' filepath='./Include/pyhash.h' line='66' column='1'/> </data-member> @@ -11444,50 +14586,50 @@ <var-decl name='k1' type-id='type-id-238' visibility='default' filepath='./Include/pyhash.h' line='67' column='1'/> </data-member> </class-decl> - <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='70' column='1' id='type-id-622'> + <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='70' column='1' id='type-id-625'> <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='padding' type-id='type-id-625' visibility='default' filepath='./Include/pyhash.h' line='71' column='1'/> + <var-decl name='padding' type-id='type-id-628' visibility='default' filepath='./Include/pyhash.h' line='71' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='128'> <var-decl name='suffix' type-id='type-id-150' visibility='default' filepath='./Include/pyhash.h' line='72' column='1'/> </data-member> </class-decl> - <array-type-def dimensions='1' type-id='type-id-418' size-in-bits='128' id='type-id-625'> - <subrange length='16' type-id='type-id-33' id='type-id-626'/> + <array-type-def dimensions='1' type-id='type-id-418' size-in-bits='128' id='type-id-628'> + <subrange length='16' type-id='type-id-33' id='type-id-629'/> </array-type-def> - <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='74' column='1' id='type-id-623'> + <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='74' column='1' id='type-id-626'> <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='padding' type-id='type-id-625' visibility='default' filepath='./Include/pyhash.h' line='75' column='1'/> + <var-decl name='padding' type-id='type-id-628' visibility='default' filepath='./Include/pyhash.h' line='75' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='128'> <var-decl name='hashsalt' type-id='type-id-150' visibility='default' filepath='./Include/pyhash.h' line='76' column='1'/> </data-member> </class-decl> - <typedef-decl name='_Py_HashSecret_t' type-id='type-id-618' filepath='./Include/pyhash.h' line='78' column='1' id='type-id-627'/> - <var-decl name='_Py_HashSecret' type-id='type-id-627' mangled-name='_Py_HashSecret' visibility='default' filepath='./Include/pyhash.h' line='79' column='1' elf-symbol-id='_Py_HashSecret'/> - <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-628' visibility='default' filepath='./Include/pyhash.h' line='89' column='1' id='type-id-629'> + <typedef-decl name='_Py_HashSecret_t' type-id='type-id-621' filepath='./Include/pyhash.h' line='78' column='1' id='type-id-630'/> + <var-decl name='_Py_HashSecret' type-id='type-id-630' mangled-name='_Py_HashSecret' visibility='default' filepath='./Include/pyhash.h' line='79' column='1' elf-symbol-id='_Py_HashSecret'/> + <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-631' visibility='default' filepath='./Include/pyhash.h' line='89' column='1' id='type-id-632'> <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='hash' type-id='type-id-630' visibility='default' filepath='./Include/pyhash.h' line='90' column='1'/> + <var-decl name='hash' type-id='type-id-633' visibility='default' filepath='./Include/pyhash.h' line='90' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='64'> <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/pyhash.h' line='91' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='128'> - <var-decl name='hash_bits' type-id='type-id-631' visibility='default' filepath='./Include/pyhash.h' line='92' column='1'/> + <var-decl name='hash_bits' type-id='type-id-634' visibility='default' filepath='./Include/pyhash.h' line='92' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='160'> - <var-decl name='seed_bits' type-id='type-id-631' visibility='default' filepath='./Include/pyhash.h' line='93' column='1'/> + <var-decl name='seed_bits' type-id='type-id-634' visibility='default' filepath='./Include/pyhash.h' line='93' column='1'/> </data-member> </class-decl> - <pointer-type-def type-id='type-id-632' size-in-bits='64' id='type-id-633'/> - <qualified-type-def type-id='type-id-633' const='yes' id='type-id-630'/> - <qualified-type-def type-id='type-id-8' const='yes' id='type-id-631'/> - <typedef-decl name='PyHash_FuncDef' type-id='type-id-629' filepath='./Include/pyhash.h' line='94' column='1' id='type-id-628'/> - <pointer-type-def type-id='type-id-628' size-in-bits='64' id='type-id-634'/> + <pointer-type-def type-id='type-id-635' size-in-bits='64' id='type-id-636'/> + <qualified-type-def type-id='type-id-636' const='yes' id='type-id-633'/> + <qualified-type-def type-id='type-id-8' const='yes' id='type-id-634'/> + <typedef-decl name='PyHash_FuncDef' type-id='type-id-632' filepath='./Include/pyhash.h' line='94' column='1' id='type-id-631'/> + <pointer-type-def type-id='type-id-631' size-in-bits='64' id='type-id-637'/> <function-decl name='PyHash_GetFuncDef' mangled-name='PyHash_GetFuncDef' filepath='Python/pyhash.c' line='219' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyHash_GetFuncDef'> - <return type-id='type-id-634'/> + <return type-id='type-id-637'/> </function-decl> <function-decl name='_Py_HashBytes' mangled-name='_Py_HashBytes' filepath='Python/pyhash.c' line='152' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashBytes'> <parameter type-id='type-id-32' name='src' filepath='Python/pyhash.c' line='152' column='1'/> @@ -11499,14 +14641,14 @@ <return type-id='type-id-150'/> </function-decl> <function-decl name='_Py_HashPointerRaw' mangled-name='_Py_HashPointerRaw' filepath='Python/pyhash.c' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashPointerRaw'> - <parameter type-id='type-id-32' name='p' filepath='Python/pyhash.c' line='142' column='1'/> + <parameter type-id='type-id-32' name='p' filepath='Python/pyhash.c' line='132' column='1'/> <return type-id='type-id-150'/> </function-decl> <function-decl name='_Py_HashDouble' mangled-name='_Py_HashDouble' filepath='Python/pyhash.c' line='86' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashDouble'> <parameter type-id='type-id-441' name='v' filepath='Python/pyhash.c' line='86' column='1'/> <return type-id='type-id-150'/> </function-decl> - <function-type size-in-bits='64' id='type-id-632'> + <function-type size-in-bits='64' id='type-id-635'> <parameter type-id='type-id-32'/> <parameter type-id='type-id-15'/> <return type-id='type-id-150'/> @@ -11514,7 +14656,7 @@ </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/pylifecycle.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='_Py_UnhandledKeyboardInterrupt' type-id='type-id-8' mangled-name='_Py_UnhandledKeyboardInterrupt' visibility='default' filepath='./Include/internal/pycore_pylifecycle.h' line='17' column='1' elf-symbol-id='_Py_UnhandledKeyboardInterrupt'/> - <class-decl name='pyruntimestate' size-in-bits='5248' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='52' column='1' id='type-id-635'> + <class-decl name='pyruntimestate' size-in-bits='5248' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='52' column='1' id='type-id-638'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='preinitializing' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='54' column='1'/> </data-member> @@ -11561,22 +14703,22 @@ <var-decl name='open_code_userdata' type-id='type-id-32' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='104' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='5184'> - <var-decl name='audit_hook_head' type-id='type-id-636' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='105' column='1'/> + <var-decl name='audit_hook_head' type-id='type-id-639' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='105' column='1'/> </data-member> </class-decl> - <pointer-type-def type-id='type-id-384' size-in-bits='64' id='type-id-636'/> - <typedef-decl name='_PyRuntimeState' type-id='type-id-635' filepath='./Include/internal/pycore_runtime.h' line='108' column='1' id='type-id-637'/> - <var-decl name='_PyRuntime' type-id='type-id-637' mangled-name='_PyRuntime' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='115' column='1' elf-symbol-id='_PyRuntime'/> - <pointer-type-def type-id='type-id-638' size-in-bits='64' id='type-id-639'/> - <typedef-decl name='PyOS_sighandler_t' type-id='type-id-639' filepath='./Include/pylifecycle.h' line='64' column='1' id='type-id-640'/> + <pointer-type-def type-id='type-id-384' size-in-bits='64' id='type-id-639'/> + <typedef-decl name='_PyRuntimeState' type-id='type-id-638' filepath='./Include/internal/pycore_runtime.h' line='108' column='1' id='type-id-640'/> + <var-decl name='_PyRuntime' type-id='type-id-640' mangled-name='_PyRuntime' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='115' column='1' elf-symbol-id='_PyRuntime'/> + <pointer-type-def type-id='type-id-641' size-in-bits='64' id='type-id-642'/> + <typedef-decl name='PyOS_sighandler_t' type-id='type-id-642' filepath='./Include/pylifecycle.h' line='64' column='1' id='type-id-643'/> <function-decl name='PyOS_setsig' mangled-name='PyOS_setsig' filepath='Python/pylifecycle.c' line='2525' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_setsig'> <parameter type-id='type-id-8' name='sig' filepath='Python/pylifecycle.c' line='2525' column='1'/> - <parameter type-id='type-id-640' name='handler' filepath='Python/pylifecycle.c' line='2525' column='1'/> - <return type-id='type-id-640'/> + <parameter type-id='type-id-643' name='handler' filepath='Python/pylifecycle.c' line='2525' column='1'/> + <return type-id='type-id-643'/> </function-decl> <function-decl name='PyOS_getsig' mangled-name='PyOS_getsig' filepath='Python/pylifecycle.c' line='2486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_getsig'> <parameter type-id='type-id-8' name='sig' filepath='Python/pylifecycle.c' line='2486' column='1'/> - <return type-id='type-id-640'/> + <return type-id='type-id-643'/> </function-decl> <function-decl name='Py_FdIsInteractive' mangled-name='Py_FdIsInteractive' filepath='Python/pylifecycle.c' line='2471' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FdIsInteractive'> <parameter type-id='type-id-223' name='fp' filepath='Python/pylifecycle.c' line='2471' column='1'/> @@ -11600,13 +14742,7 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='Py_ExitStatusException' mangled-name='Py_ExitStatusException' filepath='Python/pylifecycle.c' line='2340' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_ExitStatusException'> - <parameter type-id='type-id-592' name='status' filepath='Python/pylifecycle.c' line='2340' column='1'/> - <return type-id='type-id-4'/> - </function-decl> - <function-decl name='_Py_FatalErrorFormat' mangled-name='_Py_FatalErrorFormat' filepath='Python/pylifecycle.c' line='2306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FatalErrorFormat'> - <parameter type-id='type-id-3' name='func' filepath='Python/pylifecycle.c' line='2306' column='1'/> - <parameter type-id='type-id-3' name='format' filepath='Python/pylifecycle.c' line='2306' column='1'/> - <parameter is-variadic='yes'/> + <parameter type-id='type-id-595' name='status' filepath='Python/pylifecycle.c' line='2340' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_Py_FatalErrorFunc' mangled-name='_Py_FatalErrorFunc' filepath='Python/pylifecycle.c' line='2299' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FatalErrorFunc'> @@ -11632,9 +14768,6 @@ <function-decl name='Py_Finalize' mangled-name='Py_Finalize' filepath='Python/pylifecycle.c' line='1513' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Finalize'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='Py_FinalizeEx' mangled-name='Py_FinalizeEx' filepath='Python/pylifecycle.c' line='1345' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FinalizeEx'> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='Py_Initialize' mangled-name='Py_Initialize' filepath='Python/pylifecycle.c' line='1179' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Initialize'> <return type-id='type-id-4'/> </function-decl> @@ -11642,42 +14775,26 @@ <parameter type-id='type-id-8' name='install_sigs' filepath='Python/pylifecycle.c' line='1152' column='1'/> <return type-id='type-id-4'/> </function-decl> - <qualified-type-def type-id='type-id-321' const='yes' id='type-id-641'/> - <pointer-type-def type-id='type-id-641' size-in-bits='64' id='type-id-642'/> - <function-decl name='Py_InitializeFromConfig' mangled-name='Py_InitializeFromConfig' filepath='Python/pylifecycle.c' line='1119' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_InitializeFromConfig'> - <parameter type-id='type-id-642' name='config' filepath='Python/pylifecycle.c' line='1119' column='1'/> - <return type-id='type-id-592'/> - </function-decl> <function-decl name='_Py_InitializeMain' mangled-name='_Py_InitializeMain' filepath='Python/pylifecycle.c' line='1106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_InitializeMain'> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> </function-decl> - <function-decl name='_Py_PreInitializeFromConfig' mangled-name='_Py_PreInitializeFromConfig' filepath='Python/pylifecycle.c' line='848' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_PreInitializeFromConfig'> - <parameter type-id='type-id-642' name='config' filepath='Python/pylifecycle.c' line='848' column='1'/> - <parameter type-id='type-id-608' name='args' filepath='Python/pylifecycle.c' line='849' column='1'/> - <return type-id='type-id-592'/> - </function-decl> - <qualified-type-def type-id='type-id-334' const='yes' id='type-id-643'/> - <pointer-type-def type-id='type-id-643' size-in-bits='64' id='type-id-644'/> + <qualified-type-def type-id='type-id-334' const='yes' id='type-id-644'/> + <pointer-type-def type-id='type-id-644' size-in-bits='64' id='type-id-645'/> <function-decl name='Py_PreInitialize' mangled-name='Py_PreInitialize' filepath='Python/pylifecycle.c' line='841' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_PreInitialize'> - <parameter type-id='type-id-644' name='src_config' filepath='Python/pylifecycle.c' line='841' column='1'/> - <return type-id='type-id-592'/> + <parameter type-id='type-id-645' name='src_config' filepath='Python/pylifecycle.c' line='841' column='1'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='Py_PreInitializeFromArgs' mangled-name='Py_PreInitializeFromArgs' filepath='Python/pylifecycle.c' line='833' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_PreInitializeFromArgs'> - <parameter type-id='type-id-644' name='src_config' filepath='Python/pylifecycle.c' line='833' column='1'/> + <parameter type-id='type-id-645' name='src_config' filepath='Python/pylifecycle.c' line='833' column='1'/> <parameter type-id='type-id-15' name='argc' filepath='Python/pylifecycle.c' line='833' column='1'/> <parameter type-id='type-id-407' name='argv' filepath='Python/pylifecycle.c' line='833' column='1'/> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='Py_PreInitializeFromBytesArgs' mangled-name='Py_PreInitializeFromBytesArgs' filepath='Python/pylifecycle.c' line='825' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_PreInitializeFromBytesArgs'> - <parameter type-id='type-id-644' name='src_config' filepath='Python/pylifecycle.c' line='825' column='1'/> + <parameter type-id='type-id-645' name='src_config' filepath='Python/pylifecycle.c' line='825' column='1'/> <parameter type-id='type-id-15' name='argc' filepath='Python/pylifecycle.c' line='825' column='1'/> <parameter type-id='type-id-304' name='argv' filepath='Python/pylifecycle.c' line='825' column='1'/> - <return type-id='type-id-592'/> - </function-decl> - <function-decl name='_Py_PreInitializeFromPyArgv' mangled-name='_Py_PreInitializeFromPyArgv' filepath='Python/pylifecycle.c' line='778' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_PreInitializeFromPyArgv'> - <parameter type-id='type-id-644' name='src_config' filepath='Python/pylifecycle.c' line='778' column='1'/> - <parameter type-id='type-id-608' name='args' filepath='Python/pylifecycle.c' line='778' column='1'/> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='_Py_SetLocaleFromEnv' mangled-name='_Py_SetLocaleFromEnv' filepath='Python/pylifecycle.c' line='375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SetLocaleFromEnv'> <parameter type-id='type-id-8' name='category' filepath='Python/pylifecycle.c' line='375' column='1'/> @@ -11688,7 +14805,7 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='_Py_IsLocaleCoercionTarget' mangled-name='_Py_IsLocaleCoercionTarget' filepath='Python/pylifecycle.c' line='283' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_IsLocaleCoercionTarget'> - <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='213' column='1'/> + <parameter type-id='type-id-3' name='ctype_loc' filepath='Python/pylifecycle.c' line='283' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_Py_LegacyLocaleDetected' mangled-name='_Py_LegacyLocaleDetected' filepath='Python/pylifecycle.c' line='228' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_LegacyLocaleDetected'> @@ -11708,9 +14825,310 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyRuntime_Initialize' mangled-name='_PyRuntime_Initialize' filepath='Python/pylifecycle.c' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntime_Initialize'> - <return type-id='type-id-592'/> + <return type-id='type-id-595'/> + </function-decl> + <function-decl name='_Py_PreInitializeFromPyArgv' mangled-name='_Py_PreInitializeFromPyArgv' filepath='Python/pylifecycle.c' line='778' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_PreInitializeFromPyArgv'> + <parameter type-id='type-id-645' name='src_config' filepath='Python/pylifecycle.c' line='778' column='1'/> + <parameter type-id='type-id-611' name='args' filepath='Python/pylifecycle.c' line='778' column='1'/> + <return type-id='type-id-595'/> + </function-decl> + <qualified-type-def type-id='type-id-321' const='yes' id='type-id-646'/> + <pointer-type-def type-id='type-id-646' size-in-bits='64' id='type-id-647'/> + <function-decl name='_Py_PreInitializeFromConfig' mangled-name='_Py_PreInitializeFromConfig' filepath='Python/pylifecycle.c' line='848' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_PreInitializeFromConfig'> + <parameter type-id='type-id-647' name='config' filepath='Python/pylifecycle.c' line='848' column='1'/> + <parameter type-id='type-id-611' name='args' filepath='Python/pylifecycle.c' line='849' column='1'/> + <return type-id='type-id-595'/> + </function-decl> + <function-decl name='Py_InitializeFromConfig' mangled-name='Py_InitializeFromConfig' filepath='Python/pylifecycle.c' line='1119' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_InitializeFromConfig'> + <parameter type-id='type-id-647' name='config' filepath='Python/pylifecycle.c' line='1119' column='1'/> + <return type-id='type-id-595'/> + </function-decl> + <function-decl name='Py_FinalizeEx' mangled-name='Py_FinalizeEx' filepath='Python/pylifecycle.c' line='1345' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FinalizeEx'> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='sigemptyset' mangled-name='sigemptyset' filepath='/usr/include/signal.h' line='196' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sigaction' mangled-name='sigaction' filepath='/usr/include/signal.h' line='240' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__vfprintf_chk' mangled-name='__vfprintf_chk' filepath='/usr/include/x86_64-linux-gnu/bits/stdio2.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='abort' mangled-name='abort' filepath='/usr/include/stdlib.h' line='591' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_Display' mangled-name='PyErr_Display' filepath='./Include/pythonrun.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_DumpTracebackThreads' mangled-name='_Py_DumpTracebackThreads' filepath='./Include/internal/pycore_traceback.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFaulthandler_Fini' mangled-name='_PyFaulthandler_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyInterpreterState_Delete' mangled-name='PyInterpreterState_Delete' filepath='./Include/pystate.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGILState_Fini' mangled-name='_PyGILState_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImport_Cleanup' mangled-name='_PyImport_Cleanup' filepath='./Include/internal/pycore_import.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_FiniGIL' mangled-name='_PyEval_FiniGIL' filepath='./Include/internal/pycore_ceval.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGILState_Init' mangled-name='_PyGILState_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_InitGIL' mangled-name='_PyEval_InitGIL' filepath='./Include/internal/pycore_ceval.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyInterpreterState_Main' mangled-name='PyInterpreterState_Main' filepath='./Include/cpython/pystate.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyInterpreterState_New' mangled-name='PyInterpreterState_New' filepath='./Include/pystate.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> - <function-type size-in-bits='64' id='type-id-638'> + <function-decl name='PyThreadState_New' mangled-name='PyThreadState_New' filepath='./Include/pystate.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThreadState_Swap' mangled-name='PyThreadState_Swap' filepath='./Include/pystate.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyInterpreterState_SetConfig' mangled-name='_PyInterpreterState_SetConfig' filepath='./Include/internal/pycore_interp.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_PrintEx' mangled-name='PyErr_PrintEx' filepath='./Include/pythonrun.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThreadState_Clear' mangled-name='PyThreadState_Clear' filepath='./Include/pystate.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThreadState_Delete' mangled-name='PyThreadState_Delete' filepath='./Include/pystate.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_Fini' mangled-name='_PyLong_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyWarnings_Fini' mangled-name='_PyWarnings_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_Fini' mangled-name='_PyUnicode_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyAST_Fini' mangled-name='_PyAST_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFrame_Fini' mangled-name='_PyFrame_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTuple_Fini' mangled-name='_PyTuple_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyList_Fini' mangled-name='_PyList_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySet_Fini' mangled-name='_PySet_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytes_Fini' mangled-name='_PyBytes_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFloat_Fini' mangled-name='_PyFloat_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_Fini' mangled-name='_PyDict_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySlice_Fini' mangled-name='_PySlice_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_HashRandomization_Fini' mangled-name='_Py_HashRandomization_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArg_Fini' mangled-name='_PyArg_Fini' filepath='./Include/modsupport.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyAsyncGen_Fini' mangled-name='_PyAsyncGen_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyContext_Fini' mangled-name='_PyContext_Fini' filepath='./Include/internal/pycore_context.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_ClearFileSystemEncoding' mangled-name='_Py_ClearFileSystemEncoding' filepath='./Include/internal/pycore_pylifecycle.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyInterpreterState_Clear' mangled-name='PyInterpreterState_Clear' filepath='./Include/pystate.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGC_Fini' mangled-name='_PyGC_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySys_ClearAuditHooks' mangled-name='_PySys_ClearAuditHooks' filepath='./Include/internal/pycore_sysmodule.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyGrammar_RemoveAccelerators' mangled-name='PyGrammar_RemoveAccelerators' filepath='./Include/grammar.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyExc_Fini' mangled-name='_PyExc_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyWideStringList_AsList' mangled-name='_PyWideStringList_AsList' filepath='./Include/internal/pycore_initconfig.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImportZip_Init' mangled-name='_PyImportZip_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySys_SetObjectId' mangled-name='_PySys_SetObjectId' filepath='./Include/cpython/sysmodule.h' line='10' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyImport_AddModule' mangled-name='PyImport_AddModule' filepath='./Include/import.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySys_InitMain' mangled-name='_PySys_InitMain' filepath='./Include/internal/pycore_pylifecycle.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_InitEncodings' mangled-name='_PyUnicode_InitEncodings' filepath='./Include/internal/pycore_pylifecycle.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_Init' mangled-name='_PyTime_Init' filepath='./Include/pytime.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFaulthandler_Init' mangled-name='_PyFaulthandler_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySignal_Init' mangled-name='_PySignal_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTraceMalloc_Init' mangled-name='_PyTraceMalloc_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGC_Init' mangled-name='_PyGC_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_Init' mangled-name='_PyLong_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyExc_Init' mangled-name='_PyExc_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_Init' mangled-name='_PyErr_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTypes_Init' mangled-name='_PyTypes_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_Init' mangled-name='_PyUnicode_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFloat_Init' mangled-name='_PyFloat_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyStructSequence_Init' mangled-name='_PyStructSequence_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyContext_Init' mangled-name='_PyContext_Init' filepath='./Include/internal/pycore_context.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBuiltin_Init' mangled-name='_PyBuiltin_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImport_FixupBuiltin' mangled-name='_PyImport_FixupBuiltin' filepath='./Include/cpython/import.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBuiltins_AddExceptions' mangled-name='_PyBuiltins_AddExceptions' filepath='./Include/internal/pycore_pylifecycle.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyInit__imp' mangled-name='PyInit__imp' filepath='./Include/cpython/import.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImport_SetModuleString' mangled-name='_PyImport_SetModuleString' filepath='./Include/cpython/import.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImportHooks_Init' mangled-name='_PyImportHooks_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyWarnings_InitState' mangled-name='_PyWarnings_InitState' filepath='./Include/internal/pycore_warnings.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyConfig_WritePathConfig' mangled-name='_PyConfig_WritePathConfig' filepath='./Include/internal/pycore_pathconfig.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySys_Create' mangled-name='_PySys_Create' filepath='./Include/internal/pycore_pylifecycle.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_ResetForceASCII' mangled-name='_Py_ResetForceASCII' filepath='./Include/internal/pycore_fileutils.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ResetForceASCII'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setenv' mangled-name='setenv' filepath='/usr/include/stdlib.h' line='653' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyRuntimeState_Fini' mangled-name='_PyRuntimeState_Fini' filepath='./Include/internal/pycore_runtime.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImport_GetModuleId' mangled-name='_PyImport_GetModuleId' filepath='./Include/cpython/import.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='dup' mangled-name='dup' filepath='/usr/include/unistd.h' line='531' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='close' mangled-name='close' filepath='/usr/include/unistd.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyRuntimeState_Init' mangled-name='_PyRuntimeState_Init' filepath='./Include/internal/pycore_runtime.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPreConfig_Read' mangled-name='_PyPreConfig_Read' filepath='./Include/internal/pycore_initconfig.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPreConfig_Write' mangled-name='_PyPreConfig_Write' filepath='./Include/internal/pycore_initconfig.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPreConfig_InitFromConfig' mangled-name='_PyPreConfig_InitFromConfig' filepath='./Include/internal/pycore_initconfig.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyConfig_Write' mangled-name='_PyConfig_Write' filepath='./Include/internal/pycore_initconfig.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_HashRandomization_Init' mangled-name='_Py_HashRandomization_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyInterpreterState_Enable' mangled-name='_PyInterpreterState_Enable' filepath='./Include/internal/pycore_pystate.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyConfig_Copy' mangled-name='_PyConfig_Copy' filepath='./Include/internal/pycore_initconfig.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_FinishPendingCalls' mangled-name='_Py_FinishPendingCalls' filepath='./Include/internal/pycore_ceval.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyOS_FiniInterrupts' mangled-name='PyOS_FiniInterrupts' filepath='./Include/internal/pycore_pylifecycle.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGC_CollectIfEnabled' mangled-name='_PyGC_CollectIfEnabled' filepath='./Include/cpython/objimpl.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_Fini' mangled-name='_PyEval_Fini' filepath='./Include/internal/pycore_ceval.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTraceMalloc_Fini' mangled-name='_PyTraceMalloc_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImport_Fini' mangled-name='_PyImport_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyType_Fini' mangled-name='_PyType_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyHash_Fini' mangled-name='_PyHash_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_DebugMallocStats' mangled-name='_PyObject_DebugMallocStats' filepath='./Include/cpython/objimpl.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-type size-in-bits='64' id='type-id-641'> <parameter type-id='type-id-8'/> <return type-id='type-id-4'/> </function-type> @@ -11730,11 +15148,11 @@ </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/pystate.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='_Py_GetConfig' mangled-name='_Py_GetConfig' filepath='Python/pystate.c' line='1821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetConfig'> - <return type-id='type-id-642'/> + <return type-id='type-id-647'/> </function-decl> <function-decl name='_PyInterpreterState_GetConfig' mangled-name='_PyInterpreterState_GetConfig' filepath='Python/pystate.c' line='1806' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_GetConfig'> <parameter type-id='type-id-311' name='interp' filepath='Python/pystate.c' line='1806' column='1'/> - <return type-id='type-id-642'/> + <return type-id='type-id-647'/> </function-decl> <function-decl name='_PyInterpreterState_SetEvalFrameFunc' mangled-name='_PyInterpreterState_SetEvalFrameFunc' filepath='Python/pystate.c' line='1798' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_SetEvalFrameFunc'> <parameter type-id='type-id-311' name='interp' filepath='Python/pystate.c' line='1798' column='1'/> @@ -11754,37 +15172,37 @@ <parameter type-id='type-id-343' name='getdata' filepath='Python/pystate.c' line='1612' column='1'/> <return type-id='type-id-8'/> </function-decl> - <typedef-decl name='_PyCrossInterpreterData' type-id='type-id-344' filepath='./Include/cpython/pystate.h' line='246' column='1' id='type-id-645'/> - <pointer-type-def type-id='type-id-645' size-in-bits='64' id='type-id-646'/> + <typedef-decl name='_PyCrossInterpreterData' type-id='type-id-344' filepath='./Include/cpython/pystate.h' line='246' column='1' id='type-id-648'/> + <pointer-type-def type-id='type-id-648' size-in-bits='64' id='type-id-649'/> <function-decl name='_PyCrossInterpreterData_NewObject' mangled-name='_PyCrossInterpreterData_NewObject' filepath='Python/pystate.c' line='1581' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCrossInterpreterData_NewObject'> - <parameter type-id='type-id-646' name='data' filepath='Python/pystate.c' line='1581' column='1'/> + <parameter type-id='type-id-649' name='data' filepath='Python/pystate.c' line='1581' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyCrossInterpreterData_Release' mangled-name='_PyCrossInterpreterData_Release' filepath='Python/pystate.c' line='1558' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCrossInterpreterData_Release'> - <parameter type-id='type-id-646' name='data' filepath='Python/pystate.c' line='1558' column='1'/> + <parameter type-id='type-id-649' name='data' filepath='Python/pystate.c' line='1558' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyObject_GetCrossInterpreterData' mangled-name='_PyObject_GetCrossInterpreterData' filepath='Python/pystate.c' line='1489' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetCrossInterpreterData'> <parameter type-id='type-id-100' name='obj' filepath='Python/pystate.c' line='1489' column='1'/> - <parameter type-id='type-id-646' name='data' filepath='Python/pystate.c' line='1489' column='1'/> + <parameter type-id='type-id-649' name='data' filepath='Python/pystate.c' line='1489' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyObject_CheckCrossInterpreterData' mangled-name='_PyObject_CheckCrossInterpreterData' filepath='Python/pystate.c' line='1457' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CheckCrossInterpreterData'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='284' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='Objects/object.c' line='1393' column='1'/> <return type-id='type-id-8'/> </function-decl> - <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/pystate.h' line='95' column='1' id='type-id-647'> + <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/pystate.h' line='95' column='1' id='type-id-650'> <underlying-type type-id='type-id-23'/> <enumerator name='PyGILState_LOCKED' value='0'/> <enumerator name='PyGILState_UNLOCKED' value='1'/> </enum-decl> - <typedef-decl name='PyGILState_STATE' type-id='type-id-647' filepath='./Include/pystate.h' line='96' column='1' id='type-id-648'/> + <typedef-decl name='PyGILState_STATE' type-id='type-id-650' filepath='./Include/pystate.h' line='96' column='1' id='type-id-651'/> <function-decl name='PyGILState_Release' mangled-name='PyGILState_Release' filepath='Python/pystate.c' line='1392' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_Release'> - <parameter type-id='type-id-648' name='oldstate' filepath='Python/pystate.c' line='1392' column='1'/> + <parameter type-id='type-id-651' name='oldstate' filepath='Python/pystate.c' line='1392' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PyGILState_Ensure' mangled-name='PyGILState_Ensure' filepath='Python/pystate.c' line='1344' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_Ensure'> - <return type-id='type-id-648'/> + <return type-id='type-id-651'/> </function-decl> <function-decl name='PyGILState_Check' mangled-name='PyGILState_Check' filepath='Python/pystate.c' line='1324' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_Check'> <return type-id='type-id-8'/> @@ -11792,10 +15210,10 @@ <function-decl name='PyGILState_GetThisThreadState' mangled-name='PyGILState_GetThisThreadState' filepath='Python/pystate.c' line='1318' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_GetThisThreadState'> <return type-id='type-id-409'/> </function-decl> - <typedef-decl name='_PyRuntimeState' type-id='type-id-327' filepath='./Include/internal/pycore_runtime.h' line='108' column='1' id='type-id-649'/> - <pointer-type-def type-id='type-id-649' size-in-bits='64' id='type-id-650'/> + <typedef-decl name='_PyRuntimeState' type-id='type-id-327' filepath='./Include/internal/pycore_runtime.h' line='108' column='1' id='type-id-652'/> + <pointer-type-def type-id='type-id-652' size-in-bits='64' id='type-id-653'/> <function-decl name='_PyGILState_Reinit' mangled-name='_PyGILState_Reinit' filepath='Python/pystate.c' line='1252' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGILState_Reinit'> - <parameter type-id='type-id-650' name='runtime' filepath='Python/pystate.c' line='1252' column='1'/> + <parameter type-id='type-id-653' name='runtime' filepath='Python/pystate.c' line='1252' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyGILState_GetInterpreterStateUnsafe' mangled-name='_PyGILState_GetInterpreterStateUnsafe' filepath='Python/pystate.c' line='1234' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGILState_GetInterpreterStateUnsafe'> @@ -11847,12 +15265,12 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyThreadState_Swap' mangled-name='PyThreadState_Swap' filepath='Python/pystate.c' line='991' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Swap'> - <parameter type-id='type-id-409' name='tstate' filepath='Python/pystate.c' line='1126' column='1'/> + <parameter type-id='type-id-409' name='newts' filepath='Python/pystate.c' line='991' column='1'/> <return type-id='type-id-409'/> </function-decl> - <pointer-type-def type-id='type-id-333' size-in-bits='64' id='type-id-651'/> + <pointer-type-def type-id='type-id-333' size-in-bits='64' id='type-id-654'/> <function-decl name='_PyThreadState_Swap' mangled-name='_PyThreadState_Swap' filepath='Python/pystate.c' line='966' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_Swap'> - <parameter type-id='type-id-651' name='gilstate' filepath='Python/pystate.c' line='966' column='1'/> + <parameter type-id='type-id-654' name='gilstate' filepath='Python/pystate.c' line='966' column='1'/> <parameter type-id='type-id-409' name='newts' filepath='Python/pystate.c' line='966' column='1'/> <return type-id='type-id-409'/> </function-decl> @@ -11863,7 +15281,7 @@ <return type-id='type-id-409'/> </function-decl> <function-decl name='_PyThreadState_DeleteExcept' mangled-name='_PyThreadState_DeleteExcept' filepath='Python/pystate.c' line='915' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_DeleteExcept'> - <parameter type-id='type-id-650' name='runtime' filepath='Python/pystate.c' line='915' column='1'/> + <parameter type-id='type-id-653' name='runtime' filepath='Python/pystate.c' line='915' column='1'/> <parameter type-id='type-id-409' name='tstate' filepath='Python/pystate.c' line='915' column='1'/> <return type-id='type-id-4'/> </function-decl> @@ -11882,24 +15300,18 @@ <parameter type-id='type-id-409' name='tstate' filepath='Python/pystate.c' line='783' column='1'/> <return type-id='type-id-4'/> </function-decl> - <pointer-type-def type-id='type-id-487' size-in-bits='64' id='type-id-652'/> + <pointer-type-def type-id='type-id-487' size-in-bits='64' id='type-id-655'/> <function-decl name='PyState_RemoveModule' mangled-name='PyState_RemoveModule' filepath='Python/pystate.c' line='726' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyState_RemoveModule'> - <parameter type-id='type-id-652' name='def' filepath='Python/pystate.c' line='726' column='1'/> + <parameter type-id='type-id-655' name='def' filepath='Python/pystate.c' line='726' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyState_AddModule' mangled-name='PyState_AddModule' filepath='Python/pystate.c' line='705' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyState_AddModule'> <parameter type-id='type-id-100' name='module' filepath='Python/pystate.c' line='705' column='1'/> - <parameter type-id='type-id-652' name='def' filepath='Python/pystate.c' line='705' column='1'/> - <return type-id='type-id-8'/> - </function-decl> - <function-decl name='_PyState_AddModule' mangled-name='_PyState_AddModule' filepath='Python/pystate.c' line='672' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyState_AddModule'> - <parameter type-id='type-id-409' name='tstate' filepath='Python/pystate.c' line='672' column='1'/> - <parameter type-id='type-id-100' name='module' filepath='Python/pystate.c' line='672' column='1'/> - <parameter type-id='type-id-652' name='def' filepath='Python/pystate.c' line='672' column='1'/> + <parameter type-id='type-id-655' name='def' filepath='Python/pystate.c' line='705' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyState_FindModule' mangled-name='PyState_FindModule' filepath='Python/pystate.c' line='653' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyState_FindModule'> - <parameter type-id='type-id-652' name='module' filepath='Python/pystate.c' line='653' column='1'/> + <parameter type-id='type-id-655' name='module' filepath='Python/pystate.c' line='653' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyThreadState_Init' mangled-name='_PyThreadState_Init' filepath='Python/pystate.c' line='647' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_Init'> @@ -11907,11 +15319,11 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyThreadState_Prealloc' mangled-name='_PyThreadState_Prealloc' filepath='Python/pystate.c' line='641' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_Prealloc'> - <parameter type-id='type-id-311' name='interp' filepath='Python/pystate.c' line='1121' column='1'/> + <parameter type-id='type-id-311' name='interp' filepath='Python/pystate.c' line='641' column='1'/> <return type-id='type-id-409'/> </function-decl> <function-decl name='PyThreadState_New' mangled-name='PyThreadState_New' filepath='Python/pystate.c' line='635' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_New'> - <parameter type-id='type-id-311' name='interp' filepath='Python/pystate.c' line='1121' column='1'/> + <parameter type-id='type-id-311' name='interp' filepath='Python/pystate.c' line='641' column='1'/> <return type-id='type-id-409'/> </function-decl> <function-decl name='PyInterpreterState_GetDict' mangled-name='PyInterpreterState_GetDict' filepath='Python/pystate.c' line='554' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_GetDict'> @@ -11928,7 +15340,7 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyInterpreterState_RequiresIDRef' mangled-name='_PyInterpreterState_RequiresIDRef' filepath='Python/pystate.c' line='532' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_RequiresIDRef'> - <parameter type-id='type-id-311' name='interp' filepath='Python/import.c' line='323' column='1'/> + <parameter type-id='type-id-311' name='interp' filepath='Python/import.c' line='326' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyInterpreterState_IDDecref' mangled-name='_PyInterpreterState_IDDecref' filepath='Python/pystate.c' line='509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_IDDecref'> @@ -11940,22 +15352,18 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyInterpreterState_IDInitref' mangled-name='_PyInterpreterState_IDInitref' filepath='Python/pystate.c' line='480' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_IDInitref'> - <parameter type-id='type-id-311' name='interp' filepath='Python/import.c' line='323' column='1'/> + <parameter type-id='type-id-311' name='interp' filepath='Python/pystate.c' line='480' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyInterpreterState_LookUpID' mangled-name='_PyInterpreterState_LookUpID' filepath='Python/pystate.c' line='462' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_LookUpID'> <parameter type-id='type-id-316' name='requested_id' filepath='Python/pystate.c' line='462' column='1'/> <return type-id='type-id-311'/> </function-decl> - <function-decl name='PyInterpreterState_GetID' mangled-name='PyInterpreterState_GetID' filepath='Python/pystate.c' line='434' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_GetID'> - <parameter type-id='type-id-311' name='interp' filepath='Python/pystate.c' line='434' column='1'/> - <return type-id='type-id-316'/> - </function-decl> <function-decl name='PyInterpreterState_Get' mangled-name='PyInterpreterState_Get' filepath='Python/pystate.c' line='421' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Get'> <return type-id='type-id-311'/> </function-decl> <function-decl name='_PyInterpreterState_DeleteExceptMain' mangled-name='_PyInterpreterState_DeleteExceptMain' filepath='Python/pystate.c' line='381' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_DeleteExceptMain'> - <parameter type-id='type-id-650' name='runtime' filepath='Python/pystate.c' line='381' column='1'/> + <parameter type-id='type-id-653' name='runtime' filepath='Python/pystate.c' line='381' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PyInterpreterState_Delete' mangled-name='PyInterpreterState_Delete' filepath='Python/pystate.c' line='335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Delete'> @@ -11970,199 +15378,254 @@ <return type-id='type-id-311'/> </function-decl> <function-decl name='_PyInterpreterState_Enable' mangled-name='_PyInterpreterState_Enable' filepath='Python/pystate.c' line='171' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_Enable'> - <parameter type-id='type-id-650' name='runtime' filepath='Python/pystate.c' line='171' column='1'/> - <return type-id='type-id-592'/> + <parameter type-id='type-id-653' name='runtime' filepath='Python/pystate.c' line='171' column='1'/> + <return type-id='type-id-595'/> </function-decl> <function-decl name='_PyRuntimeState_ReInitThreads' mangled-name='_PyRuntimeState_ReInitThreads' filepath='Python/pystate.c' line='131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntimeState_ReInitThreads'> - <parameter type-id='type-id-650' name='runtime' filepath='Python/pystate.c' line='131' column='1'/> + <parameter type-id='type-id-653' name='runtime' filepath='Python/pystate.c' line='131' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyRuntimeState_Fini' mangled-name='_PyRuntimeState_Fini' filepath='Python/pystate.c' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntimeState_Fini'> - <parameter type-id='type-id-650' name='runtime' filepath='Python/pystate.c' line='106' column='1'/> + <parameter type-id='type-id-653' name='runtime' filepath='Python/pystate.c' line='106' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='_PyRuntimeState_Init' mangled-name='_PyRuntimeState_Init' filepath='Python/pystate.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntimeState_Init'> - <parameter type-id='type-id-650' name='runtime' filepath='Python/pystate.c' line='92' column='1'/> - <return type-id='type-id-592'/> + <parameter type-id='type-id-653' name='runtime' filepath='Python/pystate.c' line='92' column='1'/> + <return type-id='type-id-595'/> + </function-decl> + <function-decl name='PyInterpreterState_GetID' mangled-name='PyInterpreterState_GetID' filepath='Python/pystate.c' line='434' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_GetID'> + <parameter type-id='type-id-311' name='interp' filepath='Python/pystate.c' line='434' column='1'/> + <return type-id='type-id-316'/> + </function-decl> + <function-decl name='_PyState_AddModule' mangled-name='_PyState_AddModule' filepath='Python/pystate.c' line='672' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyState_AddModule'> + <parameter type-id='type-id-409' name='tstate' filepath='Python/pystate.c' line='672' column='1'/> + <parameter type-id='type-id-100' name='module' filepath='Python/pystate.c' line='672' column='1'/> + <parameter type-id='type-id-655' name='def' filepath='Python/pystate.c' line='672' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='PyThread_tss_get' mangled-name='PyThread_tss_get' filepath='./Include/pythread.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_tss_is_created' mangled-name='PyThread_tss_is_created' filepath='./Include/pythread.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_tss_delete' mangled-name='PyThread_tss_delete' filepath='./Include/pythread.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_tss_create' mangled-name='PyThread_tss_create' filepath='./Include/pythread.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_tss_set' mangled-name='PyThread_tss_set' filepath='./Include/pythread.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_SignalAsyncExc' mangled-name='_PyEval_SignalAsyncExc' filepath='./Include/internal/pycore_ceval.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_ReleaseLock' mangled-name='_PyEval_ReleaseLock' filepath='./Include/internal/pycore_ceval.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMapping_GetItemString' mangled-name='PyMapping_GetItemString' filepath='./Include/abstract.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_EndInterpreter' mangled-name='Py_EndInterpreter' filepath='./Include/pylifecycle.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_FiniState' mangled-name='_PyEval_FiniState' filepath='./Include/internal/pycore_ceval.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMem_RawCalloc' mangled-name='PyMem_RawCalloc' filepath='./Include/cpython/pymem.h' line='10' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_InitState' mangled-name='_PyEval_InitState' filepath='./Include/internal/pycore_ceval.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGC_InitState' mangled-name='_PyGC_InitState' filepath='./Include/internal/pycore_gc.h' line='164' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_InitRuntimeState' mangled-name='_PyEval_InitRuntimeState' filepath='./Include/internal/pycore_ceval.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyPreConfig_InitPythonConfig' mangled-name='PyPreConfig_InitPythonConfig' filepath='./Include/cpython/initconfig.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/pythonrun.c' comp-dir-path='/src' language='LANG_C99'> - <function-decl name='PyRun_InteractiveLoop' mangled-name='PyRun_InteractiveLoop' filepath='Python/pythonrun.c' line='1871' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveLoop'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pylifecycle.c' line='2471' column='1'/> - <parameter type-id='type-id-3' name='filename' filepath='Python/pylifecycle.c' line='2471' column='1'/> + <function-decl name='PyRun_InteractiveLoop' mangled-name='PyRun_InteractiveLoop' filepath='Python/pythonrun.c' line='1873' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveLoop'> + <parameter type-id='type-id-223' name='f' filepath='Python/pythonrun.c' line='1873' column='1'/> + <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1873' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyRun_InteractiveOne' mangled-name='PyRun_InteractiveOne' filepath='Python/pythonrun.c' line='1864' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOne'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pylifecycle.c' line='2471' column='1'/> - <parameter type-id='type-id-3' name='filename' filepath='Python/pylifecycle.c' line='2471' column='1'/> + <function-decl name='PyRun_InteractiveOne' mangled-name='PyRun_InteractiveOne' filepath='Python/pythonrun.c' line='1866' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOne'> + <parameter type-id='type-id-223' name='f' filepath='Python/pythonrun.c' line='1873' column='1'/> + <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1873' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='Py_CompileStringFlags' mangled-name='Py_CompileStringFlags' filepath='Python/pythonrun.c' line='1856' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringFlags'> - <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1856' column='1'/> - <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1856' column='1'/> - <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1856' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1857' column='1'/> + <function-decl name='Py_CompileStringFlags' mangled-name='Py_CompileStringFlags' filepath='Python/pythonrun.c' line='1858' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringFlags'> + <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1858' column='1'/> + <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1858' column='1'/> + <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1858' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1859' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='Py_CompileString' mangled-name='Py_CompileString' filepath='Python/pythonrun.c' line='1849' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileString'> - <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1849' column='1'/> - <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1849' column='1'/> - <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1849' column='1'/> + <function-decl name='Py_CompileString' mangled-name='Py_CompileString' filepath='Python/pythonrun.c' line='1851' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileString'> + <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1851' column='1'/> + <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1851' column='1'/> + <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1851' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyRun_SimpleString' mangled-name='PyRun_SimpleString' filepath='Python/pythonrun.c' line='1842' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleString'> - <parameter type-id='type-id-3' name='where' filepath='Python/ceval.c' line='5684' column='1'/> + <function-decl name='PyRun_SimpleString' mangled-name='PyRun_SimpleString' filepath='Python/pythonrun.c' line='1844' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleString'> + <parameter type-id='type-id-3' name='s' filepath='Python/pythonrun.c' line='1844' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyRun_String' mangled-name='PyRun_String' filepath='Python/pythonrun.c' line='1835' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_String'> - <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1835' column='1'/> - <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1835' column='1'/> - <parameter type-id='type-id-100' name='g' filepath='Python/pythonrun.c' line='1835' column='1'/> - <parameter type-id='type-id-100' name='l' filepath='Python/pythonrun.c' line='1835' column='1'/> + <function-decl name='PyRun_String' mangled-name='PyRun_String' filepath='Python/pythonrun.c' line='1837' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_String'> + <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1837' column='1'/> + <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1837' column='1'/> + <parameter type-id='type-id-100' name='g' filepath='Python/pythonrun.c' line='1837' column='1'/> + <parameter type-id='type-id-100' name='l' filepath='Python/pythonrun.c' line='1837' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyRun_SimpleFileEx' mangled-name='PyRun_SimpleFileEx' filepath='Python/pythonrun.c' line='1827' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFileEx'> - <parameter type-id='type-id-223' name='f' filepath='Python/pythonrun.c' line='1827' column='1'/> - <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1827' column='1'/> - <parameter type-id='type-id-8' name='c' filepath='Python/pythonrun.c' line='1827' column='1'/> + <function-decl name='PyRun_SimpleFileEx' mangled-name='PyRun_SimpleFileEx' filepath='Python/pythonrun.c' line='1829' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFileEx'> + <parameter type-id='type-id-223' name='f' filepath='Python/pythonrun.c' line='1829' column='1'/> + <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1829' column='1'/> + <parameter type-id='type-id-8' name='c' filepath='Python/pythonrun.c' line='1829' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyRun_SimpleFile' mangled-name='PyRun_SimpleFile' filepath='Python/pythonrun.c' line='1820' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFile'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pylifecycle.c' line='2471' column='1'/> - <parameter type-id='type-id-3' name='filename' filepath='Python/pylifecycle.c' line='2471' column='1'/> + <function-decl name='PyRun_SimpleFile' mangled-name='PyRun_SimpleFile' filepath='Python/pythonrun.c' line='1822' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFile'> + <parameter type-id='type-id-223' name='f' filepath='Python/pythonrun.c' line='1873' column='1'/> + <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1873' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyRun_FileFlags' mangled-name='PyRun_FileFlags' filepath='Python/pythonrun.c' line='1812' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileFlags'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1812' column='1'/> - <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1812' column='1'/> - <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1812' column='1'/> - <parameter type-id='type-id-100' name='g' filepath='Python/pythonrun.c' line='1812' column='1'/> - <parameter type-id='type-id-100' name='l' filepath='Python/pythonrun.c' line='1812' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1813' column='1'/> + <function-decl name='PyRun_FileFlags' mangled-name='PyRun_FileFlags' filepath='Python/pythonrun.c' line='1814' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileFlags'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1814' column='1'/> + <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1814' column='1'/> + <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1814' column='1'/> + <parameter type-id='type-id-100' name='g' filepath='Python/pythonrun.c' line='1814' column='1'/> + <parameter type-id='type-id-100' name='l' filepath='Python/pythonrun.c' line='1814' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1815' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyRun_FileEx' mangled-name='PyRun_FileEx' filepath='Python/pythonrun.c' line='1805' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileEx'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1805' column='1'/> - <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1805' column='1'/> - <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1805' column='1'/> - <parameter type-id='type-id-100' name='g' filepath='Python/pythonrun.c' line='1805' column='1'/> - <parameter type-id='type-id-100' name='l' filepath='Python/pythonrun.c' line='1805' column='1'/> - <parameter type-id='type-id-8' name='c' filepath='Python/pythonrun.c' line='1805' column='1'/> + <function-decl name='PyRun_FileEx' mangled-name='PyRun_FileEx' filepath='Python/pythonrun.c' line='1807' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileEx'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1807' column='1'/> + <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1807' column='1'/> + <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1807' column='1'/> + <parameter type-id='type-id-100' name='g' filepath='Python/pythonrun.c' line='1807' column='1'/> + <parameter type-id='type-id-100' name='l' filepath='Python/pythonrun.c' line='1807' column='1'/> + <parameter type-id='type-id-8' name='c' filepath='Python/pythonrun.c' line='1807' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyRun_File' mangled-name='PyRun_File' filepath='Python/pythonrun.c' line='1798' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_File'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1798' column='1'/> - <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1798' column='1'/> - <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1798' column='1'/> - <parameter type-id='type-id-100' name='g' filepath='Python/pythonrun.c' line='1798' column='1'/> - <parameter type-id='type-id-100' name='l' filepath='Python/pythonrun.c' line='1798' column='1'/> + <function-decl name='PyRun_File' mangled-name='PyRun_File' filepath='Python/pythonrun.c' line='1800' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_File'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1800' column='1'/> + <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1800' column='1'/> + <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1800' column='1'/> + <parameter type-id='type-id-100' name='g' filepath='Python/pythonrun.c' line='1800' column='1'/> + <parameter type-id='type-id-100' name='l' filepath='Python/pythonrun.c' line='1800' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyRun_AnyFileFlags' mangled-name='PyRun_AnyFileFlags' filepath='Python/pythonrun.c' line='1791' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileFlags'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1791' column='1'/> - <parameter type-id='type-id-3' name='name' filepath='Python/pythonrun.c' line='1791' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1791' column='1'/> + <function-decl name='PyRun_AnyFileFlags' mangled-name='PyRun_AnyFileFlags' filepath='Python/pythonrun.c' line='1793' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileFlags'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1793' column='1'/> + <parameter type-id='type-id-3' name='name' filepath='Python/pythonrun.c' line='1793' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1793' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyRun_AnyFileEx' mangled-name='PyRun_AnyFileEx' filepath='Python/pythonrun.c' line='1784' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileEx'> - <parameter type-id='type-id-223' name='f' filepath='Python/pythonrun.c' line='1827' column='1'/> - <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1827' column='1'/> - <parameter type-id='type-id-8' name='c' filepath='Python/pythonrun.c' line='1827' column='1'/> + <function-decl name='PyRun_AnyFileEx' mangled-name='PyRun_AnyFileEx' filepath='Python/pythonrun.c' line='1786' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileEx'> + <parameter type-id='type-id-223' name='f' filepath='Python/pythonrun.c' line='1829' column='1'/> + <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1829' column='1'/> + <parameter type-id='type-id-8' name='c' filepath='Python/pythonrun.c' line='1829' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyRun_AnyFile' mangled-name='PyRun_AnyFile' filepath='Python/pythonrun.c' line='1777' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFile'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pylifecycle.c' line='2471' column='1'/> - <parameter type-id='type-id-3' name='filename' filepath='Python/pylifecycle.c' line='2471' column='1'/> + <function-decl name='PyRun_AnyFile' mangled-name='PyRun_AnyFile' filepath='Python/pythonrun.c' line='1779' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFile'> + <parameter type-id='type-id-223' name='f' filepath='Python/pythonrun.c' line='1873' column='1'/> + <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1873' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyParser_SimpleParseString' mangled-name='PyParser_SimpleParseString' filepath='Python/pythonrun.c' line='1770' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseString'> - <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1770' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1770' column='1'/> + <function-decl name='PyParser_SimpleParseString' mangled-name='PyParser_SimpleParseString' filepath='Python/pythonrun.c' line='1772' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseString'> + <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1772' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1772' column='1'/> <return type-id='type-id-11'/> </function-decl> - <function-decl name='PyParser_SimpleParseFile' mangled-name='PyParser_SimpleParseFile' filepath='Python/pythonrun.c' line='1763' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseFile'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1763' column='1'/> - <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='1763' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1763' column='1'/> + <function-decl name='PyParser_SimpleParseFile' mangled-name='PyParser_SimpleParseFile' filepath='Python/pythonrun.c' line='1765' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseFile'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1765' column='1'/> + <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='1765' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1765' column='1'/> <return type-id='type-id-11'/> </function-decl> - <function-decl name='PyParser_SetError' mangled-name='PyParser_SetError' filepath='Python/pythonrun.c' line='1584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SetError'> - <parameter type-id='type-id-278' name='err' filepath='Python/pythonrun.c' line='1584' column='1'/> + <function-decl name='PyParser_SetError' mangled-name='PyParser_SetError' filepath='Python/pythonrun.c' line='1586' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SetError'> + <parameter type-id='type-id-278' name='err' filepath='Python/pythonrun.c' line='1586' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyParser_ClearError' mangled-name='PyParser_ClearError' filepath='Python/pythonrun.c' line='1578' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ClearError'> - <parameter type-id='type-id-278' name='err' filepath='Python/pythonrun.c' line='1584' column='1'/> + <function-decl name='PyParser_ClearError' mangled-name='PyParser_ClearError' filepath='Python/pythonrun.c' line='1580' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ClearError'> + <parameter type-id='type-id-278' name='err' filepath='Python/pythonrun.c' line='1580' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyParser_SimpleParseStringFlagsFilename' mangled-name='PyParser_SimpleParseStringFlagsFilename' filepath='Python/pythonrun.c' line='1562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseStringFlagsFilename'> - <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1562' column='1'/> - <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='1562' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1563' column='1'/> - <parameter type-id='type-id-8' name='flags' filepath='Python/pythonrun.c' line='1563' column='1'/> + <function-decl name='PyParser_SimpleParseStringFlagsFilename' mangled-name='PyParser_SimpleParseStringFlagsFilename' filepath='Python/pythonrun.c' line='1564' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseStringFlagsFilename'> + <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1564' column='1'/> + <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='1564' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1565' column='1'/> + <parameter type-id='type-id-8' name='flags' filepath='Python/pythonrun.c' line='1565' column='1'/> <return type-id='type-id-11'/> </function-decl> - <function-decl name='PyParser_SimpleParseStringFlags' mangled-name='PyParser_SimpleParseStringFlags' filepath='Python/pythonrun.c' line='1550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseStringFlags'> - <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1550' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1550' column='1'/> - <parameter type-id='type-id-8' name='flags' filepath='Python/pythonrun.c' line='1550' column='1'/> + <function-decl name='PyParser_SimpleParseStringFlags' mangled-name='PyParser_SimpleParseStringFlags' filepath='Python/pythonrun.c' line='1552' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseStringFlags'> + <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1552' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1552' column='1'/> + <parameter type-id='type-id-8' name='flags' filepath='Python/pythonrun.c' line='1552' column='1'/> <return type-id='type-id-11'/> </function-decl> - <function-decl name='PyParser_SimpleParseFileFlags' mangled-name='PyParser_SimpleParseFileFlags' filepath='Python/pythonrun.c' line='1534' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseFileFlags'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1534' column='1'/> - <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='1534' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1534' column='1'/> - <parameter type-id='type-id-8' name='flags' filepath='Python/pythonrun.c' line='1534' column='1'/> + <function-decl name='PyParser_SimpleParseFileFlags' mangled-name='PyParser_SimpleParseFileFlags' filepath='Python/pythonrun.c' line='1536' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseFileFlags'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1536' column='1'/> + <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='1536' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1536' column='1'/> + <parameter type-id='type-id-8' name='flags' filepath='Python/pythonrun.c' line='1536' column='1'/> <return type-id='type-id-11'/> </function-decl> - <function-decl name='PyParser_ASTFromFile' mangled-name='PyParser_ASTFromFile' filepath='Python/pythonrun.c' line='1515' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ASTFromFile'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1515' column='1'/> - <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='1515' column='1'/> - <parameter type-id='type-id-3' name='enc' filepath='Python/pythonrun.c' line='1515' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1516' column='1'/> - <parameter type-id='type-id-3' name='ps1' filepath='Python/pythonrun.c' line='1516' column='1'/> - <parameter type-id='type-id-3' name='ps2' filepath='Python/pythonrun.c' line='1517' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1517' column='1'/> - <parameter type-id='type-id-227' name='errcode' filepath='Python/pythonrun.c' line='1517' column='1'/> - <parameter type-id='type-id-230' name='arena' filepath='Python/pythonrun.c' line='1518' column='1'/> + <function-decl name='PyParser_ASTFromFile' mangled-name='PyParser_ASTFromFile' filepath='Python/pythonrun.c' line='1517' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ASTFromFile'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1517' column='1'/> + <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='1517' column='1'/> + <parameter type-id='type-id-3' name='enc' filepath='Python/pythonrun.c' line='1517' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1518' column='1'/> + <parameter type-id='type-id-3' name='ps1' filepath='Python/pythonrun.c' line='1518' column='1'/> + <parameter type-id='type-id-3' name='ps2' filepath='Python/pythonrun.c' line='1519' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1519' column='1'/> + <parameter type-id='type-id-227' name='errcode' filepath='Python/pythonrun.c' line='1519' column='1'/> + <parameter type-id='type-id-230' name='arena' filepath='Python/pythonrun.c' line='1520' column='1'/> <return type-id='type-id-203'/> </function-decl> - <function-decl name='PyParser_ASTFromFileObject' mangled-name='PyParser_ASTFromFileObject' filepath='Python/pythonrun.c' line='1483' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ASTFromFileObject'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1483' column='1'/> - <parameter type-id='type-id-100' name='filename' filepath='Python/pythonrun.c' line='1483' column='1'/> - <parameter type-id='type-id-3' name='enc' filepath='Python/pythonrun.c' line='1483' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1484' column='1'/> - <parameter type-id='type-id-3' name='ps1' filepath='Python/pythonrun.c' line='1484' column='1'/> - <parameter type-id='type-id-3' name='ps2' filepath='Python/pythonrun.c' line='1485' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1485' column='1'/> - <parameter type-id='type-id-227' name='errcode' filepath='Python/pythonrun.c' line='1485' column='1'/> - <parameter type-id='type-id-230' name='arena' filepath='Python/pythonrun.c' line='1486' column='1'/> + <function-decl name='PyParser_ASTFromFileObject' mangled-name='PyParser_ASTFromFileObject' filepath='Python/pythonrun.c' line='1485' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ASTFromFileObject'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1485' column='1'/> + <parameter type-id='type-id-100' name='filename' filepath='Python/pythonrun.c' line='1485' column='1'/> + <parameter type-id='type-id-3' name='enc' filepath='Python/pythonrun.c' line='1485' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1486' column='1'/> + <parameter type-id='type-id-3' name='ps1' filepath='Python/pythonrun.c' line='1486' column='1'/> + <parameter type-id='type-id-3' name='ps2' filepath='Python/pythonrun.c' line='1487' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1487' column='1'/> + <parameter type-id='type-id-227' name='errcode' filepath='Python/pythonrun.c' line='1487' column='1'/> + <parameter type-id='type-id-230' name='arena' filepath='Python/pythonrun.c' line='1488' column='1'/> <return type-id='type-id-203'/> </function-decl> - <function-decl name='PyParser_ASTFromString' mangled-name='PyParser_ASTFromString' filepath='Python/pythonrun.c' line='1469' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ASTFromString'> - <parameter type-id='type-id-3' name='s' filepath='Python/pythonrun.c' line='1469' column='1'/> - <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='1469' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1469' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1470' column='1'/> - <parameter type-id='type-id-230' name='arena' filepath='Python/pythonrun.c' line='1470' column='1'/> + <function-decl name='PyParser_ASTFromString' mangled-name='PyParser_ASTFromString' filepath='Python/pythonrun.c' line='1471' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ASTFromString'> + <parameter type-id='type-id-3' name='s' filepath='Python/pythonrun.c' line='1471' column='1'/> + <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='1471' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1471' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1472' column='1'/> + <parameter type-id='type-id-230' name='arena' filepath='Python/pythonrun.c' line='1472' column='1'/> <return type-id='type-id-203'/> </function-decl> - <function-decl name='PyParser_ASTFromStringObject' mangled-name='PyParser_ASTFromStringObject' filepath='Python/pythonrun.c' line='1439' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ASTFromStringObject'> - <parameter type-id='type-id-3' name='s' filepath='Python/pythonrun.c' line='1439' column='1'/> - <parameter type-id='type-id-100' name='filename' filepath='Python/pythonrun.c' line='1439' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1439' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1440' column='1'/> - <parameter type-id='type-id-230' name='arena' filepath='Python/pythonrun.c' line='1440' column='1'/> + <function-decl name='PyParser_ASTFromStringObject' mangled-name='PyParser_ASTFromStringObject' filepath='Python/pythonrun.c' line='1441' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ASTFromStringObject'> + <parameter type-id='type-id-3' name='s' filepath='Python/pythonrun.c' line='1441' column='1'/> + <parameter type-id='type-id-100' name='filename' filepath='Python/pythonrun.c' line='1441' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1441' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1442' column='1'/> + <parameter type-id='type-id-230' name='arena' filepath='Python/pythonrun.c' line='1442' column='1'/> <return type-id='type-id-203'/> </function-decl> - <class-decl name='symtable' size-in-bits='640' is-struct='yes' visibility='default' filepath='./Include/symtable.h' line='19' column='1' id='type-id-653'> + <class-decl name='symtable' size-in-bits='640' is-struct='yes' visibility='default' filepath='./Include/symtable.h' line='19' column='1' id='type-id-656'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='st_filename' type-id='type-id-100' visibility='default' filepath='./Include/symtable.h' line='20' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='64'> - <var-decl name='st_cur' type-id='type-id-654' visibility='default' filepath='./Include/symtable.h' line='22' column='1'/> + <var-decl name='st_cur' type-id='type-id-657' visibility='default' filepath='./Include/symtable.h' line='22' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='128'> - <var-decl name='st_top' type-id='type-id-654' visibility='default' filepath='./Include/symtable.h' line='23' column='1'/> + <var-decl name='st_top' type-id='type-id-657' visibility='default' filepath='./Include/symtable.h' line='23' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='192'> <var-decl name='st_blocks' type-id='type-id-100' visibility='default' filepath='./Include/symtable.h' line='24' column='1'/> @@ -12180,7 +15643,7 @@ <var-decl name='st_private' type-id='type-id-100' visibility='default' filepath='./Include/symtable.h' line='31' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='512'> - <var-decl name='st_future' type-id='type-id-552' visibility='default' filepath='./Include/symtable.h' line='32' column='1'/> + <var-decl name='st_future' type-id='type-id-555' visibility='default' filepath='./Include/symtable.h' line='32' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='576'> <var-decl name='recursion_depth' type-id='type-id-8' visibility='default' filepath='./Include/symtable.h' line='34' column='1'/> @@ -12189,7 +15652,7 @@ <var-decl name='recursion_limit' type-id='type-id-8' visibility='default' filepath='./Include/symtable.h' line='35' column='1'/> </data-member> </class-decl> - <class-decl name='_symtable_entry' size-in-bits='832' is-struct='yes' visibility='default' filepath='./Include/symtable.h' line='38' column='1' id='type-id-655'> + <class-decl name='_symtable_entry' size-in-bits='832' is-struct='yes' visibility='default' filepath='./Include/symtable.h' line='38' column='1' id='type-id-658'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='ob_base' type-id='type-id-110' visibility='default' filepath='./Include/symtable.h' line='39' column='1'/> </data-member> @@ -12212,7 +15675,7 @@ <var-decl name='ste_directives' type-id='type-id-100' visibility='default' filepath='./Include/symtable.h' line='45' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='512'> - <var-decl name='ste_type' type-id='type-id-656' visibility='default' filepath='./Include/symtable.h' line='46' column='1'/> + <var-decl name='ste_type' type-id='type-id-659' visibility='default' filepath='./Include/symtable.h' line='46' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='544'> <var-decl name='ste_nested' type-id='type-id-8' visibility='default' filepath='./Include/symtable.h' line='47' column='1'/> @@ -12263,149 +15726,209 @@ <var-decl name='ste_opt_col_offset' type-id='type-id-8' visibility='default' filepath='./Include/symtable.h' line='66' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='768'> - <var-decl name='ste_table' type-id='type-id-657' visibility='default' filepath='./Include/symtable.h' line='67' column='1'/> + <var-decl name='ste_table' type-id='type-id-660' visibility='default' filepath='./Include/symtable.h' line='67' column='1'/> </data-member> </class-decl> - <enum-decl name='_block_type' filepath='./Include/symtable.h' line='14' column='1' id='type-id-658'> + <enum-decl name='_block_type' filepath='./Include/symtable.h' line='14' column='1' id='type-id-661'> <underlying-type type-id='type-id-23'/> <enumerator name='FunctionBlock' value='0'/> <enumerator name='ClassBlock' value='1'/> <enumerator name='ModuleBlock' value='2'/> </enum-decl> - <typedef-decl name='_Py_block_ty' type-id='type-id-658' filepath='./Include/symtable.h' line='15' column='1' id='type-id-656'/> - <pointer-type-def type-id='type-id-653' size-in-bits='64' id='type-id-657'/> - <pointer-type-def type-id='type-id-655' size-in-bits='64' id='type-id-654'/> - <function-decl name='Py_SymtableString' mangled-name='Py_SymtableString' filepath='Python/pythonrun.c' line='1424' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SymtableString'> - <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1424' column='1'/> - <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='1424' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1424' column='1'/> - <return type-id='type-id-657'/> - </function-decl> - <function-decl name='_Py_SymtableStringObjectFlags' mangled-name='_Py_SymtableStringObjectFlags' filepath='Python/pythonrun.c' line='1397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SymtableStringObjectFlags'> - <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1397' column='1'/> - <parameter type-id='type-id-100' name='filename' filepath='Python/pythonrun.c' line='1397' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1397' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1397' column='1'/> - <return type-id='type-id-657'/> - </function-decl> - <function-decl name='Py_SymtableStringObject' mangled-name='Py_SymtableStringObject' filepath='Python/pythonrun.c' line='1390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SymtableStringObject'> - <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1390' column='1'/> - <parameter type-id='type-id-100' name='filename' filepath='Python/pythonrun.c' line='1390' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1390' column='1'/> - <return type-id='type-id-657'/> - </function-decl> - <function-decl name='_Py_SourceAsString' mangled-name='_Py_SourceAsString' filepath='Python/pythonrun.c' line='1341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SourceAsString'> - <parameter type-id='type-id-100' name='cmd' filepath='Python/pythonrun.c' line='1341' column='1'/> - <parameter type-id='type-id-3' name='funcname' filepath='Python/pythonrun.c' line='1341' column='1'/> - <parameter type-id='type-id-3' name='what' filepath='Python/pythonrun.c' line='1341' column='1'/> - <parameter type-id='type-id-226' name='cf' filepath='Python/pythonrun.c' line='1341' column='1'/> - <parameter type-id='type-id-303' name='cmd_copy' filepath='Python/pythonrun.c' line='1341' column='1'/> - <return type-id='type-id-3'/> - </function-decl> - <function-decl name='Py_CompileStringExFlags' mangled-name='Py_CompileStringExFlags' filepath='Python/pythonrun.c' line='1320' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringExFlags'> - <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1320' column='1'/> - <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='1320' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1320' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1321' column='1'/> - <parameter type-id='type-id-8' name='optimize' filepath='Python/pythonrun.c' line='1321' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='Py_CompileStringObject' mangled-name='Py_CompileStringObject' filepath='Python/pythonrun.c' line='1289' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringObject'> - <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1289' column='1'/> - <parameter type-id='type-id-100' name='filename' filepath='Python/pythonrun.c' line='1289' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1289' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1290' column='1'/> - <parameter type-id='type-id-8' name='optimize' filepath='Python/pythonrun.c' line='1290' column='1'/> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyRun_FileExFlags' mangled-name='PyRun_FileExFlags' filepath='Python/pythonrun.c' line='1150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileExFlags'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1150' column='1'/> - <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='1150' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1150' column='1'/> - <parameter type-id='type-id-100' name='globals' filepath='Python/pythonrun.c' line='1150' column='1'/> - <parameter type-id='type-id-100' name='locals' filepath='Python/pythonrun.c' line='1151' column='1'/> - <parameter type-id='type-id-8' name='closeit' filepath='Python/pythonrun.c' line='1151' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1151' column='1'/> - <return type-id='type-id-100'/> + <typedef-decl name='_Py_block_ty' type-id='type-id-661' filepath='./Include/symtable.h' line='15' column='1' id='type-id-659'/> + <pointer-type-def type-id='type-id-656' size-in-bits='64' id='type-id-660'/> + <pointer-type-def type-id='type-id-658' size-in-bits='64' id='type-id-657'/> + <function-decl name='Py_SymtableString' mangled-name='Py_SymtableString' filepath='Python/pythonrun.c' line='1426' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SymtableString'> + <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1426' column='1'/> + <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='1426' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1426' column='1'/> + <return type-id='type-id-660'/> </function-decl> - <function-decl name='PyRun_StringFlags' mangled-name='PyRun_StringFlags' filepath='Python/pythonrun.c' line='1081' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_StringFlags'> - <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1081' column='1'/> - <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1081' column='1'/> - <parameter type-id='type-id-100' name='globals' filepath='Python/pythonrun.c' line='1081' column='1'/> - <parameter type-id='type-id-100' name='locals' filepath='Python/pythonrun.c' line='1082' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1082' column='1'/> - <return type-id='type-id-100'/> + <function-decl name='_Py_SymtableStringObjectFlags' mangled-name='_Py_SymtableStringObjectFlags' filepath='Python/pythonrun.c' line='1399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SymtableStringObjectFlags'> + <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1399' column='1'/> + <parameter type-id='type-id-100' name='filename' filepath='Python/pythonrun.c' line='1399' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1399' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1399' column='1'/> + <return type-id='type-id-660'/> </function-decl> - <function-decl name='PyErr_Display' mangled-name='PyErr_Display' filepath='Python/pythonrun.c' line='1064' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Display'> - <parameter type-id='type-id-100' name='type' filepath='Python/errors.c' line='68' column='1'/> - <parameter type-id='type-id-100' name='value' filepath='Python/errors.c' line='68' column='1'/> - <parameter type-id='type-id-100' name='traceback' filepath='Python/errors.c' line='68' column='1'/> - <return type-id='type-id-4'/> + <function-decl name='Py_SymtableStringObject' mangled-name='Py_SymtableStringObject' filepath='Python/pythonrun.c' line='1392' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SymtableStringObject'> + <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1392' column='1'/> + <parameter type-id='type-id-100' name='filename' filepath='Python/pythonrun.c' line='1392' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1392' column='1'/> + <return type-id='type-id-660'/> </function-decl> - <function-decl name='_PyErr_Display' mangled-name='_PyErr_Display' filepath='Python/pythonrun.c' line='1026' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Display'> - <parameter type-id='type-id-100' name='file' filepath='Python/pythonrun.c' line='1026' column='1'/> - <parameter type-id='type-id-100' name='exception' filepath='Python/pythonrun.c' line='1026' column='1'/> - <parameter type-id='type-id-100' name='value' filepath='Python/pythonrun.c' line='1026' column='1'/> - <parameter type-id='type-id-100' name='tb' filepath='Python/pythonrun.c' line='1026' column='1'/> - <return type-id='type-id-4'/> + <function-decl name='_Py_SourceAsString' mangled-name='_Py_SourceAsString' filepath='Python/pythonrun.c' line='1343' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SourceAsString'> + <parameter type-id='type-id-100' name='cmd' filepath='Python/pythonrun.c' line='1343' column='1'/> + <parameter type-id='type-id-3' name='funcname' filepath='Python/pythonrun.c' line='1343' column='1'/> + <parameter type-id='type-id-3' name='what' filepath='Python/pythonrun.c' line='1343' column='1'/> + <parameter type-id='type-id-226' name='cf' filepath='Python/pythonrun.c' line='1343' column='1'/> + <parameter type-id='type-id-303' name='cmd_copy' filepath='Python/pythonrun.c' line='1343' column='1'/> + <return type-id='type-id-3'/> </function-decl> - <function-decl name='PyErr_Print' mangled-name='PyErr_Print' filepath='Python/pythonrun.c' line='831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Print'> + <function-decl name='Py_CompileStringExFlags' mangled-name='Py_CompileStringExFlags' filepath='Python/pythonrun.c' line='1322' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringExFlags'> + <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1322' column='1'/> + <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='1322' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1322' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1323' column='1'/> + <parameter type-id='type-id-8' name='optimize' filepath='Python/pythonrun.c' line='1323' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='Py_CompileStringObject' mangled-name='Py_CompileStringObject' filepath='Python/pythonrun.c' line='1291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringObject'> + <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1291' column='1'/> + <parameter type-id='type-id-100' name='filename' filepath='Python/pythonrun.c' line='1291' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1291' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1292' column='1'/> + <parameter type-id='type-id-8' name='optimize' filepath='Python/pythonrun.c' line='1292' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyRun_FileExFlags' mangled-name='PyRun_FileExFlags' filepath='Python/pythonrun.c' line='1152' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileExFlags'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='1152' column='1'/> + <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='1152' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1152' column='1'/> + <parameter type-id='type-id-100' name='globals' filepath='Python/pythonrun.c' line='1152' column='1'/> + <parameter type-id='type-id-100' name='locals' filepath='Python/pythonrun.c' line='1153' column='1'/> + <parameter type-id='type-id-8' name='closeit' filepath='Python/pythonrun.c' line='1153' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1153' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='PyRun_StringFlags' mangled-name='PyRun_StringFlags' filepath='Python/pythonrun.c' line='1083' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_StringFlags'> + <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1083' column='1'/> + <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1083' column='1'/> + <parameter type-id='type-id-100' name='globals' filepath='Python/pythonrun.c' line='1083' column='1'/> + <parameter type-id='type-id-100' name='locals' filepath='Python/pythonrun.c' line='1084' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='1084' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='_PyErr_Display' mangled-name='_PyErr_Display' filepath='Python/pythonrun.c' line='1028' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Display'> + <parameter type-id='type-id-100' name='file' filepath='Python/pythonrun.c' line='1028' column='1'/> + <parameter type-id='type-id-100' name='exception' filepath='Python/pythonrun.c' line='1028' column='1'/> + <parameter type-id='type-id-100' name='value' filepath='Python/pythonrun.c' line='1028' column='1'/> + <parameter type-id='type-id-100' name='tb' filepath='Python/pythonrun.c' line='1028' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyErr_PrintEx' mangled-name='PyErr_PrintEx' filepath='Python/pythonrun.c' line='824' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_PrintEx'> - <parameter type-id='type-id-8' name='new_limit' filepath='Python/ceval.c' line='765' column='1'/> + <function-decl name='PyErr_PrintEx' mangled-name='PyErr_PrintEx' filepath='Python/pythonrun.c' line='825' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_PrintEx'> + <parameter type-id='type-id-8' name='set_sys_last_vars' filepath='Python/pythonrun.c' line='825' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_PyErr_Print' mangled-name='_PyErr_Print' filepath='Python/pythonrun.c' line='818' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Print'> - <parameter type-id='type-id-409' name='tstate' filepath='Python/pythonrun.c' line='818' column='1'/> + <function-decl name='_PyErr_Print' mangled-name='_PyErr_Print' filepath='Python/pythonrun.c' line='819' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Print'> + <parameter type-id='type-id-409' name='tstate' filepath='Python/pythonrun.c' line='819' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='_Py_HandleSystemExit' mangled-name='_Py_HandleSystemExit' filepath='Python/pythonrun.c' line='647' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HandleSystemExit'> - <parameter type-id='type-id-227' name='exitcode_p' filepath='Python/pythonrun.c' line='647' column='1'/> + <function-decl name='PyRun_SimpleStringFlags' mangled-name='PyRun_SimpleStringFlags' filepath='Python/pythonrun.c' line='490' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleStringFlags'> + <parameter type-id='type-id-3' name='command' filepath='Python/pythonrun.c' line='490' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='490' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyRun_SimpleStringFlags' mangled-name='PyRun_SimpleStringFlags' filepath='Python/pythonrun.c' line='489' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleStringFlags'> - <parameter type-id='type-id-3' name='command' filepath='Python/pythonrun.c' line='489' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='489' column='1'/> + <function-decl name='PyRun_SimpleFileExFlags' mangled-name='PyRun_SimpleFileExFlags' filepath='Python/pythonrun.c' line='476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFileExFlags'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='476' column='1'/> + <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='476' column='1'/> + <parameter type-id='type-id-8' name='closeit' filepath='Python/pythonrun.c' line='476' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='477' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyRun_SimpleFileExFlags' mangled-name='PyRun_SimpleFileExFlags' filepath='Python/pythonrun.c' line='475' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFileExFlags'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='475' column='1'/> - <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='475' column='1'/> - <parameter type-id='type-id-8' name='closeit' filepath='Python/pythonrun.c' line='475' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='476' column='1'/> + <function-decl name='PyRun_InteractiveOneFlags' mangled-name='PyRun_InteractiveOneFlags' filepath='Python/pythonrun.c' line='298' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOneFlags'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='298' column='1'/> + <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='298' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='298' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyRun_InteractiveOneFlags' mangled-name='PyRun_InteractiveOneFlags' filepath='Python/pythonrun.c' line='297' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOneFlags'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='297' column='1'/> - <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='297' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='297' column='1'/> + <function-decl name='PyRun_InteractiveOneObject' mangled-name='PyRun_InteractiveOneObject' filepath='Python/pythonrun.c' line='285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOneObject'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='285' column='1'/> + <parameter type-id='type-id-100' name='filename' filepath='Python/pythonrun.c' line='285' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='285' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyRun_InteractiveOneObject' mangled-name='PyRun_InteractiveOneObject' filepath='Python/pythonrun.c' line='284' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOneObject'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='284' column='1'/> - <parameter type-id='type-id-100' name='filename' filepath='Python/pythonrun.c' line='284' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='284' column='1'/> + <function-decl name='PyRun_InteractiveLoopFlags' mangled-name='PyRun_InteractiveLoopFlags' filepath='Python/pythonrun.c' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveLoopFlags'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='96' column='1'/> + <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='96' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='96' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyRun_InteractiveLoopFlags' mangled-name='PyRun_InteractiveLoopFlags' filepath='Python/pythonrun.c' line='95' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveLoopFlags'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='95' column='1'/> - <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='95' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='95' column='1'/> + <function-decl name='PyRun_AnyFileExFlags' mangled-name='PyRun_AnyFileExFlags' filepath='Python/pythonrun.c' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileExFlags'> + <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='80' column='1'/> + <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='80' column='1'/> + <parameter type-id='type-id-8' name='closeit' filepath='Python/pythonrun.c' line='80' column='1'/> + <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='81' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyRun_AnyFileExFlags' mangled-name='PyRun_AnyFileExFlags' filepath='Python/pythonrun.c' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileExFlags'> - <parameter type-id='type-id-223' name='fp' filepath='Python/pythonrun.c' line='79' column='1'/> - <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='79' column='1'/> - <parameter type-id='type-id-8' name='closeit' filepath='Python/pythonrun.c' line='79' column='1'/> - <parameter type-id='type-id-226' name='flags' filepath='Python/pythonrun.c' line='80' column='1'/> + <function-decl name='_Py_HandleSystemExit' mangled-name='_Py_HandleSystemExit' filepath='Python/pythonrun.c' line='648' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HandleSystemExit'> + <parameter type-id='type-id-227' name='exitcode_p' filepath='Python/pythonrun.c' line='648' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='PyErr_Display' mangled-name='PyErr_Display' filepath='Python/pythonrun.c' line='1066' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Display'> + <parameter type-id='type-id-100' name='exception' filepath='Python/pythonrun.c' line='1066' column='1'/> + <parameter type-id='type-id-100' name='value' filepath='Python/pythonrun.c' line='1066' column='1'/> + <parameter type-id='type-id-100' name='tb' filepath='Python/pythonrun.c' line='1066' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyParser_ParseStringFlagsFilename' mangled-name='PyParser_ParseStringFlagsFilename' filepath='./Include/parsetok.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyParser_ParseStringFlags' mangled-name='PyParser_ParseStringFlags' filepath='./Include/parsetok.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyParser_ParseFileFlags' mangled-name='PyParser_ParseFileFlags' filepath='./Include/parsetok.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyParser_ParseFileObject' mangled-name='PyParser_ParseFileObject' filepath='./Include/parsetok.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyAST_FromNodeObject' mangled-name='PyAST_FromNodeObject' filepath='./Include/ast.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyParser_ParseStringObject' mangled-name='PyParser_ParseStringObject' filepath='./Include/parsetok.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyPegen_ASTFromStringObject' mangled-name='PyPegen_ASTFromStringObject' filepath='./Include/internal/pegen_interface.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyAST_mod2obj' mangled-name='PyAST_mod2obj' filepath='./Include/Python-ast.h' line='689' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyPegen_ASTFromFileObject' mangled-name='PyPegen_ASTFromFileObject' filepath='./Include/internal/pegen_interface.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyException_GetCause' mangled-name='PyException_GetCause' filepath='./Include/pyerrors.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySet_Contains' mangled-name='PySet_Contains' filepath='./Include/setobject.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_Exit' mangled-name='Py_Exit' filepath='./Include/pylifecycle.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyImport_GetMagicNumber' mangled-name='PyImport_GetMagicNumber' filepath='Python/pythonrun.c' line='1255' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='rewind' mangled-name='rewind' filepath='/usr/include/stdio.h' line='694' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMarshal_ReadLongFromFile' mangled-name='PyMarshal_ReadLongFromFile' filepath='./Include/marshal.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMarshal_ReadLastObjectFromFile' mangled-name='PyMarshal_ReadLastObjectFromFile' filepath='./Include/marshal.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_CompareWithASCIIString' mangled-name='PyUnicode_CompareWithASCIIString' filepath='./Include/unicodeobject.h' line='976' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyImport_AddModuleObject' mangled-name='PyImport_AddModuleObject' filepath='./Include/import.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_FdIsInteractive' mangled-name='Py_FdIsInteractive' filepath='./Include/cpython/pylifecycle.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_Print' mangled-name='PyObject_Print' filepath='./Include/cpython/object.h' line='309' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_Dump' mangled-name='_PyObject_Dump' filepath='./Include/cpython/object.h' line='311' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/pytime.c' comp-dir-path='/src' language='LANG_C99'> - <typedef-decl name='__time_t' type-id='type-id-12' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='160' column='1' id='type-id-659'/> - <typedef-decl name='time_t' type-id='type-id-659' filepath='/usr/include/x86_64-linux-gnu/bits/types/time_t.h' line='7' column='1' id='type-id-660'/> - <class-decl name='tm' size-in-bits='448' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='7' column='1' id='type-id-661'> + <typedef-decl name='__time_t' type-id='type-id-12' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='160' column='1' id='type-id-662'/> + <typedef-decl name='time_t' type-id='type-id-662' filepath='/usr/include/x86_64-linux-gnu/bits/types/time_t.h' line='7' column='1' id='type-id-663'/> + <class-decl name='tm' size-in-bits='448' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='7' column='1' id='type-id-664'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='tm_sec' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='9' column='1'/> </data-member> @@ -12440,26 +15963,26 @@ <var-decl name='tm_zone' type-id='type-id-3' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='21' column='1'/> </data-member> </class-decl> - <pointer-type-def type-id='type-id-661' size-in-bits='64' id='type-id-662'/> + <pointer-type-def type-id='type-id-664' size-in-bits='64' id='type-id-665'/> <function-decl name='_PyTime_gmtime' mangled-name='_PyTime_gmtime' filepath='Python/pytime.c' line='1111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_gmtime'> - <parameter type-id='type-id-660' name='t' filepath='Python/pytime.c' line='1111' column='1'/> - <parameter type-id='type-id-662' name='tm' filepath='Python/pytime.c' line='1111' column='1'/> + <parameter type-id='type-id-663' name='t' filepath='Python/pytime.c' line='1111' column='1'/> + <parameter type-id='type-id-665' name='tm' filepath='Python/pytime.c' line='1111' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_localtime' mangled-name='_PyTime_localtime' filepath='Python/pytime.c' line='1073' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_localtime'> - <parameter type-id='type-id-660' name='t' filepath='Python/pytime.c' line='1111' column='1'/> - <parameter type-id='type-id-662' name='tm' filepath='Python/pytime.c' line='1111' column='1'/> + <parameter type-id='type-id-663' name='t' filepath='Python/pytime.c' line='1111' column='1'/> + <parameter type-id='type-id-665' name='tm' filepath='Python/pytime.c' line='1111' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_Init' mangled-name='_PyTime_Init' filepath='Python/pytime.c' line='1054' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_Init'> <return type-id='type-id-8'/> </function-decl> - <typedef-decl name='_PyTime_t' type-id='type-id-316' filepath='./Include/pytime.h' line='19' column='1' id='type-id-663'/> + <typedef-decl name='_PyTime_t' type-id='type-id-316' filepath='./Include/pytime.h' line='19' column='1' id='type-id-666'/> <function-decl name='_PyTime_GetPerfCounter' mangled-name='_PyTime_GetPerfCounter' filepath='Python/pytime.c' line='1043' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetPerfCounter'> - <return type-id='type-id-663'/> + <return type-id='type-id-666'/> </function-decl> - <pointer-type-def type-id='type-id-663' size-in-bits='64' id='type-id-664'/> - <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-665' visibility='default' filepath='./Include/pytime.h' line='184' column='1' id='type-id-666'> + <pointer-type-def type-id='type-id-666' size-in-bits='64' id='type-id-667'/> + <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-668' visibility='default' filepath='./Include/pytime.h' line='184' column='1' id='type-id-669'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='implementation' type-id='type-id-3' visibility='default' filepath='./Include/pytime.h' line='185' column='1'/> </data-member> @@ -12473,46 +15996,46 @@ <var-decl name='resolution' type-id='type-id-441' visibility='default' filepath='./Include/pytime.h' line='188' column='1'/> </data-member> </class-decl> - <typedef-decl name='_Py_clock_info_t' type-id='type-id-666' filepath='./Include/pytime.h' line='189' column='1' id='type-id-665'/> - <pointer-type-def type-id='type-id-665' size-in-bits='64' id='type-id-667'/> + <typedef-decl name='_Py_clock_info_t' type-id='type-id-669' filepath='./Include/pytime.h' line='189' column='1' id='type-id-668'/> + <pointer-type-def type-id='type-id-668' size-in-bits='64' id='type-id-670'/> <function-decl name='_PyTime_GetPerfCounterWithInfo' mangled-name='_PyTime_GetPerfCounterWithInfo' filepath='Python/pytime.c' line='1032' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetPerfCounterWithInfo'> - <parameter type-id='type-id-664' name='t' filepath='Python/pytime.c' line='1032' column='1'/> - <parameter type-id='type-id-667' name='info' filepath='Python/pytime.c' line='1032' column='1'/> + <parameter type-id='type-id-667' name='t' filepath='Python/pytime.c' line='1032' column='1'/> + <parameter type-id='type-id-670' name='info' filepath='Python/pytime.c' line='1032' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_GetMonotonicClockWithInfo' mangled-name='_PyTime_GetMonotonicClockWithInfo' filepath='Python/pytime.c' line='952' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetMonotonicClockWithInfo'> - <parameter type-id='type-id-664' name='t' filepath='Python/pytime.c' line='1032' column='1'/> - <parameter type-id='type-id-667' name='info' filepath='Python/pytime.c' line='1032' column='1'/> + <parameter type-id='type-id-667' name='tp' filepath='Python/pytime.c' line='952' column='1'/> + <parameter type-id='type-id-670' name='info' filepath='Python/pytime.c' line='952' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_GetMonotonicClock' mangled-name='_PyTime_GetMonotonicClock' filepath='Python/pytime.c' line='940' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetMonotonicClock'> - <return type-id='type-id-663'/> + <return type-id='type-id-666'/> </function-decl> <function-decl name='_PyTime_GetSystemClockWithInfo' mangled-name='_PyTime_GetSystemClockWithInfo' filepath='Python/pytime.c' line='780' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetSystemClockWithInfo'> - <parameter type-id='type-id-664' name='t' filepath='Python/pytime.c' line='1032' column='1'/> - <parameter type-id='type-id-667' name='info' filepath='Python/pytime.c' line='1032' column='1'/> + <parameter type-id='type-id-667' name='tp' filepath='Python/pytime.c' line='952' column='1'/> + <parameter type-id='type-id-670' name='info' filepath='Python/pytime.c' line='952' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_GetSystemClock' mangled-name='_PyTime_GetSystemClock' filepath='Python/pytime.c' line='769' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetSystemClock'> - <return type-id='type-id-663'/> + <return type-id='type-id-666'/> </function-decl> - <class-decl name='timespec' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='10' column='1' id='type-id-668'> + <class-decl name='timespec' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='10' column='1' id='type-id-671'> <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='tv_sec' type-id='type-id-659' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='12' column='1'/> + <var-decl name='tv_sec' type-id='type-id-662' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='12' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='64'> - <var-decl name='tv_nsec' type-id='type-id-669' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='16' column='1'/> + <var-decl name='tv_nsec' type-id='type-id-672' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='16' column='1'/> </data-member> </class-decl> - <typedef-decl name='__syscall_slong_t' type-id='type-id-12' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='196' column='1' id='type-id-669'/> - <pointer-type-def type-id='type-id-668' size-in-bits='64' id='type-id-670'/> + <typedef-decl name='__syscall_slong_t' type-id='type-id-12' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='196' column='1' id='type-id-672'/> + <pointer-type-def type-id='type-id-671' size-in-bits='64' id='type-id-673'/> <function-decl name='_PyTime_AsTimespec' mangled-name='_PyTime_AsTimespec' filepath='Python/pytime.c' line='636' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimespec'> - <parameter type-id='type-id-663' name='t' filepath='Python/pytime.c' line='636' column='1'/> - <parameter type-id='type-id-670' name='ts' filepath='Python/pytime.c' line='636' column='1'/> + <parameter type-id='type-id-666' name='t' filepath='Python/pytime.c' line='636' column='1'/> + <parameter type-id='type-id-673' name='ts' filepath='Python/pytime.c' line='636' column='1'/> <return type-id='type-id-8'/> </function-decl> - <pointer-type-def type-id='type-id-660' size-in-bits='64' id='type-id-671'/> - <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/pytime.h' line='23' column='1' id='type-id-672'> + <pointer-type-def type-id='type-id-663' size-in-bits='64' id='type-id-674'/> + <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/pytime.h' line='23' column='1' id='type-id-675'> <underlying-type type-id='type-id-23'/> <enumerator name='_PyTime_ROUND_FLOOR' value='0'/> <enumerator name='_PyTime_ROUND_CEILING' value='1'/> @@ -12520,124 +16043,132 @@ <enumerator name='_PyTime_ROUND_UP' value='3'/> <enumerator name='_PyTime_ROUND_TIMEOUT' value='3'/> </enum-decl> - <typedef-decl name='_PyTime_round_t' type-id='type-id-672' filepath='./Include/pytime.h' line='43' column='1' id='type-id-673'/> + <typedef-decl name='_PyTime_round_t' type-id='type-id-675' filepath='./Include/pytime.h' line='43' column='1' id='type-id-676'/> <function-decl name='_PyTime_AsTimevalTime_t' mangled-name='_PyTime_AsTimevalTime_t' filepath='Python/pytime.c' line='616' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimevalTime_t'> - <parameter type-id='type-id-663' name='t' filepath='Python/pytime.c' line='616' column='1'/> - <parameter type-id='type-id-671' name='p_secs' filepath='Python/pytime.c' line='616' column='1'/> + <parameter type-id='type-id-666' name='t' filepath='Python/pytime.c' line='616' column='1'/> + <parameter type-id='type-id-674' name='p_secs' filepath='Python/pytime.c' line='616' column='1'/> <parameter type-id='type-id-227' name='us' filepath='Python/pytime.c' line='616' column='1'/> - <parameter type-id='type-id-673' name='round' filepath='Python/pytime.c' line='617' column='1'/> + <parameter type-id='type-id-676' name='round' filepath='Python/pytime.c' line='617' column='1'/> <return type-id='type-id-8'/> </function-decl> - <class-decl name='timeval' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h' line='8' column='1' id='type-id-674'> + <class-decl name='timeval' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h' line='8' column='1' id='type-id-677'> <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='tv_sec' type-id='type-id-659' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h' line='10' column='1'/> + <var-decl name='tv_sec' type-id='type-id-662' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h' line='10' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='64'> - <var-decl name='tv_usec' type-id='type-id-675' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h' line='11' column='1'/> + <var-decl name='tv_usec' type-id='type-id-678' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h' line='11' column='1'/> </data-member> </class-decl> - <typedef-decl name='__suseconds_t' type-id='type-id-12' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='162' column='1' id='type-id-675'/> - <pointer-type-def type-id='type-id-674' size-in-bits='64' id='type-id-676'/> + <typedef-decl name='__suseconds_t' type-id='type-id-12' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='162' column='1' id='type-id-678'/> + <pointer-type-def type-id='type-id-677' size-in-bits='64' id='type-id-679'/> <function-decl name='_PyTime_AsTimeval_noraise' mangled-name='_PyTime_AsTimeval_noraise' filepath='Python/pytime.c' line='610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimeval_noraise'> - <parameter type-id='type-id-663' name='t' filepath='Python/pytime.c' line='610' column='1'/> - <parameter type-id='type-id-676' name='tv' filepath='Python/pytime.c' line='610' column='1'/> - <parameter type-id='type-id-673' name='round' filepath='Python/pytime.c' line='610' column='1'/> + <parameter type-id='type-id-666' name='t' filepath='Python/pytime.c' line='610' column='1'/> + <parameter type-id='type-id-679' name='tv' filepath='Python/pytime.c' line='610' column='1'/> + <parameter type-id='type-id-676' name='round' filepath='Python/pytime.c' line='610' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_AsTimeval' mangled-name='_PyTime_AsTimeval' filepath='Python/pytime.c' line='604' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimeval'> - <parameter type-id='type-id-663' name='t' filepath='Python/pytime.c' line='610' column='1'/> - <parameter type-id='type-id-676' name='tv' filepath='Python/pytime.c' line='610' column='1'/> - <parameter type-id='type-id-673' name='round' filepath='Python/pytime.c' line='610' column='1'/> + <parameter type-id='type-id-666' name='t' filepath='Python/pytime.c' line='610' column='1'/> + <parameter type-id='type-id-679' name='tv' filepath='Python/pytime.c' line='610' column='1'/> + <parameter type-id='type-id-676' name='round' filepath='Python/pytime.c' line='610' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_AsMicroseconds' mangled-name='_PyTime_AsMicroseconds' filepath='Python/pytime.c' line='533' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsMicroseconds'> - <parameter type-id='type-id-663' name='t' filepath='Python/pytime.c' line='533' column='1'/> - <parameter type-id='type-id-673' name='round' filepath='Python/pytime.c' line='533' column='1'/> - <return type-id='type-id-663'/> + <parameter type-id='type-id-666' name='t' filepath='Python/pytime.c' line='533' column='1'/> + <parameter type-id='type-id-676' name='round' filepath='Python/pytime.c' line='533' column='1'/> + <return type-id='type-id-666'/> </function-decl> <function-decl name='_PyTime_AsMilliseconds' mangled-name='_PyTime_AsMilliseconds' filepath='Python/pytime.c' line='527' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsMilliseconds'> - <parameter type-id='type-id-663' name='t' filepath='Python/pytime.c' line='533' column='1'/> - <parameter type-id='type-id-673' name='round' filepath='Python/pytime.c' line='533' column='1'/> - <return type-id='type-id-663'/> - </function-decl> - <function-decl name='_PyTime_AsNanosecondsObject' mangled-name='_PyTime_AsNanosecondsObject' filepath='Python/pytime.c' line='473' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsNanosecondsObject'> - <parameter type-id='type-id-663' name='t' filepath='Python/pytime.c' line='473' column='1'/> - <return type-id='type-id-100'/> + <parameter type-id='type-id-666' name='t' filepath='Python/pytime.c' line='533' column='1'/> + <parameter type-id='type-id-676' name='round' filepath='Python/pytime.c' line='533' column='1'/> + <return type-id='type-id-666'/> </function-decl> <function-decl name='_PyTime_AsSecondsDouble' mangled-name='_PyTime_AsSecondsDouble' filepath='Python/pytime.c' line='453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsSecondsDouble'> - <parameter type-id='type-id-663' name='t' filepath='Python/pytime.c' line='453' column='1'/> + <parameter type-id='type-id-666' name='t' filepath='Python/pytime.c' line='453' column='1'/> <return type-id='type-id-441'/> </function-decl> <function-decl name='_PyTime_FromMillisecondsObject' mangled-name='_PyTime_FromMillisecondsObject' filepath='Python/pytime.c' line='447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromMillisecondsObject'> - <parameter type-id='type-id-664' name='t' filepath='Python/pytime.c' line='447' column='1'/> + <parameter type-id='type-id-667' name='t' filepath='Python/pytime.c' line='447' column='1'/> <parameter type-id='type-id-100' name='obj' filepath='Python/pytime.c' line='447' column='1'/> - <parameter type-id='type-id-673' name='round' filepath='Python/pytime.c' line='447' column='1'/> + <parameter type-id='type-id-676' name='round' filepath='Python/pytime.c' line='447' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_FromSecondsObject' mangled-name='_PyTime_FromSecondsObject' filepath='Python/pytime.c' line='441' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromSecondsObject'> - <parameter type-id='type-id-664' name='t' filepath='Python/pytime.c' line='447' column='1'/> + <parameter type-id='type-id-667' name='t' filepath='Python/pytime.c' line='447' column='1'/> <parameter type-id='type-id-100' name='obj' filepath='Python/pytime.c' line='447' column='1'/> - <parameter type-id='type-id-673' name='round' filepath='Python/pytime.c' line='447' column='1'/> + <parameter type-id='type-id-676' name='round' filepath='Python/pytime.c' line='447' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_FromTimeval' mangled-name='_PyTime_FromTimeval' filepath='Python/pytime.c' line='380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromTimeval'> - <parameter type-id='type-id-664' name='tp' filepath='Python/pytime.c' line='380' column='1'/> - <parameter type-id='type-id-676' name='tv' filepath='Python/pytime.c' line='380' column='1'/> + <parameter type-id='type-id-667' name='tp' filepath='Python/pytime.c' line='380' column='1'/> + <parameter type-id='type-id-679' name='tv' filepath='Python/pytime.c' line='380' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_FromTimespec' mangled-name='_PyTime_FromTimespec' filepath='Python/pytime.c' line='334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromTimespec'> - <parameter type-id='type-id-664' name='tp' filepath='Python/pytime.c' line='334' column='1'/> - <parameter type-id='type-id-670' name='ts' filepath='Python/pytime.c' line='334' column='1'/> + <parameter type-id='type-id-667' name='tp' filepath='Python/pytime.c' line='334' column='1'/> + <parameter type-id='type-id-673' name='ts' filepath='Python/pytime.c' line='334' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_FromNanosecondsObject' mangled-name='_PyTime_FromNanosecondsObject' filepath='Python/pytime.c' line='268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromNanosecondsObject'> - <parameter type-id='type-id-664' name='tp' filepath='Python/pytime.c' line='268' column='1'/> + <parameter type-id='type-id-667' name='tp' filepath='Python/pytime.c' line='268' column='1'/> <parameter type-id='type-id-100' name='obj' filepath='Python/pytime.c' line='268' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_FromNanoseconds' mangled-name='_PyTime_FromNanoseconds' filepath='Python/pytime.c' line='261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromNanoseconds'> - <parameter type-id='type-id-663' name='ns' filepath='Python/pytime.c' line='261' column='1'/> - <return type-id='type-id-663'/> + <parameter type-id='type-id-666' name='ns' filepath='Python/pytime.c' line='261' column='1'/> + <return type-id='type-id-666'/> </function-decl> <function-decl name='_PyTime_FromSeconds' mangled-name='_PyTime_FromSeconds' filepath='Python/pytime.c' line='244' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromSeconds'> <parameter type-id='type-id-8' name='seconds' filepath='Python/pytime.c' line='244' column='1'/> - <return type-id='type-id-663'/> + <return type-id='type-id-666'/> </function-decl> - <pointer-type-def type-id='type-id-12' size-in-bits='64' id='type-id-677'/> + <pointer-type-def type-id='type-id-12' size-in-bits='64' id='type-id-680'/> <function-decl name='_PyTime_ObjectToTimeval' mangled-name='_PyTime_ObjectToTimeval' filepath='Python/pytime.c' line='237' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_ObjectToTimeval'> <parameter type-id='type-id-100' name='obj' filepath='Python/pytime.c' line='237' column='1'/> - <parameter type-id='type-id-671' name='sec' filepath='Python/pytime.c' line='237' column='1'/> - <parameter type-id='type-id-677' name='usec' filepath='Python/pytime.c' line='237' column='1'/> - <parameter type-id='type-id-673' name='round' filepath='Python/pytime.c' line='238' column='1'/> + <parameter type-id='type-id-674' name='sec' filepath='Python/pytime.c' line='237' column='1'/> + <parameter type-id='type-id-680' name='usec' filepath='Python/pytime.c' line='237' column='1'/> + <parameter type-id='type-id-676' name='round' filepath='Python/pytime.c' line='238' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_ObjectToTimespec' mangled-name='_PyTime_ObjectToTimespec' filepath='Python/pytime.c' line='230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_ObjectToTimespec'> <parameter type-id='type-id-100' name='obj' filepath='Python/pytime.c' line='237' column='1'/> - <parameter type-id='type-id-671' name='sec' filepath='Python/pytime.c' line='237' column='1'/> - <parameter type-id='type-id-677' name='usec' filepath='Python/pytime.c' line='237' column='1'/> - <parameter type-id='type-id-673' name='round' filepath='Python/pytime.c' line='238' column='1'/> + <parameter type-id='type-id-674' name='sec' filepath='Python/pytime.c' line='237' column='1'/> + <parameter type-id='type-id-680' name='usec' filepath='Python/pytime.c' line='237' column='1'/> + <parameter type-id='type-id-676' name='round' filepath='Python/pytime.c' line='238' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PyTime_ObjectToTime_t' mangled-name='_PyTime_ObjectToTime_t' filepath='Python/pytime.c' line='197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_ObjectToTime_t'> <parameter type-id='type-id-100' name='obj' filepath='Python/pytime.c' line='197' column='1'/> - <parameter type-id='type-id-671' name='sec' filepath='Python/pytime.c' line='197' column='1'/> - <parameter type-id='type-id-673' name='round' filepath='Python/pytime.c' line='197' column='1'/> + <parameter type-id='type-id-674' name='sec' filepath='Python/pytime.c' line='197' column='1'/> + <parameter type-id='type-id-676' name='round' filepath='Python/pytime.c' line='197' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyLong_FromTime_t' mangled-name='_PyLong_FromTime_t' filepath='Python/pytime.c' line='91' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromTime_t'> - <parameter type-id='type-id-660' name='t' filepath='Python/pytime.c' line='91' column='1'/> - <return type-id='type-id-100'/> + <function-decl name='_PyTime_MulDiv' mangled-name='_PyTime_MulDiv' filepath='Python/pytime.c' line='53' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_MulDiv'> + <parameter type-id='type-id-666' name='ticks' filepath='Python/pytime.c' line='53' column='1'/> + <parameter type-id='type-id-666' name='mul' filepath='Python/pytime.c' line='53' column='1'/> + <parameter type-id='type-id-666' name='div' filepath='Python/pytime.c' line='53' column='1'/> + <return type-id='type-id-666'/> </function-decl> <function-decl name='_PyLong_AsTime_t' mangled-name='_PyLong_AsTime_t' filepath='Python/pytime.c' line='71' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_AsTime_t'> <parameter type-id='type-id-100' name='obj' filepath='Python/pytime.c' line='71' column='1'/> - <return type-id='type-id-660'/> - </function-decl> - <function-decl name='_PyTime_MulDiv' mangled-name='_PyTime_MulDiv' filepath='Python/pytime.c' line='53' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_MulDiv'> - <parameter type-id='type-id-663' name='ticks' filepath='Python/pytime.c' line='53' column='1'/> - <parameter type-id='type-id-663' name='mul' filepath='Python/pytime.c' line='53' column='1'/> - <parameter type-id='type-id-663' name='div' filepath='Python/pytime.c' line='53' column='1'/> <return type-id='type-id-663'/> </function-decl> + <function-decl name='_PyLong_FromTime_t' mangled-name='_PyLong_FromTime_t' filepath='Python/pytime.c' line='91' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromTime_t'> + <parameter type-id='type-id-663' name='t' filepath='Python/pytime.c' line='91' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='gmtime_r' mangled-name='gmtime_r' filepath='/usr/include/time.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='localtime_r' mangled-name='localtime_r' filepath='/usr/include/time.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='clock_getres' mangled-name='clock_getres' filepath='/usr/include/time.h' line='210' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='clock_gettime' mangled-name='clock_gettime' filepath='/usr/include/time.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/bootstrap_hash.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='_PyOS_URandomNonblock' mangled-name='_PyOS_URandomNonblock' filepath='Python/bootstrap_hash.c' line='566' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_URandomNonblock'> @@ -12650,6 +16181,24 @@ <parameter type-id='type-id-15' name='size' filepath='Python/bootstrap_hash.c' line='566' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='_Py_open' mangled-name='_Py_open' filepath='./Include/cpython/fileutils.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_read' mangled-name='_Py_read' filepath='./Include/cpython/fileutils.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_fstat' mangled-name='_Py_fstat' filepath='./Include/cpython/fileutils.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__read_alias' mangled-name='read' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_open_noraise' mangled-name='_Py_open_noraise' filepath='./Include/cpython/fileutils.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getrandom' mangled-name='getrandom' filepath='/usr/include/x86_64-linux-gnu/sys/random.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/structmember.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyMember_SetOne' mangled-name='PyMember_SetOne' filepath='Python/structmember.c' line='100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMember_SetOne'> @@ -12666,33 +16215,39 @@ </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/symtable.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PySTEntry_Type' type-id='type-id-182' mangled-name='PySTEntry_Type' visibility='default' filepath='./Include/symtable.h' line='70' column='1' elf-symbol-id='PySTEntry_Type'/> - <typedef-decl name='PySTEntryObject' type-id='type-id-655' filepath='./Include/symtable.h' line='68' column='1' id='type-id-678'/> - <pointer-type-def type-id='type-id-678' size-in-bits='64' id='type-id-679'/> + <typedef-decl name='PySTEntryObject' type-id='type-id-658' filepath='./Include/symtable.h' line='68' column='1' id='type-id-681'/> + <pointer-type-def type-id='type-id-681' size-in-bits='64' id='type-id-682'/> <function-decl name='PyST_GetScope' mangled-name='PyST_GetScope' filepath='Python/symtable.c' line='403' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyST_GetScope'> - <parameter type-id='type-id-679' name='ste' filepath='Python/symtable.c' line='403' column='1'/> + <parameter type-id='type-id-682' name='ste' filepath='Python/symtable.c' line='403' column='1'/> <parameter type-id='type-id-100' name='name' filepath='Python/symtable.c' line='403' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PySymtable_Lookup' mangled-name='PySymtable_Lookup' filepath='Python/symtable.c' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySymtable_Lookup'> - <parameter type-id='type-id-657' name='st' filepath='Python/symtable.c' line='371' column='1'/> + <parameter type-id='type-id-660' name='st' filepath='Python/symtable.c' line='371' column='1'/> <parameter type-id='type-id-32' name='key' filepath='Python/symtable.c' line='371' column='1'/> - <return type-id='type-id-679'/> + <return type-id='type-id-682'/> </function-decl> <function-decl name='PySymtable_Free' mangled-name='PySymtable_Free' filepath='Python/symtable.c' line='362' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySymtable_Free'> - <parameter type-id='type-id-657' name='st' filepath='Python/symtable.c' line='362' column='1'/> + <parameter type-id='type-id-660' name='st' filepath='Python/symtable.c' line='362' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PySymtable_Build' mangled-name='PySymtable_Build' filepath='Python/symtable.c' line='349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySymtable_Build'> <parameter type-id='type-id-204' name='mod' filepath='Python/symtable.c' line='349' column='1'/> <parameter type-id='type-id-3' name='filename_str' filepath='Python/symtable.c' line='349' column='1'/> - <parameter type-id='type-id-552' name='future' filepath='Python/symtable.c' line='349' column='1'/> - <return type-id='type-id-657'/> + <parameter type-id='type-id-555' name='future' filepath='Python/symtable.c' line='349' column='1'/> + <return type-id='type-id-660'/> </function-decl> <function-decl name='PySymtable_BuildObject' mangled-name='PySymtable_BuildObject' filepath='Python/symtable.c' line='261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySymtable_BuildObject'> <parameter type-id='type-id-204' name='mod' filepath='Python/symtable.c' line='261' column='1'/> <parameter type-id='type-id-100' name='filename' filepath='Python/symtable.c' line='261' column='1'/> - <parameter type-id='type-id-552' name='future' filepath='Python/symtable.c' line='261' column='1'/> - <return type-id='type-id-657'/> + <parameter type-id='type-id-555' name='future' filepath='Python/symtable.c' line='261' column='1'/> + <return type-id='type-id-660'/> + </function-decl> + <function-decl name='PySet_Discard' mangled-name='PySet_Discard' filepath='./Include/setobject.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_GetRecursionLimit' mangled-name='Py_GetRecursionLimit' filepath='./Include/ceval.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Python/sysmodule.c' comp-dir-path='/src' language='LANG_C99'> @@ -12728,7 +16283,7 @@ <return type-id='type-id-4'/> </function-decl> <function-decl name='PySys_SetPath' mangled-name='PySys_SetPath' filepath='./Python/sysmodule.c' line='3100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetPath'> - <parameter type-id='type-id-501' name='path' filepath='Python/pathconfig.c' line='450' column='1'/> + <parameter type-id='type-id-501' name='path' filepath='./Python/sysmodule.c' line='3100' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PySys_GetXOptions' mangled-name='PySys_GetXOptions' filepath='./Python/sysmodule.c' line='2314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_GetXOptions'> @@ -12742,18 +16297,18 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PySys_AddWarnOption' mangled-name='PySys_AddWarnOption' filepath='./Python/sysmodule.c' line='2210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddWarnOption'> - <parameter type-id='type-id-501' name='program_full_path' filepath='Python/pathconfig.c' line='527' column='1'/> + <parameter type-id='type-id-501' name='s' filepath='./Python/sysmodule.c' line='2210' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PySys_AddWarnOptionUnicode' mangled-name='PySys_AddWarnOptionUnicode' filepath='./Python/sysmodule.c' line='2198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddWarnOptionUnicode'> - <parameter type-id='type-id-100' name='m' filepath='Objects/moduleobject.c' line='556' column='1'/> + <parameter type-id='type-id-100' name='self' filepath='Objects/object.c' line='185' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PySys_ResetWarnOptions' mangled-name='PySys_ResetWarnOptions' filepath='./Python/sysmodule.c' line='2170' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_ResetWarnOptions'> <return type-id='type-id-4'/> </function-decl> <function-decl name='_PySys_GetSizeOf' mangled-name='_PySys_GetSizeOf' filepath='./Python/sysmodule.c' line='1642' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_GetSizeOf'> - <parameter type-id='type-id-100' name='vv' filepath='Objects/longobject.c' line='707' column='1'/> + <parameter type-id='type-id-100' name='o' filepath='./Python/sysmodule.c' line='1642' column='1'/> <return type-id='type-id-191'/> </function-decl> <function-decl name='PySys_AddAuditHook' mangled-name='PySys_AddAuditHook' filepath='./Python/sysmodule.c' line='360' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddAuditHook'> @@ -12768,8 +16323,8 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PySys_SetObject' mangled-name='PySys_SetObject' filepath='./Python/sysmodule.c' line='134' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetObject'> - <parameter type-id='type-id-3' name='name' filepath='Python/codecs.c' line='622' column='1'/> - <parameter type-id='type-id-100' name='error' filepath='Python/codecs.c' line='622' column='1'/> + <parameter type-id='type-id-3' name='name' filepath='./Python/sysmodule.c' line='134' column='1'/> + <parameter type-id='type-id-100' name='v' filepath='./Python/sysmodule.c' line='134' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='_PySys_SetObjectId' mangled-name='_PySys_SetObjectId' filepath='./Python/sysmodule.c' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_SetObjectId'> @@ -12778,29 +16333,116 @@ <return type-id='type-id-8'/> </function-decl> <function-decl name='PySys_GetObject' mangled-name='PySys_GetObject' filepath='./Python/sysmodule.c' line='82' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_GetObject'> - <parameter type-id='type-id-3' name='str' filepath='Objects/bytesobject.c' line='128' column='1'/> + <parameter type-id='type-id-3' name='name' filepath='./Python/sysmodule.c' line='82' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PySys_GetObjectId' mangled-name='_PySys_GetObjectId' filepath='./Python/sysmodule.c' line='75' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_GetObjectId'> <parameter type-id='type-id-476' name='key' filepath='./Python/sysmodule.c' line='75' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyOS_vsnprintf' mangled-name='PyOS_vsnprintf' filepath='./Include/pyerrors.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPathConfig_ComputeSysPath0' mangled-name='_PyPathConfig_ComputeSysPath0' filepath='./Include/internal/pycore_pathconfig.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFile_NewStdPrinter' mangled-name='PyFile_NewStdPrinter' filepath='./Include/cpython/fileobject.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_gitversion' mangled-name='_Py_gitversion' filepath='./Include/cpython/pylifecycle.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_gitidentifier' mangled-name='_Py_gitidentifier' filepath='./Include/cpython/pylifecycle.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_GetPlatform' mangled-name='Py_GetPlatform' filepath='./Include/pylifecycle.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFloat_GetInfo' mangled-name='PyFloat_GetInfo' filepath='./Include/floatobject.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyLong_GetInfo' mangled-name='PyLong_GetInfo' filepath='./Include/longobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyHash_GetFuncDef' mangled-name='PyHash_GetFuncDef' filepath='./Include/pyhash.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyNamespace_New' mangled-name='_PyNamespace_New' filepath='./Include/namespaceobject.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_GetInfo' mangled-name='PyThread_GetInfo' filepath='./Include/pythread.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_SetAsyncGenFinalizer' mangled-name='_PyEval_SetAsyncGenFinalizer' filepath='./Include/cpython/ceval.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_SetAsyncGenFirstiter' mangled-name='_PyEval_SetAsyncGenFirstiter' filepath='./Include/cpython/ceval.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_SetProfile' mangled-name='_PyEval_SetProfile' filepath='./Include/cpython/ceval.h' line='10' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_SetTrace' mangled-name='_PyEval_SetTrace' filepath='./Include/cpython/ceval.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyErr_WriteUnraisableDefaultHook' mangled-name='_PyErr_WriteUnraisableDefaultHook' filepath='./Include/internal/pycore_pylifecycle.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_VaBuildValue_SizeT' mangled-name='_Py_VaBuildValue_SizeT' filepath='./Include/modsupport.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyType_ClearCache' mangled-name='PyType_ClearCache' filepath='./Include/object.h' line='237' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_DebugTypeStats' mangled-name='_PyObject_DebugTypeStats' filepath='./Include/cpython/object.h' line='393' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_CallTracing' mangled-name='_PyEval_CallTracing' filepath='./Include/eval.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyThread_CurrentFrames' mangled-name='_PyThread_CurrentFrames' filepath='./Include/cpython/pystate.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_GetAllocatedBlocks' mangled-name='_Py_GetAllocatedBlocks' filepath='./Include/cpython/objimpl.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_GetAsyncGenFirstiter' mangled-name='_PyEval_GetAsyncGenFirstiter' filepath='./Include/cpython/ceval.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_GetAsyncGenFinalizer' mangled-name='_PyEval_GetAsyncGenFinalizer' filepath='./Include/cpython/ceval.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_GetCoroutineOriginTrackingDepth' mangled-name='_PyEval_GetCoroutineOriginTrackingDepth' filepath='./Include/cpython/ceval.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_SetCoroutineOriginTrackingDepth' mangled-name='_PyEval_SetCoroutineOriginTrackingDepth' filepath='./Include/internal/pycore_ceval.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_GetSwitchInterval' mangled-name='_PyEval_GetSwitchInterval' filepath='./Include/cpython/ceval.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_SetSwitchInterval' mangled-name='_PyEval_SetSwitchInterval' filepath='./Include/cpython/ceval.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_SetRecursionLimit' mangled-name='Py_SetRecursionLimit' filepath='./Include/ceval.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/thread.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyThread_GetInfo' mangled-name='PyThread_GetInfo' filepath='Python/thread.c' line='167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_GetInfo'> <return type-id='type-id-100'/> </function-decl> - <pointer-type-def type-id='type-id-376' size-in-bits='64' id='type-id-680'/> + <pointer-type-def type-id='type-id-376' size-in-bits='64' id='type-id-683'/> <function-decl name='PyThread_tss_is_created' mangled-name='PyThread_tss_is_created' filepath='Python/thread.c' line='138' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_is_created'> - <parameter type-id='type-id-680' name='key' filepath='Python/thread.c' line='138' column='1'/> + <parameter type-id='type-id-683' name='key' filepath='Python/thread.c' line='138' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyThread_tss_free' mangled-name='PyThread_tss_free' filepath='Python/thread.c' line='129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_free'> - <parameter type-id='type-id-680' name='key' filepath='Python/thread.c' line='129' column='1'/> + <parameter type-id='type-id-683' name='key' filepath='Python/thread.c' line='129' column='1'/> <return type-id='type-id-4'/> </function-decl> <function-decl name='PyThread_tss_alloc' mangled-name='PyThread_tss_alloc' filepath='Python/thread.c' line='118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_alloc'> - <return type-id='type-id-680'/> + <return type-id='type-id-683'/> </function-decl> <function-decl name='PyThread_set_stacksize' mangled-name='PyThread_set_stacksize' filepath='Python/thread.c' line='102' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_set_stacksize'> <parameter type-id='type-id-191' name='size' filepath='Python/thread.c' line='102' column='1'/> @@ -12809,95 +16451,167 @@ <function-decl name='PyThread_get_stacksize' mangled-name='PyThread_get_stacksize' filepath='Python/thread.c' line='91' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_stacksize'> <return type-id='type-id-191'/> </function-decl> - <function-decl name='PyThread_tss_get' mangled-name='PyThread_tss_get' filepath='Python/thread_pthread.h' line='893' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_get'> - <parameter type-id='type-id-680' name='key' filepath='Python/thread_pthread.h' line='893' column='1'/> + <function-decl name='PyThread_tss_get' mangled-name='PyThread_tss_get' filepath='Python/thread_pthread.h' line='922' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_get'> + <parameter type-id='type-id-683' name='key' filepath='Python/thread_pthread.h' line='922' column='1'/> <return type-id='type-id-32'/> </function-decl> - <function-decl name='PyThread_tss_set' mangled-name='PyThread_tss_set' filepath='Python/thread_pthread.h' line='885' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_set'> - <parameter type-id='type-id-680' name='key' filepath='Python/thread_pthread.h' line='885' column='1'/> - <parameter type-id='type-id-32' name='value' filepath='Python/thread_pthread.h' line='885' column='1'/> + <function-decl name='PyThread_tss_set' mangled-name='PyThread_tss_set' filepath='Python/thread_pthread.h' line='914' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_set'> + <parameter type-id='type-id-683' name='key' filepath='Python/thread_pthread.h' line='914' column='1'/> + <parameter type-id='type-id-32' name='value' filepath='Python/thread_pthread.h' line='914' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyThread_tss_delete' mangled-name='PyThread_tss_delete' filepath='Python/thread_pthread.h' line='871' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_delete'> - <parameter type-id='type-id-680' name='key' filepath='Python/thread.c' line='129' column='1'/> - <return type-id='type-id-4'/> - </function-decl> - <function-decl name='PyThread_tss_create' mangled-name='PyThread_tss_create' filepath='Python/thread_pthread.h' line='854' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_create'> - <parameter type-id='type-id-680' name='key' filepath='Python/thread_pthread.h' line='854' column='1'/> + <function-decl name='PyThread_tss_create' mangled-name='PyThread_tss_create' filepath='Python/thread_pthread.h' line='883' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_create'> + <parameter type-id='type-id-683' name='key' filepath='Python/thread_pthread.h' line='883' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyThread_ReInitTLS' mangled-name='PyThread_ReInitTLS' filepath='Python/thread_pthread.h' line='843' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_ReInitTLS'> + <function-decl name='PyThread_ReInitTLS' mangled-name='PyThread_ReInitTLS' filepath='Python/thread_pthread.h' line='872' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_ReInitTLS'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyThread_get_key_value' mangled-name='PyThread_get_key_value' filepath='Python/thread_pthread.h' line='832' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_key_value'> - <parameter type-id='type-id-8' name='key' filepath='Python/thread_pthread.h' line='832' column='1'/> + <function-decl name='PyThread_get_key_value' mangled-name='PyThread_get_key_value' filepath='Python/thread_pthread.h' line='861' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_key_value'> + <parameter type-id='type-id-8' name='key' filepath='Python/thread_pthread.h' line='861' column='1'/> <return type-id='type-id-32'/> </function-decl> - <function-decl name='PyThread_set_key_value' mangled-name='PyThread_set_key_value' filepath='Python/thread_pthread.h' line='821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_set_key_value'> - <parameter type-id='type-id-8' name='key' filepath='Python/thread_pthread.h' line='821' column='1'/> - <parameter type-id='type-id-32' name='value' filepath='Python/thread_pthread.h' line='821' column='1'/> + <function-decl name='PyThread_set_key_value' mangled-name='PyThread_set_key_value' filepath='Python/thread_pthread.h' line='850' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_set_key_value'> + <parameter type-id='type-id-8' name='key' filepath='Python/thread_pthread.h' line='850' column='1'/> + <parameter type-id='type-id-32' name='value' filepath='Python/thread_pthread.h' line='850' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyThread_delete_key_value' mangled-name='PyThread_delete_key_value' filepath='Python/thread_pthread.h' line='813' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_delete_key_value'> - <parameter type-id='type-id-8' name='sts' filepath='Python/pylifecycle.c' line='2431' column='1'/> + <function-decl name='PyThread_delete_key_value' mangled-name='PyThread_delete_key_value' filepath='Python/thread_pthread.h' line='842' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_delete_key_value'> + <parameter type-id='type-id-8' name='key' filepath='Python/thread_pthread.h' line='842' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyThread_delete_key' mangled-name='PyThread_delete_key' filepath='Python/thread_pthread.h' line='805' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_delete_key'> - <parameter type-id='type-id-8' name='sts' filepath='Python/pylifecycle.c' line='2431' column='1'/> + <function-decl name='PyThread_delete_key' mangled-name='PyThread_delete_key' filepath='Python/thread_pthread.h' line='834' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_delete_key'> + <parameter type-id='type-id-8' name='key' filepath='Python/thread_pthread.h' line='842' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyThread_create_key' mangled-name='PyThread_create_key' filepath='Python/thread_pthread.h' line='785' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_create_key'> + <function-decl name='PyThread_create_key' mangled-name='PyThread_create_key' filepath='Python/thread_pthread.h' line='814' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_create_key'> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyThread_acquire_lock' mangled-name='PyThread_acquire_lock' filepath='Python/thread_pthread.h' line='718' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_acquire_lock'> - <parameter type-id='type-id-317' name='lock' filepath='Python/thread_pthread.h' line='718' column='1'/> - <parameter type-id='type-id-8' name='waitflag' filepath='Python/thread_pthread.h' line='718' column='1'/> + <function-decl name='PyThread_acquire_lock' mangled-name='PyThread_acquire_lock' filepath='Python/thread_pthread.h' line='747' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_acquire_lock'> + <parameter type-id='type-id-317' name='lock' filepath='Python/thread_pthread.h' line='747' column='1'/> + <parameter type-id='type-id-8' name='waitflag' filepath='Python/thread_pthread.h' line='747' column='1'/> <return type-id='type-id-8'/> </function-decl> - <pointer-type-def type-id='type-id-317' size-in-bits='64' id='type-id-681'/> - <function-decl name='_PyThread_at_fork_reinit' mangled-name='_PyThread_at_fork_reinit' filepath='Python/thread_pthread.h' line='698' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThread_at_fork_reinit'> - <parameter type-id='type-id-681' name='lock' filepath='Python/thread_pthread.h' line='698' column='1'/> + <pointer-type-def type-id='type-id-317' size-in-bits='64' id='type-id-684'/> + <function-decl name='_PyThread_at_fork_reinit' mangled-name='_PyThread_at_fork_reinit' filepath='Python/thread_pthread.h' line='727' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThread_at_fork_reinit'> + <parameter type-id='type-id-684' name='lock' filepath='Python/thread_pthread.h' line='727' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='PyThread_release_lock' mangled-name='PyThread_release_lock' filepath='Python/thread_pthread.h' line='524' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_release_lock'> - <parameter type-id='type-id-317' name='lock' filepath='Python/thread_pthread.h' line='524' column='1'/> + <function-decl name='PyThread_release_lock' mangled-name='PyThread_release_lock' filepath='Python/thread_pthread.h' line='553' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_release_lock'> + <parameter type-id='type-id-317' name='lock' filepath='Python/thread_pthread.h' line='553' column='1'/> <return type-id='type-id-4'/> </function-decl> - <enum-decl name='PyLockStatus' filepath='./Include/pythread.h' line='13' column='1' id='type-id-682'> + <enum-decl name='PyLockStatus' filepath='./Include/pythread.h' line='13' column='1' id='type-id-685'> <underlying-type type-id='type-id-23'/> <enumerator name='PY_LOCK_FAILURE' value='0'/> <enumerator name='PY_LOCK_ACQUIRED' value='1'/> <enumerator name='PY_LOCK_INTR' value='2'/> </enum-decl> - <typedef-decl name='PyLockStatus' type-id='type-id-682' filepath='./Include/pythread.h' line='17' column='1' id='type-id-683'/> - <function-decl name='PyThread_acquire_lock_timed' mangled-name='PyThread_acquire_lock_timed' filepath='Python/thread_pthread.h' line='427' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_acquire_lock_timed'> - <parameter type-id='type-id-317' name='lock' filepath='Python/thread_pthread.h' line='427' column='1'/> - <parameter type-id='type-id-362' name='microseconds' filepath='Python/thread_pthread.h' line='427' column='1'/> - <parameter type-id='type-id-8' name='intr_flag' filepath='Python/thread_pthread.h' line='428' column='1'/> - <return type-id='type-id-683'/> - </function-decl> - <function-decl name='PyThread_free_lock' mangled-name='PyThread_free_lock' filepath='Python/thread_pthread.h' line='397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_free_lock'> - <parameter type-id='type-id-317' name='lock' filepath='Python/thread_pthread.h' line='524' column='1'/> + <typedef-decl name='PyLockStatus' type-id='type-id-685' filepath='./Include/pythread.h' line='17' column='1' id='type-id-686'/> + <function-decl name='PyThread_acquire_lock_timed' mangled-name='PyThread_acquire_lock_timed' filepath='Python/thread_pthread.h' line='436' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_acquire_lock_timed'> + <parameter type-id='type-id-317' name='lock' filepath='Python/thread_pthread.h' line='436' column='1'/> + <parameter type-id='type-id-362' name='microseconds' filepath='Python/thread_pthread.h' line='436' column='1'/> + <parameter type-id='type-id-8' name='intr_flag' filepath='Python/thread_pthread.h' line='437' column='1'/> + <return type-id='type-id-686'/> + </function-decl> + <function-decl name='PyThread_free_lock' mangled-name='PyThread_free_lock' filepath='Python/thread_pthread.h' line='406' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_free_lock'> + <parameter type-id='type-id-317' name='lock' filepath='Python/thread_pthread.h' line='406' column='1'/> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyThread_allocate_lock' mangled-name='PyThread_allocate_lock' filepath='Python/thread_pthread.h' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_allocate_lock'> + <function-decl name='PyThread_allocate_lock' mangled-name='PyThread_allocate_lock' filepath='Python/thread_pthread.h' line='380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_allocate_lock'> <return type-id='type-id-317'/> </function-decl> - <function-decl name='PyThread_exit_thread' mangled-name='PyThread_exit_thread' filepath='Python/thread_pthread.h' line='356' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_exit_thread'> - <return type-id='type-id-4'/> - </function-decl> - <function-decl name='PyThread_get_thread_native_id' mangled-name='PyThread_get_thread_native_id' filepath='Python/thread_pthread.h' line='328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_thread_native_id'> + <function-decl name='PyThread_get_thread_native_id' mangled-name='PyThread_get_thread_native_id' filepath='Python/thread_pthread.h' line='337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_thread_native_id'> <return type-id='type-id-33'/> </function-decl> - <function-decl name='PyThread_get_thread_ident' mangled-name='PyThread_get_thread_ident' filepath='Python/thread_pthread.h' line='317' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_thread_ident'> + <function-decl name='PyThread_get_thread_ident' mangled-name='PyThread_get_thread_ident' filepath='Python/thread_pthread.h' line='326' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_thread_ident'> <return type-id='type-id-33'/> </function-decl> - <function-decl name='PyThread_start_new_thread' mangled-name='PyThread_start_new_thread' filepath='Python/thread_pthread.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_start_new_thread'> - <parameter type-id='type-id-188' name='func' filepath='Python/thread_pthread.h' line='241' column='1'/> - <parameter type-id='type-id-32' name='arg' filepath='Python/thread_pthread.h' line='241' column='1'/> + <function-decl name='PyThread_start_new_thread' mangled-name='PyThread_start_new_thread' filepath='Python/thread_pthread.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_start_new_thread'> + <parameter type-id='type-id-188' name='func' filepath='Python/thread_pthread.h' line='250' column='1'/> + <parameter type-id='type-id-32' name='arg' filepath='Python/thread_pthread.h' line='250' column='1'/> <return type-id='type-id-33'/> </function-decl> - <function-decl name='PyThread_init_thread' mangled-name='PyThread_init_thread' filepath='Python/thread.c' line='59' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_init_thread'> + <function-decl name='PyThread_tss_delete' mangled-name='PyThread_tss_delete' filepath='Python/thread_pthread.h' line='900' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_delete'> + <parameter type-id='type-id-683' name='key' filepath='Python/thread_pthread.h' line='900' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__confstr_alias' mangled-name='confstr' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='231' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_DecodeFSDefaultAndSize' mangled-name='PyUnicode_DecodeFSDefaultAndSize' filepath='./Include/unicodeobject.h' line='775' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_attr_init' mangled-name='pthread_attr_init' filepath='/usr/include/pthread.h' line='263' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_attr_setstacksize' mangled-name='pthread_attr_setstacksize' filepath='/usr/include/pthread.h' line='351' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_attr_destroy' mangled-name='pthread_attr_destroy' filepath='/usr/include/pthread.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_getspecific' mangled-name='pthread_getspecific' filepath='/usr/include/pthread.h' line='1131' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_setspecific' mangled-name='pthread_setspecific' filepath='/usr/include/pthread.h' line='1134' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_key_create' mangled-name='pthread_key_create' filepath='/usr/include/pthread.h' line='1123' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_key_delete' mangled-name='pthread_key_delete' filepath='/usr/include/pthread.h' line='1128' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sem_post' mangled-name='sem_post' filepath='/usr/include/semaphore.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='perror' mangled-name='perror' filepath='/usr/include/stdio.h' line='775' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sem_wait' mangled-name='sem_wait' filepath='/usr/include/semaphore.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sem_trywait' mangled-name='sem_trywait' filepath='/usr/include/semaphore.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sem_clockwait' mangled-name='sem_clockwait' filepath='/usr/include/semaphore.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sem_destroy' mangled-name='sem_destroy' filepath='/usr/include/semaphore.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sem_init' mangled-name='sem_init' filepath='/usr/include/semaphore.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_exit' mangled-name='pthread_exit' filepath='/usr/include/pthread.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='syscall' mangled-name='syscall' filepath='/usr/include/unistd.h' line='1056' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_self' mangled-name='pthread_self' filepath='/usr/include/pthread.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_attr_setscope' mangled-name='pthread_attr_setscope' filepath='/usr/include/pthread.h' line='327' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_create' mangled-name='pthread_create' filepath='/usr/include/pthread.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_detach' mangled-name='pthread_detach' filepath='/usr/include/pthread.h' line='247' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='gettimeofday' mangled-name='gettimeofday' filepath='/usr/include/x86_64-linux-gnu/sys/time.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_cond_init' mangled-name='pthread_cond_init' filepath='/usr/include/pthread.h' line='965' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_condattr_init' mangled-name='pthread_condattr_init' filepath='/usr/include/pthread.h' line='1020' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_condattr_setclock' mangled-name='pthread_condattr_setclock' filepath='/usr/include/pthread.h' line='1045' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> </abi-instr> @@ -12908,13 +16622,6 @@ <parameter type-id='type-id-100' name='f' filepath='Python/traceback.c' line='596' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_DisplaySourceLine' mangled-name='_Py_DisplaySourceLine' filepath='Python/traceback.c' line='372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DisplaySourceLine'> - <parameter type-id='type-id-100' name='f' filepath='Python/traceback.c' line='372' column='1'/> - <parameter type-id='type-id-100' name='filename' filepath='Python/traceback.c' line='372' column='1'/> - <parameter type-id='type-id-8' name='lineno' filepath='Python/traceback.c' line='372' column='1'/> - <parameter type-id='type-id-8' name='indent' filepath='Python/traceback.c' line='372' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='_PyTraceback_Add' mangled-name='_PyTraceback_Add' filepath='Python/traceback.c' line='257' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTraceback_Add'> <parameter type-id='type-id-3' name='funcname' filepath='Python/traceback.c' line='257' column='1'/> <parameter type-id='type-id-3' name='filename' filepath='Python/traceback.c' line='257' column='1'/> @@ -12925,6 +16632,40 @@ <parameter type-id='type-id-312' name='frame' filepath='Python/traceback.c' line='242' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='_Py_DisplaySourceLine' mangled-name='_Py_DisplaySourceLine' filepath='Python/traceback.c' line='372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DisplaySourceLine'> + <parameter type-id='type-id-100' name='f' filepath='Python/traceback.c' line='372' column='1'/> + <parameter type-id='type-id-100' name='filename' filepath='Python/traceback.c' line='372' column='1'/> + <parameter type-id='type-id-8' name='lineno' filepath='Python/traceback.c' line='372' column='1'/> + <parameter type-id='type-id-8' name='indent' filepath='Python/traceback.c' line='372' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='_Py_write_noraise' mangled-name='_Py_write_noraise' filepath='./Include/cpython/fileutils.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyInterpreterState_ThreadHead' mangled-name='PyInterpreterState_ThreadHead' filepath='./Include/cpython/pystate.h' line='181' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThreadState_Next' mangled-name='PyThreadState_Next' filepath='./Include/cpython/pystate.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGILState_GetInterpreterStateUnsafe' mangled-name='_PyGILState_GetInterpreterStateUnsafe' filepath='./Include/cpython/pystate.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCode_NewEmpty' mangled-name='PyCode_NewEmpty' filepath='./Include/cpython/code.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyFrame_New' mangled-name='PyFrame_New' filepath='./Include/cpython/frameobject.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__builtin___strcpy_chk' mangled-name='__strcpy_chk' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_AsFileDescriptor' mangled-name='PyObject_AsFileDescriptor' filepath='./Include/fileobject.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyTokenizer_FindEncodingFilename' mangled-name='PyTokenizer_FindEncodingFilename' filepath='Python/traceback.c' line='22' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/getopt.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='_PyOS_opterr' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_getopt.h' line='8' column='1'/> @@ -12953,14 +16694,14 @@ <parameter type-id='type-id-227' name='type' filepath='Python/pystrtod.c' line='1247' column='1'/> <return type-id='type-id-7'/> </function-decl> - <pointer-type-def type-id='type-id-684' size-in-bits='64' id='type-id-685'/> + <pointer-type-def type-id='type-id-687' size-in-bits='64' id='type-id-688'/> <function-decl name='_Py_string_to_number_with_underscores' mangled-name='_Py_string_to_number_with_underscores' filepath='Python/pystrtod.c' line='384' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_string_to_number_with_underscores'> <parameter type-id='type-id-3' name='s' filepath='Python/pystrtod.c' line='385' column='1'/> <parameter type-id='type-id-15' name='orig_len' filepath='Python/pystrtod.c' line='385' column='1'/> <parameter type-id='type-id-3' name='what' filepath='Python/pystrtod.c' line='385' column='1'/> <parameter type-id='type-id-100' name='obj' filepath='Python/pystrtod.c' line='385' column='1'/> <parameter type-id='type-id-32' name='arg' filepath='Python/pystrtod.c' line='385' column='1'/> - <parameter type-id='type-id-685' name='innerfunc' filepath='Python/pystrtod.c' line='386' column='1'/> + <parameter type-id='type-id-688' name='innerfunc' filepath='Python/pystrtod.c' line='386' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='PyOS_string_to_double' mangled-name='PyOS_string_to_double' filepath='Python/pystrtod.c' line='338' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_string_to_double'> @@ -12974,7 +16715,7 @@ <parameter type-id='type-id-304' name='endptr' filepath='Python/pystrtod.c' line='29' column='1'/> <return type-id='type-id-441'/> </function-decl> - <function-type size-in-bits='64' id='type-id-684'> + <function-type size-in-bits='64' id='type-id-687'> <parameter type-id='type-id-3'/> <parameter type-id='type-id-15'/> <parameter type-id='type-id-32'/> @@ -12982,20 +16723,20 @@ </function-type> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/pystrhex.c' comp-dir-path='/src' language='LANG_C99'> - <qualified-type-def type-id='type-id-110' const='yes' id='type-id-686'/> - <pointer-type-def type-id='type-id-686' size-in-bits='64' id='type-id-687'/> + <qualified-type-def type-id='type-id-110' const='yes' id='type-id-689'/> + <pointer-type-def type-id='type-id-689' size-in-bits='64' id='type-id-690'/> <function-decl name='_Py_strhex_bytes_with_sep' mangled-name='_Py_strhex_bytes_with_sep' filepath='Python/pystrhex.c' line='169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex_bytes_with_sep'> <parameter type-id='type-id-3' name='argbuf' filepath='Python/pystrhex.c' line='169' column='1'/> <parameter type-id='type-id-281' name='arglen' filepath='Python/pystrhex.c' line='169' column='1'/> - <parameter type-id='type-id-687' name='sep' filepath='Python/pystrhex.c' line='169' column='1'/> - <parameter type-id='type-id-631' name='bytes_per_group' filepath='Python/pystrhex.c' line='169' column='1'/> + <parameter type-id='type-id-690' name='sep' filepath='Python/pystrhex.c' line='169' column='1'/> + <parameter type-id='type-id-634' name='bytes_per_group' filepath='Python/pystrhex.c' line='169' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_Py_strhex_with_sep' mangled-name='_Py_strhex_with_sep' filepath='Python/pystrhex.c' line='162' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex_with_sep'> <parameter type-id='type-id-3' name='argbuf' filepath='Python/pystrhex.c' line='169' column='1'/> <parameter type-id='type-id-281' name='arglen' filepath='Python/pystrhex.c' line='169' column='1'/> - <parameter type-id='type-id-687' name='sep' filepath='Python/pystrhex.c' line='169' column='1'/> - <parameter type-id='type-id-631' name='bytes_per_group' filepath='Python/pystrhex.c' line='169' column='1'/> + <parameter type-id='type-id-690' name='sep' filepath='Python/pystrhex.c' line='169' column='1'/> + <parameter type-id='type-id-634' name='bytes_per_group' filepath='Python/pystrhex.c' line='169' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_Py_strhex_bytes' mangled-name='_Py_strhex_bytes' filepath='Python/pystrhex.c' line='155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex_bytes'> @@ -13038,41 +16779,62 @@ </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/formatter_unicode.c' comp-dir-path='/src' language='LANG_C99'> - <function-decl name='_PyComplex_FormatAdvancedWriter' mangled-name='_PyComplex_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1559' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyComplex_FormatAdvancedWriter'> - <parameter type-id='type-id-475' name='writer' filepath='Python/formatter_unicode.c' line='1559' column='1'/> - <parameter type-id='type-id-100' name='obj' filepath='Python/formatter_unicode.c' line='1560' column='1'/> - <parameter type-id='type-id-100' name='format_spec' filepath='Python/formatter_unicode.c' line='1561' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Python/formatter_unicode.c' line='1562' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Python/formatter_unicode.c' line='1562' column='1'/> + <function-decl name='_PyComplex_FormatAdvancedWriter' mangled-name='_PyComplex_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1565' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyComplex_FormatAdvancedWriter'> + <parameter type-id='type-id-475' name='writer' filepath='Python/formatter_unicode.c' line='1565' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Python/formatter_unicode.c' line='1566' column='1'/> + <parameter type-id='type-id-100' name='format_spec' filepath='Python/formatter_unicode.c' line='1567' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Python/formatter_unicode.c' line='1568' column='1'/> + <parameter type-id='type-id-15' name='end' filepath='Python/formatter_unicode.c' line='1568' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyFloat_FormatAdvancedWriter' mangled-name='_PyFloat_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_FormatAdvancedWriter'> - <parameter type-id='type-id-475' name='writer' filepath='Python/formatter_unicode.c' line='1559' column='1'/> - <parameter type-id='type-id-100' name='obj' filepath='Python/formatter_unicode.c' line='1560' column='1'/> - <parameter type-id='type-id-100' name='format_spec' filepath='Python/formatter_unicode.c' line='1561' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Python/formatter_unicode.c' line='1562' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Python/formatter_unicode.c' line='1562' column='1'/> + <function-decl name='_PyFloat_FormatAdvancedWriter' mangled-name='_PyFloat_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1526' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_FormatAdvancedWriter'> + <parameter type-id='type-id-475' name='writer' filepath='Python/formatter_unicode.c' line='1565' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Python/formatter_unicode.c' line='1566' column='1'/> + <parameter type-id='type-id-100' name='format_spec' filepath='Python/formatter_unicode.c' line='1567' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Python/formatter_unicode.c' line='1568' column='1'/> + <parameter type-id='type-id-15' name='end' filepath='Python/formatter_unicode.c' line='1568' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyLong_FormatAdvancedWriter' mangled-name='_PyLong_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1458' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FormatAdvancedWriter'> - <parameter type-id='type-id-475' name='writer' filepath='Python/formatter_unicode.c' line='1458' column='1'/> - <parameter type-id='type-id-100' name='obj' filepath='Python/formatter_unicode.c' line='1459' column='1'/> - <parameter type-id='type-id-100' name='format_spec' filepath='Python/formatter_unicode.c' line='1460' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Python/formatter_unicode.c' line='1461' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Python/formatter_unicode.c' line='1461' column='1'/> + <function-decl name='_PyLong_FormatAdvancedWriter' mangled-name='_PyLong_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1464' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FormatAdvancedWriter'> + <parameter type-id='type-id-475' name='writer' filepath='Python/formatter_unicode.c' line='1464' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Python/formatter_unicode.c' line='1465' column='1'/> + <parameter type-id='type-id-100' name='format_spec' filepath='Python/formatter_unicode.c' line='1466' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Python/formatter_unicode.c' line='1467' column='1'/> + <parameter type-id='type-id-15' name='end' filepath='Python/formatter_unicode.c' line='1467' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyUnicode_FormatAdvancedWriter' mangled-name='_PyUnicode_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1422' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FormatAdvancedWriter'> - <parameter type-id='type-id-475' name='writer' filepath='Python/formatter_unicode.c' line='1559' column='1'/> - <parameter type-id='type-id-100' name='obj' filepath='Python/formatter_unicode.c' line='1560' column='1'/> - <parameter type-id='type-id-100' name='format_spec' filepath='Python/formatter_unicode.c' line='1561' column='1'/> - <parameter type-id='type-id-15' name='start' filepath='Python/formatter_unicode.c' line='1562' column='1'/> - <parameter type-id='type-id-15' name='end' filepath='Python/formatter_unicode.c' line='1562' column='1'/> + <function-decl name='_PyUnicode_FormatAdvancedWriter' mangled-name='_PyUnicode_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1428' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FormatAdvancedWriter'> + <parameter type-id='type-id-475' name='writer' filepath='Python/formatter_unicode.c' line='1565' column='1'/> + <parameter type-id='type-id-100' name='obj' filepath='Python/formatter_unicode.c' line='1566' column='1'/> + <parameter type-id='type-id-100' name='format_spec' filepath='Python/formatter_unicode.c' line='1567' column='1'/> + <parameter type-id='type-id-15' name='start' filepath='Python/formatter_unicode.c' line='1568' column='1'/> + <parameter type-id='type-id-15' name='end' filepath='Python/formatter_unicode.c' line='1568' column='1'/> <return type-id='type-id-8'/> </function-decl> + <function-decl name='_PyUnicode_FastFill' mangled-name='_PyUnicode_FastFill' filepath='./Include/cpython/unicodeobject.h' line='535' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_FindMaxChar' mangled-name='_PyUnicode_FindMaxChar' filepath='./Include/cpython/unicodeobject.h' line='571' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_FastCopyCharacters' mangled-name='_PyUnicode_FastCopyCharacters' filepath='./Include/cpython/unicodeobject.h' line='510' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='localeconv' mangled-name='localeconv' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_GetLocaleconvNumeric' mangled-name='_Py_GetLocaleconvNumeric' filepath='./Include/internal/pycore_fileutils.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyMem_Strdup' mangled-name='_PyMem_Strdup' filepath='./Include/cpython/pymem.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_InsertThousandsGrouping' mangled-name='_PyUnicode_InsertThousandsGrouping' filepath='./Include/cpython/unicodeobject.h' line='1047' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Python/fileutils.c' comp-dir-path='/src' language='LANG_C99'> - <class-decl name='lconv' size-in-bits='768' is-struct='yes' visibility='default' filepath='/usr/include/locale.h' line='51' column='1' id='type-id-688'> + <class-decl name='lconv' size-in-bits='768' is-struct='yes' visibility='default' filepath='/usr/include/locale.h' line='51' column='1' id='type-id-691'> <data-member access='public' layout-offset-in-bits='0'> <var-decl name='decimal_point' type-id='type-id-7' visibility='default' filepath='/usr/include/locale.h' line='55' column='1'/> </data-member> @@ -13146,238 +16908,315 @@ <var-decl name='int_n_sign_posn' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='109' column='1'/> </data-member> </class-decl> - <pointer-type-def type-id='type-id-688' size-in-bits='64' id='type-id-689'/> - <function-decl name='_Py_GetLocaleconvNumeric' mangled-name='_Py_GetLocaleconvNumeric' filepath='Python/fileutils.c' line='2082' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetLocaleconvNumeric'> - <parameter type-id='type-id-689' name='lc' filepath='Python/fileutils.c' line='2082' column='1'/> - <parameter type-id='type-id-303' name='decimal_point' filepath='Python/fileutils.c' line='2083' column='1'/> - <parameter type-id='type-id-303' name='thousands_sep' filepath='Python/fileutils.c' line='2083' column='1'/> + <pointer-type-def type-id='type-id-691' size-in-bits='64' id='type-id-692'/> + <function-decl name='_Py_GetLocaleconvNumeric' mangled-name='_Py_GetLocaleconvNumeric' filepath='Python/fileutils.c' line='2201' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetLocaleconvNumeric'> + <parameter type-id='type-id-692' name='lc' filepath='Python/fileutils.c' line='2201' column='1'/> + <parameter type-id='type-id-303' name='decimal_point' filepath='Python/fileutils.c' line='2202' column='1'/> + <parameter type-id='type-id-303' name='thousands_sep' filepath='Python/fileutils.c' line='2202' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_set_blocking' mangled-name='_Py_set_blocking' filepath='Python/fileutils.c' line='2046' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_blocking'> - <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='2046' column='1'/> - <parameter type-id='type-id-8' name='blocking' filepath='Python/fileutils.c' line='2046' column='1'/> + <function-decl name='_Py_set_blocking' mangled-name='_Py_set_blocking' filepath='Python/fileutils.c' line='2165' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_blocking'> + <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='2165' column='1'/> + <parameter type-id='type-id-8' name='blocking' filepath='Python/fileutils.c' line='2165' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_get_blocking' mangled-name='_Py_get_blocking' filepath='Python/fileutils.c' line='2025' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_blocking'> - <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='2025' column='1'/> + <function-decl name='_Py_get_blocking' mangled-name='_Py_get_blocking' filepath='Python/fileutils.c' line='2144' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_blocking'> + <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='2144' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_dup' mangled-name='_Py_dup' filepath='Python/fileutils.c' line='1955' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dup'> - <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1955' column='1'/> + <function-decl name='_Py_dup' mangled-name='_Py_dup' filepath='Python/fileutils.c' line='2074' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dup'> + <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='2074' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_wgetcwd' mangled-name='_Py_wgetcwd' filepath='Python/fileutils.c' line='1923' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wgetcwd'> - <parameter type-id='type-id-403' name='buf' filepath='Python/fileutils.c' line='1923' column='1'/> - <parameter type-id='type-id-191' name='buflen' filepath='Python/fileutils.c' line='1923' column='1'/> + <function-decl name='_Py_wgetcwd' mangled-name='_Py_wgetcwd' filepath='Python/fileutils.c' line='2042' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wgetcwd'> + <parameter type-id='type-id-403' name='buf' filepath='Python/fileutils.c' line='2042' column='1'/> + <parameter type-id='type-id-191' name='buflen' filepath='Python/fileutils.c' line='2042' column='1'/> <return type-id='type-id-403'/> </function-decl> - <function-decl name='_Py_abspath' mangled-name='_Py_abspath' filepath='Python/fileutils.c' line='1836' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_abspath'> - <parameter type-id='type-id-501' name='path' filepath='Python/fileutils.c' line='1836' column='1'/> - <parameter type-id='type-id-407' name='abspath_p' filepath='Python/fileutils.c' line='1836' column='1'/> + <function-decl name='_Py_abspath' mangled-name='_Py_abspath' filepath='Python/fileutils.c' line='1955' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_abspath'> + <parameter type-id='type-id-501' name='path' filepath='Python/fileutils.c' line='1955' column='1'/> + <parameter type-id='type-id-407' name='abspath_p' filepath='Python/fileutils.c' line='1955' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_isabs' mangled-name='_Py_isabs' filepath='Python/fileutils.c' line='1823' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_isabs'> - <parameter type-id='type-id-501' name='path' filepath='Python/fileutils.c' line='1823' column='1'/> + <function-decl name='_Py_isabs' mangled-name='_Py_isabs' filepath='Python/fileutils.c' line='1942' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_isabs'> + <parameter type-id='type-id-501' name='path' filepath='Python/fileutils.c' line='1942' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_wrealpath' mangled-name='_Py_wrealpath' filepath='Python/fileutils.c' line='1785' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wrealpath'> - <parameter type-id='type-id-501' name='path' filepath='Python/fileutils.c' line='1785' column='1'/> - <parameter type-id='type-id-403' name='resolved_path' filepath='Python/fileutils.c' line='1786' column='1'/> - <parameter type-id='type-id-191' name='resolved_path_len' filepath='Python/fileutils.c' line='1786' column='1'/> + <function-decl name='_Py_wrealpath' mangled-name='_Py_wrealpath' filepath='Python/fileutils.c' line='1904' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wrealpath'> + <parameter type-id='type-id-501' name='path' filepath='Python/fileutils.c' line='1904' column='1'/> + <parameter type-id='type-id-403' name='resolved_path' filepath='Python/fileutils.c' line='1905' column='1'/> + <parameter type-id='type-id-191' name='resolved_path_len' filepath='Python/fileutils.c' line='1905' column='1'/> <return type-id='type-id-403'/> </function-decl> - <function-decl name='_Py_wreadlink' mangled-name='_Py_wreadlink' filepath='Python/fileutils.c' line='1736' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wreadlink'> - <parameter type-id='type-id-501' name='path' filepath='Python/fileutils.c' line='1736' column='1'/> - <parameter type-id='type-id-403' name='buf' filepath='Python/fileutils.c' line='1736' column='1'/> - <parameter type-id='type-id-191' name='buflen' filepath='Python/fileutils.c' line='1736' column='1'/> + <function-decl name='_Py_wreadlink' mangled-name='_Py_wreadlink' filepath='Python/fileutils.c' line='1855' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wreadlink'> + <parameter type-id='type-id-501' name='path' filepath='Python/fileutils.c' line='1855' column='1'/> + <parameter type-id='type-id-403' name='buf' filepath='Python/fileutils.c' line='1855' column='1'/> + <parameter type-id='type-id-191' name='buflen' filepath='Python/fileutils.c' line='1855' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_write_noraise' mangled-name='_Py_write_noraise' filepath='Python/fileutils.c' line='1723' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_write_noraise'> - <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1723' column='1'/> - <parameter type-id='type-id-32' name='buf' filepath='Python/fileutils.c' line='1723' column='1'/> - <parameter type-id='type-id-191' name='count' filepath='Python/fileutils.c' line='1723' column='1'/> + <function-decl name='_Py_write_noraise' mangled-name='_Py_write_noraise' filepath='Python/fileutils.c' line='1842' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_write_noraise'> + <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1842' column='1'/> + <parameter type-id='type-id-32' name='buf' filepath='Python/fileutils.c' line='1842' column='1'/> + <parameter type-id='type-id-191' name='count' filepath='Python/fileutils.c' line='1842' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='_Py_write' mangled-name='_Py_write' filepath='Python/fileutils.c' line='1703' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_write'> - <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1723' column='1'/> - <parameter type-id='type-id-32' name='buf' filepath='Python/fileutils.c' line='1723' column='1'/> - <parameter type-id='type-id-191' name='count' filepath='Python/fileutils.c' line='1723' column='1'/> + <function-decl name='_Py_write' mangled-name='_Py_write' filepath='Python/fileutils.c' line='1822' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_write'> + <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1822' column='1'/> + <parameter type-id='type-id-32' name='buf' filepath='Python/fileutils.c' line='1822' column='1'/> + <parameter type-id='type-id-191' name='count' filepath='Python/fileutils.c' line='1822' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='_Py_read' mangled-name='_Py_read' filepath='Python/fileutils.c' line='1574' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_read'> - <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1574' column='1'/> - <parameter type-id='type-id-32' name='buf' filepath='Python/fileutils.c' line='1574' column='1'/> - <parameter type-id='type-id-191' name='count' filepath='Python/fileutils.c' line='1574' column='1'/> + <function-decl name='_Py_read' mangled-name='_Py_read' filepath='Python/fileutils.c' line='1683' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_read'> + <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1683' column='1'/> + <parameter type-id='type-id-32' name='buf' filepath='Python/fileutils.c' line='1683' column='1'/> + <parameter type-id='type-id-191' name='count' filepath='Python/fileutils.c' line='1683' column='1'/> <return type-id='type-id-15'/> </function-decl> - <function-decl name='_Py_fopen_obj' mangled-name='_Py_fopen_obj' filepath='Python/fileutils.c' line='1481' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fopen_obj'> - <parameter type-id='type-id-100' name='path' filepath='Python/fileutils.c' line='1481' column='1'/> - <parameter type-id='type-id-3' name='mode' filepath='Python/fileutils.c' line='1481' column='1'/> + <function-decl name='_Py_fopen_obj' mangled-name='_Py_fopen_obj' filepath='Python/fileutils.c' line='1590' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fopen_obj'> + <parameter type-id='type-id-100' name='path' filepath='Python/fileutils.c' line='1590' column='1'/> + <parameter type-id='type-id-3' name='mode' filepath='Python/fileutils.c' line='1590' column='1'/> <return type-id='type-id-223'/> </function-decl> - <function-decl name='_Py_fopen' mangled-name='_Py_fopen' filepath='Python/fileutils.c' line='1445' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fopen'> - <parameter type-id='type-id-3' name='pathname' filepath='Python/fileutils.c' line='1445' column='1'/> - <parameter type-id='type-id-3' name='mode' filepath='Python/fileutils.c' line='1445' column='1'/> + <function-decl name='_Py_fopen' mangled-name='_Py_fopen' filepath='Python/fileutils.c' line='1554' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fopen'> + <parameter type-id='type-id-3' name='pathname' filepath='Python/fileutils.c' line='1554' column='1'/> + <parameter type-id='type-id-3' name='mode' filepath='Python/fileutils.c' line='1554' column='1'/> <return type-id='type-id-223'/> </function-decl> - <function-decl name='_Py_wfopen' mangled-name='_Py_wfopen' filepath='Python/fileutils.c' line='1406' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wfopen'> - <parameter type-id='type-id-501' name='path' filepath='Python/fileutils.c' line='1406' column='1'/> - <parameter type-id='type-id-501' name='mode' filepath='Python/fileutils.c' line='1406' column='1'/> + <function-decl name='_Py_wfopen' mangled-name='_Py_wfopen' filepath='Python/fileutils.c' line='1515' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wfopen'> + <parameter type-id='type-id-501' name='path' filepath='Python/fileutils.c' line='1515' column='1'/> + <parameter type-id='type-id-501' name='mode' filepath='Python/fileutils.c' line='1515' column='1'/> <return type-id='type-id-223'/> </function-decl> - <function-decl name='_Py_open_noraise' mangled-name='_Py_open_noraise' filepath='Python/fileutils.c' line='1394' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_open_noraise'> - <parameter type-id='type-id-3' name='pathname' filepath='Python/fileutils.c' line='1394' column='1'/> - <parameter type-id='type-id-8' name='flags' filepath='Python/fileutils.c' line='1394' column='1'/> + <function-decl name='_Py_open_noraise' mangled-name='_Py_open_noraise' filepath='Python/fileutils.c' line='1503' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_open_noraise'> + <parameter type-id='type-id-3' name='pathname' filepath='Python/fileutils.c' line='1503' column='1'/> + <parameter type-id='type-id-8' name='flags' filepath='Python/fileutils.c' line='1503' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_open' mangled-name='_Py_open' filepath='Python/fileutils.c' line='1380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_open'> - <parameter type-id='type-id-3' name='pathname' filepath='Python/fileutils.c' line='1394' column='1'/> - <parameter type-id='type-id-8' name='flags' filepath='Python/fileutils.c' line='1394' column='1'/> + <function-decl name='_Py_open' mangled-name='_Py_open' filepath='Python/fileutils.c' line='1489' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_open'> + <parameter type-id='type-id-3' name='pathname' filepath='Python/fileutils.c' line='1503' column='1'/> + <parameter type-id='type-id-8' name='flags' filepath='Python/fileutils.c' line='1503' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_set_inheritable_async_safe' mangled-name='_Py_set_inheritable_async_safe' filepath='Python/fileutils.c' line='1303' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_inheritable_async_safe'> - <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1303' column='1'/> - <parameter type-id='type-id-8' name='inheritable' filepath='Python/fileutils.c' line='1303' column='1'/> - <parameter type-id='type-id-227' name='atomic_flag_works' filepath='Python/fileutils.c' line='1303' column='1'/> + <function-decl name='_Py_set_inheritable_async_safe' mangled-name='_Py_set_inheritable_async_safe' filepath='Python/fileutils.c' line='1412' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_inheritable_async_safe'> + <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1412' column='1'/> + <parameter type-id='type-id-8' name='inheritable' filepath='Python/fileutils.c' line='1412' column='1'/> + <parameter type-id='type-id-227' name='atomic_flag_works' filepath='Python/fileutils.c' line='1412' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_set_inheritable' mangled-name='_Py_set_inheritable' filepath='Python/fileutils.c' line='1294' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_inheritable'> - <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1303' column='1'/> - <parameter type-id='type-id-8' name='inheritable' filepath='Python/fileutils.c' line='1303' column='1'/> - <parameter type-id='type-id-227' name='atomic_flag_works' filepath='Python/fileutils.c' line='1303' column='1'/> + <function-decl name='_Py_set_inheritable' mangled-name='_Py_set_inheritable' filepath='Python/fileutils.c' line='1403' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_inheritable'> + <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1412' column='1'/> + <parameter type-id='type-id-8' name='inheritable' filepath='Python/fileutils.c' line='1412' column='1'/> + <parameter type-id='type-id-227' name='atomic_flag_works' filepath='Python/fileutils.c' line='1412' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_get_inheritable' mangled-name='_Py_get_inheritable' filepath='Python/fileutils.c' line='1127' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_inheritable'> - <parameter type-id='type-id-8' name='c1' filepath='Parser/token.c' line='78' column='1'/> + <function-decl name='_Py_get_inheritable' mangled-name='_Py_get_inheritable' filepath='Python/fileutils.c' line='1235' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_inheritable'> + <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1235' column='1'/> <return type-id='type-id-8'/> </function-decl> - <class-decl name='stat' size-in-bits='1152' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='46' column='1' id='type-id-690'> + <class-decl name='stat' size-in-bits='1152' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='46' column='1' id='type-id-693'> <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='st_dev' type-id='type-id-691' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='48' column='1'/> + <var-decl name='st_dev' type-id='type-id-694' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='48' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='64'> - <var-decl name='st_ino' type-id='type-id-692' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='53' column='1'/> + <var-decl name='st_ino' type-id='type-id-695' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='53' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='128'> - <var-decl name='st_nlink' type-id='type-id-693' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='61' column='1'/> + <var-decl name='st_nlink' type-id='type-id-696' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='61' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='192'> - <var-decl name='st_mode' type-id='type-id-694' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='62' column='1'/> + <var-decl name='st_mode' type-id='type-id-697' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='62' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='224'> - <var-decl name='st_uid' type-id='type-id-695' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='64' column='1'/> + <var-decl name='st_uid' type-id='type-id-698' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='64' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='256'> - <var-decl name='st_gid' type-id='type-id-696' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='65' column='1'/> + <var-decl name='st_gid' type-id='type-id-699' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='65' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='288'> <var-decl name='__pad0' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='67' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='320'> - <var-decl name='st_rdev' type-id='type-id-691' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='69' column='1'/> + <var-decl name='st_rdev' type-id='type-id-694' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='69' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='384'> <var-decl name='st_size' type-id='type-id-208' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='74' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='448'> - <var-decl name='st_blksize' type-id='type-id-697' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='78' column='1'/> + <var-decl name='st_blksize' type-id='type-id-700' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='78' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='512'> - <var-decl name='st_blocks' type-id='type-id-698' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='80' column='1'/> + <var-decl name='st_blocks' type-id='type-id-701' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='80' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='576'> - <var-decl name='st_atim' type-id='type-id-668' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='91' column='1'/> + <var-decl name='st_atim' type-id='type-id-671' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='91' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='704'> - <var-decl name='st_mtim' type-id='type-id-668' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='92' column='1'/> + <var-decl name='st_mtim' type-id='type-id-671' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='92' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='832'> - <var-decl name='st_ctim' type-id='type-id-668' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='93' column='1'/> + <var-decl name='st_ctim' type-id='type-id-671' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='93' column='1'/> </data-member> <data-member access='public' layout-offset-in-bits='960'> - <var-decl name='__glibc_reserved' type-id='type-id-699' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='106' column='1'/> + <var-decl name='__glibc_reserved' type-id='type-id-702' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='106' column='1'/> </data-member> </class-decl> - <typedef-decl name='__dev_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='145' column='1' id='type-id-691'/> - <typedef-decl name='__ino_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='148' column='1' id='type-id-692'/> - <typedef-decl name='__nlink_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='151' column='1' id='type-id-693'/> - <typedef-decl name='__mode_t' type-id='type-id-107' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='150' column='1' id='type-id-694'/> - <typedef-decl name='__uid_t' type-id='type-id-107' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='146' column='1' id='type-id-695'/> - <typedef-decl name='__gid_t' type-id='type-id-107' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='147' column='1' id='type-id-696'/> - <typedef-decl name='__blksize_t' type-id='type-id-12' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='174' column='1' id='type-id-697'/> - <typedef-decl name='__blkcnt_t' type-id='type-id-12' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='179' column='1' id='type-id-698'/> + <typedef-decl name='__dev_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='145' column='1' id='type-id-694'/> + <typedef-decl name='__ino_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='148' column='1' id='type-id-695'/> + <typedef-decl name='__nlink_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='151' column='1' id='type-id-696'/> + <typedef-decl name='__mode_t' type-id='type-id-107' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='150' column='1' id='type-id-697'/> + <typedef-decl name='__uid_t' type-id='type-id-107' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='146' column='1' id='type-id-698'/> + <typedef-decl name='__gid_t' type-id='type-id-107' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='147' column='1' id='type-id-699'/> + <typedef-decl name='__blksize_t' type-id='type-id-12' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='174' column='1' id='type-id-700'/> + <typedef-decl name='__blkcnt_t' type-id='type-id-12' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='179' column='1' id='type-id-701'/> - <array-type-def dimensions='1' type-id='type-id-669' size-in-bits='192' id='type-id-699'> + <array-type-def dimensions='1' type-id='type-id-672' size-in-bits='192' id='type-id-702'> <subrange length='3' type-id='type-id-33' id='type-id-397'/> </array-type-def> - <pointer-type-def type-id='type-id-690' size-in-bits='64' id='type-id-700'/> - <function-decl name='_Py_stat' mangled-name='_Py_stat' filepath='Python/fileutils.c' line='1046' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_stat'> - <parameter type-id='type-id-100' name='path' filepath='Python/fileutils.c' line='1046' column='1'/> - <parameter type-id='type-id-700' name='statbuf' filepath='Python/fileutils.c' line='1046' column='1'/> + <pointer-type-def type-id='type-id-693' size-in-bits='64' id='type-id-703'/> + <function-decl name='_Py_stat' mangled-name='_Py_stat' filepath='Python/fileutils.c' line='1154' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_stat'> + <parameter type-id='type-id-100' name='path' filepath='Python/fileutils.c' line='1154' column='1'/> + <parameter type-id='type-id-703' name='statbuf' filepath='Python/fileutils.c' line='1154' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_fstat' mangled-name='_Py_fstat' filepath='Python/fileutils.c' line='1018' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fstat'> - <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1018' column='1'/> - <parameter type-id='type-id-700' name='status' filepath='Python/fileutils.c' line='1018' column='1'/> + <function-decl name='_Py_fstat' mangled-name='_Py_fstat' filepath='Python/fileutils.c' line='1126' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fstat'> + <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1126' column='1'/> + <parameter type-id='type-id-703' name='status' filepath='Python/fileutils.c' line='1126' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_fstat_noraise' mangled-name='_Py_fstat_noraise' filepath='Python/fileutils.c' line='949' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fstat_noraise'> - <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='949' column='1'/> - <parameter type-id='type-id-700' name='status' filepath='Python/fileutils.c' line='949' column='1'/> + <function-decl name='_Py_fstat_noraise' mangled-name='_Py_fstat_noraise' filepath='Python/fileutils.c' line='1057' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fstat_noraise'> + <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1057' column='1'/> + <parameter type-id='type-id-703' name='status' filepath='Python/fileutils.c' line='1057' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_EncodeLocaleEx' mangled-name='_Py_EncodeLocaleEx' filepath='Python/fileutils.c' line='854' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeLocaleEx'> - <parameter type-id='type-id-501' name='text' filepath='Python/fileutils.c' line='854' column='1'/> - <parameter type-id='type-id-304' name='str' filepath='Python/fileutils.c' line='854' column='1'/> - <parameter type-id='type-id-540' name='error_pos' filepath='Python/fileutils.c' line='855' column='1'/> - <parameter type-id='type-id-286' name='reason' filepath='Python/fileutils.c' line='855' column='1'/> - <parameter type-id='type-id-8' name='current_locale' filepath='Python/fileutils.c' line='856' column='1'/> - <parameter type-id='type-id-400' name='errors' filepath='Python/fileutils.c' line='856' column='1'/> + <function-decl name='_Py_EncodeLocaleEx' mangled-name='_Py_EncodeLocaleEx' filepath='Python/fileutils.c' line='866' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeLocaleEx'> + <parameter type-id='type-id-501' name='text' filepath='Python/fileutils.c' line='866' column='1'/> + <parameter type-id='type-id-304' name='str' filepath='Python/fileutils.c' line='866' column='1'/> + <parameter type-id='type-id-540' name='error_pos' filepath='Python/fileutils.c' line='867' column='1'/> + <parameter type-id='type-id-284' name='reason' filepath='Python/fileutils.c' line='867' column='1'/> + <parameter type-id='type-id-8' name='current_locale' filepath='Python/fileutils.c' line='868' column='1'/> + <parameter type-id='type-id-400' name='errors' filepath='Python/fileutils.c' line='868' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_EncodeLocaleRaw' mangled-name='_Py_EncodeLocaleRaw' filepath='Python/fileutils.c' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeLocaleRaw'> - <parameter type-id='type-id-501' name='text' filepath='Python/fileutils.c' line='847' column='1'/> - <parameter type-id='type-id-540' name='error_pos' filepath='Python/fileutils.c' line='847' column='1'/> + <function-decl name='_Py_EncodeLocaleRaw' mangled-name='_Py_EncodeLocaleRaw' filepath='Python/fileutils.c' line='859' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeLocaleRaw'> + <parameter type-id='type-id-501' name='text' filepath='Python/fileutils.c' line='859' column='1'/> + <parameter type-id='type-id-540' name='error_pos' filepath='Python/fileutils.c' line='859' column='1'/> <return type-id='type-id-7'/> </function-decl> - <function-decl name='Py_EncodeLocale' mangled-name='Py_EncodeLocale' filepath='Python/fileutils.c' line='838' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_EncodeLocale'> - <parameter type-id='type-id-501' name='text' filepath='Python/fileutils.c' line='847' column='1'/> - <parameter type-id='type-id-540' name='error_pos' filepath='Python/fileutils.c' line='847' column='1'/> + <function-decl name='Py_EncodeLocale' mangled-name='Py_EncodeLocale' filepath='Python/fileutils.c' line='850' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_EncodeLocale'> + <parameter type-id='type-id-501' name='text' filepath='Python/fileutils.c' line='859' column='1'/> + <parameter type-id='type-id-540' name='error_pos' filepath='Python/fileutils.c' line='859' column='1'/> <return type-id='type-id-7'/> </function-decl> - <function-decl name='Py_DecodeLocale' mangled-name='Py_DecodeLocale' filepath='Python/fileutils.c' line='636' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_DecodeLocale'> - <parameter type-id='type-id-3' name='arg' filepath='Python/fileutils.c' line='636' column='1'/> - <parameter type-id='type-id-540' name='wlen' filepath='Python/fileutils.c' line='636' column='1'/> + <function-decl name='Py_DecodeLocale' mangled-name='Py_DecodeLocale' filepath='Python/fileutils.c' line='648' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_DecodeLocale'> + <parameter type-id='type-id-3' name='arg' filepath='Python/fileutils.c' line='648' column='1'/> + <parameter type-id='type-id-540' name='wlen' filepath='Python/fileutils.c' line='648' column='1'/> <return type-id='type-id-403'/> </function-decl> - <function-decl name='_Py_DecodeLocaleEx' mangled-name='_Py_DecodeLocaleEx' filepath='Python/fileutils.c' line='574' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DecodeLocaleEx'> - <parameter type-id='type-id-3' name='arg' filepath='Python/fileutils.c' line='574' column='1'/> - <parameter type-id='type-id-407' name='wstr' filepath='Python/fileutils.c' line='574' column='1'/> - <parameter type-id='type-id-540' name='wlen' filepath='Python/fileutils.c' line='574' column='1'/> - <parameter type-id='type-id-286' name='reason' filepath='Python/fileutils.c' line='575' column='1'/> - <parameter type-id='type-id-8' name='current_locale' filepath='Python/fileutils.c' line='576' column='1'/> - <parameter type-id='type-id-400' name='errors' filepath='Python/fileutils.c' line='576' column='1'/> + <function-decl name='_Py_DecodeLocaleEx' mangled-name='_Py_DecodeLocaleEx' filepath='Python/fileutils.c' line='586' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DecodeLocaleEx'> + <parameter type-id='type-id-3' name='arg' filepath='Python/fileutils.c' line='586' column='1'/> + <parameter type-id='type-id-407' name='wstr' filepath='Python/fileutils.c' line='586' column='1'/> + <parameter type-id='type-id-540' name='wlen' filepath='Python/fileutils.c' line='586' column='1'/> + <parameter type-id='type-id-284' name='reason' filepath='Python/fileutils.c' line='587' column='1'/> + <parameter type-id='type-id-8' name='current_locale' filepath='Python/fileutils.c' line='588' column='1'/> + <parameter type-id='type-id-400' name='errors' filepath='Python/fileutils.c' line='588' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_ResetForceASCII' mangled-name='_Py_ResetForceASCII' filepath='Python/fileutils.c' line='293' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ResetForceASCII'> - <return type-id='type-id-4'/> - </function-decl> - <function-decl name='_Py_GetForceASCII' mangled-name='_Py_GetForceASCII' filepath='Python/fileutils.c' line='283' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetForceASCII'> + <function-decl name='_Py_GetForceASCII' mangled-name='_Py_GetForceASCII' filepath='Python/fileutils.c' line='295' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetForceASCII'> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_Py_device_encoding' mangled-name='_Py_device_encoding' filepath='Python/fileutils.c' line='62' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_device_encoding'> - <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='62' column='1'/> + <function-decl name='_Py_device_encoding' mangled-name='_Py_device_encoding' filepath='Python/fileutils.c' line='66' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_device_encoding'> + <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='66' column='1'/> <return type-id='type-id-100'/> </function-decl> + <function-decl name='ioctl' mangled-name='ioctl' filepath='/usr/include/x86_64-linux-gnu/sys/ioctl.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fcntl' mangled-name='fcntl64' filepath='/usr/include/fcntl.h' line='151' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__getcwd_alias' mangled-name='getcwd' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='191' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__realpath_chk' mangled-name='__realpath_chk' filepath='/usr/include/x86_64-linux-gnu/bits/stdlib.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__readlink_alias' mangled-name='readlink' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='write' mangled-name='write' filepath='/usr/include/unistd.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_FSConverter' mangled-name='PyUnicode_FSConverter' filepath='./Include/unicodeobject.h' line='748' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_SetFromErrnoWithFilenameObject' mangled-name='PyErr_SetFromErrnoWithFilenameObject' filepath='./Include/pyerrors.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__wcstombs_alias' mangled-name='wcstombs' filepath='/usr/include/x86_64-linux-gnu/bits/stdlib.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__open_2' mangled-name='__open64_2' filepath='/usr/include/x86_64-linux-gnu/bits/fcntl2.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_SetFromErrnoWithFilenameObjects' mangled-name='PyErr_SetFromErrnoWithFilenameObjects' filepath='./Include/pyerrors.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__xstat' mangled-name='__xstat64' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='409' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__fxstat' mangled-name='__fxstat64' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='406' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_EncodeUTF8Ex' mangled-name='_Py_EncodeUTF8Ex' filepath='./Include/internal/pycore_fileutils.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_DecodeUTF8Ex' mangled-name='_Py_DecodeUTF8Ex' filepath='./Include/internal/pycore_fileutils.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='mbrtowc' mangled-name='mbrtowc' filepath='/usr/include/wchar.h' line='296' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__mbstowcs_alias' mangled-name='mbstowcs' filepath='/usr/include/x86_64-linux-gnu/bits/stdlib.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Python/dynload_shlib.c' comp-dir-path='/src' language='LANG_C99'> - <array-type-def dimensions='1' type-id='type-id-3' size-in-bits='infinite' id='type-id-701'> + <array-type-def dimensions='1' type-id='type-id-3' size-in-bits='infinite' id='type-id-704'> <subrange length='infinite' id='type-id-18'/> </array-type-def> - <var-decl name='_PyImport_DynLoadFiletab' type-id='type-id-701' visibility='default' filepath='./Python/importdl.h' line='9' column='1'/> + <var-decl name='_PyImport_DynLoadFiletab' type-id='type-id-704' visibility='default' filepath='./Python/importdl.h' line='9' column='1'/> + <function-decl name='dlsym' mangled-name='dlsym' filepath='/usr/include/dlfcn.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='dlerror' mangled-name='dlerror' filepath='/usr/include/dlfcn.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='dlopen' mangled-name='dlopen' filepath='/usr/include/dlfcn.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + </abi-instr> + <abi-instr version='1.0' address-size='64' path='./Modules/getpath.c' comp-dir-path='/src' language='LANG_C99'> + <function-decl name='_Py_wfopen' mangled-name='_Py_wfopen' filepath='./Include/cpython/fileutils.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_FindEnvConfigValue' mangled-name='_Py_FindEnvConfigValue' filepath='./Include/internal/pycore_pathconfig.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_EncodeLocaleRaw' mangled-name='_Py_EncodeLocaleRaw' filepath='./Include/fileutils.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__wcscpy_alias' mangled-name='wcscpy' filepath='/usr/include/x86_64-linux-gnu/bits/wchar2.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__wcscat_alias' mangled-name='wcscat' filepath='/usr/include/x86_64-linux-gnu/bits/wchar2.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__wcsncat_alias' mangled-name='wcsncat' filepath='/usr/include/x86_64-linux-gnu/bits/wchar2.h' line='257' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Modules/main.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='Py_BytesMain' mangled-name='Py_BytesMain' filepath='Modules/main.c' line='724' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_BytesMain'> @@ -13393,14 +17232,53 @@ <function-decl name='Py_RunMain' mangled-name='Py_RunMain' filepath='Modules/main.c' line='673' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_RunMain'> <return type-id='type-id-8'/> </function-decl> + <function-decl name='_PyImport_Fini2' mangled-name='_PyImport_Fini2' filepath='./Include/internal/pycore_pylifecycle.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyPathConfig_ClearGlobal' mangled-name='_PyPathConfig_ClearGlobal' filepath='./Include/internal/pycore_pathconfig.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_HandleSystemExit' mangled-name='_Py_HandleSystemExit' filepath='./Include/internal/pycore_pylifecycle.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyImport_GetImporter' mangled-name='PyImport_GetImporter' filepath='./Include/import.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyRun_SimpleStringFlags' mangled-name='PyRun_SimpleStringFlags' filepath='./Include/pythonrun.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='Py_MakePendingCalls' mangled-name='Py_MakePendingCalls' filepath='./Include/ceval.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyRun_SimpleFileExFlags' mangled-name='PyRun_SimpleFileExFlags' filepath='./Include/pythonrun.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyOS_setsig' mangled-name='PyOS_setsig' filepath='./Include/pylifecycle.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getpid' mangled-name='getpid' filepath='/usr/include/unistd.h' line='628' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='kill' mangled-name='kill' filepath='/usr/include/signal.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_PreInitializeFromPyArgv' mangled-name='_Py_PreInitializeFromPyArgv' filepath='./Include/internal/pycore_pylifecycle.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyConfig_SetArgv' mangled-name='PyConfig_SetArgv' filepath='./Include/cpython/initconfig.h' line='443' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyConfig_SetBytesArgv' mangled-name='PyConfig_SetBytesArgv' filepath='./Include/cpython/initconfig.h' line='439' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='Modules/gcmodule.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyObject_GC_IsFinalized' mangled-name='PyObject_GC_IsFinalized' filepath='Modules/gcmodule.c' line='2342' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_IsFinalized'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> + <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1588' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_GC_IsTracked' mangled-name='PyObject_GC_IsTracked' filepath='Modules/gcmodule.c' line='2333' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_IsTracked'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> + <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1588' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_GC_Del' mangled-name='PyObject_GC_Del' filepath='Modules/gcmodule.c' line='2318' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_Del'> @@ -13418,7 +17296,7 @@ <return type-id='type-id-497'/> </function-decl> <function-decl name='_PyObject_GC_New' mangled-name='_PyObject_GC_New' filepath='Modules/gcmodule.c' line='2274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_New'> - <parameter type-id='type-id-75' name='tp' filepath='Objects/object.c' line='163' column='1'/> + <parameter type-id='type-id-75' name='tp' filepath='Modules/gcmodule.c' line='2274' column='1'/> <return type-id='type-id-100'/> </function-decl> <function-decl name='_PyObject_GC_Calloc' mangled-name='_PyObject_GC_Calloc' filepath='Modules/gcmodule.c' line='2268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_Calloc'> @@ -13430,7 +17308,7 @@ <return type-id='type-id-100'/> </function-decl> <function-decl name='PyObject_IS_GC' mangled-name='PyObject_IS_GC' filepath='Modules/gcmodule.c' line='2217' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IS_GC'> - <parameter type-id='type-id-100' name='obj' filepath='Objects/abstract.c' line='2677' column='1'/> + <parameter type-id='type-id-100' name='s' filepath='Objects/abstract.c' line='1588' column='1'/> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyObject_GC_UnTrack' mangled-name='PyObject_GC_UnTrack' filepath='Modules/gcmodule.c' line='2205' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_UnTrack'> @@ -13453,58 +17331,658 @@ <function-decl name='PyInit_gc' mangled-name='PyInit_gc' filepath='Modules/gcmodule.c' line='2012' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_gc'> <return type-id='type-id-100'/> </function-decl> - <typedef-decl name='GCState' type-id='type-id-319' filepath='Modules/gcmodule.c' line='36' column='1' id='type-id-702'/> - <pointer-type-def type-id='type-id-702' size-in-bits='64' id='type-id-703'/> + <typedef-decl name='GCState' type-id='type-id-319' filepath='Modules/gcmodule.c' line='36' column='1' id='type-id-705'/> + <pointer-type-def type-id='type-id-705' size-in-bits='64' id='type-id-706'/> <function-decl name='_PyGC_InitState' mangled-name='_PyGC_InitState' filepath='Modules/gcmodule.c' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGC_InitState'> - <parameter type-id='type-id-703' name='gcstate' filepath='Modules/gcmodule.c' line='132' column='1'/> + <parameter type-id='type-id-706' name='gcstate' filepath='Modules/gcmodule.c' line='132' column='1'/> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_WarnExplicitFormat' mangled-name='PyErr_WarnExplicitFormat' filepath='./Include/warnings.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_convert_optional_to_ssize_t' mangled-name='_Py_convert_optional_to_ssize_t' filepath='./Include/cpython/abstract.h' line='380' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_GetMonotonicClock' mangled-name='_PyTime_GetMonotonicClock' filepath='./Include/pytime.h' line='180' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_AsSecondsDouble' mangled-name='_PyTime_AsSecondsDouble' filepath='./Include/pytime.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTuple_MaybeUntrack' mangled-name='_PyTuple_MaybeUntrack' filepath='./Include/cpython/tupleobject.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFrame_ClearFreeList' mangled-name='_PyFrame_ClearFreeList' filepath='./Include/internal/pycore_gc.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTuple_ClearFreeList' mangled-name='_PyTuple_ClearFreeList' filepath='./Include/internal/pycore_gc.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFloat_ClearFreeList' mangled-name='_PyFloat_ClearFreeList' filepath='./Include/internal/pycore_gc.h' line='170' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyList_ClearFreeList' mangled-name='_PyList_ClearFreeList' filepath='./Include/internal/pycore_gc.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_ClearFreeList' mangled-name='_PyDict_ClearFreeList' filepath='./Include/internal/pycore_gc.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyAsyncGen_ClearFreeLists' mangled-name='_PyAsyncGen_ClearFreeLists' filepath='./Include/internal/pycore_gc.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyContext_ClearFreeList' mangled-name='_PyContext_ClearFreeList' filepath='./Include/internal/pycore_gc.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_MaybeUntrack' mangled-name='_PyDict_MaybeUntrack' filepath='./Include/cpython/dictobject.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/posixmodule.c' comp-dir-path='/src' language='LANG_C99'> - <function-decl name='PyInit_posix' mangled-name='PyInit_posix' filepath='./Modules/posixmodule.c' line='15546' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_posix'> - <return type-id='type-id-100'/> - </function-decl> - <function-decl name='PyOS_FSPath' mangled-name='PyOS_FSPath' filepath='./Modules/posixmodule.c' line='14113' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_FSPath'> - <parameter type-id='type-id-100' name='v' filepath='Objects/abstract.c' line='1992' column='1'/> + <function-decl name='PyInit_posix' mangled-name='PyInit_posix' filepath='./Modules/posixmodule.c' line='15616' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_posix'> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_Py_Sigset_Converter' mangled-name='_Py_Sigset_Converter' filepath='./Modules/posixmodule.c' line='1434' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Sigset_Converter'> - <parameter type-id='type-id-100' name='obj' filepath='./Modules/posixmodule.c' line='1434' column='1'/> - <parameter type-id='type-id-32' name='addr' filepath='./Modules/posixmodule.c' line='1434' column='1'/> + <function-decl name='_Py_Sigset_Converter' mangled-name='_Py_Sigset_Converter' filepath='./Modules/posixmodule.c' line='1435' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Sigset_Converter'> + <parameter type-id='type-id-100' name='obj' filepath='./Modules/posixmodule.c' line='1435' column='1'/> + <parameter type-id='type-id-32' name='addr' filepath='./Modules/posixmodule.c' line='1435' column='1'/> <return type-id='type-id-8'/> </function-decl> - <typedef-decl name='gid_t' type-id='type-id-696' filepath='/usr/include/x86_64-linux-gnu/sys/types.h' line='64' column='1' id='type-id-704'/> - <pointer-type-def type-id='type-id-704' size-in-bits='64' id='type-id-705'/> - <function-decl name='_Py_Gid_Converter' mangled-name='_Py_Gid_Converter' filepath='./Modules/posixmodule.c' line='747' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Gid_Converter'> - <parameter type-id='type-id-100' name='obj' filepath='./Modules/posixmodule.c' line='747' column='1'/> - <parameter type-id='type-id-705' name='p' filepath='./Modules/posixmodule.c' line='747' column='1'/> + <typedef-decl name='gid_t' type-id='type-id-699' filepath='/usr/include/x86_64-linux-gnu/sys/types.h' line='64' column='1' id='type-id-707'/> + <pointer-type-def type-id='type-id-707' size-in-bits='64' id='type-id-708'/> + <function-decl name='_Py_Gid_Converter' mangled-name='_Py_Gid_Converter' filepath='./Modules/posixmodule.c' line='748' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Gid_Converter'> + <parameter type-id='type-id-100' name='obj' filepath='./Modules/posixmodule.c' line='748' column='1'/> + <parameter type-id='type-id-708' name='p' filepath='./Modules/posixmodule.c' line='748' column='1'/> <return type-id='type-id-8'/> </function-decl> - <typedef-decl name='uid_t' type-id='type-id-695' filepath='/usr/include/x86_64-linux-gnu/sys/types.h' line='79' column='1' id='type-id-706'/> - <pointer-type-def type-id='type-id-706' size-in-bits='64' id='type-id-707'/> - <function-decl name='_Py_Uid_Converter' mangled-name='_Py_Uid_Converter' filepath='./Modules/posixmodule.c' line='641' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Uid_Converter'> - <parameter type-id='type-id-100' name='obj' filepath='./Modules/posixmodule.c' line='641' column='1'/> - <parameter type-id='type-id-707' name='p' filepath='./Modules/posixmodule.c' line='641' column='1'/> + <typedef-decl name='uid_t' type-id='type-id-698' filepath='/usr/include/x86_64-linux-gnu/sys/types.h' line='79' column='1' id='type-id-709'/> + <pointer-type-def type-id='type-id-709' size-in-bits='64' id='type-id-710'/> + <function-decl name='_Py_Uid_Converter' mangled-name='_Py_Uid_Converter' filepath='./Modules/posixmodule.c' line='642' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Uid_Converter'> + <parameter type-id='type-id-100' name='obj' filepath='./Modules/posixmodule.c' line='642' column='1'/> + <parameter type-id='type-id-710' name='p' filepath='./Modules/posixmodule.c' line='642' column='1'/> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyLong_FromGid' mangled-name='_PyLong_FromGid' filepath='./Modules/posixmodule.c' line='633' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromGid'> - <parameter type-id='type-id-704' name='gid' filepath='./Modules/posixmodule.c' line='633' column='1'/> + <function-decl name='PyOS_AfterFork' mangled-name='PyOS_AfterFork' filepath='./Modules/posixmodule.c' line='608' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_AfterFork'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyOS_AfterFork_Child' mangled-name='PyOS_AfterFork_Child' filepath='./Modules/posixmodule.c' line='578' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_AfterFork_Child'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyOS_BeforeFork' mangled-name='PyOS_BeforeFork' filepath='./Modules/posixmodule.c' line='561' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_BeforeFork'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyOS_AfterFork_Parent' mangled-name='PyOS_AfterFork_Parent' filepath='./Modules/posixmodule.c' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_AfterFork_Parent'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_FromUid' mangled-name='_PyLong_FromUid' filepath='./Modules/posixmodule.c' line='626' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromUid'> + <parameter type-id='type-id-709' name='uid' filepath='./Modules/posixmodule.c' line='626' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='_PyLong_FromUid' mangled-name='_PyLong_FromUid' filepath='./Modules/posixmodule.c' line='625' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromUid'> - <parameter type-id='type-id-706' name='uid' filepath='./Modules/posixmodule.c' line='625' column='1'/> + <function-decl name='_PyLong_FromGid' mangled-name='_PyLong_FromGid' filepath='./Modules/posixmodule.c' line='634' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromGid'> + <parameter type-id='type-id-707' name='gid' filepath='./Modules/posixmodule.c' line='634' column='1'/> <return type-id='type-id-100'/> </function-decl> - <function-decl name='PyOS_AfterFork' mangled-name='PyOS_AfterFork' filepath='./Modules/posixmodule.c' line='607' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_AfterFork'> + <function-decl name='PyOS_FSPath' mangled-name='PyOS_FSPath' filepath='./Modules/posixmodule.c' line='14182' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_FSPath'> + <parameter type-id='type-id-100' name='path' filepath='./Modules/posixmodule.c' line='14182' column='1'/> + <return type-id='type-id-100'/> + </function-decl> + <function-decl name='qsort' mangled-name='qsort' filepath='/usr/include/stdlib.h' line='830' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyStructSequence_NewType' mangled-name='PyStructSequence_NewType' filepath='./Include/structseq.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sysconf' mangled-name='sysconf' filepath='/usr/include/unistd.h' line='619' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyType_FromModuleAndSpec' mangled-name='PyType_FromModuleAndSpec' filepath='./Include/object.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='closedir' mangled-name='closedir' filepath='/usr/include/dirent.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='rewinddir' mangled-name='rewinddir' filepath='/usr/include/dirent.h' line='209' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_ResourceWarning' mangled-name='PyErr_ResourceWarning' filepath='./Include/warnings.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='opendir' mangled-name='opendir' filepath='/usr/include/dirent.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fdopendir' mangled-name='fdopendir' filepath='/usr/include/dirent.h' line='141' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArg_ParseStackAndKeywords_SizeT' mangled-name='_PyArg_ParseStackAndKeywords_SizeT' filepath='./Include/modsupport.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyType_GetModule' mangled-name='PyType_GetModule' filepath='./Include/object.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='memfd_create' mangled-name='memfd_create' filepath='/usr/include/x86_64-linux-gnu/bits/mman-shared.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='listxattr' mangled-name='listxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='flistxattr' mangled-name='flistxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='llistxattr' mangled-name='llistxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='removexattr' mangled-name='removexattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fremovexattr' mangled-name='fremovexattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='lremovexattr' mangled-name='lremovexattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setxattr' mangled-name='setxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fsetxattr' mangled-name='fsetxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='lsetxattr' mangled-name='lsetxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getxattr' mangled-name='getxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fgetxattr' mangled-name='fgetxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='lgetxattr' mangled-name='lgetxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getresgid' mangled-name='getresgid' filepath='/usr/include/unistd.h' line='738' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getresuid' mangled-name='getresuid' filepath='/usr/include/unistd.h' line='733' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setresgid' mangled-name='setresgid' filepath='/usr/include/unistd.h' line='748' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setresuid' mangled-name='setresuid' filepath='/usr/include/unistd.h' line='743' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_device_encoding' mangled-name='_Py_device_encoding' filepath='./Include/cpython/fileutils.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getloadavg' mangled-name='getloadavg' filepath='/usr/include/stdlib.h' line='1003' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fpathconf' mangled-name='fpathconf' filepath='/usr/include/unistd.h' line='616' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pathconf' mangled-name='pathconf' filepath='/usr/include/unistd.h' line='612' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fstatvfs' mangled-name='fstatvfs64' filepath='/usr/include/x86_64-linux-gnu/sys/statvfs.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='statvfs' mangled-name='statvfs64' filepath='/usr/include/x86_64-linux-gnu/sys/statvfs.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='unsetenv' mangled-name='unsetenv' filepath='/usr/include/stdlib.h' line='657' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='truncate' mangled-name='truncate64' filepath='/usr/include/unistd.h' line='995' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyIndex_Check' mangled-name='PyIndex_Check' filepath='./Include/abstract.h' line='497' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__xmknodat' mangled-name='__xmknodat' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='441' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__xmknod' mangled-name='__xmknod' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='438' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='mkfifoat' mangled-name='mkfifoat' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='mkfifo' mangled-name='mkfifo' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='346' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='copy_file_range' mangled-name='copy_file_range' filepath='/usr/include/unistd.h' line='1107' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pwrite' mangled-name='pwrite64' filepath='/usr/include/unistd.h' line='391' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pipe2' mangled-name='pipe2' filepath='/usr/include/unistd.h' line='422' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pipe' mangled-name='pipe' filepath='/usr/include/unistd.h' line='417' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_set_inheritable' mangled-name='_Py_set_inheritable' filepath='./Include/cpython/fileutils.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sendfile' mangled-name='sendfile64' filepath='/usr/include/x86_64-linux-gnu/sys/sendfile.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='dup2' mangled-name='dup2' filepath='/usr/include/unistd.h' line='534' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='dup3' mangled-name='dup3' filepath='/usr/include/unistd.h' line='539' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__openat_alias' mangled-name='openat64' filepath='/usr/include/x86_64-linux-gnu/bits/fcntl2.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__open_alias' mangled-name='open64' filepath='/usr/include/x86_64-linux-gnu/bits/fcntl2.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='tcsetpgrp' mangled-name='tcsetpgrp' filepath='/usr/include/unistd.h' line='841' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArg_ParseStack_SizeT' mangled-name='_PyArg_ParseStack_SizeT' filepath='./Include/modsupport.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setpgid' mangled-name='setpgid' filepath='/usr/include/unistd.h' line='646' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setsid' mangled-name='setsid' filepath='/usr/include/unistd.h' line='667' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getsid' mangled-name='getsid' filepath='/usr/include/unistd.h' line='671' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArg_Parse_SizeT' mangled-name='_PyArg_Parse_SizeT' filepath='./Include/modsupport.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='times' mangled-name='times' filepath='/usr/include/x86_64-linux-gnu/sys/times.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='symlinkat' mangled-name='symlinkat' filepath='/usr/include/unistd.h' line='815' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='symlink' mangled-name='symlink' filepath='/usr/include/unistd.h' line='802' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wait' mangled-name='wait' filepath='/usr/include/x86_64-linux-gnu/sys/wait.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='waitpid' mangled-name='waitpid' filepath='/usr/include/x86_64-linux-gnu/sys/wait.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='waitid' mangled-name='waitid' filepath='/usr/include/x86_64-linux-gnu/sys/wait.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wait4' mangled-name='wait4' filepath='/usr/include/x86_64-linux-gnu/sys/wait.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wait3' mangled-name='wait3' filepath='/usr/include/x86_64-linux-gnu/sys/wait.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setgid' mangled-name='setgid' filepath='/usr/include/unistd.h' line='717' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setregid' mangled-name='setregid' filepath='/usr/include/unistd.h' line='722' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setreuid' mangled-name='setreuid' filepath='/usr/include/unistd.h' line='705' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setegid' mangled-name='setegid' filepath='/usr/include/unistd.h' line='727' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='seteuid' mangled-name='seteuid' filepath='/usr/include/unistd.h' line='710' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setuid' mangled-name='setuid' filepath='/usr/include/unistd.h' line='700' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='killpg' mangled-name='killpg' filepath='/usr/include/signal.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getuid' mangled-name='getuid' filepath='/usr/include/unistd.h' line='675' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getlogin' mangled-name='getlogin' filepath='/usr/include/unistd.h' line='848' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getppid' mangled-name='getppid' filepath='/usr/include/unistd.h' line='631' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setpgrp' mangled-name='setpgrp' filepath='/usr/include/unistd.h' line='660' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getpgrp' mangled-name='getpgrp' filepath='/usr/include/unistd.h' line='634' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getpgid' mangled-name='getpgid' filepath='/usr/include/unistd.h' line='639' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='initgroups' mangled-name='initgroups' filepath='/usr/include/grp.h' line='197' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getgrouplist' mangled-name='getgrouplist' filepath='/usr/include/grp.h' line='186' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getgid' mangled-name='getgid' filepath='/usr/include/unistd.h' line='681' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='geteuid' mangled-name='geteuid' filepath='/usr/include/unistd.h' line='678' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getegid' mangled-name='getegid' filepath='/usr/include/unistd.h' line='684' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='forkpty' mangled-name='forkpty' filepath='/usr/include/pty.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='openpty' mangled-name='openpty' filepath='/usr/include/pty.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__sched_cpualloc' mangled-name='__sched_cpualloc' filepath='/usr/include/x86_64-linux-gnu/bits/cpu-set.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sched_getaffinity' mangled-name='sched_getaffinity' filepath='/usr/include/sched.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__sched_cpufree' mangled-name='__sched_cpufree' filepath='/usr/include/x86_64-linux-gnu/bits/cpu-set.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__sched_cpucount' mangled-name='__sched_cpucount' filepath='/usr/include/x86_64-linux-gnu/bits/cpu-set.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sched_setaffinity' mangled-name='sched_setaffinity' filepath='/usr/include/sched.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sched_yield' mangled-name='sched_yield' filepath='/usr/include/sched.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sched_rr_get_interval' mangled-name='sched_rr_get_interval' filepath='/usr/include/sched.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sched_setparam' mangled-name='sched_setparam' filepath='/usr/include/sched.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sched_getparam' mangled-name='sched_getparam' filepath='/usr/include/sched.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sched_setscheduler' mangled-name='sched_setscheduler' filepath='/usr/include/sched.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sched_getscheduler' mangled-name='sched_getscheduler' filepath='/usr/include/sched.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sched_get_priority_min' mangled-name='sched_get_priority_min' filepath='/usr/include/sched.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sched_get_priority_max' mangled-name='sched_get_priority_max' filepath='/usr/include/sched.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fork' mangled-name='fork' filepath='/usr/include/unistd.h' line='756' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fexecve' mangled-name='fexecve' filepath='/usr/include/unistd.h' line='557' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='execve' mangled-name='execve' filepath='/usr/include/unistd.h' line='551' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='execv' mangled-name='execv' filepath='/usr/include/unistd.h' line='563' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_exit' mangled-name='_exit' filepath='/usr/include/unistd.h' line='603' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_ObjectToTimespec' mangled-name='_PyTime_ObjectToTimespec' filepath='./Include/pytime.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='futimens' mangled-name='futimens' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='368' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='utimensat' mangled-name='utimensat' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='360' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='system' mangled-name='system' filepath='/usr/include/stdlib.h' line='784' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='unlinkat' mangled-name='unlinkat' filepath='/usr/include/unistd.h' line='829' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='rmdir' mangled-name='rmdir' filepath='/usr/include/unistd.h' line='834' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setpriority' mangled-name='setpriority' filepath='/usr/include/x86_64-linux-gnu/sys/resource.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getpriority' mangled-name='getpriority' filepath='/usr/include/x86_64-linux-gnu/sys/resource.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='mkdirat' mangled-name='mkdirat' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='324' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='mkdir' mangled-name='mkdir' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='317' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='readdir' mangled-name='readdir64' filepath='/usr/include/dirent.h' line='165' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='linkat' mangled-name='linkat' filepath='/usr/include/unistd.h' line='795' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='link' mangled-name='link' filepath='/usr/include/unistd.h' line='789' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='lchown' mangled-name='lchown' filepath='/usr/include/unistd.h' line='483' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyOS_AfterFork_Child' mangled-name='PyOS_AfterFork_Child' filepath='./Modules/posixmodule.c' line='577' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_AfterFork_Child'> + <function-decl name='fchown' mangled-name='fchown' filepath='/usr/include/unistd.h' line='478' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyOS_AfterFork_Parent' mangled-name='PyOS_AfterFork_Parent' filepath='./Modules/posixmodule.c' line='568' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_AfterFork_Parent'> + <function-decl name='chown' mangled-name='chown' filepath='/usr/include/unistd.h' line='473' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> - <function-decl name='PyOS_BeforeFork' mangled-name='PyOS_BeforeFork' filepath='./Modules/posixmodule.c' line='560' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_BeforeFork'> + <function-decl name='fchownat' mangled-name='fchownat' filepath='/usr/include/unistd.h' line='491' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fdatasync' mangled-name='fdatasync' filepath='/usr/include/unistd.h' line='1115' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sync' mangled-name='sync' filepath='/usr/include/unistd.h' line='970' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fsync' mangled-name='fsync' filepath='/usr/include/unistd.h' line='954' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='chroot' mangled-name='chroot' filepath='/usr/include/unistd.h' line='942' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fchmod' mangled-name='fchmod' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='293' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fchmodat' mangled-name='fchmodat' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='299' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='chmod' mangled-name='chmod' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='280' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='fchdir' mangled-name='fchdir' filepath='/usr/include/unistd.h' line='501' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='chdir' mangled-name='chdir' filepath='/usr/include/unistd.h' line='497' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='ctermid' mangled-name='ctermid' filepath='/usr/include/stdio.h' line='812' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='faccessat' mangled-name='faccessat' filepath='/usr/include/unistd.h' line='304' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='access' mangled-name='access' filepath='/usr/include/unistd.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setgroups' mangled-name='setgroups' filepath='/usr/include/grp.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMapping_Size' mangled-name='PyMapping_Size' filepath='./Include/abstract.h' line='766' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMapping_Values' mangled-name='PyMapping_Values' filepath='./Include/abstract.h' line='815' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBytes_FromFormat' mangled-name='PyBytes_FromFormat' filepath='./Include/bytesobject.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_AsTime_t' mangled-name='_PyLong_AsTime_t' filepath='./Include/pytime.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='uname' mangled-name='uname' filepath='/usr/include/x86_64-linux-gnu/sys/utsname.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='rename' mangled-name='rename' filepath='/usr/include/stdio.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='renameat' mangled-name='renameat' filepath='/usr/include/stdio.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_FromTime_t' mangled-name='_PyLong_FromTime_t' filepath='./Include/pytime.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sigaddset' mangled-name='sigaddset' filepath='/usr/include/signal.h' line='202' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyGILState_Reinit' mangled-name='_PyGILState_Reinit' filepath='./Include/internal/pycore_pystate.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_ReInitThreads' mangled-name='_PyEval_ReInitThreads' filepath='./Include/internal/pycore_ceval.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImport_ReInitLock' mangled-name='_PyImport_ReInitLock' filepath='./Include/internal/pycore_import.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PySignal_AfterFork' mangled-name='_PySignal_AfterFork' filepath='./Include/intrcheck.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyRuntimeState_ReInitThreads' mangled-name='_PyRuntimeState_ReInitThreads' filepath='./Include/internal/pycore_runtime.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyInterpreterState_DeleteExceptMain' mangled-name='_PyInterpreterState_DeleteExceptMain' filepath='./Include/internal/pycore_pystate.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__readlinkat_alias' mangled-name='readlinkat' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__pread64_alias' mangled-name='pread64' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_set_blocking' mangled-name='_Py_set_blocking' filepath='./Include/cpython/fileutils.h' line='164' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyOS_URandom' mangled-name='_PyOS_URandom' filepath='./Include/cpython/pylifecycle.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_fadvise' mangled-name='posix_fadvise64' filepath='/usr/include/fcntl.h' line='264' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_fallocate' mangled-name='posix_fallocate64' filepath='/usr/include/fcntl.h' line='285' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='ftruncate' mangled-name='ftruncate64' filepath='/usr/include/unistd.h' line='1017' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pwritev2' mangled-name='pwritev64v2' filepath='/usr/include/x86_64-linux-gnu/sys/uio.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='lockf' mangled-name='lockf64' filepath='/usr/include/unistd.h' line='1082' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='unlink' mangled-name='unlink' filepath='/usr/include/unistd.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyList_GetSlice' mangled-name='PyList_GetSlice' filepath='./Include/listobject.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__ttyname_r_alias' mangled-name='ttyname_r' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='281' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='nice' mangled-name='nice' filepath='/usr/include/unistd.h' line='598' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='tcgetpgrp' mangled-name='tcgetpgrp' filepath='/usr/include/unistd.h' line='838' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='umask' mangled-name='umask' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='308' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_get_inheritable' mangled-name='_Py_get_inheritable' filepath='./Include/cpython/fileutils.h' line='151' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_get_blocking' mangled-name='_Py_get_blocking' filepath='./Include/cpython/fileutils.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='writev' mangled-name='writev' filepath='/usr/include/x86_64-linux-gnu/sys/uio.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='readv' mangled-name='readv' filepath='/usr/include/x86_64-linux-gnu/sys/uio.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='preadv2' mangled-name='preadv64v2' filepath='/usr/include/x86_64-linux-gnu/sys/uio.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyImport_ReleaseLock' mangled-name='_PyImport_ReleaseLock' filepath='./Include/cpython/import.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__fxstatat' mangled-name='__fxstatat64' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='415' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__lxstat' mangled-name='__lxstat64' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='412' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__getgroups_alias' mangled-name='getgroups' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='256' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawn_file_actions_addclose' mangled-name='posix_spawn_file_actions_addclose' filepath='/usr/include/spawn.h' line='191' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawn_file_actions_adddup2' mangled-name='posix_spawn_file_actions_adddup2' filepath='/usr/include/spawn.h' line='197' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawn_file_actions_addopen' mangled-name='posix_spawn_file_actions_addopen' filepath='/usr/include/spawn.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawn_file_actions_init' mangled-name='posix_spawn_file_actions_init' filepath='/usr/include/spawn.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawnattr_setpgroup' mangled-name='posix_spawnattr_setpgroup' filepath='/usr/include/spawn.h' line='141' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawnattr_setsigmask' mangled-name='posix_spawnattr_setsigmask' filepath='/usr/include/spawn.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawnattr_setsigdefault' mangled-name='posix_spawnattr_setsigdefault' filepath='/usr/include/spawn.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawnattr_setschedpolicy' mangled-name='posix_spawnattr_setschedpolicy' filepath='/usr/include/spawn.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawnattr_setschedparam' mangled-name='posix_spawnattr_setschedparam' filepath='/usr/include/spawn.h' line='164' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawnattr_init' mangled-name='posix_spawnattr_init' filepath='/usr/include/spawn.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawnattr_destroy' mangled-name='posix_spawnattr_destroy' filepath='/usr/include/spawn.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawnattr_setflags' mangled-name='posix_spawnattr_setflags' filepath='/usr/include/spawn.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawn_file_actions_destroy' mangled-name='posix_spawn_file_actions_destroy' filepath='/usr/include/spawn.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawnp' mangled-name='posix_spawnp' filepath='/usr/include/spawn.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='posix_spawn' mangled-name='posix_spawn' filepath='/usr/include/spawn.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'> <return type-id='type-id-4'/> </function-decl> </abi-instr> @@ -13517,44 +17995,194 @@ <function-decl name='PyInit_pwd' mangled-name='PyInit_pwd' filepath='./Modules/pwdmodule.c' line='352' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_pwd'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyState_FindModule' mangled-name='PyState_FindModule' filepath='./Include/pystate.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getpwuid_r' mangled-name='getpwuid_r' filepath='/usr/include/pwd.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_FromUid' mangled-name='_PyLong_FromUid' filepath='./Modules/posixmodule.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Uid_Converter' mangled-name='_Py_Uid_Converter' filepath='./Modules/posixmodule.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_FromGid' mangled-name='_PyLong_FromGid' filepath='./Modules/posixmodule.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='endpwent' mangled-name='endpwent' filepath='/usr/include/pwd.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setpwent' mangled-name='setpwent' filepath='/usr/include/pwd.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getpwent' mangled-name='getpwent' filepath='/usr/include/pwd.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getpwnam_r' mangled-name='getpwnam_r' filepath='/usr/include/pwd.h' line='151' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_sre.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyInit__sre' mangled-name='PyInit__sre' filepath='./Modules/_sre.c' line='2775' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__sre'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='_PyObject_NewVar' mangled-name='_PyObject_NewVar' filepath='./Include/objimpl.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyBytes_Join' mangled-name='_PyBytes_Join' filepath='./Include/cpython/bytesobject.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_ToUppercase' mangled-name='_PyUnicode_ToUppercase' filepath='./Include/cpython/unicodeobject.h' line='1103' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_ToLowercase' mangled-name='_PyUnicode_ToLowercase' filepath='./Include/cpython/unicodeobject.h' line='1099' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__ctype_toupper_loc' mangled-name='__ctype_toupper_loc' filepath='/usr/include/ctype.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_CallObject' mangled-name='PyObject_CallObject' filepath='./Include/abstract.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_codecsmodule.c' comp-dir-path='/src' language='LANG_C99'> - <function-decl name='PyInit__codecs' mangled-name='PyInit__codecs' filepath='./Modules/_codecsmodule.c' line='1059' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__codecs'> + <function-decl name='PyInit__codecs' mangled-name='PyInit__codecs' filepath='./Modules/_codecsmodule.c' line='1062' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__codecs'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyCodec_Register' mangled-name='PyCodec_Register' filepath='./Include/codecs.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyCodec_RegisterError' mangled-name='PyCodec_RegisterError' filepath='./Include/codecs.h' line='206' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_EncodeCharmap' mangled-name='_PyUnicode_EncodeCharmap' filepath='./Include/cpython/unicodeobject.h' line='924' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_AsLatin1String' mangled-name='_PyUnicode_AsLatin1String' filepath='./Include/cpython/unicodeobject.h' line='893' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_AsRawUnicodeEscapeString' mangled-name='PyUnicode_AsRawUnicodeEscapeString' filepath='./Include/unicodeobject.h' line='606' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_AsUnicodeEscapeString' mangled-name='PyUnicode_AsUnicodeEscapeString' filepath='./Include/unicodeobject.h' line='594' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_EncodeUTF32' mangled-name='_PyUnicode_EncodeUTF32' filepath='./Include/cpython/unicodeobject.h' line='818' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_EncodeUTF16' mangled-name='_PyUnicode_EncodeUTF16' filepath='./Include/cpython/unicodeobject.h' line='852' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_EncodeUTF7' mangled-name='_PyUnicode_EncodeUTF7' filepath='./Include/cpython/unicodeobject.h' line='790' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_DecodeCharmap' mangled-name='PyUnicode_DecodeCharmap' filepath='./Include/unicodeobject.h' line='657' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_DecodeRawUnicodeEscape' mangled-name='PyUnicode_DecodeRawUnicodeEscape' filepath='./Include/unicodeobject.h' line='600' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyUnicode_DecodeUnicodeEscapeStateful' mangled-name='_PyUnicode_DecodeUnicodeEscapeStateful' filepath='./Include/cpython/unicodeobject.h' line='861' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_DecodeUTF32Stateful' mangled-name='PyUnicode_DecodeUTF32Stateful' filepath='./Include/unicodeobject.h' line='502' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_DecodeUTF16Stateful' mangled-name='PyUnicode_DecodeUTF16Stateful' filepath='./Include/unicodeobject.h' line='569' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_DecodeUTF7Stateful' mangled-name='PyUnicode_DecodeUTF7Stateful' filepath='./Include/unicodeobject.h' line='442' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBytes_DecodeEscape' mangled-name='PyBytes_DecodeEscape' filepath='./Include/bytesobject.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyCodec_Forget' mangled-name='_PyCodec_Forget' filepath='./Include/codecs.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_BuildEncodingMap' mangled-name='PyUnicode_BuildEncodingMap' filepath='./Include/unicodeobject.h' line='430' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_weakref.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyInit__weakref' mangled-name='PyInit__weakref' filepath='./Modules/_weakref.c' line='188' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__weakref'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyWeakref_NewProxy' mangled-name='PyWeakref_NewProxy' filepath='./Include/weakrefobject.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyWeakref_GetWeakrefCount' mangled-name='_PyWeakref_GetWeakrefCount' filepath='./Include/weakrefobject.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_DelItemIf' mangled-name='_PyDict_DelItemIf' filepath='./Include/cpython/dictobject.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_functoolsmodule.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyInit__functools' mangled-name='PyInit__functools' filepath='./Modules/_functoolsmodule.c' line='1476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__functools'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyModule_AddType' mangled-name='PyModule_AddType' filepath='./Include/modsupport.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyDict_Pop_KnownHash' mangled-name='_PyDict_Pop_KnownHash' filepath='./Include/cpython/dictobject.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySequence_Concat' mangled-name='PySequence_Concat' filepath='./Include/abstract.h' line='634' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyDict_Merge' mangled-name='PyDict_Merge' filepath='./Include/dictobject.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_operator.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyInit__operator' mangled-name='PyInit__operator' filepath='./Modules/_operator.c' line='1789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__operator'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PySequence_Count' mangled-name='PySequence_Count' filepath='./Include/abstract.h' line='715' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySequence_InPlaceConcat' mangled-name='PySequence_InPlaceConcat' filepath='./Include/abstract.h' line='748' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_collectionsmodule.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyInit__collections' mangled-name='PyInit__collections' filepath='./Modules/_collectionsmodule.c' line='2612' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__collections'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PySequence_GetSlice' mangled-name='PySequence_GetSlice' filepath='./Include/abstract.h' line='650' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyArg_ParseStack' mangled-name='_PyArg_ParseStack' filepath='./Include/modsupport.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyType_LookupId' mangled-name='_PyType_LookupId' filepath='./Include/cpython/object.h' line='302' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_abc.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyInit__abc' mangled-name='PyInit__abc' filepath='./Modules/_abc.c' line='905' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__abc'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyMapping_Items' mangled-name='PyMapping_Items' filepath='./Include/abstract.h' line='820' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyType_GetModuleState' mangled-name='PyType_GetModuleState' filepath='./Include/object.h' line='219' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySet_Clear' mangled-name='PySet_Clear' filepath='./Include/setobject.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyWeakref_GetObject' mangled-name='PyWeakref_GetObject' filepath='./Include/weakrefobject.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PySet_Size' mangled-name='PySet_Size' filepath='./Include/setobject.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/itertoolsmodule.c' comp-dir-path='/src' language='LANG_C99'> - <function-decl name='PyInit_itertools' mangled-name='PyInit_itertools' filepath='./Modules/itertoolsmodule.c' line='4767' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_itertools'> + <function-decl name='PyInit_itertools' mangled-name='PyInit_itertools' filepath='./Modules/itertoolsmodule.c' line='4768' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_itertools'> <return type-id='type-id-100'/> </function-decl> </abi-instr> @@ -13562,124 +18190,17 @@ <function-decl name='PyInit_atexit' mangled-name='PyInit_atexit' filepath='./Modules/atexitmodule.c' line='352' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_atexit'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='_Py_PyAtExit' mangled-name='_Py_PyAtExit' filepath='./Include/cpython/pylifecycle.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/signalmodule.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='_PyOS_IsMainThread' mangled-name='_PyOS_IsMainThread' filepath='./Modules/signalmodule.c' line='1898' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_IsMainThread'> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PySignal_AfterFork' mangled-name='_PySignal_AfterFork' filepath='./Modules/signalmodule.c' line='1889' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySignal_AfterFork'> - <return type-id='type-id-4'/> - </function-decl> <function-decl name='PyOS_InterruptOccurred' mangled-name='PyOS_InterruptOccurred' filepath='./Modules/signalmodule.c' line='1869' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_InterruptOccurred'> <return type-id='type-id-8'/> </function-decl> - <class-decl name='_ts' size-in-bits='2112' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='51' column='1' id='type-id-708'> - <data-member access='public' layout-offset-in-bits='0'> - <var-decl name='prev' type-id='type-id-232' visibility='default' filepath='./Include/cpython/pystate.h' line='54' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='64'> - <var-decl name='next' type-id='type-id-232' visibility='default' filepath='./Include/cpython/pystate.h' line='55' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='128'> - <var-decl name='interp' type-id='type-id-311' visibility='default' filepath='./Include/cpython/pystate.h' line='56' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='192'> - <var-decl name='frame' type-id='type-id-234' visibility='default' filepath='./Include/cpython/pystate.h' line='59' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='256'> - <var-decl name='recursion_depth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='60' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='288'> - <var-decl name='overflowed' type-id='type-id-1' visibility='default' filepath='./Include/cpython/pystate.h' line='61' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='296'> - <var-decl name='recursion_critical' type-id='type-id-1' visibility='default' filepath='./Include/cpython/pystate.h' line='63' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='320'> - <var-decl name='stackcheck_counter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='65' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='352'> - <var-decl name='tracing' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='70' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='384'> - <var-decl name='use_tracing' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='71' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='448'> - <var-decl name='c_profilefunc' type-id='type-id-235' visibility='default' filepath='./Include/cpython/pystate.h' line='73' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='512'> - <var-decl name='c_tracefunc' type-id='type-id-235' visibility='default' filepath='./Include/cpython/pystate.h' line='74' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='576'> - <var-decl name='c_profileobj' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='75' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='640'> - <var-decl name='c_traceobj' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='76' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='704'> - <var-decl name='curexc_type' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='79' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='768'> - <var-decl name='curexc_value' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='80' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='832'> - <var-decl name='curexc_traceback' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='81' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='896'> - <var-decl name='exc_state' type-id='type-id-236' visibility='default' filepath='./Include/cpython/pystate.h' line='86' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1152'> - <var-decl name='exc_info' type-id='type-id-237' visibility='default' filepath='./Include/cpython/pystate.h' line='90' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1216'> - <var-decl name='dict' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='92' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1280'> - <var-decl name='gilstate_counter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='94' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1344'> - <var-decl name='async_exc' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='96' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1408'> - <var-decl name='thread_id' type-id='type-id-33' visibility='default' filepath='./Include/cpython/pystate.h' line='97' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1472'> - <var-decl name='trash_delete_nesting' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='99' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1536'> - <var-decl name='trash_delete_later' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='100' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1600'> - <var-decl name='on_delete' type-id='type-id-188' visibility='default' filepath='./Include/cpython/pystate.h' line='125' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1664'> - <var-decl name='on_delete_data' type-id='type-id-32' visibility='default' filepath='./Include/cpython/pystate.h' line='126' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1728'> - <var-decl name='coroutine_origin_tracking_depth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='128' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1792'> - <var-decl name='async_gen_firstiter' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='130' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1856'> - <var-decl name='async_gen_finalizer' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='131' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1920'> - <var-decl name='context' type-id='type-id-100' visibility='default' filepath='./Include/cpython/pystate.h' line='133' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='1984'> - <var-decl name='context_ver' type-id='type-id-238' visibility='default' filepath='./Include/cpython/pystate.h' line='134' column='1'/> - </data-member> - <data-member access='public' layout-offset-in-bits='2048'> - <var-decl name='id' type-id='type-id-238' visibility='default' filepath='./Include/cpython/pystate.h' line='137' column='1'/> - </data-member> - </class-decl> - <typedef-decl name='PyThreadState' type-id='type-id-708' filepath='./Include/pystate.h' line='20' column='1' id='type-id-709'/> - <pointer-type-def type-id='type-id-709' size-in-bits='64' id='type-id-710'/> - <function-decl name='_PyOS_InterruptOccurred' mangled-name='_PyOS_InterruptOccurred' filepath='./Modules/signalmodule.c' line='1851' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_InterruptOccurred'> - <parameter type-id='type-id-710' name='tstate' filepath='./Modules/signalmodule.c' line='1851' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='PyOS_InitInterrupts' mangled-name='PyOS_InitInterrupts' filepath='./Modules/signalmodule.c' line='1787' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_InitInterrupts'> <return type-id='type-id-4'/> </function-decl> @@ -13689,16 +18210,95 @@ <function-decl name='_PyErr_CheckSignals' mangled-name='_PyErr_CheckSignals' filepath='./Modules/signalmodule.c' line='1765' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_CheckSignals'> <return type-id='type-id-8'/> </function-decl> - <function-decl name='_PyErr_CheckSignalsTstate' mangled-name='_PyErr_CheckSignalsTstate' filepath='./Modules/signalmodule.c' line='1684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_CheckSignalsTstate'> - <parameter type-id='type-id-710' name='tstate' filepath='./Modules/signalmodule.c' line='1684' column='1'/> - <return type-id='type-id-8'/> - </function-decl> <function-decl name='PyErr_CheckSignals' mangled-name='PyErr_CheckSignals' filepath='./Modules/signalmodule.c' line='1671' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_CheckSignals'> <return type-id='type-id-8'/> </function-decl> <function-decl name='PyInit__signal' mangled-name='PyInit__signal' filepath='./Modules/signalmodule.c' line='1374' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__signal'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='_PyErr_CheckSignalsTstate' mangled-name='_PyErr_CheckSignalsTstate' filepath='./Modules/signalmodule.c' line='1684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_CheckSignalsTstate'> + <parameter type-id='type-id-552' name='tstate' filepath='./Modules/signalmodule.c' line='1684' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='_PyOS_InterruptOccurred' mangled-name='_PyOS_InterruptOccurred' filepath='./Modules/signalmodule.c' line='1851' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_InterruptOccurred'> + <parameter type-id='type-id-552' name='tstate' filepath='./Modules/signalmodule.c' line='1851' column='1'/> + <return type-id='type-id-8'/> + </function-decl> + <function-decl name='_PyEval_SignalReceived' mangled-name='_PyEval_SignalReceived' filepath='./Include/internal/pycore_ceval.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyEval_AddPendingCall' mangled-name='_PyEval_AddPendingCall' filepath='./Include/internal/pycore_ceval.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyOS_getsig' mangled-name='PyOS_getsig' filepath='./Include/pylifecycle.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__libc_current_sigrtmin' mangled-name='__libc_current_sigrtmin' filepath='/usr/include/signal.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='__libc_current_sigrtmax' mangled-name='__libc_current_sigrtmax' filepath='/usr/include/signal.h' line='368' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyErr_NewException' mangled-name='PyErr_NewException' filepath='./Include/pyerrors.h' line='223' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sigismember' mangled-name='sigismember' filepath='/usr/include/signal.h' line='208' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_kill' mangled-name='pthread_kill' filepath='/usr/include/x86_64-linux-gnu/bits/sigthread.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sigtimedwait' mangled-name='sigtimedwait' filepath='/usr/include/signal.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_FromSecondsObject' mangled-name='_PyTime_FromSecondsObject' filepath='./Include/pytime.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_AsTimespec' mangled-name='_PyTime_AsTimespec' filepath='./Include/pytime.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_Sigset_Converter' mangled-name='_Py_Sigset_Converter' filepath='./Modules/posixmodule.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sigwaitinfo' mangled-name='sigwaitinfo' filepath='/usr/include/signal.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sigfillset' mangled-name='sigfillset' filepath='/usr/include/signal.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sigwait' mangled-name='sigwait' filepath='/usr/include/signal.h' line='252' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='sigpending' mangled-name='sigpending' filepath='/usr/include/signal.h' line='244' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pause' mangled-name='pause' filepath='/usr/include/unistd.h' line='469' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='siginterrupt' mangled-name='siginterrupt' filepath='/usr/include/signal.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_AsTimeval' mangled-name='_PyTime_AsTimeval' filepath='./Include/pytime.h' line='129' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setitimer' mangled-name='setitimer' filepath='/usr/include/x86_64-linux-gnu/sys/time.h' line='129' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='strsignal' mangled-name='strsignal' filepath='/usr/include/string.h' line='447' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='raise' mangled-name='raise' filepath='/usr/include/signal.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getitimer' mangled-name='getitimer' filepath='/usr/include/x86_64-linux-gnu/sys/time.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='alarm' mangled-name='alarm' filepath='/usr/include/unistd.h' line='432' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_sigmask' mangled-name='pthread_sigmask' filepath='/usr/include/x86_64-linux-gnu/bits/sigthread.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_stat.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyInit__stat' mangled-name='PyInit__stat' filepath='./Modules/_stat.c' line='630' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__stat'> @@ -13709,16 +18309,136 @@ <function-decl name='PyInit_time' mangled-name='PyInit_time' filepath='./Modules/timemodule.c' line='2005' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_time'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='time' mangled-name='time' filepath='/usr/include/time.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_localtime' mangled-name='_PyTime_localtime' filepath='./Include/pytime.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_FromTimespec' mangled-name='_PyTime_FromTimespec' filepath='./Include/pytime.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_GetSystemClockWithInfo' mangled-name='_PyTime_GetSystemClockWithInfo' filepath='./Include/pytime.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_GetMonotonicClockWithInfo' mangled-name='_PyTime_GetMonotonicClockWithInfo' filepath='./Include/pytime.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_GetPerfCounterWithInfo' mangled-name='_PyTime_GetPerfCounterWithInfo' filepath='./Include/pytime.h' line='237' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_AsNanosecondsObject' mangled-name='_PyTime_AsNanosecondsObject' filepath='./Include/pytime.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_ObjectToTime_t' mangled-name='_PyTime_ObjectToTime_t' filepath='./Include/pytime.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_AsWideCharString' mangled-name='PyUnicode_AsWideCharString' filepath='./Include/unicodeobject.h' line='313' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wcsftime' mangled-name='wcsftime' filepath='/usr/include/wchar.h' line='834' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_gmtime' mangled-name='_PyTime_gmtime' filepath='./Include/pytime.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='pthread_getcpuclockid' mangled-name='pthread_getcpuclockid' filepath='/usr/include/pthread.h' line='1140' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_GetSystemClock' mangled-name='_PyTime_GetSystemClock' filepath='./Include/pytime.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_FromTimeval' mangled-name='_PyTime_FromTimeval' filepath='./Include/pytime.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='clock' mangled-name='clock' filepath='/usr/include/time.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_MulDiv' mangled-name='_PyTime_MulDiv' filepath='./Include/pytime.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getrusage' mangled-name='getrusage' filepath='/usr/include/x86_64-linux-gnu/sys/resource.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='tzset' mangled-name='tzset' filepath='/usr/include/time.h' line='170' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='select' mangled-name='select' filepath='/usr/include/x86_64-linux-gnu/sys/select.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='clock_settime' mangled-name='clock_settime' filepath='/usr/include/time.h' line='216' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_FromNanosecondsObject' mangled-name='_PyTime_FromNanosecondsObject' filepath='./Include/pytime.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='mktime' mangled-name='mktime' filepath='/usr/include/time.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_threadmodule.c' comp-dir-path='/src' language='LANG_C99'> - <function-decl name='PyInit__thread' mangled-name='PyInit__thread' filepath='./Modules/_threadmodule.c' line='1559' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__thread'> + <function-decl name='PyInit__thread' mangled-name='PyInit__thread' filepath='./Modules/_threadmodule.c' line='1562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__thread'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='_PyErr_Display' mangled-name='_PyErr_Display' filepath='./Include/internal/pycore_pylifecycle.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_get_thread_native_id' mangled-name='PyThread_get_thread_native_id' filepath='./Include/pythread.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyThreadState_Prealloc' mangled-name='_PyThreadState_Prealloc' filepath='./Include/cpython/pystate.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_start_new_thread' mangled-name='PyThread_start_new_thread' filepath='./Include/pythread.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyThreadState_Init' mangled-name='_PyThreadState_Init' filepath='./Include/internal/pycore_pystate.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyEval_AcquireThread' mangled-name='PyEval_AcquireThread' filepath='./Include/ceval.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyThreadState_DeleteCurrent' mangled-name='_PyThreadState_DeleteCurrent' filepath='./Include/internal/pycore_pylifecycle.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyObject_GenericGetAttrWithDict' mangled-name='_PyObject_GenericGetAttrWithDict' filepath='./Include/cpython/object.h' line='340' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyTime_FromSeconds' mangled-name='_PyTime_FromSeconds' filepath='./Include/pytime.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_acquire_lock_timed' mangled-name='PyThread_acquire_lock_timed' filepath='./Include/pythread.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_get_stacksize' mangled-name='PyThread_get_stacksize' filepath='./Include/pythread.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThread_set_stacksize' mangled-name='PyThread_set_stacksize' filepath='./Include/pythread.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_localemodule.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyInit__locale' mangled-name='PyInit__locale' filepath='./Modules/_localemodule.c' line='842' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__locale'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='bindtextdomain' mangled-name='bindtextdomain' filepath='/usr/include/libintl.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='dcgettext' mangled-name='dcgettext' filepath='/usr/include/libintl.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wcsxfrm' mangled-name='wcsxfrm' filepath='/usr/include/wchar.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='wcscoll' mangled-name='wcscoll' filepath='/usr/include/wchar.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='bind_textdomain_codeset' mangled-name='bind_textdomain_codeset' filepath='/usr/include/libintl.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='textdomain' mangled-name='textdomain' filepath='/usr/include/libintl.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_io/_iomodule.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='_PyIO_str_close' type-id='type-id-100' visibility='default' filepath='./Modules/_io/_iomodule.h' line='159' column='1'/> @@ -13752,17 +18472,38 @@ <function-decl name='PyInit__io' mangled-name='PyInit__io' filepath='./Modules/_io/_iomodule.c' line='676' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__io'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyFile_OpenCodeObject' mangled-name='PyFile_OpenCodeObject' filepath='./Include/cpython/fileobject.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_io/iobase.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyIOBase_Type' type-id='type-id-182' visibility='default' filepath='./Modules/_io/_iomodule.h' line='8' column='1'/> <var-decl name='PyRawIOBase_Type' type-id='type-id-182' visibility='default' filepath='./Modules/_io/_iomodule.h' line='9' column='1'/> + <function-decl name='_PyIO_trap_eintr' mangled-name='_PyIO_trap_eintr' filepath='./Modules/_io/_iomodule.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_CallMethodObjArgs' mangled-name='PyObject_CallMethodObjArgs' filepath='./Include/abstract.h' line='226' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyIO_get_module_state' mangled-name='_PyIO_get_module_state' filepath='./Modules/_io/_iomodule.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyObject_CallFinalizer' mangled-name='PyObject_CallFinalizer' filepath='./Include/cpython/object.h' line='334' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_io/fileio.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyFileIO_Type' type-id='type-id-182' visibility='default' filepath='./Modules/_io/_iomodule.h' line='14' column='1'/> + <function-decl name='_PyIOBase_finalize' mangled-name='_PyIOBase_finalize' filepath='./Modules/_io/_iomodule.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_io/bytesio.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyBytesIO_Type' type-id='type-id-182' visibility='default' filepath='./Modules/_io/_iomodule.h' line='15' column='1'/> <var-decl name='_PyBytesIOBuffer_Type' type-id='type-id-182' mangled-name='_PyBytesIOBuffer_Type' visibility='default' filepath='./Modules/_io/_iomodule.h' line='188' column='1' elf-symbol-id='_PyBytesIOBuffer_Type'/> + <function-decl name='_PySys_GetSizeOf' mangled-name='_PySys_GetSizeOf' filepath='./Include/cpython/sysmodule.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_io/bufferedio.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyBufferedIOBase_Type' type-id='type-id-182' visibility='default' filepath='./Modules/_io/_iomodule.h' line='10' column='1'/> @@ -13770,19 +18511,97 @@ <var-decl name='PyBufferedWriter_Type' type-id='type-id-182' visibility='default' filepath='./Modules/_io/_iomodule.h' line='18' column='1'/> <var-decl name='PyBufferedRWPair_Type' type-id='type-id-182' visibility='default' filepath='./Modules/_io/_iomodule.h' line='19' column='1'/> <var-decl name='PyBufferedRandom_Type' type-id='type-id-182' visibility='default' filepath='./Modules/_io/_iomodule.h' line='20' column='1'/> + <function-decl name='_PyIOBase_check_seekable' mangled-name='_PyIOBase_check_seekable' filepath='./Modules/_io/_iomodule.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyIOBase_check_readable' mangled-name='_PyIOBase_check_readable' filepath='./Modules/_io/_iomodule.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyIOBase_check_writable' mangled-name='_PyIOBase_check_writable' filepath='./Modules/_io/_iomodule.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyFileIO_closed' mangled-name='_PyFileIO_closed' filepath='./Modules/_io/_iomodule.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyNumber_AsOff_t' mangled-name='PyNumber_AsOff_t' filepath='./Modules/_io/_iomodule.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyBytes_Concat' mangled-name='PyBytes_Concat' filepath='./Include/bytesobject.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_io/textio.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyTextIOBase_Type' type-id='type-id-182' visibility='default' filepath='./Modules/_io/_iomodule.h' line='11' column='1'/> <var-decl name='PyIncrementalNewlineDecoder_Type' type-id='type-id-182' visibility='default' filepath='./Modules/_io/_iomodule.h' line='22' column='1'/> <var-decl name='PyTextIOWrapper_Type' type-id='type-id-182' visibility='default' filepath='./Modules/_io/_iomodule.h' line='21' column='1'/> + <function-decl name='_PyIOBase_check_closed' mangled-name='_PyIOBase_check_closed' filepath='./Modules/_io/_iomodule.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyLong_AsByteArray' mangled-name='_PyLong_AsByteArray' filepath='./Include/longobject.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyCodec_LookupTextEncoding' mangled-name='_PyCodec_LookupTextEncoding' filepath='./Include/codecs.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyIO_get_locale_module' mangled-name='_PyIO_get_locale_module' filepath='./Modules/_io/_iomodule.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyCodecInfo_GetIncrementalEncoder' mangled-name='_PyCodecInfo_GetIncrementalEncoder' filepath='./Include/codecs.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyCodecInfo_GetIncrementalDecoder' mangled-name='_PyCodecInfo_GetIncrementalDecoder' filepath='./Include/codecs.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_io/stringio.c' comp-dir-path='/src' language='LANG_C99'> <var-decl name='PyStringIO_Type' type-id='type-id-182' visibility='default' filepath='./Modules/_io/_iomodule.h' line='16' column='1'/> + <function-decl name='_PyAccu_Destroy' mangled-name='_PyAccu_Destroy' filepath='./Include/internal/pycore_accu.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyAccu_Init' mangled-name='_PyAccu_Init' filepath='./Include/internal/pycore_accu.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyIO_find_line_ending' mangled-name='_PyIO_find_line_ending' filepath='./Modules/_io/_iomodule.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyAccu_Finish' mangled-name='_PyAccu_Finish' filepath='./Include/internal/pycore_accu.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyAccu_Accumulate' mangled-name='_PyAccu_Accumulate' filepath='./Include/internal/pycore_accu.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyIncrementalNewlineDecoder_decode' mangled-name='_PyIncrementalNewlineDecoder_decode' filepath='./Modules/_io/_iomodule.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_AsUCS4' mangled-name='PyUnicode_AsUCS4' filepath='./Include/unicodeobject.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyUnicode_AsUCS4Copy' mangled-name='PyUnicode_AsUCS4Copy' filepath='./Include/unicodeobject.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/faulthandler.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyInit_faulthandler' mangled-name='PyInit_faulthandler' filepath='./Modules/faulthandler.c' line='1307' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_faulthandler'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='sigaltstack' mangled-name='sigaltstack' filepath='/usr/include/signal.h' line='321' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='getrlimit' mangled-name='getrlimit64' filepath='/usr/include/x86_64-linux-gnu/sys/resource.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='setrlimit' mangled-name='setrlimit64' filepath='/usr/include/x86_64-linux-gnu/sys/resource.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_PyThreadState_UncheckedGet' mangled-name='_PyThreadState_UncheckedGet' filepath='./Include/cpython/pystate.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyThreadState_GetInterpreter' mangled-name='PyThreadState_GetInterpreter' filepath='./Include/pystate.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_DumpTraceback' mangled-name='_Py_DumpTraceback' filepath='./Include/internal/pycore_traceback.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_tracemalloc.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='_PyTraceMalloc_GetTraceback' mangled-name='_PyTraceMalloc_GetTraceback' filepath='./Modules/_tracemalloc.c' line='1812' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTraceMalloc_GetTraceback'> @@ -13808,16 +18627,49 @@ <function-decl name='PyInit__tracemalloc' mangled-name='PyInit__tracemalloc' filepath='./Modules/_tracemalloc.c' line='1695' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__tracemalloc'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='_Py_hashtable_get' mangled-name='_Py_hashtable_get' filepath='./Include/internal/pycore_hashtable.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_hashtable_steal' mangled-name='_Py_hashtable_steal' filepath='./Include/internal/pycore_hashtable.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_hashtable_size' mangled-name='_Py_hashtable_size' filepath='./Include/internal/pycore_hashtable.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_DumpASCII' mangled-name='_Py_DumpASCII' filepath='./Include/internal/pycore_traceback.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_DumpDecimal' mangled-name='_Py_DumpDecimal' filepath='./Include/internal/pycore_traceback.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_hashtable_foreach' mangled-name='_Py_hashtable_foreach' filepath='./Include/internal/pycore_hashtable.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='_Py_hashtable_clear' mangled-name='_Py_hashtable_clear' filepath='./Include/internal/pycore_hashtable.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyMem_GetAllocator' mangled-name='PyMem_GetAllocator' filepath='./Include/cpython/pymem.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/_peg_parser.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyInit__peg_parser' mangled-name='PyInit__peg_parser' filepath='./Modules/_peg_parser.c' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__peg_parser'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='PyPegen_ASTFromString' mangled-name='PyPegen_ASTFromString' filepath='./Include/internal/pegen_interface.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> + <function-decl name='PyParser_ASTFromString' mangled-name='PyParser_ASTFromString' filepath='./Include/pythonrun.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/symtablemodule.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyInit__symtable' mangled-name='PyInit__symtable' filepath='./Modules/symtablemodule.c' line='87' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__symtable'> <return type-id='type-id-100'/> </function-decl> + <function-decl name='_Py_SymtableStringObjectFlags' mangled-name='_Py_SymtableStringObjectFlags' filepath='./Include/pythonrun.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'> + <return type-id='type-id-4'/> + </function-decl> </abi-instr> <abi-instr version='1.0' address-size='64' path='./Modules/xxsubtype.c' comp-dir-path='/src' language='LANG_C99'> <function-decl name='PyInit_xxsubtype' mangled-name='PyInit_xxsubtype' filepath='./Modules/xxsubtype.c' line='311' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_xxsubtype'> diff --git a/Include/cpython/unicodeobject.h b/Include/cpython/unicodeobject.h index d24a7a6a4d..d3c906aa92 100644 --- a/Include/cpython/unicodeobject.h +++ b/Include/cpython/unicodeobject.h @@ -857,12 +857,20 @@ PyAPI_FUNC(PyObject*) _PyUnicode_EncodeUTF16( /* --- Unicode-Escape Codecs ---------------------------------------------- */ +/* Variant of PyUnicode_DecodeUnicodeEscape that supports partial decoding. */ +PyAPI_FUNC(PyObject*) _PyUnicode_DecodeUnicodeEscapeStateful( + const char *string, /* Unicode-Escape encoded string */ + Py_ssize_t length, /* size of string */ + const char *errors, /* error handling */ + Py_ssize_t *consumed /* bytes consumed */ +); /* Helper for PyUnicode_DecodeUnicodeEscape that detects invalid escape chars. */ -PyAPI_FUNC(PyObject*) _PyUnicode_DecodeUnicodeEscape( +PyAPI_FUNC(PyObject*) _PyUnicode_DecodeUnicodeEscapeInternal( const char *string, /* Unicode-Escape encoded string */ Py_ssize_t length, /* size of string */ const char *errors, /* error handling */ + Py_ssize_t *consumed, /* bytes consumed */ const char **first_invalid_escape /* on return, points to first invalid escaped char in string. */ diff --git a/Lib/encodings/unicode_escape.py b/Lib/encodings/unicode_escape.py index 817f93265a..9b1ce99b33 100644 --- a/Lib/encodings/unicode_escape.py +++ b/Lib/encodings/unicode_escape.py @@ -21,15 +21,16 @@ class IncrementalEncoder(codecs.IncrementalEncoder): def encode(self, input, final=False): return codecs.unicode_escape_encode(input, self.errors)[0] -class IncrementalDecoder(codecs.IncrementalDecoder): - def decode(self, input, final=False): - return codecs.unicode_escape_decode(input, self.errors)[0] +class IncrementalDecoder(codecs.BufferedIncrementalDecoder): + def _buffer_decode(self, input, errors, final): + return codecs.unicode_escape_decode(input, errors, final) class StreamWriter(Codec,codecs.StreamWriter): pass class StreamReader(Codec,codecs.StreamReader): - pass + def decode(self, input, errors='strict'): + return codecs.unicode_escape_decode(input, errors, False) ### encodings module API diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py index 8d112a171d..09ab852b39 100644 --- a/Lib/test/test_codecs.py +++ b/Lib/test/test_codecs.py @@ -2327,7 +2327,11 @@ class TypesTest(unittest.TestCase): (r"\x5c\x55\x30\x30\x31\x31\x30\x30\x30\x30", 10)) -class UnicodeEscapeTest(unittest.TestCase): +class UnicodeEscapeTest(ReadTest, unittest.TestCase): + encoding = "unicode-escape" + + test_lone_surrogates = None + def test_empty(self): self.assertEqual(codecs.unicode_escape_encode(""), (b"", 0)) self.assertEqual(codecs.unicode_escape_decode(b""), ("", 0)) @@ -2414,6 +2418,44 @@ class UnicodeEscapeTest(unittest.TestCase): self.assertEqual(decode(br"\U00110000", "ignore"), ("", 10)) self.assertEqual(decode(br"\U00110000", "replace"), ("\ufffd", 10)) + def test_partial(self): + self.check_partial( + "\x00\t\n\r\\\xff\uffff\U00010000", + [ + '', + '', + '', + '\x00', + '\x00', + '\x00\t', + '\x00\t', + '\x00\t\n', + '\x00\t\n', + '\x00\t\n\r', + '\x00\t\n\r', + '\x00\t\n\r\\', + '\x00\t\n\r\\', + '\x00\t\n\r\\', + '\x00\t\n\r\\', + '\x00\t\n\r\\\xff', + '\x00\t\n\r\\\xff', + '\x00\t\n\r\\\xff', + '\x00\t\n\r\\\xff', + '\x00\t\n\r\\\xff', + '\x00\t\n\r\\\xff', + '\x00\t\n\r\\\xff\uffff', + '\x00\t\n\r\\\xff\uffff', + '\x00\t\n\r\\\xff\uffff', + '\x00\t\n\r\\\xff\uffff', + '\x00\t\n\r\\\xff\uffff', + '\x00\t\n\r\\\xff\uffff', + '\x00\t\n\r\\\xff\uffff', + '\x00\t\n\r\\\xff\uffff', + '\x00\t\n\r\\\xff\uffff', + '\x00\t\n\r\\\xff\uffff', + '\x00\t\n\r\\\xff\uffff\U00010000', + ] + ) class RawUnicodeEscapeTest(unittest.TestCase): def test_empty(self): diff --git a/Misc/NEWS.d/next/Library/2021-10-14-00-19-02.bpo-45461.4LB_tJ.rst b/Misc/NEWS.d/next/Library/2021-10-14-00-19-02.bpo-45461.4LB_tJ.rst new file mode 100644 index 0000000000..c1c4ed1ace --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-10-14-00-19-02.bpo-45461.4LB_tJ.rst @@ -0,0 +1,2 @@ +Fix incremental decoder and stream reader in the "unicode-escape" codec. +Previously they failed if the escape sequence was split. diff --git a/Modules/_codecsmodule.c b/Modules/_codecsmodule.c index 952072102d..f22d4daca0 100644 --- a/Modules/_codecsmodule.c +++ b/Modules/_codecsmodule.c @@ -487,17 +487,20 @@ _codecs_utf_32_ex_decode_impl(PyObject *module, Py_buffer *data, _codecs.unicode_escape_decode data: Py_buffer(accept={str, buffer}) errors: str(accept={str, NoneType}) = None + final: bool(accept={int}) = True / [clinic start generated code]*/ static PyObject * _codecs_unicode_escape_decode_impl(PyObject *module, Py_buffer *data, - const char *errors) -/*[clinic end generated code: output=3ca3c917176b82ab input=8328081a3a569bd6]*/ + const char *errors, int final) +/*[clinic end generated code: output=b284f97b12c635ee input=6154f039a9f7c639]*/ { - PyObject *decoded = PyUnicode_DecodeUnicodeEscape(data->buf, data->len, - errors); - return codec_tuple(decoded, data->len); + Py_ssize_t consumed = data->len; + PyObject *decoded = _PyUnicode_DecodeUnicodeEscapeStateful(data->buf, data->len, + errors, + final ? NULL : &consumed); + return codec_tuple(decoded, consumed); } /*[clinic input] diff --git a/Modules/clinic/_codecsmodule.c.h b/Modules/clinic/_codecsmodule.c.h index 772c8ca538..4e2c057007 100644 --- a/Modules/clinic/_codecsmodule.c.h +++ b/Modules/clinic/_codecsmodule.c.h @@ -1149,7 +1149,7 @@ exit: } PyDoc_STRVAR(_codecs_unicode_escape_decode__doc__, -"unicode_escape_decode($module, data, errors=None, /)\n" +"unicode_escape_decode($module, data, errors=None, final=True, /)\n" "--\n" "\n"); @@ -1158,7 +1158,7 @@ PyDoc_STRVAR(_codecs_unicode_escape_decode__doc__, static PyObject * _codecs_unicode_escape_decode_impl(PyObject *module, Py_buffer *data, - const char *errors); + const char *errors, int final); static PyObject * _codecs_unicode_escape_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs) @@ -1166,8 +1166,9 @@ _codecs_unicode_escape_decode(PyObject *module, PyObject *const *args, Py_ssize_ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; const char *errors = NULL; + int final = 1; - if (!_PyArg_CheckPositional("unicode_escape_decode", nargs, 1, 2)) { + if (!_PyArg_CheckPositional("unicode_escape_decode", nargs, 1, 3)) { goto exit; } if (PyUnicode_Check(args[0])) { @@ -1208,8 +1209,20 @@ _codecs_unicode_escape_decode(PyObject *module, PyObject *const *args, Py_ssize_ _PyArg_BadArgument("unicode_escape_decode", "argument 2", "str or None", args[1]); goto exit; } + if (nargs < 3) { + goto skip_optional; + } + if (PyFloat_Check(args[2])) { + PyErr_SetString(PyExc_TypeError, + "integer argument expected, got float" ); + goto exit; + } + final = _PyLong_AsInt(args[2]); + if (final == -1 && PyErr_Occurred()) { + goto exit; + } skip_optional: - return_value = _codecs_unicode_escape_decode_impl(module, &data, errors); + return_value = _codecs_unicode_escape_decode_impl(module, &data, errors, final); exit: /* Cleanup for data */ @@ -2922,4 +2935,4 @@ exit: #ifndef _CODECS_CODE_PAGE_ENCODE_METHODDEF #define _CODECS_CODE_PAGE_ENCODE_METHODDEF #endif /* !defined(_CODECS_CODE_PAGE_ENCODE_METHODDEF) */ -/*[clinic end generated code: output=51b42d170889524c input=a9049054013a1b77]*/ +/*[clinic end generated code: output=d4b696fe54cfee8f input=a9049054013a1b77]*/ diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 38fb3ffc5e..d6fc03e1ae 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -6271,9 +6271,10 @@ PyUnicode_AsUTF16String(PyObject *unicode) static _PyUnicode_Name_CAPI *ucnhash_CAPI = NULL; PyObject * -_PyUnicode_DecodeUnicodeEscape(const char *s, +_PyUnicode_DecodeUnicodeEscapeInternal(const char *s, Py_ssize_t size, const char *errors, + Py_ssize_t *consumed, const char **first_invalid_escape) { const char *starts = s; @@ -6286,6 +6287,9 @@ _PyUnicode_DecodeUnicodeEscape(const char *s, *first_invalid_escape = NULL; if (size == 0) { + if (consumed) { + *consumed = 0; + } _Py_RETURN_UNICODE_EMPTY(); } /* Escaped strings will always be longer than the resulting @@ -6336,7 +6340,7 @@ _PyUnicode_DecodeUnicodeEscape(const char *s, /* \ - Escapes */ if (s >= end) { message = "\\ at end of string"; - goto error; + goto incomplete; } c = (unsigned char) *s++; @@ -6390,7 +6394,10 @@ _PyUnicode_DecodeUnicodeEscape(const char *s, count = 8; message = "truncated \\UXXXXXXXX escape"; hexescape: - for (ch = 0; count && s < end; ++s, --count) { + for (ch = 0; count; ++s, --count) { + if (s >= end) { + goto incomplete; + } c = (unsigned char)*s; ch <<= 4; if (c >= '0' && c <= '9') { @@ -6403,12 +6410,9 @@ _PyUnicode_DecodeUnicodeEscape(const char *s, ch += c - ('A' - 10); } else { - break; + goto error; } } - if (count) { - goto error; - } /* when we get here, ch is a 32-bit unicode character */ if (ch > MAX_UNICODE) { @@ -6435,14 +6439,20 @@ _PyUnicode_DecodeUnicodeEscape(const char *s, } message = "malformed \\N character escape"; - if (s < end && *s == '{') { + if (s >= end) { + goto incomplete; + } + if (*s == '{') { const char *start = ++s; size_t namelen; /* look for the closing brace */ while (s < end && *s != '}') s++; + if (s >= end) { + goto incomplete; + } namelen = s - start; - if (namelen && s < end) { + if (namelen) { /* found a name. look it up in the unicode database */ s++; ch = 0xffffffff; /* in case 'getcode' messes up */ @@ -6468,6 +6478,11 @@ _PyUnicode_DecodeUnicodeEscape(const char *s, continue; } + incomplete: + if (consumed) { + *consumed = startinpos; + break; + } error: endinpos = s-starts; writer.min_length = end - s + writer.pos; @@ -6496,12 +6511,14 @@ _PyUnicode_DecodeUnicodeEscape(const char *s, } PyObject * -PyUnicode_DecodeUnicodeEscape(const char *s, +_PyUnicode_DecodeUnicodeEscapeStateful(const char *s, Py_ssize_t size, - const char *errors) + const char *errors, + Py_ssize_t *consumed) { const char *first_invalid_escape; - PyObject *result = _PyUnicode_DecodeUnicodeEscape(s, size, errors, + PyObject *result = _PyUnicode_DecodeUnicodeEscapeInternal(s, size, errors, + consumed, &first_invalid_escape); if (result == NULL) return NULL; @@ -6516,6 +6533,14 @@ PyUnicode_DecodeUnicodeEscape(const char *s, return result; } +PyObject * +PyUnicode_DecodeUnicodeEscape(const char *s, + Py_ssize_t size, + const char *errors) +{ + return _PyUnicode_DecodeUnicodeEscapeStateful(s, size, errors, NULL); +} + /* Return a Unicode-Escape string version of the Unicode object. */ PyObject * diff --git a/Parser/pegen/parse_string.c b/Parser/pegen/parse_string.c index 41fdc2d81d..f1df2c46a6 100644 --- a/Parser/pegen/parse_string.c +++ b/Parser/pegen/parse_string.c @@ -120,7 +120,7 @@ decode_unicode_with_escapes(Parser *parser, const char *s, size_t len, Token *t) s = buf; const char *first_invalid_escape; - v = _PyUnicode_DecodeUnicodeEscape(s, len, NULL, &first_invalid_escape); + v = _PyUnicode_DecodeUnicodeEscapeInternal(s, len, NULL, NULL, &first_invalid_escape); if (v != NULL && first_invalid_escape != NULL) { if (warn_invalid_escape_sequence(parser, *first_invalid_escape, t) < 0) { diff --git a/Python/ast.c b/Python/ast.c index c7ba4d9c54..6dd7059263 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -4640,7 +4640,7 @@ decode_unicode_with_escapes(struct compiling *c, const node *n, const char *s, s = buf; const char *first_invalid_escape; - v = _PyUnicode_DecodeUnicodeEscape(s, len, NULL, &first_invalid_escape); + v = _PyUnicode_DecodeUnicodeEscapeInternal(s, len, NULL, NULL, &first_invalid_escape); if (v != NULL && first_invalid_escape != NULL) { if (warn_invalid_escape_sequence(c, n, *first_invalid_escape) < 0) { |