summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2022-09-01 15:17:14 -0700
committerGitHub <noreply@github.com>2022-09-01 18:17:14 -0400
commit9da350265f4065d6381148fb3f8c79d1f058cf6d (patch)
treee59978f881b3115313a6f0bc2498379928dfe202
parentbb8e49b4203fc1f2df554b452dbd3926102b18ee (diff)
downloadcpython-git-9da350265f4065d6381148fb3f8c79d1f058cf6d.tar.gz
[3.7] Fix the Windows CI config. (GH-96490)
* Add ABI and generated files checks to CI. * Fix the Windows CI config. This matches what 3.8 did in 899eb4167264a17ba703677814d69d4f7dcaea41.
-rw-r--r--.github/workflows/build.yml58
-rw-r--r--Doc/data/python3.7m.abi14614
-rw-r--r--Makefile.pre.in7
3 files changed, 14676 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f05da0938e..be3bbcf90b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -18,18 +18,70 @@ jobs:
run_tests: ${{ steps.check.outputs.run_tests }}
steps:
- uses: actions/checkout@v2
+ with:
+ fetch-depth: 1000
- name: Check for source changes
id: check
run: |
if [ -z "$GITHUB_BASE_REF" ]; then
echo '::set-output name=run_tests::true'
else
- git fetch origin $GITHUB_BASE_REF --depth=1
+ git fetch origin $GITHUB_BASE_REF
git diff --name-only origin/$GITHUB_BASE_REF... | grep -qvE '(\.rst$|^Doc|^Misc)' && echo '::set-output name=run_tests::true' || true
fi
+
+ check_abi:
+ name: 'Check if the ABI has changed'
+ runs-on: ubuntu-20.04
+ needs: check_source
+ if: needs.check_source.outputs.run_tests == 'true'
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-python@v2
+ - name: Install Dependencies
+ run: |
+ sudo ./.github/workflows/posix-deps-apt.sh
+ sudo apt-get install -yq abigail-tools
+ - name: Build CPython
+ env:
+ CFLAGS: -g3 -O0
+ run: |
+ # Build Python with the libpython dynamic library
+ ./configure --enable-shared
+ make -j4
+ - name: Check for changes in the ABI
+ run: make check-abidump
+
+ check_generated_files:
+ name: 'Check if generated files are up to date'
+ runs-on: ubuntu-latest
+ needs: check_source
+ if: needs.check_source.outputs.run_tests == 'true'
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-python@v2
+ - name: Install Dependencies
+ run: sudo ./.github/workflows/posix-deps-apt.sh
+ - name: Build CPython
+ run: |
+ ./configure --with-pydebug
+ make -j4 regen-all
+ - name: Check for changes
+ run: |
+ changes=$(git status --porcelain)
+ # Check for changes in regenerated files
+ if ! test -z "$changes"
+ then
+ echo "Generated files not up to date. Perhaps you forgot to run make regen-all ;)"
+ echo "$changes"
+ exit 1
+ fi
+ - name: Check exported libpython symbols
+ run: make smelly
+
build_win32:
name: 'Windows (x86)'
- runs-on: windows-latest
+ runs-on: windows-2019
needs: check_source
if: needs.check_source.outputs.run_tests == 'true'
steps:
@@ -43,7 +95,7 @@ jobs:
build_win_amd64:
name: 'Windows (x64)'
- runs-on: windows-latest
+ runs-on: windows-2019
needs: check_source
if: needs.check_source.outputs.run_tests == 'true'
steps:
diff --git a/Doc/data/python3.7m.abi b/Doc/data/python3.7m.abi
new file mode 100644
index 0000000000..c42f67ca89
--- /dev/null
+++ b/Doc/data/python3.7m.abi
@@ -0,0 +1,14614 @@
+<abi-corpus path='libpython3.7m.so' soname='libpython3.7m.so.1.0'>
+ <elf-needed>
+ <dependency name='libpthread.so.0'/>
+ <dependency name='libdl.so.2'/>
+ <dependency name='libutil.so.1'/>
+ <dependency name='libm.so.6'/>
+ <dependency name='libc.so.6'/>
+ </elf-needed>
+ <elf-function-symbols>
+ <elf-symbol name='PyAST_Check' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyAST_Compile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyAST_CompileEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyAST_CompileObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyAST_FromNode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyAST_FromNodeObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyAST_Validate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyAST_mod2obj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyAST_obj2mod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyArena_AddPyObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyArena_Free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyArena_Malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyArena_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyArg_Parse' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyArg_ParseTuple' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyArg_ParseTupleAndKeywords' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyArg_UnpackTuple' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyArg_VaParse' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyArg_VaParseTupleAndKeywords' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyArg_ValidateKeywordArguments' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyAsyncGen_ClearFreeLists' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyAsyncGen_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyAsyncGen_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBool_FromLong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBuffer_FillContiguousStrides' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBuffer_FillInfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBuffer_FromContiguous' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBuffer_GetPointer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBuffer_IsContiguous' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBuffer_Release' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBuffer_ToContiguous' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyByteArray_AsString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyByteArray_Concat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyByteArray_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyByteArray_FromObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyByteArray_FromStringAndSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyByteArray_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyByteArray_Resize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyByteArray_Size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_AsString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_AsStringAndSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_Concat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_ConcatAndDel' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_DecodeEscape' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_FromFormat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_FromFormatV' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_FromObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_FromString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_FromStringAndSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_Repr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_Size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCFunction_Call' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCFunction_ClearFreeList' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCFunction_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCFunction_GetFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCFunction_GetFunction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCFunction_GetSelf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCFunction_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCFunction_NewEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCallIter_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCallable_Check' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCapsule_GetContext' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCapsule_GetDestructor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCapsule_GetName' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCapsule_GetPointer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCapsule_Import' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCapsule_IsValid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCapsule_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCapsule_SetContext' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCapsule_SetDestructor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCapsule_SetName' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCapsule_SetPointer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCell_Get' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCell_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCell_Set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyClassMethod_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCode_Addr2Line' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCode_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCode_NewEmpty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCode_Optimize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_BackslashReplaceErrors' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_Decode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_Decoder' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_Encode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_Encoder' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_IgnoreErrors' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_IncrementalDecoder' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_IncrementalEncoder' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_KnownEncoding' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_LookupError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_NameReplaceErrors' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_Register' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_RegisterError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_ReplaceErrors' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_StreamReader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_StreamWriter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_StrictErrors' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCodec_XMLCharRefReplaceErrors' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCompileString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCompile_OpcodeStackEffect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyComplex_AsCComplex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyComplex_FromCComplex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyComplex_FromDoubles' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyComplex_ImagAsDouble' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyComplex_RealAsDouble' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContextVar_Get' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContextVar_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContextVar_Reset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContextVar_Set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContext_ClearFreeList' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContext_Copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContext_CopyCurrent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContext_Enter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContext_Exit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContext_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCoro_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDescr_NewClassMethod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDescr_NewGetSet' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDescr_NewMember' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDescr_NewMethod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDescr_NewWrapper' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDictProxy_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_Clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_ClearFreeList' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_Contains' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_Copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_DelItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_DelItemString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_GetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_GetItemString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_GetItemWithError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_Items' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_Keys' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_Merge' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_MergeFromSeq2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_Next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_SetDefault' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_SetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_SetItemString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_Size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_Update' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_Values' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_BadArgument' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_BadInternalCall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_CheckSignals' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_Clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_Display' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_ExceptionMatches' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_Fetch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_Format' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_FormatV' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_GetExcInfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_GivenExceptionMatches' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_NewException' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_NewExceptionWithDoc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_NoMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_NormalizeException' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_Occurred' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_Print' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_PrintEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_ProgramText' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_ProgramTextObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_ResourceWarning' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_Restore' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SetExcInfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SetFromErrno' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SetFromErrnoWithFilename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SetFromErrnoWithFilenameObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SetFromErrnoWithFilenameObjects' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SetImportError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SetImportErrorSubclass' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SetInterrupt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SetNone' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SetObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SetString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SyntaxLocation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SyntaxLocationEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_SyntaxLocationObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_Warn' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_WarnEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_WarnExplicit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_WarnExplicitFormat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_WarnExplicitObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_WarnFormat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyErr_WriteUnraisable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_AcquireLock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_AcquireThread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_CallFunction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_CallMethod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_CallObjectWithKeywords' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_EvalCode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_EvalCodeEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_EvalFrame' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_EvalFrameEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_GetBuiltins' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_GetFrame' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_GetFuncDesc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_GetFuncName' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_GetGlobals' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_GetLocals' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_InitThreads' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_MergeCompilerFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_ReInitThreads' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_ReleaseLock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_ReleaseThread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_RestoreThread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_SaveThread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_SetProfile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_SetTrace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEval_ThreadsInitialized' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyException_GetCause' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyException_GetContext' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyException_GetTraceback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyException_SetCause' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyException_SetContext' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyException_SetTraceback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFPE_dummy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFile_FromFd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFile_GetLine' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFile_NewStdPrinter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFile_WriteObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFile_WriteString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFloat_AsDouble' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFloat_ClearFreeList' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFloat_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFloat_FromDouble' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFloat_FromString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFloat_GetInfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFloat_GetMax' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFloat_GetMin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFrame_BlockPop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFrame_BlockSetup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFrame_ClearFreeList' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFrame_FastToLocals' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFrame_FastToLocalsWithError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFrame_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFrame_GetLineNumber' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFrame_LocalsToFast' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFrame_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFrozenSet_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_GetAnnotations' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_GetClosure' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_GetCode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_GetDefaults' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_GetGlobals' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_GetKwDefaults' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_GetModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_NewWithQualName' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_SetAnnotations' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_SetClosure' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_SetDefaults' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_SetKwDefaults' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFuture_FromAST' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFuture_FromASTObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGC_Collect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGILState_Check' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGILState_Ensure' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGILState_GetThisThreadState' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGILState_Release' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGen_NeedsFinalizing' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGen_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGen_NewWithQualName' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGrammar_AddAccelerators' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGrammar_FindDFA' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGrammar_LabelRepr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGrammar_RemoveAccelerators' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyHash_GetFuncDef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_AddModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_AddModuleObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_AppendInittab' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_Cleanup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_ExecCodeModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_ExecCodeModuleEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_ExecCodeModuleObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_ExecCodeModuleWithPathnames' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_ExtendInittab' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_GetImporter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_GetMagicNumber' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_GetMagicTag' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_GetModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_GetModuleDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_Import' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_ImportFrozenModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_ImportFrozenModuleObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_ImportModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_ImportModuleLevel' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_ImportModuleLevelObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_ImportModuleNoBlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_ReloadModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__abc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__ast' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__codecs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__collections' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__functools' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__imp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__io' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__locale' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__operator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__signal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__sre' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__stat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__symtable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__thread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__tracemalloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit__weakref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit_atexit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit_errno' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit_faulthandler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit_gc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit_itertools' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit_posix' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit_pwd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit_time' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit_xxsubtype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInit_zipimport' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInstanceMethod_Function' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInstanceMethod_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInterpreterState_Clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInterpreterState_Delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInterpreterState_GetID' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInterpreterState_Head' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInterpreterState_Main' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInterpreterState_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInterpreterState_Next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInterpreterState_ThreadHead' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyIter_Next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_Append' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_AsTuple' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_ClearFreeList' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_GetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_GetSlice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_Insert' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_Reverse' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_SetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_SetSlice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_Size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_Sort' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_AsDouble' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_AsLong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_AsLongAndOverflow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_AsLongLong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_AsLongLongAndOverflow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_AsSize_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_AsSsize_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_AsUnsignedLong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_AsUnsignedLongLong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_AsUnsignedLongLongMask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_AsUnsignedLongMask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_AsVoidPtr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_FromDouble' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_FromLong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_FromLongLong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_FromSize_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_FromSsize_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_FromString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_FromUnicode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_FromUnicodeObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_FromUnsignedLong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_FromUnsignedLongLong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_FromVoidPtr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_GetInfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMapping_Check' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMapping_GetItemString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMapping_HasKey' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMapping_HasKeyString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMapping_Items' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMapping_Keys' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMapping_Length' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMapping_SetItemString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMapping_Size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMapping_Values' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMarshal_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMarshal_ReadLastObjectFromFile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMarshal_ReadLongFromFile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMarshal_ReadObjectFromFile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMarshal_ReadObjectFromString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMarshal_ReadShortFromFile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMarshal_WriteLongToFile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMarshal_WriteObjectToFile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMarshal_WriteObjectToString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMem_Calloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMem_Free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMem_GetAllocator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMem_Malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMem_RawCalloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMem_RawFree' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMem_RawMalloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMem_RawRealloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMem_Realloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMem_SetAllocator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMem_SetupDebugHooks' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMember_GetOne' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMember_SetOne' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMemoryView_FromBuffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMemoryView_FromMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMemoryView_FromObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMemoryView_GetContiguous' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMethod_ClearFreeList' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMethod_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMethod_Function' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMethod_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMethod_Self' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModuleDef_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_AddFunctions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_AddIntConstant' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_AddObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_AddStringConstant' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_Create2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_ExecDef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_FromDefAndSpec2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_GetDef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_GetDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_GetFilename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_GetFilenameObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_GetName' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_GetNameObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_GetState' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_GetWarningsModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_NewObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_SetDocString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNode_AddChild' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNode_Compile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNode_Free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNode_ListTree' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNode_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Absolute' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_And' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_AsOff_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_AsSsize_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Check' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Divmod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Float' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_FloorDivide' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InMatrixMultiply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlaceAdd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlaceAnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlaceFloorDivide' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlaceLshift' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlaceMatrixMultiply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlaceMultiply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlaceOr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlacePower' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlaceRemainder' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlaceRshift' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlaceSubtract' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlaceTrueDivide' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_InPlaceXor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Index' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Invert' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Long' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Lshift' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_MatrixMultiply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Multiply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Negative' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Or' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Positive' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Power' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Remainder' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Rshift' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Subtract' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_ToBase' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_TrueDivide' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyNumber_Xor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyODict_DelItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyODict_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyODict_SetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_AfterFork' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_AfterFork_Child' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_AfterFork_Parent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_BeforeFork' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_FSPath' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_FiniInterrupts' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_InitInterrupts' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_InterruptOccurred' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_Readline' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_StdioReadline' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_double_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_getsig' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_mystricmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_mystrnicmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_setsig' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_snprintf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_string_to_double' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_strtol' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_strtoul' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_vsnprintf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_ASCII' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_AsCharBuffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_AsFileDescriptor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_AsReadBuffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_AsWriteBuffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Bytes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Call' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_CallFinalizer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_CallFinalizerFromDealloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_CallFunction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_CallFunctionObjArgs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_CallMethod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_CallMethodObjArgs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_CallObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Calloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_CheckReadBuffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_ClearWeakRefs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_CopyData' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_DelItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_DelItemString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Dir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Format' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GC_Del' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GC_Track' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GC_UnTrack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GenericGetAttr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GenericGetDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GenericSetAttr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GenericSetDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GetArenaAllocator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GetAttr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GetAttrString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GetBuffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_GetIter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_HasAttr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_HasAttrString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Hash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_HashNotImplemented' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_InitVar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_IsInstance' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_IsSubclass' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_IsTrue' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Length' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_LengthHint' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Not' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Print' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Realloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Repr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_RichCompare' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_RichCompareBool' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_SelfIter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_SetArenaAllocator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_SetAttr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_SetAttrString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_SetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Str' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyObject_Type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ASTFromFile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ASTFromFileObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ASTFromString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ASTFromStringObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_AddToken' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ClearError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_Delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ParseFile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ParseFileFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ParseFileFlagsEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ParseFileObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ParseString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ParseStringFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ParseStringFlagsFilename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ParseStringFlagsFilenameEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_ParseStringObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_SetError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_SimpleParseFile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_SimpleParseFileFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_SimpleParseString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_SimpleParseStringFilename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_SimpleParseStringFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyParser_SimpleParseStringFlagsFilename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_AnyFile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_AnyFileEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_AnyFileExFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_AnyFileFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_File' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_FileEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_FileExFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_FileFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_InteractiveLoop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_InteractiveLoopFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_InteractiveOne' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_InteractiveOneFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_InteractiveOneObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_SimpleFile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_SimpleFileEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_SimpleFileExFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_SimpleString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_SimpleStringFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_String' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRun_StringFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyST_GetScope' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySeqIter_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_Check' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_Concat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_Contains' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_Count' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_DelItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_DelSlice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_Fast' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_GetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_GetSlice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_In' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_InPlaceConcat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_InPlaceRepeat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_Index' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_Length' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_List' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_Repeat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_SetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_SetSlice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_Size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySequence_Tuple' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySet_Add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySet_Clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySet_ClearFreeList' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySet_Contains' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySet_Discard' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySet_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySet_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySet_Pop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySet_Size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySignal_SetWakeupFd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySlice_AdjustIndices' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySlice_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySlice_GetIndices' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySlice_GetIndicesEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySlice_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySlice_Unpack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyState_AddModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyState_FindModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyState_RemoveModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyStaticMethod_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyStructSequence_GetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyStructSequence_InitType' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyStructSequence_InitType2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyStructSequence_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyStructSequence_NewType' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyStructSequence_SetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySymtable_Build' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySymtable_BuildObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySymtable_Free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySymtable_Lookup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_AddWarnOption' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_AddWarnOptionUnicode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_AddXOption' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_FormatStderr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_FormatStdout' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_GetObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_GetXOptions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_HasWarnOptions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_ResetWarnOptions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_SetArgv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_SetArgvEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_SetObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_SetPath' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_WriteStderr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySys_WriteStdout' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThreadState_Clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThreadState_Delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThreadState_DeleteCurrent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThreadState_Get' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThreadState_GetDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThreadState_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThreadState_Next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThreadState_SetAsyncExc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThreadState_Swap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_GetInfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_ReInitTLS' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_acquire_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_acquire_lock_timed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_allocate_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_create_key' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_delete_key' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_delete_key_value' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_exit_thread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_free_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_get_key_value' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_get_stacksize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_get_thread_ident' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_init_thread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_release_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_set_key_value' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_set_stacksize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_start_new_thread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_tss_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_tss_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_tss_delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_tss_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_tss_get' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_tss_is_created' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyThread_tss_set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyToken_OneChar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyToken_ThreeChars' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyToken_TwoChars' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTokenizer_FindEncoding' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTokenizer_FindEncodingFilename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTokenizer_Free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTokenizer_FromFile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTokenizer_FromString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTokenizer_FromUTF8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTokenizer_Get' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTraceBack_Here' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTraceBack_Print' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTraceMalloc_Track' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTraceMalloc_Untrack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTuple_ClearFreeList' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTuple_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTuple_GetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTuple_GetSlice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTuple_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTuple_Pack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTuple_SetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTuple_Size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyType_ClearCache' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyType_FromSpec' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyType_FromSpecWithBases' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyType_GenericAlloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyType_GenericNew' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyType_GetFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyType_GetSlot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyType_IsSubtype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyType_Modified' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyType_Ready' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeDecodeError_Create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeDecodeError_GetEncoding' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeDecodeError_GetEnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeDecodeError_GetObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeDecodeError_GetReason' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeDecodeError_GetStart' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeDecodeError_SetEnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeDecodeError_SetReason' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeDecodeError_SetStart' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeEncodeError_Create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeEncodeError_GetEncoding' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeEncodeError_GetEnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeEncodeError_GetObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeEncodeError_GetReason' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeEncodeError_GetStart' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeEncodeError_SetEnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeEncodeError_SetReason' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeEncodeError_SetStart' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeTranslateError_Create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeTranslateError_GetEnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeTranslateError_GetObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeTranslateError_GetReason' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeTranslateError_GetStart' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeTranslateError_SetEnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeTranslateError_SetReason' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeTranslateError_SetStart' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Append' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AppendAndDel' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsASCIIString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsCharmapString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsDecodedObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsDecodedUnicode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsEncodedObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsEncodedString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsEncodedUnicode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsLatin1String' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsRawUnicodeEscapeString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsUCS4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsUCS4Copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsUTF16String' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsUTF32String' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsUTF8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsUTF8AndSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsUTF8String' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsUnicode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsUnicodeAndSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsUnicodeCopy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsUnicodeEscapeString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsWideChar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_AsWideCharString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_BuildEncodingMap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_ClearFreeList' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Compare' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_CompareWithASCIIString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Concat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Contains' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_CopyCharacters' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Count' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Decode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeASCII' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeCharmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeFSDefault' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeFSDefaultAndSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeLatin1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeLocale' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeLocaleAndSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeRawUnicodeEscape' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeUTF16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeUTF16Stateful' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeUTF32' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeUTF32Stateful' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeUTF7' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeUTF7Stateful' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeUTF8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_DecodeUTF8Stateful' 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_Encode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_EncodeASCII' 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_EncodeDecimal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_EncodeFSDefault' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_EncodeLatin1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_EncodeLocale' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_EncodeRawUnicodeEscape' 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'/>
+ <elf-symbol name='PyUnicode_EncodeUTF32' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_EncodeUTF7' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_EncodeUTF8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_EncodeUnicodeEscape' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FSConverter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FSDecoder' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Fill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Find' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FindChar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Format' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FromEncodedObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FromFormat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FromFormatV' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FromKindAndData' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FromObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FromOrdinal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FromString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FromStringAndSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FromUnicode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_FromWideChar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_GetDefaultEncoding' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_GetLength' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_GetMax' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_GetSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_InternFromString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_InternImmortal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_InternInPlace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_IsIdentifier' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Join' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Partition' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_RPartition' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_RSplit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_ReadChar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Replace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Resize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_RichCompare' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Split' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Splitlines' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Substring' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Tailmatch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_TransformDecimalToASCII' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Translate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_TranslateCharmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_WriteChar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyWeakref_GetObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyWeakref_NewProxy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyWeakref_NewRef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyWrapper_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_AddPendingCall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_AtExit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_BuildValue' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_CompileString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_CompileStringExFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_CompileStringFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_CompileStringObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_DecRef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_DecodeLocale' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_EncodeLocale' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_EndInterpreter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_Exit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_FatalError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_FdIsInteractive' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_Finalize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_FinalizeEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_FrozenMain' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetArgcArgv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetBuildInfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetCompiler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetCopyright' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetExecPrefix' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetPath' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetPlatform' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetPrefix' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetProgramFullPath' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetProgramName' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetPythonHome' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetRecursionLimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_GetVersion' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_IncRef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_Initialize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_InitializeEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_IsInitialized' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_Main' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_MakePendingCalls' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_NewInterpreter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_ReprEnter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_ReprLeave' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_SetPath' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_SetProgramName' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_SetPythonHome' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_SetRecursionLimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_SetStandardStreamEncoding' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_SymtableString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_SymtableStringObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_UNICODE_strcat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_UNICODE_strchr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_UNICODE_strcmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_UNICODE_strcpy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_UNICODE_strlen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_UNICODE_strncmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_UNICODE_strncpy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_UNICODE_strrchr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_UniversalNewlineFgets' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_VaBuildValue' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_meta_grammar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_pgen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyAST_ExprAsUnicode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyAST_Optimize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyAccu_Accumulate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyAccu_Destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyAccu_Finish' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyAccu_FinishAsList' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyAccu_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_NoKeywords' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_NoPositional' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_ParseStack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_ParseStackAndKeywords' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_ParseStackAndKeywords_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_ParseStack_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_ParseTupleAndKeywordsFast' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_ParseTupleAndKeywordsFast_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_ParseTupleAndKeywords_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_ParseTuple_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_Parse_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_UnpackStack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_VaParseTupleAndKeywordsFast' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_VaParseTupleAndKeywordsFast_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_VaParseTupleAndKeywords_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyArg_VaParse_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyAsyncGenValueWrapperNew' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBuiltin_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytesWriter_Alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytesWriter_Dealloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytesWriter_Finish' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytesWriter_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytesWriter_Prepare' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytesWriter_Resize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytesWriter_WriteBytes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytes_DecodeEscape' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytes_FormatEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytes_FromHex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytes_Join' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytes_Resize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCFunction_DebugMallocStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCFunction_FastCallDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCFunction_FastCallKeywords' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCode_CheckLineNumber' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCode_ConstantKey' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCode_GetExtra' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCode_SetExtra' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCodecInfo_GetIncrementalDecoder' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCodecInfo_GetIncrementalEncoder' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCodec_DecodeText' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCodec_EncodeText' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCodec_Forget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCodec_Lookup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCodec_LookupTextEncoding' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyComplex_FormatAdvancedWriter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyContext_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyContext_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyContext_NewHamtForTests' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCoreConfig_AsDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCoreConfig_Clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCoreConfig_Copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCoreConfig_GetGlobalConfig' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCoreConfig_Read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCoreConfig_SetGlobalConfig' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCoro_GetAwaitableIter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDebugAllocatorStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDictKeys_DecRef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDictView_Intersect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDictView_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_Contains' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_DebugMallocStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_DelItemId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_DelItemIf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_DelItem_KnownHash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_FromKeys' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_GetItemId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_GetItemIdWithError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_GetItem_KnownHash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_HasOnlyStringKeys' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_KeysSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_LoadGlobal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_MaybeUntrack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_MergeEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_NewKeysForClass' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_NewPresized' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_Next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_Pop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_Pop_KnownHash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_SetItemId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_SetItem_KnownHash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyDict_SizeOf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyErr_BadInternalCall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyErr_ChainExceptions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyErr_FormatFromCause' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyErr_GetTopmostException' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyErr_SetKeyError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyErr_TrySetFromCause' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyErr_WarnUnawaitedCoroutine' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_CallTracing' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_EvalCodeWithName' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_EvalFrameDefault' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_FiniThreads' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_GetAsyncGenFinalizer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_GetAsyncGenFirstiter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_GetBuiltinId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_GetCoroutineOriginTrackingDepth' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_GetCoroutineWrapper' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_GetSwitchInterval' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_Initialize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_RequestCodeExtraIndex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_SetAsyncGenFinalizer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_SetAsyncGenFirstiter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_SetCoroutineOriginTrackingDepth' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_SetCoroutineWrapper' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_SetSwitchInterval' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_SignalAsyncExc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_SignalReceived' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_SliceIndex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyEval_SliceIndexNotNone' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyExc_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyExc_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFaulthandler_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFaulthandler_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFileIO_closed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFloat_DebugMallocStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFloat_FormatAdvancedWriter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFloat_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFloat_Pack2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFloat_Pack4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFloat_Pack8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFloat_Unpack2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFloat_Unpack4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFloat_Unpack8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFrame_DebugMallocStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFrame_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFrame_New_NoTrack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFunction_FastCallDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyFunction_FastCallKeywords' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGC_CollectIfEnabled' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGC_CollectNoFail' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGC_Dump' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGC_DumpShutdownStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGC_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGC_Initialize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGILState_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGILState_GetInterpreterStateUnsafe' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGILState_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGILState_Reinit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGen_FetchStopIterationValue' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGen_Finalize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGen_Send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGen_SetStopIterationValue' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyGen_yf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_Assoc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_Eq' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_Find' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_Len' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_NewIterItems' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_NewIterKeys' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_NewIterValues' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_Without' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHash_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIOBase_check_closed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIOBase_check_readable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIOBase_check_seekable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIOBase_check_writable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIOBase_finalize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_find_line_ending' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_get_locale_module' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_get_module_state' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_trap_eintr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImportHooks_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImportZip_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_AcquireLock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_AddModuleObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_FindBuiltin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_FindExtensionObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_FindExtensionObjectEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_FindSharedFuncptr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_Fini2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_FixupBuiltin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_FixupExtensionObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_GetModuleId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_IsInitialized' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_LoadDynamicModuleWithSpec' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_ReInitLock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_ReleaseLock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_SetModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_SetModuleString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIncrementalNewlineDecoder_decode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyInterpreterState_Enable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyInterpreterState_IDDecref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyInterpreterState_IDIncref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyInterpreterState_IDInitref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyInterpreterState_LookUpID' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyList_DebugMallocStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyList_Extend' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_AsByteArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_AsInt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_AsTime_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_Copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_DivmodNear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_Format' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_FormatAdvancedWriter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_FormatBytesWriter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_FormatWriter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_Frexp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_FromByteArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_FromBytes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_FromGid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_FromNbInt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_FromTime_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_FromUid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_GCD' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_NumBits' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_Sign' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMainInterpreterConfig_AsDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMainInterpreterConfig_Clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMainInterpreterConfig_Copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMainInterpreterConfig_Read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMem_DumpTraceback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMem_GetAllocatorsName' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMem_RawStrdup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMem_RawWcsdup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMem_SetDefaultAllocator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMem_SetupAllocators' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMem_Strdup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMethodDef_RawFastCallDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMethodDef_RawFastCallKeywords' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMethodDescr_FastCallKeywords' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMethod_DebugMallocStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyModule_Clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyModule_ClearDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyModule_CreateInitialized' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyNamespace_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyNode_SizeOf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyOS_GetOpt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyOS_IsMainThread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyOS_ResetGetOpt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyOS_URandom' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyOS_URandomNonblock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObjectDict_SetItem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_CallFunction_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_CallMethodId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_CallMethodIdObjArgs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_CallMethodId_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_CallMethod_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_Call_Prepend' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_DebugMallocStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_DebugTypeStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_Dump' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_FastCallDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_FastCallKeywords' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_FastCall_Prepend' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_GC_Calloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_GC_Malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_GC_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_GC_NewVar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_GC_Resize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_GenericGetAttrWithDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_GenericSetAttrWithDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_GetAttrId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_GetBuiltin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_GetDictPtr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_GetMethod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_HasAttrId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_HasFastCall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_HasLen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_IsAbstract' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_IsFreed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_LookupAttr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_LookupAttrId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_LookupSpecial' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_New' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_NewVar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_NextNotImplemented' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_RealIsInstance' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_RealIsSubclass' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyObject_SetAttrId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyPathConfig_Calculate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyPathConfig_Clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyPathConfig_ComputeArgv0' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyPathConfig_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyRuntimeState_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyRuntimeState_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyRuntime_Finalize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyRuntime_Initialize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySequence_BytesToCharpArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySequence_IterSearch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySet_NextEntry' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySet_Update' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySignal_AfterFork' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySlice_FromIndices' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySlice_GetLongIndices' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyStack_AsDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyStack_AsTuple' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyStack_AsTupleSlice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyStack_UnpackDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyState_AddModule' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyState_ClearModules' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyStructSequence_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySys_AddWarnOptionWithError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySys_AddXOptionWithError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySys_BeginInit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySys_EndInit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySys_GetObjectId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySys_GetSizeOf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySys_SetObjectId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyThreadState_DeleteExcept' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyThreadState_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyThreadState_Prealloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyThreadState_UncheckedGet' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyThread_CurrentFrames' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_AsMicroseconds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_AsMilliseconds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_AsNanosecondsObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_AsSecondsDouble' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_AsTimespec' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_AsTimeval' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_AsTimevalTime_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_AsTimeval_noraise' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_FromMillisecondsObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_FromNanoseconds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_FromNanosecondsObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_FromSeconds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_FromSecondsObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_FromTimespec' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_FromTimeval' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_GetMonotonicClock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_GetMonotonicClockWithInfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_GetPerfCounter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_GetPerfCounterWithInfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_GetSystemClock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_GetSystemClockWithInfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_MulDiv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_ObjectToTime_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_ObjectToTimespec' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_ObjectToTimeval' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_gmtime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTime_localtime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTraceMalloc_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTraceMalloc_GetTraceback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTraceMalloc_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTraceback_Add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTrash_deposit_object' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTrash_destroy_chain' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTrash_thread_deposit_object' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTrash_thread_destroy_chain' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTuple_DebugMallocStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTuple_MaybeUntrack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyTuple_Resize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyType_CalculateMetaclass' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyType_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyType_GetDocFromInternalDoc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyType_GetTextSignatureFromInternalDoc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyType_Lookup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyType_LookupId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyType_Name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicodeTranslateError_Create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicodeWriter_Dealloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicodeWriter_Finish' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicodeWriter_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicodeWriter_PrepareInternal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicodeWriter_PrepareKindInternal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicodeWriter_WriteASCIIString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicodeWriter_WriteChar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicodeWriter_WriteLatin1String' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicodeWriter_WriteStr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicodeWriter_WriteSubstring' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_AsASCIIString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_AsKind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_AsLatin1String' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_AsUTF8String' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_AsUnicode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_ClearStaticStrings' 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_DecodeUnicodeInternal' 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'/>
+ <elf-symbol name='_PyUnicode_EncodeUTF32' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_EncodeUTF7' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_EqualToASCIIId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_EqualToASCIIString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_FastCopyCharacters' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_FastFill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_FindMaxChar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_FormatAdvancedWriter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_FormatLong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_FromASCII' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_FromId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_InsertThousandsGrouping' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsAlpha' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsCaseIgnorable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsCased' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsDecimalDigit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsDigit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsLinebreak' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsLowercase' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsNumeric' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsPrintable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsTitlecase' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsUppercase' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsWhitespace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsXidContinue' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_IsXidStart' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_JoinArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_Ready' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_ToDecimalDigit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_ToDigit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_ToFoldedFull' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_ToLowerFull' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_ToLowercase' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_ToNumeric' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_ToTitleFull' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_ToTitlecase' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_ToUpperFull' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_ToUppercase' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_TransformDecimalAndSpaceToASCII' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_XStrip' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyWarnings_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyWeakref_ClearRef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyWeakref_GetWeakrefCount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_AnnAssign' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Assert' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Assign' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_AsyncFor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_AsyncFunctionDef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_AsyncWith' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Attribute' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_AugAssign' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Await' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_BinOp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_BoolOp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Break' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_BreakPoint' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_BuildValue_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Bytes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Call' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_CheckFunctionResult' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_CheckRecursiveCall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ClassDef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_CoerceLegacyLocale' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Compare' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Constant' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Continue' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Dealloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_DecodeLocaleEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_DecodeUTF8Ex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_DecodeUTF8_surrogateescape' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Dict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_DictComp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_DisplaySourceLine' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_DumpASCII' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_DumpDecimal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_DumpHexadecimal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_DumpTraceback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_DumpTracebackThreads' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Ellipsis' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_EncodeLocaleEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_EncodeLocaleRaw' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_EncodeUTF8Ex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ExceptHandler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Expr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Expression' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ExtSlice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_FatalInitError' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_FindEnvConfigValue' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_For' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_FormattedValue' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_FreeCharPArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_FunctionDef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_GeneratorExp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_GetAllocatedBlocks' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_GetForceASCII' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_GetGlobalVariablesAsDict' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_GetLocaleconvNumeric' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Gid_Converter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Global' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_HashBytes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_HashDouble' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_HashPointer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_HashRandomization_Fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_HashRandomization_Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_If' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_IfExp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Import' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ImportFrom' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Index' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_InitializeCore' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_InitializeCore_impl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_InitializeFromConfig' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_InitializeMainInterpreter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Initialize_ReadEnvVarsNoAlloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Interactive' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_IsCoreInitialized' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_IsFinalizing' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_JoinedStr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_KeyedHash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Lambda' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_LegacyLocaleDetected' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_List' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ListComp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Mangle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Module' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_NameConstant' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Nonlocal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Num' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Pass' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_PyAtExit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Raise' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ReadHashSeed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ReadyTypes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ReleaseInternedUnicodeStrings' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ResetForceASCII' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_RestoreSignals' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Return' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_SetComp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_SetLocaleFromEnv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_SetProgramFullPath' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Slice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Starred' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Str' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Subscript' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Suite' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Try' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Tuple' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Uid_Converter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_UnaryOp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_UnixMain' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_VaBuildStack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_VaBuildStack_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_VaBuildValue_SizeT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_While' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_With' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_Yield' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_YieldFrom' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_add_one_to_index_C' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_add_one_to_index_F' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_addarc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_addbit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_adddfa' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_addfirstsets' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_addlabel' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_addstate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_alias' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_arg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_arguments' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_asdl_int_seq_new' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_asdl_seq_new' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_capitalize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_contains' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_count' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_endswith' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_find' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_index' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_isalnum' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_isalpha' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_isascii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_isdigit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_islower' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_isspace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_istitle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_isupper' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_lower' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_maketrans' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_rfind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_rindex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_startswith' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_swapcase' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_title' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_bytes_upper' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_c_abs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_c_diff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_c_neg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_c_pow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_c_prod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_c_quot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_c_sum' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_comprehension' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_convert_optional_to_ssize_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_delbitset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_device_encoding' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_dg_dtoa' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_dg_freedtoa' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_dg_infinity' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_dg_stdnan' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_dg_strtod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_dup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_findlabel' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_fopen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_fopen_obj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_freegrammar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_fstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_fstat_noraise' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_get_387controlword' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_get_blocking' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_get_inheritable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_gitidentifier' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_gitversion' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_compare_direct' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_foreach' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_get' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_get_entry' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_hash_ptr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_new' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_new_full' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_pop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_hashtable_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_keyword' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_mergebitset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_meta_grammar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_newbitset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_newgrammar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_normalize_encoding' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_open_noraise' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_parse_inf_or_nan' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_pgen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_samebitset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_set_387controlword' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_set_blocking' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_set_inheritable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_set_inheritable_async_safe' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_stat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_strhex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_strhex_bytes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_string_to_number_with_underscores' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_translatelabels' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_wfopen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_wgetcwd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_withitem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_wreadlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_wrealpath' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_write_noraise' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ </elf-function-symbols>
+ <elf-variable-symbols>
+ <elf-symbol name='PyAsyncGen_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBaseObject_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBool_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBufferedIOBase_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBufferedRWPair_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBufferedRandom_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBufferedReader_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBufferedWriter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyByteArrayIter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyByteArray_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytesIO_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytesIter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyBytes_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCFunction_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCallIter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCapsule_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCell_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyClassMethodDescr_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyClassMethod_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCode_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyComplex_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContextTokenMissing_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContextToken_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContextVar_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyContext_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyCoro_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDictItems_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDictIterItem_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDictIterKey_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDictIterValue_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDictKeys_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDictProxy_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDictValues_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyDict_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEllipsis_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyEnum_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ArithmeticError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_AssertionError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_AttributeError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_BaseException' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_BlockingIOError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_BrokenPipeError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_BufferError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_BytesWarning' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ChildProcessError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ConnectionAbortedError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ConnectionError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ConnectionRefusedError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ConnectionResetError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_DeprecationWarning' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_EOFError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_EnvironmentError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_Exception' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_FileExistsError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_FileNotFoundError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_FloatingPointError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_FutureWarning' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_GeneratorExit' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_IOError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ImportError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ImportWarning' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_IndentationError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_IndexError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_InterruptedError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_IsADirectoryError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_KeyError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_KeyboardInterrupt' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_LookupError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_MemoryError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ModuleNotFoundError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_NameError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_NotADirectoryError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_NotImplementedError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_OSError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_OverflowError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_PendingDeprecationWarning' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_PermissionError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ProcessLookupError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_RecursionError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ReferenceError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ResourceWarning' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_RuntimeError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_RuntimeWarning' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_StopAsyncIteration' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_StopIteration' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_SyntaxError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_SyntaxWarning' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_SystemError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_SystemExit' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_TabError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_TimeoutError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_TypeError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_UnboundLocalError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_UnicodeDecodeError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_UnicodeEncodeError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_UnicodeError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_UnicodeTranslateError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_UnicodeWarning' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_UserWarning' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ValueError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_Warning' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyExc_ZeroDivisionError' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFPE_counter' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFPE_jbuf' size='200' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFileIO_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFilter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFloat_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFrame_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFrozenSet_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyFunction_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGen_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyGetSetDescr_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyIOBase_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_FrozenModules' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyImport_Inittab' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyIncrementalNewlineDecoder_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyInstanceMethod_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyListIter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyListRevIter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyList_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLongRangeIter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyLong_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMap_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMemberDescr_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMemoryView_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMethodDescr_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyMethod_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModuleDef_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyModule_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyODictItems_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyODictIter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyODictKeys_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyODictValues_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyODict_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_InputHook' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyOS_ReadlineFunctionPointer' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyProperty_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRangeIter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRange_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyRawIOBase_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyReversed_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySTEntry_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySeqIter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySetIter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySet_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySlice_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyStaticMethod_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyStdPrinter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyStringIO_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyStructSequence_UnnamedField' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PySuper_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTextIOBase_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTextIOWrapper_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTraceBack_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTupleIter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyTuple_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyType_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicodeIter_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyUnicode_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyWrapperDescr_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='PyZip_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_BytesWarningFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_DebugFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_DontWriteBytecodeFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_FileSystemDefaultEncodeErrors' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_FileSystemDefaultEncoding' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_FrozenFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_HasFileSystemDefaultEncoding' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_HashRandomizationFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_IgnoreEnvironmentFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_InspectFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_InteractiveFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_IsolatedFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_NoSiteFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_NoUserSiteDirectory' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_OptimizeFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_QuietFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_UTF8Mode' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_UnbufferedStdioFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_VerboseFlag' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='Py_hexdigits' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyAsyncGenASend_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyAsyncGenAThrow_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyAsyncGenWrappedValue_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyByteArray_empty_string' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyBytesIOBuffer_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyCoroWrapper_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamtItems_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamtKeys_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamtValues_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_ArrayNode_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_BitmapNode_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_CollisionNode_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyHamt_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_Module' size='104' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_empty_bytes' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_empty_str' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_close' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_closed' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_decode' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_encode' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_fileno' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_flush' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_getstate' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_isatty' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_newlines' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_nl' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_peek' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_read' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_read1' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_readable' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_readall' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_readinto' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_readline' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_reset' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_seek' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_seekable' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_setstate' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_tell' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_truncate' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_writable' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyIO_str_write' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_DynLoadFiletab' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyImport_Inittab' size='512' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_DigitValue' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_One' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyLong_Zero' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyManagedBuffer_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyMethodWrapper_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyNamespace_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyNone_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyNotImplemented_Type' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyOS_ReadlineTState' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyOS_mystrnicmp_hack' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyOS_optarg' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyOS_opterr' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyOS_optind' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyParser_Grammar' size='40' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyParser_TokenNames' size='472' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyRuntime' size='1520' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySet_Dummy' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySys_ImplCacheTag' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PySys_ImplName' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_ExtendedCase' size='4944' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyUnicode_TypeRecords' size='7952' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyWeakref_CallableProxyType' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyWeakref_ProxyType' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_PyWeakref_RefType' size='400' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_CheckHashBasedPycsMode' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_CheckRecursionLimit' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_EllipsisObject' size='16' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_FalseStruct' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_HashSecret' size='24' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_M__importlib' size='29131' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_M__importlib_external' size='41771' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_NoneStruct' size='16' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_NotImplementedStruct' size='16' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_PackageContext' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_SwappedOp' size='24' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_TrueStruct' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_abstract_hack' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ascii_whitespace' size='128' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_capitalize__doc__' size='124' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_center__doc__' size='163' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_count__doc__' size='199' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ctype_table' size='1024' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ctype_tolower' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ctype_toupper' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_endswith__doc__' size='264' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_expandtabs__doc__' size='173' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_find__doc__' size='239' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_index__doc__' size='270' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_isalnum__doc__' size='132' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_isalpha__doc__' size='130' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_isascii__doc__' size='98' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_isdigit__doc__' size='126' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_islower__doc__' size='141' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_isspace__doc__' size='130' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_istitle__doc__' size='230' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_isupper__doc__' size='141' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_ljust__doc__' size='167' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_lower__doc__' size='93' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_maketrans__doc__' size='291' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_open_cloexec_works' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_path_config' size='48' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_rfind__doc__' size='241' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_rindex__doc__' size='271' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_rjust__doc__' size='167' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_startswith__doc__' size='268' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_swapcase__doc__' size='123' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_title__doc__' size='155' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_upper__doc__' size='93' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ <elf-symbol name='_Py_zfill__doc__' size='139' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+ </elf-variable-symbols>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/getbuildinfo.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <type-decl name='char' size-in-bits='8' id='type-id-1'/>
+ <qualified-type-def type-id='type-id-1' const='yes' id='type-id-2'/>
+ <pointer-type-def type-id='type-id-2' size-in-bits='64' id='type-id-3'/>
+ <function-decl name='_Py_gitidentifier' mangled-name='_Py_gitidentifier' filepath='../gpshead/Modules/getbuildinfo.c' line='58' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_gitidentifier'>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='_Py_gitversion' mangled-name='_Py_gitversion' filepath='../gpshead/Modules/getbuildinfo.c' line='52' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_gitversion'>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='Py_GetBuildInfo' mangled-name='Py_GetBuildInfo' filepath='../gpshead/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>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/acceler.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <type-decl name='void' id='type-id-4'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-5' visibility='default' filepath='../gpshead/Include/grammar.h' line='61' column='1' id='type-id-6'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='g_ndfas' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/grammar.h' line='62' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='g_dfa' type-id='type-id-8' visibility='default' filepath='../gpshead/Include/grammar.h' line='63' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='g_ll' type-id='type-id-9' visibility='default' filepath='../gpshead/Include/grammar.h' line='64' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='g_start' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/grammar.h' line='65' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288'>
+ <var-decl name='g_accel' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/grammar.h' line='66' column='1'/>
+ </data-member>
+ </class-decl>
+ <type-decl name='int' size-in-bits='32' id='type-id-7'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-10' visibility='default' filepath='../gpshead/Include/grammar.h' line='50' column='1' id='type-id-11'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='d_type' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/grammar.h' line='51' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='d_name' type-id='type-id-12' visibility='default' filepath='../gpshead/Include/grammar.h' line='52' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='d_initial' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/grammar.h' line='53' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='160'>
+ <var-decl name='d_nstates' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/grammar.h' line='54' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='d_state' type-id='type-id-13' visibility='default' filepath='../gpshead/Include/grammar.h' line='55' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='d_first' type-id='type-id-14' visibility='default' filepath='../gpshead/Include/grammar.h' line='56' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-1' size-in-bits='64' id='type-id-12'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-15' visibility='default' filepath='../gpshead/Include/grammar.h' line='37' column='1' id='type-id-16'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='s_narcs' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/grammar.h' line='38' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='s_arc' type-id='type-id-17' visibility='default' filepath='../gpshead/Include/grammar.h' line='39' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='s_lower' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/grammar.h' line='42' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='160'>
+ <var-decl name='s_upper' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/grammar.h' line='43' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='s_accel' type-id='type-id-18' visibility='default' filepath='../gpshead/Include/grammar.h' line='44' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='s_accept' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/grammar.h' line='45' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='32' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-19' visibility='default' filepath='../gpshead/Include/grammar.h' line='30' column='1' id='type-id-20'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='a_lbl' type-id='type-id-21' visibility='default' filepath='../gpshead/Include/grammar.h' line='31' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='16'>
+ <var-decl name='a_arrow' type-id='type-id-21' visibility='default' filepath='../gpshead/Include/grammar.h' line='32' column='1'/>
+ </data-member>
+ </class-decl>
+ <type-decl name='short int' size-in-bits='16' id='type-id-21'/>
+ <typedef-decl name='arc' type-id='type-id-20' filepath='../gpshead/Include/grammar.h' line='33' column='1' id='type-id-19'/>
+ <pointer-type-def type-id='type-id-19' size-in-bits='64' id='type-id-17'/>
+ <pointer-type-def type-id='type-id-7' size-in-bits='64' id='type-id-18'/>
+ <typedef-decl name='state' type-id='type-id-16' filepath='../gpshead/Include/grammar.h' line='46' column='1' id='type-id-15'/>
+ <pointer-type-def type-id='type-id-15' size-in-bits='64' id='type-id-13'/>
+ <typedef-decl name='bitset' type-id='type-id-12' filepath='../gpshead/Include/bitset.h' line='12' column='1' id='type-id-14'/>
+ <typedef-decl name='dfa' type-id='type-id-11' filepath='../gpshead/Include/grammar.h' line='57' column='1' id='type-id-10'/>
+ <pointer-type-def type-id='type-id-10' size-in-bits='64' id='type-id-8'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-9' visibility='default' filepath='../gpshead/Include/grammar.h' line='23' column='1' id='type-id-22'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ll_nlabels' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/grammar.h' line='24' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='ll_label' type-id='type-id-23' visibility='default' filepath='../gpshead/Include/grammar.h' line='25' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-24' visibility='default' filepath='../gpshead/Include/grammar.h' line='14' column='1' id='type-id-25'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='lb_type' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/grammar.h' line='15' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='lb_str' type-id='type-id-12' visibility='default' filepath='../gpshead/Include/grammar.h' line='16' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='label' type-id='type-id-25' filepath='../gpshead/Include/grammar.h' line='17' column='1' id='type-id-24'/>
+ <pointer-type-def type-id='type-id-24' size-in-bits='64' id='type-id-23'/>
+ <typedef-decl name='labellist' type-id='type-id-22' filepath='../gpshead/Include/grammar.h' line='26' column='1' id='type-id-9'/>
+ <typedef-decl name='grammar' type-id='type-id-6' filepath='../gpshead/Include/grammar.h' line='67' column='1' id='type-id-5'/>
+ <pointer-type-def type-id='type-id-5' size-in-bits='64' id='type-id-26'/>
+ <function-decl name='PyGrammar_RemoveAccelerators' mangled-name='PyGrammar_RemoveAccelerators' filepath='../gpshead/Parser/acceler.c' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGrammar_RemoveAccelerators'>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/acceler.c' line='35' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyGrammar_AddAccelerators' mangled-name='PyGrammar_AddAccelerators' filepath='../gpshead/Parser/acceler.c' line='24' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGrammar_AddAccelerators'>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/acceler.c' line='24' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/grammar1.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyGrammar_LabelRepr' mangled-name='PyGrammar_LabelRepr' filepath='../gpshead/Parser/grammar1.c' line='33' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGrammar_LabelRepr'>
+ <parameter type-id='type-id-23' name='lb' filepath='../gpshead/Parser/grammar1.c' line='33' column='1'/>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='PyGrammar_FindDFA' mangled-name='PyGrammar_FindDFA' filepath='../gpshead/Parser/grammar1.c' line='12' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGrammar_FindDFA'>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/grammar1.c' line='12' column='1'/>
+ <parameter type-id='type-id-7' name='type' filepath='../gpshead/Parser/grammar1.c' line='12' column='1'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/listnode.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='_node' size-in-bits='320' is-struct='yes' visibility='default' filepath='../gpshead/Include/node.h' line='10' column='1' id='type-id-27'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='n_type' type-id='type-id-21' visibility='default' filepath='../gpshead/Include/node.h' line='11' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='n_str' type-id='type-id-12' visibility='default' filepath='../gpshead/Include/node.h' line='12' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='n_lineno' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/node.h' line='13' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='160'>
+ <var-decl name='n_col_offset' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/node.h' line='14' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='n_nchildren' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/node.h' line='15' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='n_child' type-id='type-id-28' visibility='default' filepath='../gpshead/Include/node.h' line='16' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-27' size-in-bits='64' id='type-id-28'/>
+ <typedef-decl name='node' type-id='type-id-27' filepath='../gpshead/Include/node.h' line='17' column='1' id='type-id-29'/>
+ <pointer-type-def type-id='type-id-29' size-in-bits='64' id='type-id-30'/>
+ <function-decl name='PyNode_ListTree' mangled-name='PyNode_ListTree' filepath='../gpshead/Parser/listnode.c' line='13' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNode_ListTree'>
+ <parameter type-id='type-id-30' name='n' filepath='../gpshead/Parser/listnode.c' line='13' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/node.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <type-decl name='long int' size-in-bits='64' id='type-id-31'/>
+ <typedef-decl name='__ssize_t' type-id='type-id-31' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='193' column='1' id='type-id-32'/>
+ <typedef-decl name='ssize_t' type-id='type-id-32' filepath='/usr/include/stdio.h' line='77' column='1' id='type-id-33'/>
+ <typedef-decl name='Py_ssize_t' type-id='type-id-33' filepath='../gpshead/Include/pyport.h' line='84' column='1' id='type-id-34'/>
+ <function-decl name='_PyNode_SizeOf' mangled-name='_PyNode_SizeOf' filepath='../gpshead/Parser/node.c' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyNode_SizeOf'>
+ <parameter type-id='type-id-30' name='n' filepath='../gpshead/Parser/node.c' line='130' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyNode_Free' mangled-name='PyNode_Free' filepath='../gpshead/Parser/node.c' line='121' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNode_Free'>
+ <parameter type-id='type-id-30' name='n' filepath='../gpshead/Parser/listnode.c' line='13' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyNode_AddChild' mangled-name='PyNode_AddChild' filepath='../gpshead/Parser/node.c' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNode_AddChild'>
+ <parameter type-id='type-id-30' name='n1' filepath='../gpshead/Parser/node.c' line='79' column='1'/>
+ <parameter type-id='type-id-7' name='type' filepath='../gpshead/Parser/node.c' line='79' column='1'/>
+ <parameter type-id='type-id-12' name='str' filepath='../gpshead/Parser/node.c' line='79' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Parser/node.c' line='79' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Parser/node.c' line='79' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyNode_New' mangled-name='PyNode_New' filepath='../gpshead/Parser/node.c' line='8' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNode_New'>
+ <parameter type-id='type-id-7' name='type' filepath='../gpshead/Parser/node.c' line='8' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/parser.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='__anonymous_struct__' size-in-bits='288256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-35' visibility='default' filepath='../gpshead/Parser/parser.h' line='24' column='1' id='type-id-36'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='p_stack' type-id='type-id-37' visibility='default' filepath='../gpshead/Parser/parser.h' line='25' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288064'>
+ <var-decl name='p_grammar' type-id='type-id-26' visibility='default' filepath='../gpshead/Parser/parser.h' line='26' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288128'>
+ <var-decl name='p_tree' type-id='type-id-30' visibility='default' filepath='../gpshead/Parser/parser.h' line='27' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288192'>
+ <var-decl name='p_flags' type-id='type-id-38' visibility='default' filepath='../gpshead/Parser/parser.h' line='29' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='288064' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-37' visibility='default' filepath='../gpshead/Parser/parser.h' line='18' column='1' id='type-id-39'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='s_top' type-id='type-id-40' visibility='default' filepath='../gpshead/Parser/parser.h' line='19' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='s_base' type-id='type-id-41' visibility='default' filepath='../gpshead/Parser/parser.h' line='20' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-42' visibility='default' filepath='../gpshead/Parser/parser.h' line='12' column='1' id='type-id-43'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='s_state' type-id='type-id-7' visibility='default' filepath='../gpshead/Parser/parser.h' line='13' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='s_dfa' type-id='type-id-8' visibility='default' filepath='../gpshead/Parser/parser.h' line='14' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='s_parent' type-id='type-id-28' visibility='default' filepath='../gpshead/Parser/parser.h' line='15' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='stackentry' type-id='type-id-43' filepath='../gpshead/Parser/parser.h' line='16' column='1' id='type-id-42'/>
+ <pointer-type-def type-id='type-id-42' size-in-bits='64' id='type-id-40'/>
+ <type-decl name='unsigned long int' size-in-bits='64' id='type-id-38'/>
+
+ <array-type-def dimensions='1' type-id='type-id-42' size-in-bits='288000' id='type-id-41'>
+ <subrange length='1500' type-id='type-id-38' id='type-id-44'/>
+
+ </array-type-def>
+ <typedef-decl name='stack' type-id='type-id-39' filepath='../gpshead/Parser/parser.h' line='22' column='1' id='type-id-37'/>
+ <typedef-decl name='parser_state' type-id='type-id-36' filepath='../gpshead/Parser/parser.h' line='31' column='1' id='type-id-35'/>
+ <pointer-type-def type-id='type-id-35' size-in-bits='64' id='type-id-45'/>
+ <function-decl name='PyParser_AddToken' mangled-name='PyParser_AddToken' filepath='../gpshead/Parser/parser.c' line='227' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_AddToken'>
+ <parameter type-id='type-id-45' name='ps' filepath='../gpshead/Parser/parser.c' line='227' column='1'/>
+ <parameter type-id='type-id-7' name='type' filepath='../gpshead/Parser/parser.c' line='227' column='1'/>
+ <parameter type-id='type-id-12' name='str' filepath='../gpshead/Parser/parser.c' line='227' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Parser/parser.c' line='228' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Parser/parser.c' line='228' column='1'/>
+ <parameter type-id='type-id-18' name='expected_ret' filepath='../gpshead/Parser/parser.c' line='228' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyParser_Delete' mangled-name='PyParser_Delete' filepath='../gpshead/Parser/parser.c' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_Delete'>
+ <parameter type-id='type-id-45' name='ps' filepath='../gpshead/Parser/parser.c' line='96' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyParser_New' mangled-name='PyParser_New' filepath='../gpshead/Parser/parser.c' line='72' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_New'>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/parser.c' line='72' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Parser/parser.c' line='72' column='1'/>
+ <return type-id='type-id-45'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/bitset.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_Py_mergebitset' mangled-name='_Py_mergebitset' filepath='../gpshead/Parser/bitset.c' line='60' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_mergebitset'>
+ <parameter type-id='type-id-14' name='ss1' filepath='../gpshead/Parser/bitset.c' line='60' column='1'/>
+ <parameter type-id='type-id-14' name='ss2' filepath='../gpshead/Parser/bitset.c' line='60' column='1'/>
+ <parameter type-id='type-id-7' name='nbits' filepath='../gpshead/Parser/bitset.c' line='60' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_samebitset' mangled-name='_Py_samebitset' filepath='../gpshead/Parser/bitset.c' line='49' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_samebitset'>
+ <parameter type-id='type-id-14' name='ss1' filepath='../gpshead/Parser/bitset.c' line='49' column='1'/>
+ <parameter type-id='type-id-14' name='ss2' filepath='../gpshead/Parser/bitset.c' line='49' column='1'/>
+ <parameter type-id='type-id-7' name='nbits' filepath='../gpshead/Parser/bitset.c' line='49' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_addbit' mangled-name='_Py_addbit' filepath='../gpshead/Parser/bitset.c' line='29' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_addbit'>
+ <parameter type-id='type-id-14' name='ss' filepath='../gpshead/Parser/bitset.c' line='29' column='1'/>
+ <parameter type-id='type-id-7' name='ibit' filepath='../gpshead/Parser/bitset.c' line='29' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_delbitset' mangled-name='_Py_delbitset' filepath='../gpshead/Parser/bitset.c' line='23' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_delbitset'>
+ <parameter type-id='type-id-14' name='ss' filepath='../gpshead/Parser/bitset.c' line='23' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_newbitset' mangled-name='_Py_newbitset' filepath='../gpshead/Parser/bitset.c' line='8' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_newbitset'>
+ <parameter type-id='type-id-7' name='nbits' filepath='../gpshead/Parser/bitset.c' line='8' column='1'/>
+ <return type-id='type-id-14'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/metagrammar.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='Py_meta_grammar' mangled-name='Py_meta_grammar' filepath='../gpshead/Parser/metagrammar.c' line='156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_meta_grammar'>
+ <return type-id='type-id-26'/>
+ </function-decl>
+ <function-decl name='_Py_meta_grammar' mangled-name='_Py_meta_grammar' filepath='../gpshead/Parser/metagrammar.c' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_meta_grammar'>
+ <return type-id='type-id-26'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/firstsets.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_Py_addfirstsets' mangled-name='_Py_addfirstsets' filepath='../gpshead/Parser/firstsets.c' line='14' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_addfirstsets'>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/acceler.c' line='24' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/grammar.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_Py_translatelabels' mangled-name='_Py_translatelabels' filepath='../gpshead/Parser/grammar.c' line='155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_translatelabels'>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/grammar.c' line='155' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-9' size-in-bits='64' id='type-id-46'/>
+ <function-decl name='_Py_findlabel' mangled-name='_Py_findlabel' filepath='../gpshead/Parser/grammar.c' line='131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_findlabel'>
+ <parameter type-id='type-id-46' name='ll' filepath='../gpshead/Parser/grammar.c' line='131' column='1'/>
+ <parameter type-id='type-id-7' name='type' filepath='../gpshead/Parser/grammar.c' line='131' column='1'/>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Parser/grammar.c' line='131' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_addlabel' mangled-name='_Py_addlabel' filepath='../gpshead/Parser/grammar.c' line='105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_addlabel'>
+ <parameter type-id='type-id-46' name='ll' filepath='../gpshead/Parser/grammar.c' line='105' column='1'/>
+ <parameter type-id='type-id-7' name='type' filepath='../gpshead/Parser/grammar.c' line='105' column='1'/>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Parser/grammar.c' line='105' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_addarc' mangled-name='_Py_addarc' filepath='../gpshead/Parser/grammar.c' line='87' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_addarc'>
+ <parameter type-id='type-id-8' name='d' filepath='../gpshead/Parser/grammar.c' line='87' column='1'/>
+ <parameter type-id='type-id-7' name='from' filepath='../gpshead/Parser/grammar.c' line='87' column='1'/>
+ <parameter type-id='type-id-7' name='to' filepath='../gpshead/Parser/grammar.c' line='87' column='1'/>
+ <parameter type-id='type-id-7' name='lbl' filepath='../gpshead/Parser/grammar.c' line='87' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_addstate' mangled-name='_Py_addstate' filepath='../gpshead/Parser/grammar.c' line='68' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_addstate'>
+ <parameter type-id='type-id-8' name='d' filepath='../gpshead/Parser/grammar.c' line='68' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_adddfa' mangled-name='_Py_adddfa' filepath='../gpshead/Parser/grammar.c' line='49' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_adddfa'>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/grammar.c' line='49' column='1'/>
+ <parameter type-id='type-id-7' name='type' filepath='../gpshead/Parser/grammar.c' line='49' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Parser/grammar.c' line='49' column='1'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='_Py_freegrammar' mangled-name='_Py_freegrammar' filepath='../gpshead/Parser/grammar.c' line='32' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_freegrammar'>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/grammar.c' line='32' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_newgrammar' mangled-name='_Py_newgrammar' filepath='../gpshead/Parser/grammar.c' line='15' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_newgrammar'>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Parser/grammar.c' line='15' column='1'/>
+ <return type-id='type-id-26'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/pgen.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='Py_pgen' mangled-name='Py_pgen' filepath='../gpshead/Parser/pgen.c' line='691' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_pgen'>
+ <parameter type-id='type-id-30' name='n' filepath='../gpshead/Parser/pgen.c' line='691' column='1'/>
+ <return type-id='type-id-26'/>
+ </function-decl>
+ <function-decl name='_Py_pgen' mangled-name='_Py_pgen' filepath='../gpshead/Parser/pgen.c' line='677' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_pgen'>
+ <parameter type-id='type-id-30' name='n' filepath='../gpshead/Parser/pgen.c' line='677' column='1'/>
+ <return type-id='type-id-26'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/myreadline.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='_ts' size-in-bits='2240' is-struct='yes' visibility='default' filepath='../gpshead/Include/pystate.h' line='212' column='1' id='type-id-47'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='prev' type-id='type-id-48' visibility='default' filepath='../gpshead/Include/pystate.h' line='215' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='next' type-id='type-id-48' visibility='default' filepath='../gpshead/Include/pystate.h' line='216' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='interp' type-id='type-id-49' visibility='default' filepath='../gpshead/Include/pystate.h' line='217' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='frame' type-id='type-id-50' visibility='default' filepath='../gpshead/Include/pystate.h' line='220' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='recursion_depth' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='221' 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='../gpshead/Include/pystate.h' line='222' 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='../gpshead/Include/pystate.h' line='224' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='stackcheck_counter' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='226' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='352'>
+ <var-decl name='tracing' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='231' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='use_tracing' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='232' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='c_profilefunc' type-id='type-id-51' visibility='default' filepath='../gpshead/Include/pystate.h' line='234' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='c_tracefunc' type-id='type-id-51' visibility='default' filepath='../gpshead/Include/pystate.h' line='235' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='c_profileobj' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='236' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='640'>
+ <var-decl name='c_traceobj' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='237' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='704'>
+ <var-decl name='curexc_type' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='240' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='768'>
+ <var-decl name='curexc_value' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='241' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='832'>
+ <var-decl name='curexc_traceback' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='242' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='896'>
+ <var-decl name='exc_state' type-id='type-id-53' visibility='default' filepath='../gpshead/Include/pystate.h' line='247' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1152'>
+ <var-decl name='exc_info' type-id='type-id-54' visibility='default' filepath='../gpshead/Include/pystate.h' line='251' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1216'>
+ <var-decl name='dict' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='253' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1280'>
+ <var-decl name='gilstate_counter' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='255' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1344'>
+ <var-decl name='async_exc' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='257' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1408'>
+ <var-decl name='thread_id' type-id='type-id-38' visibility='default' filepath='../gpshead/Include/pystate.h' line='258' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1472'>
+ <var-decl name='trash_delete_nesting' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='260' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1536'>
+ <var-decl name='trash_delete_later' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='261' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1600'>
+ <var-decl name='on_delete' type-id='type-id-55' visibility='default' filepath='../gpshead/Include/pystate.h' line='286' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1664'>
+ <var-decl name='on_delete_data' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/pystate.h' line='287' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1728'>
+ <var-decl name='coroutine_origin_tracking_depth' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='289' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1792'>
+ <var-decl name='coroutine_wrapper' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='291' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1856'>
+ <var-decl name='in_coroutine_wrapper' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='292' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1920'>
+ <var-decl name='async_gen_firstiter' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='294' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1984'>
+ <var-decl name='async_gen_finalizer' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='295' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2048'>
+ <var-decl name='context' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='297' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2112'>
+ <var-decl name='context_ver' type-id='type-id-57' visibility='default' filepath='../gpshead/Include/pystate.h' line='298' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2176'>
+ <var-decl name='id' type-id='type-id-57' visibility='default' filepath='../gpshead/Include/pystate.h' line='301' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-47' size-in-bits='64' id='type-id-48'/>
+ <class-decl name='_is' size-in-bits='20544' is-struct='yes' visibility='default' filepath='../gpshead/Include/pystate.h' line='113' column='1' id='type-id-58'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='next' type-id='type-id-59' visibility='default' filepath='../gpshead/Include/pystate.h' line='115' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='tstate_head' type-id='type-id-48' visibility='default' filepath='../gpshead/Include/pystate.h' line='116' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='id' type-id='type-id-60' visibility='default' filepath='../gpshead/Include/pystate.h' line='118' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='id_refcount' type-id='type-id-60' visibility='default' filepath='../gpshead/Include/pystate.h' line='119' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='id_mutex' type-id='type-id-61' visibility='default' filepath='../gpshead/Include/pystate.h' line='120' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='modules' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='122' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='modules_by_index' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='123' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='sysdict' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='124' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='builtins' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='125' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='importlib' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='126' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='640'>
+ <var-decl name='check_interval' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='129' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='704'>
+ <var-decl name='num_threads' type-id='type-id-31' visibility='default' filepath='../gpshead/Include/pystate.h' line='132' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='768'>
+ <var-decl name='pythread_stacksize' type-id='type-id-62' visibility='default' filepath='../gpshead/Include/pystate.h' line='137' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='832'>
+ <var-decl name='codec_search_path' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='139' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='896'>
+ <var-decl name='codec_search_cache' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='140' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='960'>
+ <var-decl name='codec_error_registry' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='141' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1024'>
+ <var-decl name='codecs_initialized' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='142' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1056'>
+ <var-decl name='fscodec_initialized' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='143' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1088'>
+ <var-decl name='core_config' type-id='type-id-63' visibility='default' filepath='../gpshead/Include/pystate.h' line='145' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2880'>
+ <var-decl name='config' type-id='type-id-64' visibility='default' filepath='../gpshead/Include/pystate.h' line='146' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3520'>
+ <var-decl name='dlopenflags' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='148' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3584'>
+ <var-decl name='builtins_copy' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='151' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3648'>
+ <var-decl name='import_func' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='152' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3712'>
+ <var-decl name='eval_frame' type-id='type-id-65' visibility='default' filepath='../gpshead/Include/pystate.h' line='154' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3776'>
+ <var-decl name='co_extra_user_count' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/pystate.h' line='156' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3840'>
+ <var-decl name='co_extra_freefuncs' type-id='type-id-66' visibility='default' filepath='../gpshead/Include/pystate.h' line='157' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='20160'>
+ <var-decl name='before_forkers' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='160' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='20224'>
+ <var-decl name='after_forkers_parent' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='161' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='20288'>
+ <var-decl name='after_forkers_child' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='162' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='20352'>
+ <var-decl name='pyexitfunc' type-id='type-id-67' visibility='default' filepath='../gpshead/Include/pystate.h' line='165' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='20416'>
+ <var-decl name='pyexitmodule' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='166' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='20480'>
+ <var-decl name='tstate_next_unique_id' type-id='type-id-57' visibility='default' filepath='../gpshead/Include/pystate.h' line='168' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-58' size-in-bits='64' id='type-id-59'/>
+ <typedef-decl name='__int64_t' type-id='type-id-31' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='44' column='1' id='type-id-68'/>
+ <typedef-decl name='int64_t' type-id='type-id-68' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-intn.h' line='27' column='1' id='type-id-60'/>
+ <pointer-type-def type-id='type-id-4' size-in-bits='64' id='type-id-56'/>
+ <typedef-decl name='PyThread_type_lock' type-id='type-id-56' filepath='../gpshead/Include/pythread.h' line='5' column='1' id='type-id-61'/>
+ <class-decl name='_object' size-in-bits='128' is-struct='yes' visibility='default' filepath='../gpshead/Include/object.h' line='106' column='1' id='type-id-69'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_refcnt' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/object.h' line='108' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='ob_type' type-id='type-id-70' visibility='default' filepath='../gpshead/Include/object.h' line='109' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='_typeobject' size-in-bits='3200' is-struct='yes' visibility='default' filepath='../gpshead/Include/object.h' line='346' column='1' id='type-id-71'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-72' visibility='default' filepath='../gpshead/Include/object.h' line='347' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='tp_name' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/object.h' line='348' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='tp_basicsize' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/object.h' line='349' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='tp_itemsize' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/object.h' line='349' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='tp_dealloc' type-id='type-id-73' visibility='default' filepath='../gpshead/Include/object.h' line='353' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='tp_print' type-id='type-id-74' visibility='default' filepath='../gpshead/Include/object.h' line='354' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='tp_getattr' type-id='type-id-75' visibility='default' filepath='../gpshead/Include/object.h' line='355' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='tp_setattr' type-id='type-id-76' visibility='default' filepath='../gpshead/Include/object.h' line='356' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='640'>
+ <var-decl name='tp_as_async' type-id='type-id-77' visibility='default' filepath='../gpshead/Include/object.h' line='357' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='704'>
+ <var-decl name='tp_repr' type-id='type-id-78' visibility='default' filepath='../gpshead/Include/object.h' line='359' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='768'>
+ <var-decl name='tp_as_number' type-id='type-id-79' visibility='default' filepath='../gpshead/Include/object.h' line='363' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='832'>
+ <var-decl name='tp_as_sequence' type-id='type-id-80' visibility='default' filepath='../gpshead/Include/object.h' line='364' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='896'>
+ <var-decl name='tp_as_mapping' type-id='type-id-81' visibility='default' filepath='../gpshead/Include/object.h' line='365' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='960'>
+ <var-decl name='tp_hash' type-id='type-id-82' visibility='default' filepath='../gpshead/Include/object.h' line='369' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1024'>
+ <var-decl name='tp_call' type-id='type-id-83' visibility='default' filepath='../gpshead/Include/object.h' line='370' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1088'>
+ <var-decl name='tp_str' type-id='type-id-78' visibility='default' filepath='../gpshead/Include/object.h' line='371' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1152'>
+ <var-decl name='tp_getattro' type-id='type-id-84' visibility='default' filepath='../gpshead/Include/object.h' line='372' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1216'>
+ <var-decl name='tp_setattro' type-id='type-id-85' visibility='default' filepath='../gpshead/Include/object.h' line='373' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1280'>
+ <var-decl name='tp_as_buffer' type-id='type-id-86' visibility='default' filepath='../gpshead/Include/object.h' line='376' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1344'>
+ <var-decl name='tp_flags' type-id='type-id-38' visibility='default' filepath='../gpshead/Include/object.h' line='379' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1408'>
+ <var-decl name='tp_doc' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/object.h' line='381' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1472'>
+ <var-decl name='tp_traverse' type-id='type-id-87' visibility='default' filepath='../gpshead/Include/object.h' line='385' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1536'>
+ <var-decl name='tp_clear' type-id='type-id-88' visibility='default' filepath='../gpshead/Include/object.h' line='388' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1600'>
+ <var-decl name='tp_richcompare' type-id='type-id-89' visibility='default' filepath='../gpshead/Include/object.h' line='392' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1664'>
+ <var-decl name='tp_weaklistoffset' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/object.h' line='395' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1728'>
+ <var-decl name='tp_iter' type-id='type-id-90' visibility='default' filepath='../gpshead/Include/object.h' line='398' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1792'>
+ <var-decl name='tp_iternext' type-id='type-id-91' visibility='default' filepath='../gpshead/Include/object.h' line='399' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1856'>
+ <var-decl name='tp_methods' type-id='type-id-92' visibility='default' filepath='../gpshead/Include/object.h' line='402' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1920'>
+ <var-decl name='tp_members' type-id='type-id-93' visibility='default' filepath='../gpshead/Include/object.h' line='403' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1984'>
+ <var-decl name='tp_getset' type-id='type-id-94' visibility='default' filepath='../gpshead/Include/object.h' line='404' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2048'>
+ <var-decl name='tp_base' type-id='type-id-70' visibility='default' filepath='../gpshead/Include/object.h' line='405' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2112'>
+ <var-decl name='tp_dict' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/object.h' line='406' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2176'>
+ <var-decl name='tp_descr_get' type-id='type-id-95' visibility='default' filepath='../gpshead/Include/object.h' line='407' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2240'>
+ <var-decl name='tp_descr_set' type-id='type-id-96' visibility='default' filepath='../gpshead/Include/object.h' line='408' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2304'>
+ <var-decl name='tp_dictoffset' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/object.h' line='409' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2368'>
+ <var-decl name='tp_init' type-id='type-id-97' visibility='default' filepath='../gpshead/Include/object.h' line='410' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2432'>
+ <var-decl name='tp_alloc' type-id='type-id-98' visibility='default' filepath='../gpshead/Include/object.h' line='411' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2496'>
+ <var-decl name='tp_new' type-id='type-id-99' visibility='default' filepath='../gpshead/Include/object.h' line='412' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2560'>
+ <var-decl name='tp_free' type-id='type-id-100' visibility='default' filepath='../gpshead/Include/object.h' line='413' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2624'>
+ <var-decl name='tp_is_gc' type-id='type-id-88' visibility='default' filepath='../gpshead/Include/object.h' line='414' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2688'>
+ <var-decl name='tp_bases' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/object.h' line='415' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2752'>
+ <var-decl name='tp_mro' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/object.h' line='416' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2816'>
+ <var-decl name='tp_cache' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/object.h' line='417' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2880'>
+ <var-decl name='tp_subclasses' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/object.h' line='418' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2944'>
+ <var-decl name='tp_weaklist' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/object.h' line='419' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3008'>
+ <var-decl name='tp_del' type-id='type-id-73' visibility='default' filepath='../gpshead/Include/object.h' line='420' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3072'>
+ <var-decl name='tp_version_tag' type-id='type-id-101' visibility='default' filepath='../gpshead/Include/object.h' line='423' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3136'>
+ <var-decl name='tp_finalize' type-id='type-id-73' visibility='default' filepath='../gpshead/Include/object.h' line='425' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-72' visibility='default' filepath='../gpshead/Include/object.h' line='112' column='1' id='type-id-102'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-103' visibility='default' filepath='../gpshead/Include/object.h' line='113' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='ob_size' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/object.h' line='114' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyObject' type-id='type-id-69' filepath='../gpshead/Include/object.h' line='110' column='1' id='type-id-103'/>
+ <typedef-decl name='PyVarObject' type-id='type-id-102' filepath='../gpshead/Include/object.h' line='115' column='1' id='type-id-72'/>
+ <pointer-type-def type-id='type-id-103' size-in-bits='64' id='type-id-52'/>
+ <pointer-type-def type-id='type-id-104' size-in-bits='64' id='type-id-67'/>
+ <typedef-decl name='destructor' type-id='type-id-67' filepath='../gpshead/Include/object.h' line='320' column='1' id='type-id-73'/>
+ <class-decl name='_IO_FILE' size-in-bits='1728' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='49' column='1' id='type-id-105'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='_flags' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='51' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='_IO_read_ptr' type-id='type-id-12' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='54' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='_IO_read_end' type-id='type-id-12' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='55' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='_IO_read_base' type-id='type-id-12' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='56' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='_IO_write_base' type-id='type-id-12' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='57' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='_IO_write_ptr' type-id='type-id-12' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='58' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='_IO_write_end' type-id='type-id-12' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='59' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='_IO_buf_base' type-id='type-id-12' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='60' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='_IO_buf_end' type-id='type-id-12' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='61' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='_IO_save_base' type-id='type-id-12' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='64' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='640'>
+ <var-decl name='_IO_backup_base' type-id='type-id-12' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='65' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='704'>
+ <var-decl name='_IO_save_end' type-id='type-id-12' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='66' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='768'>
+ <var-decl name='_markers' type-id='type-id-106' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='68' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='832'>
+ <var-decl name='_chain' type-id='type-id-107' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='70' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='896'>
+ <var-decl name='_fileno' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='72' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='928'>
+ <var-decl name='_flags2' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='73' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='960'>
+ <var-decl name='_old_offset' type-id='type-id-108' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='74' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1024'>
+ <var-decl name='_cur_column' type-id='type-id-109' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='77' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1040'>
+ <var-decl name='_vtable_offset' type-id='type-id-110' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='78' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1048'>
+ <var-decl name='_shortbuf' type-id='type-id-111' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='79' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1088'>
+ <var-decl name='_lock' type-id='type-id-112' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='81' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1152'>
+ <var-decl name='_offset' type-id='type-id-113' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='89' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1216'>
+ <var-decl name='_codecvt' type-id='type-id-114' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='91' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1280'>
+ <var-decl name='_wide_data' type-id='type-id-115' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='92' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1344'>
+ <var-decl name='_freeres_list' type-id='type-id-107' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='93' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1408'>
+ <var-decl name='_freeres_buf' type-id='type-id-56' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='94' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1472'>
+ <var-decl name='__pad5' type-id='type-id-62' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='95' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1536'>
+ <var-decl name='_mode' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='96' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1568'>
+ <var-decl name='_unused2' type-id='type-id-116' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='98' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='_IO_marker' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-117'/>
+ <pointer-type-def type-id='type-id-117' size-in-bits='64' id='type-id-106'/>
+ <pointer-type-def type-id='type-id-105' size-in-bits='64' id='type-id-107'/>
+ <typedef-decl name='__off_t' type-id='type-id-31' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='152' column='1' id='type-id-108'/>
+ <type-decl name='unsigned short int' size-in-bits='16' id='type-id-109'/>
+ <type-decl name='signed char' size-in-bits='8' id='type-id-110'/>
+
+ <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='8' id='type-id-111'>
+ <subrange length='1' type-id='type-id-38' id='type-id-118'/>
+
+ </array-type-def>
+ <typedef-decl name='_IO_lock_t' type-id='type-id-4' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='43' column='1' id='type-id-119'/>
+ <pointer-type-def type-id='type-id-119' size-in-bits='64' id='type-id-112'/>
+ <typedef-decl name='__off64_t' type-id='type-id-31' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='153' column='1' id='type-id-113'/>
+ <class-decl name='_IO_codecvt' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-120'/>
+ <pointer-type-def type-id='type-id-120' size-in-bits='64' id='type-id-114'/>
+ <class-decl name='_IO_wide_data' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-121'/>
+ <pointer-type-def type-id='type-id-121' size-in-bits='64' id='type-id-115'/>
+ <typedef-decl name='size_t' type-id='type-id-38' filepath='/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h' line='209' column='1' id='type-id-62'/>
+
+ <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='160' id='type-id-116'>
+ <subrange length='20' type-id='type-id-38' id='type-id-122'/>
+
+ </array-type-def>
+ <typedef-decl name='FILE' type-id='type-id-105' filepath='/usr/include/x86_64-linux-gnu/bits/types/FILE.h' line='7' column='1' id='type-id-123'/>
+ <pointer-type-def type-id='type-id-123' size-in-bits='64' id='type-id-124'/>
+ <pointer-type-def type-id='type-id-125' size-in-bits='64' id='type-id-126'/>
+ <typedef-decl name='printfunc' type-id='type-id-126' filepath='../gpshead/Include/object.h' line='326' column='1' id='type-id-74'/>
+ <pointer-type-def type-id='type-id-127' size-in-bits='64' id='type-id-128'/>
+ <typedef-decl name='getattrfunc' type-id='type-id-128' filepath='../gpshead/Include/object.h' line='328' column='1' id='type-id-75'/>
+ <pointer-type-def type-id='type-id-129' size-in-bits='64' id='type-id-130'/>
+ <typedef-decl name='setattrfunc' type-id='type-id-130' filepath='../gpshead/Include/object.h' line='330' column='1' id='type-id-76'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-131' visibility='default' filepath='../gpshead/Include/object.h' line='307' column='1' id='type-id-132'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='am_await' type-id='type-id-133' visibility='default' filepath='../gpshead/Include/object.h' line='308' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='am_aiter' type-id='type-id-133' visibility='default' filepath='../gpshead/Include/object.h' line='309' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='am_anext' type-id='type-id-133' visibility='default' filepath='../gpshead/Include/object.h' line='310' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-134' size-in-bits='64' id='type-id-135'/>
+ <typedef-decl name='unaryfunc' type-id='type-id-135' filepath='../gpshead/Include/object.h' line='169' column='1' id='type-id-133'/>
+ <typedef-decl name='PyAsyncMethods' type-id='type-id-132' filepath='../gpshead/Include/object.h' line='311' column='1' id='type-id-131'/>
+ <pointer-type-def type-id='type-id-131' size-in-bits='64' id='type-id-77'/>
+ <typedef-decl name='reprfunc' type-id='type-id-135' filepath='../gpshead/Include/object.h' line='332' column='1' id='type-id-78'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='2304' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-136' visibility='default' filepath='../gpshead/Include/object.h' line='240' column='1' id='type-id-137'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='nb_add' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='245' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='nb_subtract' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='246' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='nb_multiply' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='247' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='nb_remainder' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='248' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='nb_divmod' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='249' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='nb_power' type-id='type-id-83' visibility='default' filepath='../gpshead/Include/object.h' line='250' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='nb_negative' type-id='type-id-133' visibility='default' filepath='../gpshead/Include/object.h' line='251' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='nb_positive' type-id='type-id-133' visibility='default' filepath='../gpshead/Include/object.h' line='252' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='nb_absolute' type-id='type-id-133' visibility='default' filepath='../gpshead/Include/object.h' line='253' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='nb_bool' type-id='type-id-88' visibility='default' filepath='../gpshead/Include/object.h' line='254' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='640'>
+ <var-decl name='nb_invert' type-id='type-id-133' visibility='default' filepath='../gpshead/Include/object.h' line='255' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='704'>
+ <var-decl name='nb_lshift' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='256' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='768'>
+ <var-decl name='nb_rshift' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='257' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='832'>
+ <var-decl name='nb_and' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='258' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='896'>
+ <var-decl name='nb_xor' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='259' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='960'>
+ <var-decl name='nb_or' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='260' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1024'>
+ <var-decl name='nb_int' type-id='type-id-133' visibility='default' filepath='../gpshead/Include/object.h' line='261' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1088'>
+ <var-decl name='nb_reserved' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/object.h' line='262' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1152'>
+ <var-decl name='nb_float' type-id='type-id-133' visibility='default' filepath='../gpshead/Include/object.h' line='263' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1216'>
+ <var-decl name='nb_inplace_add' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='265' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1280'>
+ <var-decl name='nb_inplace_subtract' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='266' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1344'>
+ <var-decl name='nb_inplace_multiply' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='267' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1408'>
+ <var-decl name='nb_inplace_remainder' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='268' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1472'>
+ <var-decl name='nb_inplace_power' type-id='type-id-83' visibility='default' filepath='../gpshead/Include/object.h' line='269' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1536'>
+ <var-decl name='nb_inplace_lshift' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='270' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1600'>
+ <var-decl name='nb_inplace_rshift' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='271' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1664'>
+ <var-decl name='nb_inplace_and' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='272' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1728'>
+ <var-decl name='nb_inplace_xor' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='273' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1792'>
+ <var-decl name='nb_inplace_or' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='274' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1856'>
+ <var-decl name='nb_floor_divide' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='276' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1920'>
+ <var-decl name='nb_true_divide' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='277' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1984'>
+ <var-decl name='nb_inplace_floor_divide' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='278' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2048'>
+ <var-decl name='nb_inplace_true_divide' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='279' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2112'>
+ <var-decl name='nb_index' type-id='type-id-133' visibility='default' filepath='../gpshead/Include/object.h' line='281' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2176'>
+ <var-decl name='nb_matrix_multiply' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='283' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2240'>
+ <var-decl name='nb_inplace_matrix_multiply' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='284' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-139' size-in-bits='64' id='type-id-140'/>
+ <typedef-decl name='binaryfunc' type-id='type-id-140' filepath='../gpshead/Include/object.h' line='170' column='1' id='type-id-138'/>
+ <pointer-type-def type-id='type-id-141' size-in-bits='64' id='type-id-142'/>
+ <typedef-decl name='ternaryfunc' type-id='type-id-142' filepath='../gpshead/Include/object.h' line='171' column='1' id='type-id-83'/>
+ <pointer-type-def type-id='type-id-143' size-in-bits='64' id='type-id-144'/>
+ <typedef-decl name='inquiry' type-id='type-id-144' filepath='../gpshead/Include/object.h' line='172' column='1' id='type-id-88'/>
+ <typedef-decl name='PyNumberMethods' type-id='type-id-137' filepath='../gpshead/Include/object.h' line='285' column='1' id='type-id-136'/>
+ <pointer-type-def type-id='type-id-136' size-in-bits='64' id='type-id-79'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='640' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-145' visibility='default' filepath='../gpshead/Include/object.h' line='287' column='1' id='type-id-146'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='sq_length' type-id='type-id-147' visibility='default' filepath='../gpshead/Include/object.h' line='288' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='sq_concat' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='289' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='sq_repeat' type-id='type-id-148' visibility='default' filepath='../gpshead/Include/object.h' line='290' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='sq_item' type-id='type-id-148' visibility='default' filepath='../gpshead/Include/object.h' line='291' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='was_sq_slice' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/object.h' line='292' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='sq_ass_item' type-id='type-id-149' visibility='default' filepath='../gpshead/Include/object.h' line='293' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='was_sq_ass_slice' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/object.h' line='294' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='sq_contains' type-id='type-id-150' visibility='default' filepath='../gpshead/Include/object.h' line='295' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='sq_inplace_concat' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='297' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='sq_inplace_repeat' type-id='type-id-148' visibility='default' filepath='../gpshead/Include/object.h' line='298' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-151' size-in-bits='64' id='type-id-152'/>
+ <typedef-decl name='lenfunc' type-id='type-id-152' filepath='../gpshead/Include/object.h' line='173' column='1' id='type-id-147'/>
+ <pointer-type-def type-id='type-id-153' size-in-bits='64' id='type-id-154'/>
+ <typedef-decl name='ssizeargfunc' type-id='type-id-154' filepath='../gpshead/Include/object.h' line='174' column='1' id='type-id-148'/>
+ <pointer-type-def type-id='type-id-155' size-in-bits='64' id='type-id-156'/>
+ <typedef-decl name='ssizeobjargproc' type-id='type-id-156' filepath='../gpshead/Include/object.h' line='176' column='1' id='type-id-149'/>
+ <pointer-type-def type-id='type-id-157' size-in-bits='64' id='type-id-158'/>
+ <typedef-decl name='objobjproc' type-id='type-id-158' filepath='../gpshead/Include/object.h' line='235' column='1' id='type-id-150'/>
+ <typedef-decl name='PySequenceMethods' type-id='type-id-146' filepath='../gpshead/Include/object.h' line='299' column='1' id='type-id-145'/>
+ <pointer-type-def type-id='type-id-145' size-in-bits='64' id='type-id-80'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-159' visibility='default' filepath='../gpshead/Include/object.h' line='301' column='1' id='type-id-160'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='mp_length' type-id='type-id-147' visibility='default' filepath='../gpshead/Include/object.h' line='302' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='mp_subscript' type-id='type-id-138' visibility='default' filepath='../gpshead/Include/object.h' line='303' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='mp_ass_subscript' type-id='type-id-161' visibility='default' filepath='../gpshead/Include/object.h' line='304' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-162' size-in-bits='64' id='type-id-163'/>
+ <typedef-decl name='objobjargproc' type-id='type-id-163' filepath='../gpshead/Include/object.h' line='178' column='1' id='type-id-161'/>
+ <typedef-decl name='PyMappingMethods' type-id='type-id-160' filepath='../gpshead/Include/object.h' line='305' column='1' id='type-id-159'/>
+ <pointer-type-def type-id='type-id-159' size-in-bits='64' id='type-id-81'/>
+ <typedef-decl name='Py_hash_t' type-id='type-id-34' filepath='../gpshead/Include/pyport.h' line='93' column='1' id='type-id-164'/>
+ <pointer-type-def type-id='type-id-165' size-in-bits='64' id='type-id-166'/>
+ <typedef-decl name='hashfunc' type-id='type-id-166' filepath='../gpshead/Include/object.h' line='333' column='1' id='type-id-82'/>
+ <typedef-decl name='getattrofunc' type-id='type-id-140' filepath='../gpshead/Include/object.h' line='329' column='1' id='type-id-84'/>
+ <typedef-decl name='setattrofunc' type-id='type-id-163' filepath='../gpshead/Include/object.h' line='331' column='1' id='type-id-85'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-167' visibility='default' filepath='../gpshead/Include/object.h' line='313' column='1' id='type-id-168'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='bf_getbuffer' type-id='type-id-169' visibility='default' filepath='../gpshead/Include/object.h' line='314' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='bf_releasebuffer' type-id='type-id-170' visibility='default' filepath='../gpshead/Include/object.h' line='315' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='bufferinfo' size-in-bits='640' is-struct='yes' visibility='default' filepath='../gpshead/Include/object.h' line='182' column='1' id='type-id-171'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='buf' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/object.h' line='183' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='obj' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/object.h' line='184' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='len' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/object.h' line='185' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='itemsize' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/object.h' line='186' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='readonly' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/object.h' line='188' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288'>
+ <var-decl name='ndim' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/object.h' line='189' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='format' type-id='type-id-12' visibility='default' filepath='../gpshead/Include/object.h' line='190' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='shape' type-id='type-id-172' visibility='default' filepath='../gpshead/Include/object.h' line='191' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='strides' type-id='type-id-172' visibility='default' filepath='../gpshead/Include/object.h' line='192' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='suboffsets' type-id='type-id-172' visibility='default' filepath='../gpshead/Include/object.h' line='193' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='internal' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/object.h' line='194' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-34' size-in-bits='64' id='type-id-172'/>
+ <typedef-decl name='Py_buffer' type-id='type-id-171' filepath='../gpshead/Include/object.h' line='195' column='1' id='type-id-173'/>
+ <pointer-type-def type-id='type-id-173' size-in-bits='64' id='type-id-174'/>
+ <pointer-type-def type-id='type-id-175' size-in-bits='64' id='type-id-176'/>
+ <typedef-decl name='getbufferproc' type-id='type-id-176' filepath='../gpshead/Include/object.h' line='197' column='1' id='type-id-169'/>
+ <pointer-type-def type-id='type-id-177' size-in-bits='64' id='type-id-178'/>
+ <typedef-decl name='releasebufferproc' type-id='type-id-178' filepath='../gpshead/Include/object.h' line='198' column='1' id='type-id-170'/>
+ <typedef-decl name='PyBufferProcs' type-id='type-id-168' filepath='../gpshead/Include/object.h' line='316' column='1' id='type-id-167'/>
+ <pointer-type-def type-id='type-id-167' size-in-bits='64' id='type-id-86'/>
+ <pointer-type-def type-id='type-id-179' size-in-bits='64' id='type-id-180'/>
+ <typedef-decl name='visitproc' type-id='type-id-180' filepath='../gpshead/Include/object.h' line='236' column='1' id='type-id-181'/>
+ <pointer-type-def type-id='type-id-182' size-in-bits='64' id='type-id-183'/>
+ <typedef-decl name='traverseproc' type-id='type-id-183' filepath='../gpshead/Include/object.h' line='237' column='1' id='type-id-87'/>
+ <pointer-type-def type-id='type-id-184' size-in-bits='64' id='type-id-185'/>
+ <typedef-decl name='richcmpfunc' type-id='type-id-185' filepath='../gpshead/Include/object.h' line='334' column='1' id='type-id-89'/>
+ <typedef-decl name='getiterfunc' type-id='type-id-135' filepath='../gpshead/Include/object.h' line='335' column='1' id='type-id-90'/>
+ <typedef-decl name='iternextfunc' type-id='type-id-135' filepath='../gpshead/Include/object.h' line='336' column='1' id='type-id-91'/>
+ <class-decl name='PyMethodDef' size-in-bits='256' is-struct='yes' visibility='default' filepath='../gpshead/Include/methodobject.h' line='56' column='1' id='type-id-186'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ml_name' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/methodobject.h' line='57' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='ml_meth' type-id='type-id-187' visibility='default' filepath='../gpshead/Include/methodobject.h' line='58' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='ml_flags' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/methodobject.h' line='59' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='ml_doc' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/methodobject.h' line='61' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyCFunction' type-id='type-id-140' filepath='../gpshead/Include/methodobject.h' line='18' column='1' id='type-id-187'/>
+ <pointer-type-def type-id='type-id-186' size-in-bits='64' id='type-id-92'/>
+ <class-decl name='PyMemberDef' size-in-bits='320' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-188'/>
+ <pointer-type-def type-id='type-id-188' size-in-bits='64' id='type-id-93'/>
+ <class-decl name='PyGetSetDef' size-in-bits='320' is-struct='yes' visibility='default' filepath='../gpshead/Include/descrobject.h' line='11' column='1' id='type-id-189'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='name' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/descrobject.h' line='12' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='get' type-id='type-id-190' visibility='default' filepath='../gpshead/Include/descrobject.h' line='13' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='set' type-id='type-id-191' visibility='default' filepath='../gpshead/Include/descrobject.h' line='14' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='doc' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/descrobject.h' line='15' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='closure' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/descrobject.h' line='16' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-192' size-in-bits='64' id='type-id-193'/>
+ <typedef-decl name='getter' type-id='type-id-193' filepath='../gpshead/Include/descrobject.h' line='8' column='1' id='type-id-190'/>
+ <pointer-type-def type-id='type-id-194' size-in-bits='64' id='type-id-195'/>
+ <typedef-decl name='setter' type-id='type-id-195' filepath='../gpshead/Include/descrobject.h' line='9' column='1' id='type-id-191'/>
+ <pointer-type-def type-id='type-id-189' size-in-bits='64' id='type-id-94'/>
+ <pointer-type-def type-id='type-id-71' size-in-bits='64' id='type-id-70'/>
+ <typedef-decl name='descrgetfunc' type-id='type-id-142' filepath='../gpshead/Include/object.h' line='337' column='1' id='type-id-95'/>
+ <typedef-decl name='descrsetfunc' type-id='type-id-163' filepath='../gpshead/Include/object.h' line='338' column='1' id='type-id-96'/>
+ <typedef-decl name='initproc' type-id='type-id-163' filepath='../gpshead/Include/object.h' line='339' column='1' id='type-id-97'/>
+ <pointer-type-def type-id='type-id-196' size-in-bits='64' id='type-id-197'/>
+ <typedef-decl name='allocfunc' type-id='type-id-197' filepath='../gpshead/Include/object.h' line='341' column='1' id='type-id-98'/>
+ <pointer-type-def type-id='type-id-198' size-in-bits='64' id='type-id-199'/>
+ <typedef-decl name='newfunc' type-id='type-id-199' filepath='../gpshead/Include/object.h' line='340' column='1' id='type-id-99'/>
+ <pointer-type-def type-id='type-id-200' size-in-bits='64' id='type-id-55'/>
+ <typedef-decl name='freefunc' type-id='type-id-55' filepath='../gpshead/Include/object.h' line='319' column='1' id='type-id-100'/>
+ <type-decl name='unsigned int' size-in-bits='32' id='type-id-101'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='1792' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-63' visibility='default' filepath='../gpshead/Include/pystate.h' line='29' column='1' id='type-id-201'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='install_signal_handlers' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='30' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='32'>
+ <var-decl name='ignore_environment' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='32' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='use_hash_seed' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='hash_seed' type-id='type-id-38' visibility='default' filepath='../gpshead/Include/pystate.h' line='34' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='allocator' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/pystate.h' line='35' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='dev_mode' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='36' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288'>
+ <var-decl name='faulthandler' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='37' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='tracemalloc' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='38' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='352'>
+ <var-decl name='import_time' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='39' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='show_ref_count' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='40' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='416'>
+ <var-decl name='show_alloc_count' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='41' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='dump_refs' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='42' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='480'>
+ <var-decl name='malloc_stats' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='43' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='coerce_c_locale' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='44' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='544'>
+ <var-decl name='coerce_c_locale_warn' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='45' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='utf8_mode' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='46' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='640'>
+ <var-decl name='program_name' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/pystate.h' line='48' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='704'>
+ <var-decl name='argc' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='49' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='768'>
+ <var-decl name='argv' type-id='type-id-203' visibility='default' filepath='../gpshead/Include/pystate.h' line='51' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='832'>
+ <var-decl name='program' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/pystate.h' line='52' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='896'>
+ <var-decl name='nxoption' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='54' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='960'>
+ <var-decl name='xoptions' type-id='type-id-203' visibility='default' filepath='../gpshead/Include/pystate.h' line='55' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1024'>
+ <var-decl name='nwarnoption' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='57' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1088'>
+ <var-decl name='warnoptions' type-id='type-id-203' visibility='default' filepath='../gpshead/Include/pystate.h' line='58' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1152'>
+ <var-decl name='module_search_path_env' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/pystate.h' line='61' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1216'>
+ <var-decl name='home' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/pystate.h' line='62' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1280'>
+ <var-decl name='nmodule_search_path' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='66' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1344'>
+ <var-decl name='module_search_paths' type-id='type-id-203' visibility='default' filepath='../gpshead/Include/pystate.h' line='68' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1408'>
+ <var-decl name='executable' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/pystate.h' line='69' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1472'>
+ <var-decl name='prefix' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/pystate.h' line='70' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1536'>
+ <var-decl name='base_prefix' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/pystate.h' line='71' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1600'>
+ <var-decl name='exec_prefix' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/pystate.h' line='72' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1664'>
+ <var-decl name='base_exec_prefix' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/pystate.h' line='73' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1728'>
+ <var-decl name='_disable_importlib' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='76' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='wchar_t' type-id='type-id-7' filepath='/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h' line='321' column='1' id='type-id-204'/>
+ <pointer-type-def type-id='type-id-204' size-in-bits='64' id='type-id-202'/>
+ <pointer-type-def type-id='type-id-202' size-in-bits='64' id='type-id-203'/>
+ <typedef-decl name='_PyCoreConfig' type-id='type-id-201' filepath='../gpshead/Include/pystate.h' line='77' column='1' id='type-id-63'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='640' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-64' visibility='default' filepath='../gpshead/Include/pystate.h' line='96' column='1' id='type-id-205'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='install_signal_handlers' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pystate.h' line='97' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='argv' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='98' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='executable' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='99' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='prefix' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='100' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='base_prefix' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='101' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='exec_prefix' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='102' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='base_exec_prefix' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='103' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='warnoptions' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='104' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='xoptions' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='105' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='module_search_path' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='106' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='_PyMainInterpreterConfig' type-id='type-id-205' filepath='../gpshead/Include/pystate.h' line='107' column='1' id='type-id-64'/>
+ <class-decl name='_frame' size-in-bits='2944' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-206'/>
+ <pointer-type-def type-id='type-id-206' size-in-bits='64' id='type-id-50'/>
+ <pointer-type-def type-id='type-id-207' size-in-bits='64' id='type-id-208'/>
+ <typedef-decl name='_PyFrameEvalFunction' type-id='type-id-208' filepath='../gpshead/Include/pystate.h' line='26' column='1' id='type-id-65'/>
+
+ <array-type-def dimensions='1' type-id='type-id-100' size-in-bits='16320' id='type-id-66'>
+ <subrange length='255' type-id='type-id-38' id='type-id-209'/>
+
+ </array-type-def>
+ <typedef-decl name='__uint64_t' type-id='type-id-38' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='45' column='1' id='type-id-210'/>
+ <typedef-decl name='uint64_t' type-id='type-id-210' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h' line='27' column='1' id='type-id-57'/>
+ <typedef-decl name='PyInterpreterState' type-id='type-id-58' filepath='../gpshead/Include/pystate.h' line='169' column='1' id='type-id-211'/>
+ <pointer-type-def type-id='type-id-211' size-in-bits='64' id='type-id-49'/>
+ <pointer-type-def type-id='type-id-212' size-in-bits='64' id='type-id-213'/>
+ <typedef-decl name='Py_tracefunc' type-id='type-id-213' filepath='../gpshead/Include/pystate.h' line='177' column='1' id='type-id-51'/>
+ <class-decl name='_err_stackitem' size-in-bits='256' is-struct='yes' visibility='default' filepath='../gpshead/Include/pystate.h' line='198' column='1' id='type-id-214'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='exc_type' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='205' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='exc_value' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='205' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='exc_traceback' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/pystate.h' line='205' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='previous_item' type-id='type-id-215' visibility='default' filepath='../gpshead/Include/pystate.h' line='207' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-214' size-in-bits='64' id='type-id-215'/>
+ <typedef-decl name='_PyErr_StackItem' type-id='type-id-214' filepath='../gpshead/Include/pystate.h' line='209' column='1' id='type-id-53'/>
+ <pointer-type-def type-id='type-id-53' size-in-bits='64' id='type-id-54'/>
+ <typedef-decl name='PyThreadState' type-id='type-id-47' filepath='../gpshead/Include/pystate.h' line='305' column='1' id='type-id-216'/>
+ <pointer-type-def type-id='type-id-216' size-in-bits='64' id='type-id-217'/>
+ <var-decl name='_PyOS_ReadlineTState' type-id='type-id-217' mangled-name='_PyOS_ReadlineTState' visibility='default' filepath='../gpshead/Include/pythonrun.h' line='160' column='1' elf-symbol-id='_PyOS_ReadlineTState'/>
+ <pointer-type-def type-id='type-id-218' size-in-bits='64' id='type-id-219'/>
+ <var-decl name='PyOS_InputHook' type-id='type-id-219' mangled-name='PyOS_InputHook' visibility='default' filepath='../gpshead/Include/pythonrun.h' line='157' column='1' elf-symbol-id='PyOS_InputHook'/>
+ <pointer-type-def type-id='type-id-220' size-in-bits='64' id='type-id-221'/>
+ <var-decl name='PyOS_ReadlineFunctionPointer' type-id='type-id-221' mangled-name='PyOS_ReadlineFunctionPointer' visibility='default' filepath='../gpshead/Include/pythonrun.h' line='158' column='1' elf-symbol-id='PyOS_ReadlineFunctionPointer'/>
+ <function-decl name='PyOS_Readline' mangled-name='PyOS_Readline' filepath='../gpshead/Parser/myreadline.c' line='322' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_Readline'>
+ <parameter type-id='type-id-124' name='sys_stdin' filepath='../gpshead/Parser/myreadline.c' line='322' column='1'/>
+ <parameter type-id='type-id-124' name='sys_stdout' filepath='../gpshead/Parser/myreadline.c' line='322' column='1'/>
+ <parameter type-id='type-id-3' name='prompt' filepath='../gpshead/Parser/myreadline.c' line='322' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <function-decl name='PyOS_StdioReadline' mangled-name='PyOS_StdioReadline' filepath='../gpshead/Parser/myreadline.c' line='209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_StdioReadline'>
+ <parameter type-id='type-id-124' name='sys_stdin' filepath='../gpshead/Parser/myreadline.c' line='209' column='1'/>
+ <parameter type-id='type-id-124' name='sys_stdout' filepath='../gpshead/Parser/myreadline.c' line='209' column='1'/>
+ <parameter type-id='type-id-3' name='prompt' filepath='../gpshead/Parser/myreadline.c' line='209' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-134'>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-52'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-139'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-52'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-141'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-52'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-184'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-52'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-127'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-12'/>
+ <return type-id='type-id-52'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-153'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-34'/>
+ <return type-id='type-id-52'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-192'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-56'/>
+ <return type-id='type-id-52'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-207'>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-52'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-198'>
+ <parameter type-id='type-id-70'/>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-52'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-196'>
+ <parameter type-id='type-id-70'/>
+ <parameter type-id='type-id-34'/>
+ <return type-id='type-id-52'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-220'>
+ <parameter type-id='type-id-124'/>
+ <parameter type-id='type-id-124'/>
+ <parameter type-id='type-id-3'/>
+ <return type-id='type-id-12'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-218'>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-143'>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-125'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-124'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-157'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-162'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-194'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-56'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-175'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-174'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-212'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-129'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-12'/>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-155'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-34'/>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-182'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-181'/>
+ <parameter type-id='type-id-56'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-179'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-56'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-165'>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-164'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-151'>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-34'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-104'>
+ <parameter type-id='type-id-52'/>
+ <return type-id='type-id-4'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-177'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-174'/>
+ <return type-id='type-id-4'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-200'>
+ <parameter type-id='type-id-56'/>
+ <return type-id='type-id-4'/>
+ </function-type>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/parsetok.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-222' visibility='default' filepath='../gpshead/Include/parsetok.h' line='10' column='1' id='type-id-223'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='error' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/parsetok.h' line='11' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='filename' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/parsetok.h' line='14' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='lineno' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/parsetok.h' line='16' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='160'>
+ <var-decl name='offset' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/parsetok.h' line='17' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='text' type-id='type-id-12' visibility='default' filepath='../gpshead/Include/parsetok.h' line='18' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='token' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/parsetok.h' line='19' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288'>
+ <var-decl name='expected' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/parsetok.h' line='20' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='perrdetail' type-id='type-id-223' filepath='../gpshead/Include/parsetok.h' line='21' column='1' id='type-id-222'/>
+ <pointer-type-def type-id='type-id-222' size-in-bits='64' id='type-id-224'/>
+ <function-decl name='PyParser_ParseFileFlagsEx' mangled-name='PyParser_ParseFileFlagsEx' filepath='../gpshead/Parser/parsetok.c' line='138' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ParseFileFlagsEx'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Parser/parsetok.c' line='138' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Parser/parsetok.c' line='138' column='1'/>
+ <parameter type-id='type-id-3' name='enc' filepath='../gpshead/Parser/parsetok.c' line='139' column='1'/>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/parsetok.c' line='139' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Parser/parsetok.c' line='139' column='1'/>
+ <parameter type-id='type-id-3' name='ps1' filepath='../gpshead/Parser/parsetok.c' line='140' column='1'/>
+ <parameter type-id='type-id-3' name='ps2' filepath='../gpshead/Parser/parsetok.c' line='140' column='1'/>
+ <parameter type-id='type-id-224' name='err_ret' filepath='../gpshead/Parser/parsetok.c' line='141' column='1'/>
+ <parameter type-id='type-id-18' name='flags' filepath='../gpshead/Parser/parsetok.c' line='141' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_ParseFileObject' mangled-name='PyParser_ParseFileObject' filepath='../gpshead/Parser/parsetok.c' line='116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ParseFileObject'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Parser/parsetok.c' line='116' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Parser/parsetok.c' line='116' column='1'/>
+ <parameter type-id='type-id-3' name='enc' filepath='../gpshead/Parser/parsetok.c' line='117' column='1'/>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/parsetok.c' line='117' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Parser/parsetok.c' line='117' column='1'/>
+ <parameter type-id='type-id-3' name='ps1' filepath='../gpshead/Parser/parsetok.c' line='118' column='1'/>
+ <parameter type-id='type-id-3' name='ps2' filepath='../gpshead/Parser/parsetok.c' line='118' column='1'/>
+ <parameter type-id='type-id-224' name='err_ret' filepath='../gpshead/Parser/parsetok.c' line='119' column='1'/>
+ <parameter type-id='type-id-18' name='flags' filepath='../gpshead/Parser/parsetok.c' line='119' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_ParseFileFlags' mangled-name='PyParser_ParseFileFlags' filepath='../gpshead/Parser/parsetok.c' line='105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ParseFileFlags'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Parser/parsetok.c' line='105' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Parser/parsetok.c' line='105' column='1'/>
+ <parameter type-id='type-id-3' name='enc' filepath='../gpshead/Parser/parsetok.c' line='105' column='1'/>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/parsetok.c' line='106' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Parser/parsetok.c' line='106' column='1'/>
+ <parameter type-id='type-id-3' name='ps1' filepath='../gpshead/Parser/parsetok.c' line='107' column='1'/>
+ <parameter type-id='type-id-3' name='ps2' filepath='../gpshead/Parser/parsetok.c' line='107' column='1'/>
+ <parameter type-id='type-id-224' name='err_ret' filepath='../gpshead/Parser/parsetok.c' line='108' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Parser/parsetok.c' line='108' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_ParseFile' mangled-name='PyParser_ParseFile' filepath='../gpshead/Parser/parsetok.c' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ParseFile'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Parser/parsetok.c' line='96' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Parser/parsetok.c' line='96' column='1'/>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/parsetok.c' line='96' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Parser/parsetok.c' line='96' column='1'/>
+ <parameter type-id='type-id-3' name='ps1' filepath='../gpshead/Parser/parsetok.c' line='97' column='1'/>
+ <parameter type-id='type-id-3' name='ps2' filepath='../gpshead/Parser/parsetok.c' line='97' column='1'/>
+ <parameter type-id='type-id-224' name='err_ret' filepath='../gpshead/Parser/parsetok.c' line='98' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_ParseStringFlagsFilenameEx' mangled-name='PyParser_ParseStringFlagsFilenameEx' filepath='../gpshead/Parser/parsetok.c' line='71' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ParseStringFlagsFilenameEx'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Parser/parsetok.c' line='71' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Parser/parsetok.c' line='71' column='1'/>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/parsetok.c' line='72' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Parser/parsetok.c' line='72' column='1'/>
+ <parameter type-id='type-id-224' name='err_ret' filepath='../gpshead/Parser/parsetok.c' line='73' column='1'/>
+ <parameter type-id='type-id-18' name='flags' filepath='../gpshead/Parser/parsetok.c' line='73' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_ParseStringObject' mangled-name='PyParser_ParseStringObject' filepath='../gpshead/Parser/parsetok.c' line='44' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ParseStringObject'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Parser/parsetok.c' line='44' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Parser/parsetok.c' line='44' column='1'/>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/parsetok.c' line='45' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Parser/parsetok.c' line='45' column='1'/>
+ <parameter type-id='type-id-224' name='err_ret' filepath='../gpshead/Parser/parsetok.c' line='46' column='1'/>
+ <parameter type-id='type-id-18' name='flags' filepath='../gpshead/Parser/parsetok.c' line='46' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_ParseStringFlagsFilename' mangled-name='PyParser_ParseStringFlagsFilename' filepath='../gpshead/Parser/parsetok.c' line='34' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ParseStringFlagsFilename'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Parser/parsetok.c' line='34' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Parser/parsetok.c' line='34' column='1'/>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/parsetok.c' line='35' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Parser/parsetok.c' line='35' column='1'/>
+ <parameter type-id='type-id-224' name='err_ret' filepath='../gpshead/Parser/parsetok.c' line='36' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Parser/parsetok.c' line='36' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_ParseStringFlags' mangled-name='PyParser_ParseStringFlags' filepath='../gpshead/Parser/parsetok.c' line='26' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ParseStringFlags'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Parser/parsetok.c' line='26' column='1'/>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/parsetok.c' line='26' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Parser/parsetok.c' line='26' column='1'/>
+ <parameter type-id='type-id-224' name='err_ret' filepath='../gpshead/Parser/parsetok.c' line='27' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Parser/parsetok.c' line='27' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_ParseString' mangled-name='PyParser_ParseString' filepath='../gpshead/Parser/parsetok.c' line='20' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ParseString'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Parser/parsetok.c' line='20' column='1'/>
+ <parameter type-id='type-id-26' name='g' filepath='../gpshead/Parser/parsetok.c' line='20' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Parser/parsetok.c' line='20' column='1'/>
+ <parameter type-id='type-id-224' name='err_ret' filepath='../gpshead/Parser/parsetok.c' line='20' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Parser/tokenizer.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+
+ <array-type-def dimensions='1' type-id='type-id-3' size-in-bits='infinite' id='type-id-225'>
+ <subrange length='infinite' id='type-id-226'/>
+
+ </array-type-def>
+ <var-decl name='_PyParser_TokenNames' type-id='type-id-225' mangled-name='_PyParser_TokenNames' visibility='default' filepath='../gpshead/Include/token.h' line='83' column='1' elf-symbol-id='_PyParser_TokenNames'/>
+ <function-decl name='PyTokenizer_FindEncoding' mangled-name='PyTokenizer_FindEncoding' filepath='../gpshead/Parser/tokenizer.c' line='1906' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTokenizer_FindEncoding'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Parser/tokenizer.c' line='1906' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <function-decl name='PyTokenizer_FindEncodingFilename' mangled-name='PyTokenizer_FindEncodingFilename' filepath='../gpshead/Parser/tokenizer.c' line='1854' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTokenizer_FindEncodingFilename'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Parser/tokenizer.c' line='1854' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Parser/tokenizer.c' line='1854' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <class-decl name='tok_state' size-in-bits='7872' is-struct='yes' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='22' column='1' id='type-id-227'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='buf' type-id='type-id-12' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='25' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='cur' type-id='type-id-12' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='26' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='inp' type-id='type-id-12' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='27' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='end' type-id='type-id-12' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='28' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='start' type-id='type-id-12' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='29' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='done' type-id='type-id-7' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='30' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='fp' type-id='type-id-124' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='32' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='tabsize' type-id='type-id-7' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='480'>
+ <var-decl name='indent' type-id='type-id-7' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='34' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='indstack' type-id='type-id-228' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='35' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3712'>
+ <var-decl name='atbol' type-id='type-id-7' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='36' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3744'>
+ <var-decl name='pendin' type-id='type-id-7' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='37' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3776'>
+ <var-decl name='prompt' type-id='type-id-3' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='38' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3840'>
+ <var-decl name='nextprompt' type-id='type-id-3' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='38' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3904'>
+ <var-decl name='lineno' type-id='type-id-7' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='39' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3936'>
+ <var-decl name='level' type-id='type-id-7' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='40' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='3968'>
+ <var-decl name='filename' type-id='type-id-52' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='48' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='4032'>
+ <var-decl name='altindstack' type-id='type-id-228' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='50' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='7232'>
+ <var-decl name='decoding_state' type-id='type-id-229' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='52' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='7264'>
+ <var-decl name='decoding_erred' type-id='type-id-7' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='53' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='7296'>
+ <var-decl name='read_coding_spec' type-id='type-id-7' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='54' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='7360'>
+ <var-decl name='encoding' type-id='type-id-12' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='55' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='7424'>
+ <var-decl name='cont_line' type-id='type-id-7' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='56' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='7488'>
+ <var-decl name='line_start' type-id='type-id-3' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='57' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='7552'>
+ <var-decl name='decoding_readline' type-id='type-id-52' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='59' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='7616'>
+ <var-decl name='decoding_buffer' type-id='type-id-52' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='60' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='7680'>
+ <var-decl name='enc' type-id='type-id-3' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='62' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='7744'>
+ <var-decl name='str' type-id='type-id-3' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='63' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='7808'>
+ <var-decl name='input' type-id='type-id-3' visibility='default' filepath='../gpshead/Parser/tokenizer.h' line='64' column='1'/>
+ </data-member>
+ </class-decl>
+
+ <array-type-def dimensions='1' type-id='type-id-7' size-in-bits='3200' id='type-id-228'>
+ <subrange length='100' type-id='type-id-38' id='type-id-230'/>
+
+ </array-type-def>
+ <type-decl name='unnamed-enum-underlying-type' is-anonymous='yes' size-in-bits='32' alignment-in-bits='32' id='type-id-231'/>
+ <enum-decl name='decoding_state' filepath='../gpshead/Parser/tokenizer.h' line='15' column='1' id='type-id-229'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='STATE_INIT' value='0'/>
+ <enumerator name='STATE_RAW' value='1'/>
+ <enumerator name='STATE_NORMAL' value='2'/>
+ </enum-decl>
+ <pointer-type-def type-id='type-id-227' size-in-bits='64' id='type-id-232'/>
+ <pointer-type-def type-id='type-id-12' size-in-bits='64' id='type-id-233'/>
+ <function-decl name='PyTokenizer_Get' mangled-name='PyTokenizer_Get' filepath='../gpshead/Parser/tokenizer.c' line='1833' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTokenizer_Get'>
+ <parameter type-id='type-id-232' name='tok' filepath='../gpshead/Parser/tokenizer.c' line='1833' column='1'/>
+ <parameter type-id='type-id-233' name='p_start' filepath='../gpshead/Parser/tokenizer.c' line='1833' column='1'/>
+ <parameter type-id='type-id-233' name='p_end' filepath='../gpshead/Parser/tokenizer.c' line='1833' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyToken_ThreeChars' mangled-name='PyToken_ThreeChars' filepath='../gpshead/Parser/tokenizer.c' line='1236' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyToken_ThreeChars'>
+ <parameter type-id='type-id-7' name='c1' filepath='../gpshead/Parser/tokenizer.c' line='1236' column='1'/>
+ <parameter type-id='type-id-7' name='c2' filepath='../gpshead/Parser/tokenizer.c' line='1236' column='1'/>
+ <parameter type-id='type-id-7' name='c3' filepath='../gpshead/Parser/tokenizer.c' line='1236' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyToken_TwoChars' mangled-name='PyToken_TwoChars' filepath='../gpshead/Parser/tokenizer.c' line='1157' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyToken_TwoChars'>
+ <parameter type-id='type-id-7' name='c1' filepath='../gpshead/Parser/tokenizer.c' line='1157' column='1'/>
+ <parameter type-id='type-id-7' name='c2' filepath='../gpshead/Parser/tokenizer.c' line='1157' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyToken_OneChar' mangled-name='PyToken_OneChar' filepath='../gpshead/Parser/tokenizer.c' line='1125' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyToken_OneChar'>
+ <parameter type-id='type-id-7' name='c' filepath='../gpshead/Parser/tokenizer.c' line='1125' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyTokenizer_Free' mangled-name='PyTokenizer_Free' filepath='../gpshead/Parser/tokenizer.c' line='893' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTokenizer_Free'>
+ <parameter type-id='type-id-232' name='tok' filepath='../gpshead/Parser/tokenizer.c' line='893' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyTokenizer_FromFile' mangled-name='PyTokenizer_FromFile' filepath='../gpshead/Parser/tokenizer.c' line='860' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTokenizer_FromFile'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Parser/tokenizer.c' line='860' column='1'/>
+ <parameter type-id='type-id-3' name='enc' filepath='../gpshead/Parser/tokenizer.c' line='860' column='1'/>
+ <parameter type-id='type-id-3' name='ps1' filepath='../gpshead/Parser/tokenizer.c' line='861' column='1'/>
+ <parameter type-id='type-id-3' name='ps2' filepath='../gpshead/Parser/tokenizer.c' line='861' column='1'/>
+ <return type-id='type-id-232'/>
+ </function-decl>
+ <function-decl name='PyTokenizer_FromUTF8' mangled-name='PyTokenizer_FromUTF8' filepath='../gpshead/Parser/tokenizer.c' line='829' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTokenizer_FromUTF8'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Parser/tokenizer.c' line='829' column='1'/>
+ <parameter type-id='type-id-7' name='exec_input' filepath='../gpshead/Parser/tokenizer.c' line='829' column='1'/>
+ <return type-id='type-id-232'/>
+ </function-decl>
+ <function-decl name='PyTokenizer_FromString' mangled-name='PyTokenizer_FromString' filepath='../gpshead/Parser/tokenizer.c' line='812' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTokenizer_FromString'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Parser/tokenizer.c' line='829' column='1'/>
+ <parameter type-id='type-id-7' name='exec_input' filepath='../gpshead/Parser/tokenizer.c' line='829' column='1'/>
+ <return type-id='type-id-232'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/abstract.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <qualified-type-def type-id='type-id-12' const='yes' id='type-id-234'/>
+ <pointer-type-def type-id='type-id-234' size-in-bits='64' id='type-id-235'/>
+ <function-decl name='_Py_FreeCharPArray' mangled-name='_Py_FreeCharPArray' filepath='../gpshead/Objects/abstract.c' line='2632' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FreeCharPArray'>
+ <parameter type-id='type-id-235' name='array' filepath='../gpshead/Objects/abstract.c' line='2632' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <class-decl name='PyMemberDef' size-in-bits='320' is-struct='yes' visibility='default' filepath='../gpshead/Include/structmember.h' line='18' column='1' id='type-id-188'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='name' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/structmember.h' line='19' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='type' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/structmember.h' line='20' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='offset' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/structmember.h' line='21' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='flags' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/structmember.h' line='22' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='doc' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/structmember.h' line='23' column='1'/>
+ </data-member>
+ </class-decl>
+ <function-decl name='_PySequence_BytesToCharpArray' mangled-name='_PySequence_BytesToCharpArray' filepath='../gpshead/Objects/abstract.c' line='2573' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySequence_BytesToCharpArray'>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/abstract.c' line='2573' column='1'/>
+ <return type-id='type-id-235'/>
+ </function-decl>
+ <function-decl name='PyIter_Next' mangled-name='PyIter_Next' filepath='../gpshead/Objects/abstract.c' line='2552' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyIter_Next'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_GetIter' mangled-name='PyObject_GetIter' filepath='../gpshead/Objects/abstract.c' line='2519' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetIter'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2519' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_RealIsSubclass' mangled-name='_PyObject_RealIsSubclass' filepath='../gpshead/Objects/abstract.c' line='2512' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_RealIsSubclass'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyObject_RealIsInstance' mangled-name='_PyObject_RealIsInstance' filepath='../gpshead/Objects/abstract.c' line='2506' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_RealIsInstance'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_IsSubclass' mangled-name='PyObject_IsSubclass' filepath='../gpshead/Objects/abstract.c' line='2450' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IsSubclass'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2450' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2450' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_IsInstance' mangled-name='PyObject_IsInstance' filepath='../gpshead/Objects/abstract.c' line='2375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IsInstance'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2450' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2450' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyMapping_Values' mangled-name='PyMapping_Values' filepath='../gpshead/Objects/abstract.c' line='2223' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Values'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMapping_Items' mangled-name='PyMapping_Items' filepath='../gpshead/Objects/abstract.c' line='2209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Items'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMapping_Keys' mangled-name='PyMapping_Keys' filepath='../gpshead/Objects/abstract.c' line='2195' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Keys'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMapping_HasKey' mangled-name='PyMapping_HasKey' filepath='../gpshead/Objects/abstract.c' line='2150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_HasKey'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2150' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/abstract.c' line='2150' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyMapping_HasKeyString' mangled-name='PyMapping_HasKeyString' filepath='../gpshead/Objects/abstract.c' line='2136' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_HasKeyString'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2136' column='1'/>
+ <parameter type-id='type-id-3' name='key' filepath='../gpshead/Objects/abstract.c' line='2136' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyMapping_SetItemString' mangled-name='PyMapping_SetItemString' filepath='../gpshead/Objects/abstract.c' line='2117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_SetItemString'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2117' column='1'/>
+ <parameter type-id='type-id-3' name='key' filepath='../gpshead/Objects/abstract.c' line='2117' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/abstract.c' line='2117' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyMapping_GetItemString' mangled-name='PyMapping_GetItemString' filepath='../gpshead/Objects/abstract.c' line='2100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_GetItemString'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2100' column='1'/>
+ <parameter type-id='type-id-3' name='key' filepath='../gpshead/Objects/abstract.c' line='2100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMapping_Length' mangled-name='PyMapping_Length' filepath='../gpshead/Objects/abstract.c' line='2093' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Length'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2093' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyMapping_Size' mangled-name='PyMapping_Size' filepath='../gpshead/Objects/abstract.c' line='2071' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Size'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2071' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyMapping_Check' mangled-name='PyMapping_Check' filepath='../gpshead/Objects/abstract.c' line='2064' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Check'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2064' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySequence_Index' mangled-name='PySequence_Index' filepath='../gpshead/Objects/abstract.c' line='2056' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Index'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='2056' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2056' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PySequence_In' mangled-name='PySequence_In' filepath='../gpshead/Objects/abstract.c' line='2050' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_In'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySequence_Contains' mangled-name='PySequence_Contains' filepath='../gpshead/Objects/abstract.c' line='2037' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Contains'>
+ <parameter type-id='type-id-52' name='seq' filepath='../gpshead/Objects/abstract.c' line='2037' column='1'/>
+ <parameter type-id='type-id-52' name='ob' filepath='../gpshead/Objects/abstract.c' line='2037' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySequence_Count' mangled-name='PySequence_Count' filepath='../gpshead/Objects/abstract.c' line='2028' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Count'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='2056' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2056' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_PySequence_IterSearch' mangled-name='_PySequence_IterSearch' filepath='../gpshead/Objects/abstract.c' line='1945' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySequence_IterSearch'>
+ <parameter type-id='type-id-52' name='seq' filepath='../gpshead/Objects/abstract.c' line='1945' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/abstract.c' line='1945' column='1'/>
+ <parameter type-id='type-id-7' name='operation' filepath='../gpshead/Objects/abstract.c' line='1945' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PySequence_Fast' mangled-name='PySequence_Fast' filepath='../gpshead/Objects/abstract.c' line='1912' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Fast'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1912' column='1'/>
+ <parameter type-id='type-id-3' name='m' filepath='../gpshead/Objects/abstract.c' line='1912' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySequence_List' mangled-name='PySequence_List' filepath='../gpshead/Objects/abstract.c' line='1889' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_List'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1889' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySequence_Tuple' mangled-name='PySequence_Tuple' filepath='../gpshead/Objects/abstract.c' line='1805' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Tuple'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1805' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySequence_DelSlice' mangled-name='PySequence_DelSlice' filepath='../gpshead/Objects/abstract.c' line='1781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_DelSlice'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1781' column='1'/>
+ <parameter type-id='type-id-34' name='i1' filepath='../gpshead/Objects/abstract.c' line='1781' column='1'/>
+ <parameter type-id='type-id-34' name='i2' filepath='../gpshead/Objects/abstract.c' line='1781' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySequence_SetSlice' mangled-name='PySequence_SetSlice' filepath='../gpshead/Objects/abstract.c' line='1756' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_SetSlice'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1756' column='1'/>
+ <parameter type-id='type-id-34' name='i1' filepath='../gpshead/Objects/abstract.c' line='1756' column='1'/>
+ <parameter type-id='type-id-34' name='i2' filepath='../gpshead/Objects/abstract.c' line='1756' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1756' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySequence_DelItem' mangled-name='PySequence_DelItem' filepath='../gpshead/Objects/abstract.c' line='1727' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_DelItem'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1727' column='1'/>
+ <parameter type-id='type-id-34' name='i' filepath='../gpshead/Objects/abstract.c' line='1727' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySequence_SetItem' mangled-name='PySequence_SetItem' filepath='../gpshead/Objects/abstract.c' line='1698' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_SetItem'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1698' column='1'/>
+ <parameter type-id='type-id-34' name='i' filepath='../gpshead/Objects/abstract.c' line='1698' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1698' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySequence_GetSlice' mangled-name='PySequence_GetSlice' filepath='../gpshead/Objects/abstract.c' line='1675' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_GetSlice'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1675' column='1'/>
+ <parameter type-id='type-id-34' name='i1' filepath='../gpshead/Objects/abstract.c' line='1675' column='1'/>
+ <parameter type-id='type-id-34' name='i2' filepath='../gpshead/Objects/abstract.c' line='1675' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySequence_GetItem' mangled-name='PySequence_GetItem' filepath='../gpshead/Objects/abstract.c' line='1648' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_GetItem'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1648' column='1'/>
+ <parameter type-id='type-id-34' name='i' filepath='../gpshead/Objects/abstract.c' line='1648' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySequence_InPlaceRepeat' mangled-name='PySequence_InPlaceRepeat' filepath='../gpshead/Objects/abstract.c' line='1618' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_InPlaceRepeat'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1648' column='1'/>
+ <parameter type-id='type-id-34' name='i' filepath='../gpshead/Objects/abstract.c' line='1648' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySequence_InPlaceConcat' mangled-name='PySequence_InPlaceConcat' filepath='../gpshead/Objects/abstract.c' line='1593' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_InPlaceConcat'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySequence_Repeat' mangled-name='PySequence_Repeat' filepath='../gpshead/Objects/abstract.c' line='1563' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Repeat'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1648' column='1'/>
+ <parameter type-id='type-id-34' name='i' filepath='../gpshead/Objects/abstract.c' line='1648' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySequence_Concat' mangled-name='PySequence_Concat' filepath='../gpshead/Objects/abstract.c' line='1538' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Concat'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySequence_Length' mangled-name='PySequence_Length' filepath='../gpshead/Objects/abstract.c' line='1531' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Length'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2093' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PySequence_Size' mangled-name='PySequence_Size' filepath='../gpshead/Objects/abstract.c' line='1509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Size'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2071' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PySequence_Check' mangled-name='PySequence_Check' filepath='../gpshead/Objects/abstract.c' line='1500' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Check'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2064' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyNumber_ToBase' mangled-name='PyNumber_ToBase' filepath='../gpshead/Objects/abstract.c' line='1481' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_ToBase'>
+ <parameter type-id='type-id-52' name='n' filepath='../gpshead/Objects/abstract.c' line='1481' column='1'/>
+ <parameter type-id='type-id-7' name='base' filepath='../gpshead/Objects/abstract.c' line='1481' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Float' mangled-name='PyNumber_Float' filepath='../gpshead/Objects/abstract.c' line='1434' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Float'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1434' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Long' mangled-name='PyNumber_Long' filepath='../gpshead/Objects/abstract.c' line='1342' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Long'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1342' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_AsSsize_t' mangled-name='PyNumber_AsSsize_t' filepath='../gpshead/Objects/abstract.c' line='1297' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_AsSsize_t'>
+ <parameter type-id='type-id-52' name='item' filepath='../gpshead/Objects/abstract.c' line='1297' column='1'/>
+ <parameter type-id='type-id-52' name='err' filepath='../gpshead/Objects/abstract.c' line='1297' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyNumber_Index' mangled-name='PyNumber_Index' filepath='../gpshead/Objects/abstract.c' line='1255' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Index'>
+ <parameter type-id='type-id-52' name='item' filepath='../gpshead/Objects/abstract.c' line='1255' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Absolute' mangled-name='PyNumber_Absolute' filepath='../gpshead/Objects/abstract.c' line='1235' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Absolute'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Invert' mangled-name='PyNumber_Invert' filepath='../gpshead/Objects/abstract.c' line='1219' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Invert'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Positive' mangled-name='PyNumber_Positive' filepath='../gpshead/Objects/abstract.c' line='1203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Positive'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Negative' mangled-name='PyNumber_Negative' filepath='../gpshead/Objects/abstract.c' line='1187' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Negative'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlacePower' mangled-name='PyNumber_InPlacePower' filepath='../gpshead/Objects/abstract.c' line='1172' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlacePower'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <parameter type-id='type-id-52' name='z' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlaceRemainder' mangled-name='PyNumber_InPlaceRemainder' filepath='../gpshead/Objects/abstract.c' line='1165' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceRemainder'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlaceMatrixMultiply' mangled-name='PyNumber_InPlaceMatrixMultiply' filepath='../gpshead/Objects/abstract.c' line='1158' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceMatrixMultiply'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlaceMultiply' mangled-name='PyNumber_InPlaceMultiply' filepath='../gpshead/Objects/abstract.c' line='1129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceMultiply'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlaceAdd' mangled-name='PyNumber_InPlaceAdd' filepath='../gpshead/Objects/abstract.c' line='1108' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceAdd'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlaceTrueDivide' mangled-name='PyNumber_InPlaceTrueDivide' filepath='../gpshead/Objects/abstract.c' line='1101' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceTrueDivide'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlaceFloorDivide' mangled-name='PyNumber_InPlaceFloorDivide' filepath='../gpshead/Objects/abstract.c' line='1094' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceFloorDivide'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InMatrixMultiply' mangled-name='PyNumber_InMatrixMultiply' filepath='../gpshead/Objects/abstract.c' line='1091' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InMatrixMultiply'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlaceSubtract' mangled-name='PyNumber_InPlaceSubtract' filepath='../gpshead/Objects/abstract.c' line='1090' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceSubtract'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlaceRshift' mangled-name='PyNumber_InPlaceRshift' filepath='../gpshead/Objects/abstract.c' line='1089' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceRshift'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlaceLshift' mangled-name='PyNumber_InPlaceLshift' filepath='../gpshead/Objects/abstract.c' line='1088' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceLshift'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlaceAnd' mangled-name='PyNumber_InPlaceAnd' filepath='../gpshead/Objects/abstract.c' line='1087' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceAnd'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlaceXor' mangled-name='PyNumber_InPlaceXor' filepath='../gpshead/Objects/abstract.c' line='1086' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceXor'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_InPlaceOr' mangled-name='PyNumber_InPlaceOr' filepath='../gpshead/Objects/abstract.c' line='1085' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceOr'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Power' mangled-name='PyNumber_Power' filepath='../gpshead/Objects/abstract.c' line='1029' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Power'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <parameter type-id='type-id-52' name='z' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Remainder' mangled-name='PyNumber_Remainder' filepath='../gpshead/Objects/abstract.c' line='1023' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Remainder'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_TrueDivide' mangled-name='PyNumber_TrueDivide' filepath='../gpshead/Objects/abstract.c' line='1017' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_TrueDivide'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_FloorDivide' mangled-name='PyNumber_FloorDivide' filepath='../gpshead/Objects/abstract.c' line='1011' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_FloorDivide'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_MatrixMultiply' mangled-name='PyNumber_MatrixMultiply' filepath='../gpshead/Objects/abstract.c' line='1005' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_MatrixMultiply'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Multiply' mangled-name='PyNumber_Multiply' filepath='../gpshead/Objects/abstract.c' line='986' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Multiply'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Add' mangled-name='PyNumber_Add' filepath='../gpshead/Objects/abstract.c' line='955' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Add'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Divmod' mangled-name='PyNumber_Divmod' filepath='../gpshead/Objects/abstract.c' line='952' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Divmod'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Subtract' mangled-name='PyNumber_Subtract' filepath='../gpshead/Objects/abstract.c' line='951' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Subtract'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Rshift' mangled-name='PyNumber_Rshift' filepath='../gpshead/Objects/abstract.c' line='950' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Rshift'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Lshift' mangled-name='PyNumber_Lshift' filepath='../gpshead/Objects/abstract.c' line='949' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Lshift'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_And' mangled-name='PyNumber_And' filepath='../gpshead/Objects/abstract.c' line='948' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_And'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Xor' mangled-name='PyNumber_Xor' filepath='../gpshead/Objects/abstract.c' line='947' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Xor'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Or' mangled-name='PyNumber_Or' filepath='../gpshead/Objects/abstract.c' line='946' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Or'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyNumber_Check' mangled-name='PyNumber_Check' filepath='../gpshead/Objects/abstract.c' line='759' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Check'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2064' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_Format' mangled-name='PyObject_Format' filepath='../gpshead/Objects/abstract.c' line='698' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Format'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/abstract.c' line='698' column='1'/>
+ <parameter type-id='type-id-52' name='format_spec' filepath='../gpshead/Objects/abstract.c' line='698' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyBuffer_Release' mangled-name='PyBuffer_Release' filepath='../gpshead/Objects/abstract.c' line='684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_Release'>
+ <parameter type-id='type-id-174' name='view' filepath='../gpshead/Objects/abstract.c' line='684' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyBuffer_FillInfo' mangled-name='PyBuffer_FillInfo' filepath='../gpshead/Objects/abstract.c' line='645' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_FillInfo'>
+ <parameter type-id='type-id-174' name='view' filepath='../gpshead/Objects/abstract.c' line='645' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/abstract.c' line='645' column='1'/>
+ <parameter type-id='type-id-56' name='buf' filepath='../gpshead/Objects/abstract.c' line='645' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/abstract.c' line='645' column='1'/>
+ <parameter type-id='type-id-7' name='readonly' filepath='../gpshead/Objects/abstract.c' line='646' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Objects/abstract.c' line='646' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyBuffer_FillContiguousStrides' mangled-name='PyBuffer_FillContiguousStrides' filepath='../gpshead/Objects/abstract.c' line='621' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_FillContiguousStrides'>
+ <parameter type-id='type-id-7' name='nd' filepath='../gpshead/Objects/abstract.c' line='621' column='1'/>
+ <parameter type-id='type-id-172' name='shape' filepath='../gpshead/Objects/abstract.c' line='621' column='1'/>
+ <parameter type-id='type-id-172' name='strides' filepath='../gpshead/Objects/abstract.c' line='622' column='1'/>
+ <parameter type-id='type-id-7' name='itemsize' filepath='../gpshead/Objects/abstract.c' line='622' column='1'/>
+ <parameter type-id='type-id-1' name='fort' filepath='../gpshead/Objects/abstract.c' line='623' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyObject_CopyData' mangled-name='PyObject_CopyData' filepath='../gpshead/Objects/abstract.c' line='550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CopyData'>
+ <parameter type-id='type-id-52' name='dest' filepath='../gpshead/Objects/abstract.c' line='550' column='1'/>
+ <parameter type-id='type-id-52' name='src' filepath='../gpshead/Objects/abstract.c' line='550' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyBuffer_FromContiguous' mangled-name='PyBuffer_FromContiguous' filepath='../gpshead/Objects/abstract.c' line='499' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_FromContiguous'>
+ <parameter type-id='type-id-174' name='view' filepath='../gpshead/Objects/abstract.c' line='499' column='1'/>
+ <parameter type-id='type-id-56' name='buf' filepath='../gpshead/Objects/abstract.c' line='499' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/abstract.c' line='499' column='1'/>
+ <parameter type-id='type-id-1' name='fort' filepath='../gpshead/Objects/abstract.c' line='499' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <qualified-type-def type-id='type-id-34' const='yes' id='type-id-236'/>
+ <pointer-type-def type-id='type-id-236' size-in-bits='64' id='type-id-237'/>
+ <function-decl name='_Py_add_one_to_index_C' mangled-name='_Py_add_one_to_index_C' filepath='../gpshead/Objects/abstract.c' line='483' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_add_one_to_index_C'>
+ <parameter type-id='type-id-7' name='nd' filepath='../gpshead/Objects/abstract.c' line='483' column='1'/>
+ <parameter type-id='type-id-172' name='index' filepath='../gpshead/Objects/abstract.c' line='483' column='1'/>
+ <parameter type-id='type-id-237' name='shape' filepath='../gpshead/Objects/abstract.c' line='483' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_add_one_to_index_F' mangled-name='_Py_add_one_to_index_F' filepath='../gpshead/Objects/abstract.c' line='467' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_add_one_to_index_F'>
+ <parameter type-id='type-id-7' name='nd' filepath='../gpshead/Objects/abstract.c' line='483' column='1'/>
+ <parameter type-id='type-id-172' name='index' filepath='../gpshead/Objects/abstract.c' line='483' column='1'/>
+ <parameter type-id='type-id-237' name='shape' filepath='../gpshead/Objects/abstract.c' line='483' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyBuffer_GetPointer' mangled-name='PyBuffer_GetPointer' filepath='../gpshead/Objects/abstract.c' line='451' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_GetPointer'>
+ <parameter type-id='type-id-174' name='view' filepath='../gpshead/Objects/abstract.c' line='451' column='1'/>
+ <parameter type-id='type-id-172' name='indices' filepath='../gpshead/Objects/abstract.c' line='451' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <qualified-type-def type-id='type-id-173' const='yes' id='type-id-238'/>
+ <pointer-type-def type-id='type-id-238' size-in-bits='64' id='type-id-239'/>
+ <function-decl name='PyBuffer_IsContiguous' mangled-name='PyBuffer_IsContiguous' filepath='../gpshead/Objects/abstract.c' line='435' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_IsContiguous'>
+ <parameter type-id='type-id-239' name='view' filepath='../gpshead/Objects/abstract.c' line='435' column='1'/>
+ <parameter type-id='type-id-1' name='order' filepath='../gpshead/Objects/abstract.c' line='435' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_GetBuffer' mangled-name='PyObject_GetBuffer' filepath='../gpshead/Objects/abstract.c' line='354' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetBuffer'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/abstract.c' line='354' column='1'/>
+ <parameter type-id='type-id-174' name='view' filepath='../gpshead/Objects/abstract.c' line='354' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Objects/abstract.c' line='354' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-56' size-in-bits='64' id='type-id-240'/>
+ <function-decl name='PyObject_AsWriteBuffer' mangled-name='PyObject_AsWriteBuffer' filepath='../gpshead/Objects/abstract.c' line='325' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_AsWriteBuffer'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/abstract.c' line='325' column='1'/>
+ <parameter type-id='type-id-240' name='buffer' filepath='../gpshead/Objects/abstract.c' line='326' column='1'/>
+ <parameter type-id='type-id-172' name='buffer_len' filepath='../gpshead/Objects/abstract.c' line='327' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_AsReadBuffer' mangled-name='PyObject_AsReadBuffer' filepath='../gpshead/Objects/abstract.c' line='318' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_AsReadBuffer'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/abstract.c' line='318' column='1'/>
+ <parameter type-id='type-id-240' name='buffer' filepath='../gpshead/Objects/abstract.c' line='319' column='1'/>
+ <parameter type-id='type-id-172' name='buffer_len' filepath='../gpshead/Objects/abstract.c' line='320' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-3' size-in-bits='64' id='type-id-241'/>
+ <function-decl name='PyObject_AsCharBuffer' mangled-name='PyObject_AsCharBuffer' filepath='../gpshead/Objects/abstract.c' line='311' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_AsCharBuffer'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/abstract.c' line='311' column='1'/>
+ <parameter type-id='type-id-241' name='buffer' filepath='../gpshead/Objects/abstract.c' line='312' column='1'/>
+ <parameter type-id='type-id-172' name='buffer_len' filepath='../gpshead/Objects/abstract.c' line='313' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_CheckReadBuffer' mangled-name='PyObject_CheckReadBuffer' filepath='../gpshead/Objects/abstract.c' line='276' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CheckReadBuffer'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/abstract.c' line='276' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_DelItemString' mangled-name='PyObject_DelItemString' filepath='../gpshead/Objects/abstract.c' line='255' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_DelItemString'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='255' column='1'/>
+ <parameter type-id='type-id-3' name='key' filepath='../gpshead/Objects/abstract.c' line='255' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_DelItem' mangled-name='PyObject_DelItem' filepath='../gpshead/Objects/abstract.c' line='223' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_DelItem'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2150' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/abstract.c' line='2150' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_SetItem' mangled-name='PyObject_SetItem' filepath='../gpshead/Objects/abstract.c' line='191' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetItem'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='191' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/abstract.c' line='191' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/abstract.c' line='191' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_GetItem' mangled-name='PyObject_GetItem' filepath='../gpshead/Objects/abstract.c' line='143' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetItem'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='143' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/abstract.c' line='143' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_LengthHint' mangled-name='PyObject_LengthHint' filepath='../gpshead/Objects/abstract.c' line='86' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_LengthHint'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='86' column='1'/>
+ <parameter type-id='type-id-34' name='defaultvalue' filepath='../gpshead/Objects/abstract.c' line='86' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_PyObject_HasLen' mangled-name='_PyObject_HasLen' filepath='../gpshead/Objects/abstract.c' line='74' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_HasLen'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2064' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_Length' mangled-name='PyObject_Length' filepath='../gpshead/Objects/abstract.c' line='67' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Length'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2093' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyObject_Size' mangled-name='PyObject_Size' filepath='../gpshead/Objects/abstract.c' line='46' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Size'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2071' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyObject_Type' mangled-name='PyObject_Type' filepath='../gpshead/Objects/abstract.c' line='32' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Type'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/accu.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-242' visibility='default' filepath='../gpshead/Include/accu.h' line='21' column='1' id='type-id-243'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='large' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/accu.h' line='22' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='small' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/accu.h' line='23' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='_PyAccu' type-id='type-id-243' filepath='../gpshead/Include/accu.h' line='24' column='1' id='type-id-242'/>
+ <pointer-type-def type-id='type-id-242' size-in-bits='64' id='type-id-244'/>
+ <function-decl name='_PyAccu_Destroy' mangled-name='_PyAccu_Destroy' filepath='../gpshead/Objects/accu.c' line='111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAccu_Destroy'>
+ <parameter type-id='type-id-244' name='acc' filepath='../gpshead/Objects/accu.c' line='111' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyAccu_Finish' mangled-name='_PyAccu_Finish' filepath='../gpshead/Objects/accu.c' line='93' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAccu_Finish'>
+ <parameter type-id='type-id-244' name='acc' filepath='../gpshead/Objects/accu.c' line='93' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyAccu_FinishAsList' mangled-name='_PyAccu_FinishAsList' filepath='../gpshead/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-244' name='acc' filepath='../gpshead/Objects/accu.c' line='76' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyAccu_Accumulate' mangled-name='_PyAccu_Accumulate' filepath='../gpshead/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-244' name='acc' filepath='../gpshead/Objects/accu.c' line='55' column='1'/>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/accu.c' line='55' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyAccu_Init' mangled-name='_PyAccu_Init' filepath='../gpshead/Objects/accu.c' line='18' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAccu_Init'>
+ <parameter type-id='type-id-244' name='acc' filepath='../gpshead/Objects/accu.c' line='18' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/boolobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <typedef-decl name='PyTypeObject' type-id='type-id-71' filepath='../gpshead/Include/object.h' line='435' column='1' id='type-id-245'/>
+ <var-decl name='PyBool_Type' type-id='type-id-245' mangled-name='PyBool_Type' visibility='default' filepath='../gpshead/Include/boolobject.h' line='10' column='1' elf-symbol-id='PyBool_Type'/>
+ <class-decl name='_longobject' size-in-bits='256' is-struct='yes' visibility='default' filepath='../gpshead/Include/longintrepr.h' line='85' column='1' id='type-id-246'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-72' visibility='default' filepath='../gpshead/Include/longintrepr.h' line='86' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='ob_digit' type-id='type-id-247' visibility='default' filepath='../gpshead/Include/longintrepr.h' line='87' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='__uint32_t' type-id='type-id-101' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='42' column='1' id='type-id-248'/>
+ <typedef-decl name='uint32_t' type-id='type-id-248' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h' line='26' column='1' id='type-id-249'/>
+ <typedef-decl name='digit' type-id='type-id-249' filepath='../gpshead/Include/longintrepr.h' line='45' column='1' id='type-id-250'/>
+
+ <array-type-def dimensions='1' type-id='type-id-250' size-in-bits='32' id='type-id-247'>
+ <subrange length='1' type-id='type-id-38' id='type-id-118'/>
+
+ </array-type-def>
+ <var-decl name='_Py_FalseStruct' type-id='type-id-246' mangled-name='_Py_FalseStruct' visibility='default' filepath='../gpshead/Include/boolobject.h' line='18' column='1' elf-symbol-id='_Py_FalseStruct'/>
+ <var-decl name='_Py_TrueStruct' type-id='type-id-246' mangled-name='_Py_TrueStruct' visibility='default' filepath='../gpshead/Include/boolobject.h' line='18' column='1' elf-symbol-id='_Py_TrueStruct'/>
+ <function-decl name='PyBool_FromLong' mangled-name='PyBool_FromLong' filepath='../gpshead/Objects/boolobject.c' line='28' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBool_FromLong'>
+ <parameter type-id='type-id-31' name='ok' filepath='../gpshead/Objects/boolobject.c' line='28' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/bytes_methods.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+
+ <array-type-def dimensions='1' type-id='type-id-2' size-in-bits='infinite' id='type-id-251'>
+ <subrange length='infinite' id='type-id-226'/>
+
+ </array-type-def>
+ <qualified-type-def type-id='type-id-251' const='yes' id='type-id-252'/>
+ <var-decl name='_Py_isspace__doc__' type-id='type-id-252' mangled-name='_Py_isspace__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='38' column='1' elf-symbol-id='_Py_isspace__doc__'/>
+ <var-decl name='_Py_isalpha__doc__' type-id='type-id-252' mangled-name='_Py_isalpha__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='39' column='1' elf-symbol-id='_Py_isalpha__doc__'/>
+ <var-decl name='_Py_isalnum__doc__' type-id='type-id-252' mangled-name='_Py_isalnum__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='40' column='1' elf-symbol-id='_Py_isalnum__doc__'/>
+ <var-decl name='_Py_isascii__doc__' type-id='type-id-252' mangled-name='_Py_isascii__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='41' column='1' elf-symbol-id='_Py_isascii__doc__'/>
+ <var-decl name='_Py_isdigit__doc__' type-id='type-id-252' mangled-name='_Py_isdigit__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='42' column='1' elf-symbol-id='_Py_isdigit__doc__'/>
+ <var-decl name='_Py_islower__doc__' type-id='type-id-252' mangled-name='_Py_islower__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='43' column='1' elf-symbol-id='_Py_islower__doc__'/>
+ <var-decl name='_Py_isupper__doc__' type-id='type-id-252' mangled-name='_Py_isupper__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='44' column='1' elf-symbol-id='_Py_isupper__doc__'/>
+ <var-decl name='_Py_istitle__doc__' type-id='type-id-252' mangled-name='_Py_istitle__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='45' column='1' elf-symbol-id='_Py_istitle__doc__'/>
+ <var-decl name='_Py_lower__doc__' type-id='type-id-252' mangled-name='_Py_lower__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='46' column='1' elf-symbol-id='_Py_lower__doc__'/>
+ <var-decl name='_Py_upper__doc__' type-id='type-id-252' mangled-name='_Py_upper__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='47' column='1' elf-symbol-id='_Py_upper__doc__'/>
+ <var-decl name='_Py_title__doc__' type-id='type-id-252' mangled-name='_Py_title__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='48' column='1' elf-symbol-id='_Py_title__doc__'/>
+ <var-decl name='_Py_capitalize__doc__' type-id='type-id-252' mangled-name='_Py_capitalize__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='49' column='1' elf-symbol-id='_Py_capitalize__doc__'/>
+ <var-decl name='_Py_swapcase__doc__' type-id='type-id-252' mangled-name='_Py_swapcase__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='50' column='1' elf-symbol-id='_Py_swapcase__doc__'/>
+ <var-decl name='_Py_maketrans__doc__' type-id='type-id-252' mangled-name='_Py_maketrans__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='58' column='1' elf-symbol-id='_Py_maketrans__doc__'/>
+ <var-decl name='_Py_find__doc__' type-id='type-id-252' mangled-name='_Py_find__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='52' column='1' elf-symbol-id='_Py_find__doc__'/>
+ <var-decl name='_Py_index__doc__' type-id='type-id-252' mangled-name='_Py_index__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='53' column='1' elf-symbol-id='_Py_index__doc__'/>
+ <var-decl name='_Py_rfind__doc__' type-id='type-id-252' mangled-name='_Py_rfind__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='54' column='1' elf-symbol-id='_Py_rfind__doc__'/>
+ <var-decl name='_Py_rindex__doc__' type-id='type-id-252' mangled-name='_Py_rindex__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='55' column='1' elf-symbol-id='_Py_rindex__doc__'/>
+ <var-decl name='_Py_count__doc__' type-id='type-id-252' mangled-name='_Py_count__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='51' column='1' elf-symbol-id='_Py_count__doc__'/>
+ <var-decl name='_Py_startswith__doc__' type-id='type-id-252' mangled-name='_Py_startswith__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='56' column='1' elf-symbol-id='_Py_startswith__doc__'/>
+ <var-decl name='_Py_endswith__doc__' type-id='type-id-252' mangled-name='_Py_endswith__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='57' column='1' elf-symbol-id='_Py_endswith__doc__'/>
+ <var-decl name='_Py_expandtabs__doc__' type-id='type-id-252' mangled-name='_Py_expandtabs__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='59' column='1' elf-symbol-id='_Py_expandtabs__doc__'/>
+ <var-decl name='_Py_ljust__doc__' type-id='type-id-252' mangled-name='_Py_ljust__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='60' column='1' elf-symbol-id='_Py_ljust__doc__'/>
+ <var-decl name='_Py_rjust__doc__' type-id='type-id-252' mangled-name='_Py_rjust__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='61' column='1' elf-symbol-id='_Py_rjust__doc__'/>
+ <var-decl name='_Py_center__doc__' type-id='type-id-252' mangled-name='_Py_center__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='62' column='1' elf-symbol-id='_Py_center__doc__'/>
+ <var-decl name='_Py_zfill__doc__' type-id='type-id-252' mangled-name='_Py_zfill__doc__' visibility='default' filepath='../gpshead/Include/bytes_methods.h' line='63' column='1' elf-symbol-id='_Py_zfill__doc__'/>
+ <function-decl name='_Py_bytes_endswith' mangled-name='_Py_bytes_endswith' filepath='../gpshead/Objects/bytes_methods.c' line='844' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_endswith'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/bytes_methods.c' line='844' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='844' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Objects/bytes_methods.c' line='844' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_startswith' mangled-name='_Py_bytes_startswith' filepath='../gpshead/Objects/bytes_methods.c' line='830' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_startswith'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/bytes_methods.c' line='844' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='844' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Objects/bytes_methods.c' line='844' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_contains' mangled-name='_Py_bytes_contains' filepath='../gpshead/Objects/bytes_methods.c' line='710' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_contains'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/bytes_methods.c' line='710' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='710' column='1'/>
+ <parameter type-id='type-id-52' name='arg' filepath='../gpshead/Objects/bytes_methods.c' line='710' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_count' mangled-name='_Py_bytes_count' filepath='../gpshead/Objects/bytes_methods.c' line='670' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_count'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/bytes_methods.c' line='670' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='670' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Objects/bytes_methods.c' line='670' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_rindex' mangled-name='_Py_bytes_rindex' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_rindex'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_rfind' mangled-name='_Py_bytes_rfind' filepath='../gpshead/Objects/bytes_methods.c' line='631' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_rfind'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_index' mangled-name='_Py_bytes_index' filepath='../gpshead/Objects/bytes_methods.c' line='608' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_index'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_find' mangled-name='_Py_bytes_find' filepath='../gpshead/Objects/bytes_methods.c' line='590' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_find'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Objects/bytes_methods.c' line='649' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_maketrans' mangled-name='_Py_bytes_maketrans' filepath='../gpshead/Objects/bytes_methods.c' line='420' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_maketrans'>
+ <parameter type-id='type-id-174' name='frm' filepath='../gpshead/Objects/bytes_methods.c' line='420' column='1'/>
+ <parameter type-id='type-id-174' name='to' filepath='../gpshead/Objects/bytes_methods.c' line='420' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_swapcase' mangled-name='_Py_bytes_swapcase' filepath='../gpshead/Objects/bytes_methods.c' line='392' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_swapcase'>
+ <parameter type-id='type-id-12' name='result' filepath='../gpshead/Objects/bytes_methods.c' line='392' column='1'/>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/bytes_methods.c' line='392' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='392' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_capitalize' mangled-name='_Py_bytes_capitalize' filepath='../gpshead/Objects/bytes_methods.c' line='362' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_capitalize'>
+ <parameter type-id='type-id-12' name='result' filepath='../gpshead/Objects/bytes_methods.c' line='362' column='1'/>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/bytes_methods.c' line='362' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='362' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_title' mangled-name='_Py_bytes_title' filepath='../gpshead/Objects/bytes_methods.c' line='333' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_title'>
+ <parameter type-id='type-id-12' name='result' filepath='../gpshead/Objects/bytes_methods.c' line='333' column='1'/>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/bytes_methods.c' line='333' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='333' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_upper' mangled-name='_Py_bytes_upper' filepath='../gpshead/Objects/bytes_methods.c' line='316' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_upper'>
+ <parameter type-id='type-id-12' name='result' filepath='../gpshead/Objects/bytes_methods.c' line='316' column='1'/>
+ <parameter type-id='type-id-3' name='cptr' filepath='../gpshead/Objects/bytes_methods.c' line='316' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='316' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_lower' mangled-name='_Py_bytes_lower' filepath='../gpshead/Objects/bytes_methods.c' line='300' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_lower'>
+ <parameter type-id='type-id-12' name='result' filepath='../gpshead/Objects/bytes_methods.c' line='316' column='1'/>
+ <parameter type-id='type-id-3' name='cptr' filepath='../gpshead/Objects/bytes_methods.c' line='316' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='316' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_istitle' mangled-name='_Py_bytes_istitle' filepath='../gpshead/Objects/bytes_methods.c' line='254' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_istitle'>
+ <parameter type-id='type-id-3' name='cptr' filepath='../gpshead/Objects/bytes_methods.c' line='254' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='254' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_isupper' mangled-name='_Py_bytes_isupper' filepath='../gpshead/Objects/bytes_methods.c' line='218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_isupper'>
+ <parameter type-id='type-id-3' name='cptr' filepath='../gpshead/Objects/bytes_methods.c' line='218' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='218' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_islower' mangled-name='_Py_bytes_islower' filepath='../gpshead/Objects/bytes_methods.c' line='184' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_islower'>
+ <parameter type-id='type-id-3' name='cptr' filepath='../gpshead/Objects/bytes_methods.c' line='218' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='218' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_isdigit' mangled-name='_Py_bytes_isdigit' filepath='../gpshead/Objects/bytes_methods.c' line='154' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_isdigit'>
+ <parameter type-id='type-id-3' name='cptr' filepath='../gpshead/Objects/bytes_methods.c' line='154' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='154' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_isascii' mangled-name='_Py_bytes_isascii' filepath='../gpshead/Objects/bytes_methods.c' line='113' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_isascii'>
+ <parameter type-id='type-id-3' name='cptr' filepath='../gpshead/Objects/bytes_methods.c' line='113' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='113' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_isalnum' mangled-name='_Py_bytes_isalnum' filepath='../gpshead/Objects/bytes_methods.c' line='72' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_isalnum'>
+ <parameter type-id='type-id-3' name='cptr' filepath='../gpshead/Objects/bytes_methods.c' line='154' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='154' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_isalpha' mangled-name='_Py_bytes_isalpha' filepath='../gpshead/Objects/bytes_methods.c' line='42' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_isalpha'>
+ <parameter type-id='type-id-3' name='cptr' filepath='../gpshead/Objects/bytes_methods.c' line='154' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='154' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_bytes_isspace' mangled-name='_Py_bytes_isspace' filepath='../gpshead/Objects/bytes_methods.c' line='12' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_bytes_isspace'>
+ <parameter type-id='type-id-3' name='cptr' filepath='../gpshead/Objects/bytes_methods.c' line='154' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='154' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/bytearrayobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+
+ <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='infinite' id='type-id-253'>
+ <subrange length='infinite' id='type-id-226'/>
+
+ </array-type-def>
+ <var-decl name='_PyByteArray_empty_string' type-id='type-id-253' mangled-name='_PyByteArray_empty_string' visibility='default' filepath='../gpshead/Include/bytearrayobject.h' line='56' column='1' elf-symbol-id='_PyByteArray_empty_string'/>
+ <var-decl name='PyByteArray_Type' type-id='type-id-245' mangled-name='PyByteArray_Type' visibility='default' filepath='../gpshead/Include/bytearrayobject.h' line='34' column='1' elf-symbol-id='PyByteArray_Type'/>
+ <var-decl name='PyByteArrayIter_Type' type-id='type-id-245' mangled-name='PyByteArrayIter_Type' visibility='default' filepath='../gpshead/Include/bytearrayobject.h' line='35' column='1' elf-symbol-id='PyByteArrayIter_Type'/>
+ <function-decl name='PyByteArray_Concat' mangled-name='PyByteArray_Concat' filepath='../gpshead/Objects/bytearrayobject.c' line='268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_Concat'>
+ <parameter type-id='type-id-52' name='a' filepath='../gpshead/Objects/bytearrayobject.c' line='268' column='1'/>
+ <parameter type-id='type-id-52' name='b' filepath='../gpshead/Objects/bytearrayobject.c' line='268' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyByteArray_Resize' mangled-name='PyByteArray_Resize' filepath='../gpshead/Objects/bytearrayobject.c' line='189' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_Resize'>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/bytearrayobject.c' line='189' column='1'/>
+ <parameter type-id='type-id-34' name='requested_size' filepath='../gpshead/Objects/bytearrayobject.c' line='189' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyByteArray_AsString' mangled-name='PyByteArray_AsString' filepath='../gpshead/Objects/bytearrayobject.c' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_AsString'>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/bytearrayobject.c' line='180' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <function-decl name='PyByteArray_Size' mangled-name='PyByteArray_Size' filepath='../gpshead/Objects/bytearrayobject.c' line='171' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_Size'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2093' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyByteArray_FromStringAndSize' mangled-name='PyByteArray_FromStringAndSize' filepath='../gpshead/Objects/bytearrayobject.c' line='127' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_FromStringAndSize'>
+ <parameter type-id='type-id-3' name='bytes' filepath='../gpshead/Objects/bytearrayobject.c' line='127' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/bytearrayobject.c' line='127' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyByteArray_FromObject' mangled-name='PyByteArray_FromObject' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_FromObject'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyByteArray_Init' mangled-name='PyByteArray_Init' filepath='../gpshead/Objects/bytearrayobject.c' line='25' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_Init'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyByteArray_Fini' mangled-name='PyByteArray_Fini' filepath='../gpshead/Objects/bytearrayobject.c' line='20' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/bytesobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyBytes_Type' type-id='type-id-245' mangled-name='PyBytes_Type' visibility='default' filepath='../gpshead/Include/bytesobject.h' line='44' column='1' elf-symbol-id='PyBytes_Type'/>
+ <var-decl name='PyBytesIter_Type' type-id='type-id-245' mangled-name='PyBytesIter_Type' visibility='default' filepath='../gpshead/Include/bytesobject.h' line='45' column='1' elf-symbol-id='PyBytesIter_Type'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='4416' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-254' visibility='default' filepath='../gpshead/Include/bytesobject.h' line='144' column='1' id='type-id-255'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='buffer' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/bytesobject.h' line='146' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='allocated' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/bytesobject.h' line='149' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='min_size' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/bytesobject.h' line='153' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='use_bytearray' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/bytesobject.h' line='156' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='224'>
+ <var-decl name='overallocate' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/bytesobject.h' line='160' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='use_small_buffer' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/bytesobject.h' line='163' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288'>
+ <var-decl name='small_buffer' type-id='type-id-256' visibility='default' filepath='../gpshead/Include/bytesobject.h' line='164' column='1'/>
+ </data-member>
+ </class-decl>
+
+ <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='4096' id='type-id-256'>
+ <subrange length='512' type-id='type-id-38' id='type-id-257'/>
+
+ </array-type-def>
+ <typedef-decl name='_PyBytesWriter' type-id='type-id-255' filepath='../gpshead/Include/bytesobject.h' line='165' column='1' id='type-id-254'/>
+ <pointer-type-def type-id='type-id-254' size-in-bits='64' id='type-id-258'/>
+ <function-decl name='_PyBytesWriter_WriteBytes' mangled-name='_PyBytesWriter_WriteBytes' filepath='../gpshead/Objects/bytesobject.c' line='3465' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_WriteBytes'>
+ <parameter type-id='type-id-258' name='writer' filepath='../gpshead/Objects/bytesobject.c' line='3465' column='1'/>
+ <parameter type-id='type-id-56' name='ptr' filepath='../gpshead/Objects/bytesobject.c' line='3465' column='1'/>
+ <parameter type-id='type-id-56' name='bytes' filepath='../gpshead/Objects/bytesobject.c' line='3466' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/bytesobject.c' line='3466' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='_PyBytesWriter_Finish' mangled-name='_PyBytesWriter_Finish' filepath='../gpshead/Objects/bytesobject.c' line='3421' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Finish'>
+ <parameter type-id='type-id-258' name='writer' filepath='../gpshead/Objects/bytesobject.c' line='3421' column='1'/>
+ <parameter type-id='type-id-56' name='str' filepath='../gpshead/Objects/bytesobject.c' line='3421' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyBytesWriter_Alloc' mangled-name='_PyBytesWriter_Alloc' filepath='../gpshead/Objects/bytesobject.c' line='3391' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Alloc'>
+ <parameter type-id='type-id-258' name='writer' filepath='../gpshead/Objects/bytesobject.c' line='3391' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/bytesobject.c' line='3391' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='_PyBytesWriter_Prepare' mangled-name='_PyBytesWriter_Prepare' filepath='../gpshead/Objects/bytesobject.c' line='3361' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Prepare'>
+ <parameter type-id='type-id-258' name='writer' filepath='../gpshead/Objects/bytesobject.c' line='3361' column='1'/>
+ <parameter type-id='type-id-56' name='str' filepath='../gpshead/Objects/bytesobject.c' line='3361' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/bytesobject.c' line='3361' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='_PyBytesWriter_Resize' mangled-name='_PyBytesWriter_Resize' filepath='../gpshead/Objects/bytesobject.c' line='3292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Resize'>
+ <parameter type-id='type-id-258' name='writer' filepath='../gpshead/Objects/bytesobject.c' line='3292' column='1'/>
+ <parameter type-id='type-id-56' name='str' filepath='../gpshead/Objects/bytesobject.c' line='3292' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/bytesobject.c' line='3292' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='_PyBytesWriter_Dealloc' mangled-name='_PyBytesWriter_Dealloc' filepath='../gpshead/Objects/bytesobject.c' line='3223' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Dealloc'>
+ <parameter type-id='type-id-258' name='writer' filepath='../gpshead/Objects/bytesobject.c' line='3223' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyBytesWriter_Init' mangled-name='_PyBytesWriter_Init' filepath='../gpshead/Objects/bytesobject.c' line='3213' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Init'>
+ <parameter type-id='type-id-258' name='writer' filepath='../gpshead/Objects/bytesobject.c' line='3213' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyBytes_Fini' mangled-name='PyBytes_Fini' filepath='../gpshead/Objects/bytesobject.c' line='3040' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-52' size-in-bits='64' id='type-id-259'/>
+ <function-decl name='_PyBytes_Resize' mangled-name='_PyBytes_Resize' filepath='../gpshead/Objects/bytesobject.c' line='2988' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytes_Resize'>
+ <parameter type-id='type-id-259' name='pv' filepath='../gpshead/Objects/bytesobject.c' line='2988' column='1'/>
+ <parameter type-id='type-id-34' name='newsize' filepath='../gpshead/Objects/bytesobject.c' line='2988' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyBytes_ConcatAndDel' mangled-name='PyBytes_ConcatAndDel' filepath='../gpshead/Objects/bytesobject.c' line='2966' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_ConcatAndDel'>
+ <parameter type-id='type-id-259' name='pv' filepath='../gpshead/Objects/bytesobject.c' line='2966' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/bytesobject.c' line='2966' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyBytes_Concat' mangled-name='PyBytes_Concat' filepath='../gpshead/Objects/bytesobject.c' line='2916' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_Concat'>
+ <parameter type-id='type-id-259' name='pv' filepath='../gpshead/Objects/bytesobject.c' line='2916' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/bytesobject.c' line='2916' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyBytes_FromObject' mangled-name='PyBytes_FromObject' filepath='../gpshead/Objects/bytesobject.c' line='2792' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromObject'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2519' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyBytes_FromHex' mangled-name='_PyBytes_FromHex' filepath='../gpshead/Objects/bytesobject.c' line='2349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytes_FromHex'>
+ <parameter type-id='type-id-52' name='string' filepath='../gpshead/Objects/bytesobject.c' line='2349' column='1'/>
+ <parameter type-id='type-id-7' name='use_bytearray' filepath='../gpshead/Objects/bytesobject.c' line='2349' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyBytes_Join' mangled-name='_PyBytes_Join' filepath='../gpshead/Objects/bytesobject.c' line='1905' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytes_Join'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyBytes_Repr' mangled-name='PyBytes_Repr' filepath='../gpshead/Objects/bytesobject.c' line='1342' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_Repr'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/bytesobject.c' line='1342' column='1'/>
+ <parameter type-id='type-id-7' name='smartquotes' filepath='../gpshead/Objects/bytesobject.c' line='1342' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyBytes_AsStringAndSize' mangled-name='PyBytes_AsStringAndSize' filepath='../gpshead/Objects/bytesobject.c' line='1300' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_AsStringAndSize'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/bytesobject.c' line='1300' column='1'/>
+ <parameter type-id='type-id-233' name='s' filepath='../gpshead/Objects/bytesobject.c' line='1301' column='1'/>
+ <parameter type-id='type-id-172' name='len' filepath='../gpshead/Objects/bytesobject.c' line='1302' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyBytes_AsString' mangled-name='PyBytes_AsString' filepath='../gpshead/Objects/bytesobject.c' line='1289' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_AsString'>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/bytearrayobject.c' line='180' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <function-decl name='PyBytes_Size' mangled-name='PyBytes_Size' filepath='../gpshead/Objects/bytesobject.c' line='1278' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_Size'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2093' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyBytes_DecodeEscape' mangled-name='PyBytes_DecodeEscape' filepath='../gpshead/Objects/bytesobject.c' line='1251' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_DecodeEscape'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/bytesobject.c' line='1251' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytesobject.c' line='1252' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/bytesobject.c' line='1253' column='1'/>
+ <parameter type-id='type-id-34' name='unicode' filepath='../gpshead/Objects/bytesobject.c' line='1254' column='1'/>
+ <parameter type-id='type-id-3' name='recode_encoding' filepath='../gpshead/Objects/bytesobject.c' line='1255' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyBytes_DecodeEscape' mangled-name='_PyBytes_DecodeEscape' filepath='../gpshead/Objects/bytesobject.c' line='1128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytes_DecodeEscape'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/bytesobject.c' line='1128' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytesobject.c' line='1129' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/bytesobject.c' line='1130' column='1'/>
+ <parameter type-id='type-id-34' name='unicode' filepath='../gpshead/Objects/bytesobject.c' line='1131' column='1'/>
+ <parameter type-id='type-id-3' name='recode_encoding' filepath='../gpshead/Objects/bytesobject.c' line='1132' column='1'/>
+ <parameter type-id='type-id-241' name='first_invalid_escape' filepath='../gpshead/Objects/bytesobject.c' line='1133' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyBytes_FormatEx' mangled-name='_PyBytes_FormatEx' filepath='../gpshead/Objects/bytesobject.c' line='597' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytes_FormatEx'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/bytesobject.c' line='597' column='1'/>
+ <parameter type-id='type-id-34' name='format_len' filepath='../gpshead/Objects/bytesobject.c' line='597' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Objects/bytesobject.c' line='598' column='1'/>
+ <parameter type-id='type-id-7' name='use_bytearray' filepath='../gpshead/Objects/bytesobject.c' line='598' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyBytes_FromFormat' mangled-name='PyBytes_FromFormat' filepath='../gpshead/Objects/bytesobject.c' line='370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromFormat'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/bytesobject.c' line='370' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <class-decl name='__va_list_tag' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-260'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='gp_offset' type-id='type-id-101' visibility='default'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='32'>
+ <var-decl name='fp_offset' type-id='type-id-101' visibility='default'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='overflow_arg_area' type-id='type-id-56' visibility='default'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='reg_save_area' type-id='type-id-56' visibility='default'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-260' size-in-bits='64' id='type-id-261'/>
+ <function-decl name='PyBytes_FromFormatV' mangled-name='PyBytes_FromFormatV' filepath='../gpshead/Objects/bytesobject.c' line='181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromFormatV'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/bytesobject.c' line='181' column='1'/>
+ <parameter type-id='type-id-261' name='vargs' filepath='../gpshead/Objects/bytesobject.c' line='181' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyBytes_FromString' mangled-name='PyBytes_FromString' filepath='../gpshead/Objects/bytesobject.c' line='135' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromString'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/bytesobject.c' line='135' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyBytes_FromStringAndSize' mangled-name='PyBytes_FromStringAndSize' filepath='../gpshead/Objects/bytesobject.c' line='101' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromStringAndSize'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/bytesobject.c' line='101' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/bytesobject.c' line='101' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/call.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <qualified-type-def type-id='type-id-52' const='yes' id='type-id-262'/>
+ <pointer-type-def type-id='type-id-262' size-in-bits='64' id='type-id-263'/>
+ <pointer-type-def type-id='type-id-263' size-in-bits='64' id='type-id-264'/>
+ <function-decl name='_PyStack_UnpackDict' mangled-name='_PyStack_UnpackDict' filepath='../gpshead/Objects/call.c' line='1349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyStack_UnpackDict'>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Objects/call.c' line='1349' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/call.c' line='1349' column='1'/>
+ <parameter type-id='type-id-52' name='kwargs' filepath='../gpshead/Objects/call.c' line='1349' column='1'/>
+ <parameter type-id='type-id-264' name='p_stack' filepath='../gpshead/Objects/call.c' line='1350' column='1'/>
+ <parameter type-id='type-id-259' name='p_kwnames' filepath='../gpshead/Objects/call.c' line='1350' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyStack_AsDict' mangled-name='_PyStack_AsDict' filepath='../gpshead/Objects/call.c' line='1322' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyStack_AsDict'>
+ <parameter type-id='type-id-263' name='values' filepath='../gpshead/Objects/call.c' line='1322' column='1'/>
+ <parameter type-id='type-id-52' name='kwnames' filepath='../gpshead/Objects/call.c' line='1322' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyStack_AsTupleSlice' mangled-name='_PyStack_AsTupleSlice' filepath='../gpshead/Objects/call.c' line='1297' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyStack_AsTupleSlice'>
+ <parameter type-id='type-id-263' name='stack' filepath='../gpshead/Objects/call.c' line='1297' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/call.c' line='1297' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/call.c' line='1298' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/call.c' line='1298' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyStack_AsTuple' mangled-name='_PyStack_AsTuple' filepath='../gpshead/Objects/call.c' line='1277' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyStack_AsTuple'>
+ <parameter type-id='type-id-263' name='stack' filepath='../gpshead/Objects/call.c' line='1277' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/call.c' line='1277' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_CallFunctionObjArgs' mangled-name='PyObject_CallFunctionObjArgs' filepath='../gpshead/Objects/call.c' line='1259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallFunctionObjArgs'>
+ <parameter type-id='type-id-52' name='callable' filepath='../gpshead/Objects/call.c' line='1259' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <class-decl name='_Py_Identifier' size-in-bits='192' is-struct='yes' visibility='default' filepath='../gpshead/Include/object.h' line='142' column='1' id='type-id-265'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='next' type-id='type-id-266' visibility='default' filepath='../gpshead/Include/object.h' line='143' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='string' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/object.h' line='144' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='object' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/object.h' line='145' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-265' size-in-bits='64' id='type-id-266'/>
+ <function-decl name='_PyObject_CallMethodIdObjArgs' mangled-name='_PyObject_CallMethodIdObjArgs' filepath='../gpshead/Objects/call.c' line='1234' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CallMethodIdObjArgs'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/call.c' line='1234' column='1'/>
+ <parameter type-id='type-id-266' name='name' filepath='../gpshead/Objects/call.c' line='1235' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_CallMethodObjArgs' mangled-name='PyObject_CallMethodObjArgs' filepath='../gpshead/Objects/call.c' line='1210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallMethodObjArgs'>
+ <parameter type-id='type-id-52' name='callable' filepath='../gpshead/Objects/call.c' line='1210' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/call.c' line='1210' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <typedef-decl name='_Py_Identifier' type-id='type-id-265' filepath='../gpshead/Include/object.h' line='146' column='1' id='type-id-267'/>
+ <function-decl name='_PyObject_CallMethodId_SizeT' mangled-name='_PyObject_CallMethodId_SizeT' filepath='../gpshead/Objects/call.c' line='1131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CallMethodId_SizeT'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/call.c' line='1131' column='1'/>
+ <parameter type-id='type-id-266' name='name' filepath='../gpshead/Objects/call.c' line='1131' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/call.c' line='1132' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_CallMethod_SizeT' mangled-name='_PyObject_CallMethod_SizeT' filepath='../gpshead/Objects/call.c' line='1107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CallMethod_SizeT'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/call.c' line='1107' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/call.c' line='1107' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/call.c' line='1108' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_CallMethodId' mangled-name='_PyObject_CallMethodId' filepath='../gpshead/Objects/call.c' line='1083' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CallMethodId'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/call.c' line='1131' column='1'/>
+ <parameter type-id='type-id-266' name='name' filepath='../gpshead/Objects/call.c' line='1131' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/call.c' line='1132' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyEval_CallMethod' mangled-name='PyEval_CallMethod' filepath='../gpshead/Objects/call.c' line='1060' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_CallMethod'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/call.c' line='1107' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/call.c' line='1107' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/call.c' line='1108' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_CallMethod' mangled-name='PyObject_CallMethod' filepath='../gpshead/Objects/call.c' line='1034' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallMethod'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/call.c' line='1107' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/call.c' line='1107' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/call.c' line='1108' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_CallFunction_SizeT' mangled-name='_PyObject_CallFunction_SizeT' filepath='../gpshead/Objects/call.c' line='1004' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CallFunction_SizeT'>
+ <parameter type-id='type-id-52' name='callable' filepath='../gpshead/Objects/call.c' line='1004' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/call.c' line='1004' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyEval_CallFunction' mangled-name='PyEval_CallFunction' filepath='../gpshead/Objects/call.c' line='990' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_CallFunction'>
+ <parameter type-id='type-id-52' name='callable' filepath='../gpshead/Objects/call.c' line='1004' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/call.c' line='1004' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_CallFunction' mangled-name='PyObject_CallFunction' filepath='../gpshead/Objects/call.c' line='973' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallFunction'>
+ <parameter type-id='type-id-52' name='callable' filepath='../gpshead/Objects/call.c' line='1004' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/call.c' line='1004' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_Call_Prepend' mangled-name='_PyObject_Call_Prepend' filepath='../gpshead/Objects/call.c' line='878' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_Call_Prepend'>
+ <parameter type-id='type-id-52' name='callable' filepath='../gpshead/Objects/call.c' line='878' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/call.c' line='879' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Objects/call.c' line='879' column='1'/>
+ <parameter type-id='type-id-52' name='kwargs' filepath='../gpshead/Objects/call.c' line='879' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_FastCall_Prepend' mangled-name='_PyObject_FastCall_Prepend' filepath='../gpshead/Objects/call.c' line='843' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_FastCall_Prepend'>
+ <parameter type-id='type-id-52' name='callable' filepath='../gpshead/Objects/call.c' line='843' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/call.c' line='843' column='1'/>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Objects/call.c' line='844' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/call.c' line='844' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_CallObject' mangled-name='PyObject_CallObject' filepath='../gpshead/Objects/call.c' line='834' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallObject'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyEval_CallObjectWithKeywords' mangled-name='PyEval_CallObjectWithKeywords' filepath='../gpshead/Objects/call.c' line='802' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_CallObjectWithKeywords'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <parameter type-id='type-id-52' name='z' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCFunction_Call' mangled-name='PyCFunction_Call' filepath='../gpshead/Objects/call.c' line='780' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_Call'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <parameter type-id='type-id-52' name='z' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyCFunction_FastCallKeywords' mangled-name='_PyCFunction_FastCallKeywords' filepath='../gpshead/Objects/call.c' line='723' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCFunction_FastCallKeywords'>
+ <parameter type-id='type-id-52' name='func' filepath='../gpshead/Objects/call.c' line='723' column='1'/>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Objects/call.c' line='724' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/call.c' line='724' column='1'/>
+ <parameter type-id='type-id-52' name='kwnames' filepath='../gpshead/Objects/call.c' line='725' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <typedef-decl name='PyMethodDef' type-id='type-id-186' filepath='../gpshead/Include/methodobject.h' line='63' column='1' id='type-id-268'/>
+ <pointer-type-def type-id='type-id-268' size-in-bits='64' id='type-id-269'/>
+ <function-decl name='_PyMethodDef_RawFastCallKeywords' mangled-name='_PyMethodDef_RawFastCallKeywords' filepath='../gpshead/Objects/call.c' line='594' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMethodDef_RawFastCallKeywords'>
+ <parameter type-id='type-id-269' name='method' filepath='../gpshead/Objects/call.c' line='594' column='1'/>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/call.c' line='594' column='1'/>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Objects/call.c' line='595' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/call.c' line='595' column='1'/>
+ <parameter type-id='type-id-52' name='kwnames' filepath='../gpshead/Objects/call.c' line='596' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyCFunction_FastCallDict' mangled-name='_PyCFunction_FastCallDict' filepath='../gpshead/Objects/call.c' line='576' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCFunction_FastCallDict'>
+ <parameter type-id='type-id-52' name='func' filepath='../gpshead/Objects/call.c' line='723' column='1'/>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Objects/call.c' line='724' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/call.c' line='724' column='1'/>
+ <parameter type-id='type-id-52' name='kwnames' filepath='../gpshead/Objects/call.c' line='725' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyMethodDef_RawFastCallDict' mangled-name='_PyMethodDef_RawFastCallDict' filepath='../gpshead/Objects/call.c' line='446' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMethodDef_RawFastCallDict'>
+ <parameter type-id='type-id-269' name='method' filepath='../gpshead/Objects/call.c' line='446' column='1'/>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/call.c' line='446' column='1'/>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Objects/call.c' line='447' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/call.c' line='447' column='1'/>
+ <parameter type-id='type-id-52' name='kwargs' filepath='../gpshead/Objects/call.c' line='448' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyFunction_FastCallKeywords' mangled-name='_PyFunction_FastCallKeywords' filepath='../gpshead/Objects/call.c' line='386' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFunction_FastCallKeywords'>
+ <parameter type-id='type-id-52' name='func' filepath='../gpshead/Objects/call.c' line='386' column='1'/>
+ <parameter type-id='type-id-263' name='stack' filepath='../gpshead/Objects/call.c' line='386' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/call.c' line='387' column='1'/>
+ <parameter type-id='type-id-52' name='kwnames' filepath='../gpshead/Objects/call.c' line='387' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyFunction_FastCallDict' mangled-name='_PyFunction_FastCallDict' filepath='../gpshead/Objects/call.c' line='299' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFunction_FastCallDict'>
+ <parameter type-id='type-id-52' name='func' filepath='../gpshead/Objects/call.c' line='299' column='1'/>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Objects/call.c' line='299' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/call.c' line='299' column='1'/>
+ <parameter type-id='type-id-52' name='kwargs' filepath='../gpshead/Objects/call.c' line='300' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_Call' mangled-name='PyObject_Call' filepath='../gpshead/Objects/call.c' line='213' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Call'>
+ <parameter type-id='type-id-52' name='callable' filepath='../gpshead/Objects/call.c' line='213' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Objects/call.c' line='213' column='1'/>
+ <parameter type-id='type-id-52' name='kwargs' filepath='../gpshead/Objects/call.c' line='213' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_FastCallKeywords' mangled-name='_PyObject_FastCallKeywords' filepath='../gpshead/Objects/call.c' line='137' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_FastCallKeywords'>
+ <parameter type-id='type-id-52' name='callable' filepath='../gpshead/Objects/call.c' line='137' column='1'/>
+ <parameter type-id='type-id-263' name='stack' filepath='../gpshead/Objects/call.c' line='137' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/call.c' line='137' column='1'/>
+ <parameter type-id='type-id-52' name='kwnames' filepath='../gpshead/Objects/call.c' line='138' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_FastCallDict' mangled-name='_PyObject_FastCallDict' filepath='../gpshead/Objects/call.c' line='84' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_FastCallDict'>
+ <parameter type-id='type-id-52' name='callable' filepath='../gpshead/Objects/call.c' line='137' column='1'/>
+ <parameter type-id='type-id-263' name='stack' filepath='../gpshead/Objects/call.c' line='137' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/call.c' line='137' column='1'/>
+ <parameter type-id='type-id-52' name='kwnames' filepath='../gpshead/Objects/call.c' line='138' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_CheckFunctionResult' mangled-name='_Py_CheckFunctionResult' filepath='../gpshead/Objects/call.c' line='33' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_CheckFunctionResult'>
+ <parameter type-id='type-id-52' name='callable' filepath='../gpshead/Objects/call.c' line='33' column='1'/>
+ <parameter type-id='type-id-52' name='result' filepath='../gpshead/Objects/call.c' line='33' column='1'/>
+ <parameter type-id='type-id-3' name='where' filepath='../gpshead/Objects/call.c' line='33' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_HasFastCall' mangled-name='_PyObject_HasFastCall' filepath='../gpshead/Objects/call.c' line='7' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_HasFastCall'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2064' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/cellobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyCell_Type' type-id='type-id-245' mangled-name='PyCell_Type' visibility='default' filepath='../gpshead/Include/cellobject.h' line='14' column='1' elf-symbol-id='PyCell_Type'/>
+ <function-decl name='PyCell_Set' mangled-name='PyCell_Set' filepath='../gpshead/Objects/cellobject.c' line='34' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCell_Set'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/cellobject.c' line='34' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/cellobject.c' line='34' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyCell_Get' mangled-name='PyCell_Get' filepath='../gpshead/Objects/cellobject.c' line='23' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCell_Get'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/cellobject.c' line='23' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCell_New' mangled-name='PyCell_New' filepath='../gpshead/Objects/cellobject.c' line='8' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCell_New'>
+ <parameter type-id='type-id-52' name='item' filepath='../gpshead/Objects/abstract.c' line='1255' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/classobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyMethod_Type' type-id='type-id-245' mangled-name='PyMethod_Type' visibility='default' filepath='../gpshead/Include/classobject.h' line='19' column='1' elf-symbol-id='PyMethod_Type'/>
+ <var-decl name='PyInstanceMethod_Type' type-id='type-id-245' mangled-name='PyInstanceMethod_Type' visibility='default' filepath='../gpshead/Include/classobject.h' line='42' column='1' elf-symbol-id='PyInstanceMethod_Type'/>
+ <function-decl name='PyInstanceMethod_Function' mangled-name='PyInstanceMethod_Function' filepath='../gpshead/Objects/classobject.c' line='416' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInstanceMethod_Function'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyInstanceMethod_New' mangled-name='PyInstanceMethod_New' filepath='../gpshead/Objects/classobject.c' line='404' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInstanceMethod_New'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1434' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyMethod_DebugMallocStats' mangled-name='_PyMethod_DebugMallocStats' filepath='../gpshead/Objects/classobject.c' line='392' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMethod_DebugMallocStats'>
+ <parameter type-id='type-id-124' name='out' filepath='../gpshead/Objects/classobject.c' line='392' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyMethod_Fini' mangled-name='PyMethod_Fini' filepath='../gpshead/Objects/classobject.c' line='385' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyMethod_ClearFreeList' mangled-name='PyMethod_ClearFreeList' filepath='../gpshead/Objects/classobject.c' line='370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_ClearFreeList'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyMethod_New' mangled-name='PyMethod_New' filepath='../gpshead/Objects/classobject.c' line='48' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_New'>
+ <parameter type-id='type-id-52' name='func' filepath='../gpshead/Objects/classobject.c' line='48' column='1'/>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/classobject.c' line='48' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMethod_Self' mangled-name='PyMethod_Self' filepath='../gpshead/Objects/classobject.c' line='33' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_Self'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMethod_Function' mangled-name='PyMethod_Function' filepath='../gpshead/Objects/classobject.c' line='23' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_Function'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/codeobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyCode_Type' type-id='type-id-245' mangled-name='PyCode_Type' visibility='default' filepath='../gpshead/Include/code.h' line='98' column='1' elf-symbol-id='PyCode_Type'/>
+ <function-decl name='_PyCode_SetExtra' mangled-name='_PyCode_SetExtra' filepath='../gpshead/Objects/codeobject.c' line='865' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCode_SetExtra'>
+ <parameter type-id='type-id-52' name='code' filepath='../gpshead/Objects/codeobject.c' line='865' column='1'/>
+ <parameter type-id='type-id-34' name='index' filepath='../gpshead/Objects/codeobject.c' line='865' column='1'/>
+ <parameter type-id='type-id-56' name='extra' filepath='../gpshead/Objects/codeobject.c' line='865' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyCode_GetExtra' mangled-name='_PyCode_GetExtra' filepath='../gpshead/Objects/codeobject.c' line='844' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCode_GetExtra'>
+ <parameter type-id='type-id-52' name='code' filepath='../gpshead/Objects/codeobject.c' line='844' column='1'/>
+ <parameter type-id='type-id-34' name='index' filepath='../gpshead/Objects/codeobject.c' line='844' column='1'/>
+ <parameter type-id='type-id-240' name='extra' filepath='../gpshead/Objects/codeobject.c' line='844' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='1152' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-270' visibility='default' filepath='../gpshead/Include/code.h' line='21' column='1' id='type-id-271'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-103' visibility='default' filepath='../gpshead/Include/code.h' line='22' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='co_argcount' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/code.h' line='23' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='160'>
+ <var-decl name='co_kwonlyargcount' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/code.h' line='24' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='co_nlocals' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/code.h' line='25' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='224'>
+ <var-decl name='co_stacksize' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/code.h' line='26' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='co_flags' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/code.h' line='27' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288'>
+ <var-decl name='co_firstlineno' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/code.h' line='28' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='co_code' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/code.h' line='29' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='co_consts' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/code.h' line='30' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='co_names' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/code.h' line='31' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='co_varnames' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/code.h' line='32' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='co_freevars' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/code.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='640'>
+ <var-decl name='co_cellvars' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/code.h' line='34' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='704'>
+ <var-decl name='co_cell2arg' type-id='type-id-172' visibility='default' filepath='../gpshead/Include/code.h' line='40' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='768'>
+ <var-decl name='co_filename' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/code.h' line='41' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='832'>
+ <var-decl name='co_name' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/code.h' line='42' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='896'>
+ <var-decl name='co_lnotab' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/code.h' line='43' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='960'>
+ <var-decl name='co_zombieframe' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/code.h' line='45' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1024'>
+ <var-decl name='co_weakreflist' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/code.h' line='46' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1088'>
+ <var-decl name='co_extra' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/code.h' line='50' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyCodeObject' type-id='type-id-271' filepath='../gpshead/Include/code.h' line='51' column='1' id='type-id-270'/>
+ <pointer-type-def type-id='type-id-270' size-in-bits='64' id='type-id-272'/>
+ <class-decl name='_addr_pair' size-in-bits='64' is-struct='yes' visibility='default' filepath='../gpshead/Include/code.h' line='120' column='1' id='type-id-273'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ap_lower' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/code.h' line='121' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='32'>
+ <var-decl name='ap_upper' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/code.h' line='122' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyAddrPair' type-id='type-id-273' filepath='../gpshead/Include/code.h' line='123' column='1' id='type-id-274'/>
+ <pointer-type-def type-id='type-id-274' size-in-bits='64' id='type-id-275'/>
+ <function-decl name='_PyCode_CheckLineNumber' mangled-name='_PyCode_CheckLineNumber' filepath='../gpshead/Objects/codeobject.c' line='792' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCode_CheckLineNumber'>
+ <parameter type-id='type-id-272' name='co' filepath='../gpshead/Objects/codeobject.c' line='792' column='1'/>
+ <parameter type-id='type-id-7' name='lasti' filepath='../gpshead/Objects/codeobject.c' line='792' column='1'/>
+ <parameter type-id='type-id-275' name='bounds' filepath='../gpshead/Objects/codeobject.c' line='792' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyCode_Addr2Line' mangled-name='PyCode_Addr2Line' filepath='../gpshead/Objects/codeobject.c' line='773' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCode_Addr2Line'>
+ <parameter type-id='type-id-272' name='co' filepath='../gpshead/Objects/codeobject.c' line='773' column='1'/>
+ <parameter type-id='type-id-7' name='addrq' filepath='../gpshead/Objects/codeobject.c' line='773' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyCode_ConstantKey' mangled-name='_PyCode_ConstantKey' filepath='../gpshead/Objects/codeobject.c' line='499' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCode_ConstantKey'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/codeobject.c' line='499' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCode_NewEmpty' mangled-name='PyCode_NewEmpty' filepath='../gpshead/Objects/codeobject.c' line='225' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCode_NewEmpty'>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Objects/codeobject.c' line='225' column='1'/>
+ <parameter type-id='type-id-3' name='funcname' filepath='../gpshead/Objects/codeobject.c' line='225' column='1'/>
+ <parameter type-id='type-id-7' name='firstlineno' filepath='../gpshead/Objects/codeobject.c' line='225' column='1'/>
+ <return type-id='type-id-272'/>
+ </function-decl>
+ <function-decl name='PyCode_New' mangled-name='PyCode_New' filepath='../gpshead/Objects/codeobject.c' line='97' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCode_New'>
+ <parameter type-id='type-id-7' name='argcount' filepath='../gpshead/Objects/codeobject.c' line='97' column='1'/>
+ <parameter type-id='type-id-7' name='kwonlyargcount' filepath='../gpshead/Objects/codeobject.c' line='97' column='1'/>
+ <parameter type-id='type-id-7' name='nlocals' filepath='../gpshead/Objects/codeobject.c' line='98' column='1'/>
+ <parameter type-id='type-id-7' name='stacksize' filepath='../gpshead/Objects/codeobject.c' line='98' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Objects/codeobject.c' line='98' column='1'/>
+ <parameter type-id='type-id-52' name='code' filepath='../gpshead/Objects/codeobject.c' line='99' column='1'/>
+ <parameter type-id='type-id-52' name='consts' filepath='../gpshead/Objects/codeobject.c' line='99' column='1'/>
+ <parameter type-id='type-id-52' name='names' filepath='../gpshead/Objects/codeobject.c' line='99' column='1'/>
+ <parameter type-id='type-id-52' name='varnames' filepath='../gpshead/Objects/codeobject.c' line='100' column='1'/>
+ <parameter type-id='type-id-52' name='freevars' filepath='../gpshead/Objects/codeobject.c' line='100' column='1'/>
+ <parameter type-id='type-id-52' name='cellvars' filepath='../gpshead/Objects/codeobject.c' line='100' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Objects/codeobject.c' line='101' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/codeobject.c' line='101' column='1'/>
+ <parameter type-id='type-id-7' name='firstlineno' filepath='../gpshead/Objects/codeobject.c' line='101' column='1'/>
+ <parameter type-id='type-id-52' name='lnotab' filepath='../gpshead/Objects/codeobject.c' line='102' column='1'/>
+ <return type-id='type-id-272'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/complexobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyComplex_Type' type-id='type-id-245' mangled-name='PyComplex_Type' visibility='default' filepath='../gpshead/Include/complexobject.h' line='39' column='1' elf-symbol-id='PyComplex_Type'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-276' visibility='default' filepath='../gpshead/Include/complexobject.h' line='10' column='1' id='type-id-277'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='real' type-id='type-id-278' visibility='default' filepath='../gpshead/Include/complexobject.h' line='11' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='imag' type-id='type-id-278' visibility='default' filepath='../gpshead/Include/complexobject.h' line='12' column='1'/>
+ </data-member>
+ </class-decl>
+ <type-decl name='double' size-in-bits='64' id='type-id-278'/>
+ <typedef-decl name='Py_complex' type-id='type-id-277' filepath='../gpshead/Include/complexobject.h' line='13' column='1' id='type-id-276'/>
+ <function-decl name='PyComplex_AsCComplex' mangled-name='PyComplex_AsCComplex' filepath='../gpshead/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-52' name='op' filepath='../gpshead/Objects/complexobject.c' line='311' column='1'/>
+ <return type-id='type-id-276'/>
+ </function-decl>
+ <function-decl name='PyComplex_ImagAsDouble' mangled-name='PyComplex_ImagAsDouble' filepath='../gpshead/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-52' name='op' filepath='../gpshead/Objects/complexobject.c' line='266' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-decl name='PyComplex_RealAsDouble' mangled-name='PyComplex_RealAsDouble' filepath='../gpshead/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-52' name='op' filepath='../gpshead/Objects/complexobject.c' line='266' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-decl name='PyComplex_FromDoubles' mangled-name='PyComplex_FromDoubles' filepath='../gpshead/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-278' name='real' filepath='../gpshead/Objects/complexobject.c' line='246' column='1'/>
+ <parameter type-id='type-id-278' name='imag' filepath='../gpshead/Objects/complexobject.c' line='246' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyComplex_FromCComplex' mangled-name='PyComplex_FromCComplex' filepath='../gpshead/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-276' name='cval' filepath='../gpshead/Objects/complexobject.c' line='223' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_c_abs' mangled-name='_Py_c_abs' filepath='../gpshead/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-276' name='z' filepath='../gpshead/Objects/complexobject.c' line='180' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-decl name='_Py_c_pow' mangled-name='_Py_c_pow' filepath='../gpshead/Objects/complexobject.c' line='117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_c_pow'>
+ <parameter type-id='type-id-276' name='a' filepath='../gpshead/Objects/complexobject.c' line='117' column='1'/>
+ <parameter type-id='type-id-276' name='b' filepath='../gpshead/Objects/complexobject.c' line='117' column='1'/>
+ <return type-id='type-id-276'/>
+ </function-decl>
+ <function-decl name='_Py_c_quot' mangled-name='_Py_c_quot' filepath='../gpshead/Objects/complexobject.c' line='59' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_c_quot'>
+ <parameter type-id='type-id-276' name='a' filepath='../gpshead/Objects/complexobject.c' line='59' column='1'/>
+ <parameter type-id='type-id-276' name='b' filepath='../gpshead/Objects/complexobject.c' line='59' column='1'/>
+ <return type-id='type-id-276'/>
+ </function-decl>
+ <function-decl name='_Py_c_prod' mangled-name='_Py_c_prod' filepath='../gpshead/Objects/complexobject.c' line='50' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_c_prod'>
+ <parameter type-id='type-id-276' name='a' filepath='../gpshead/Objects/complexobject.c' line='50' column='1'/>
+ <parameter type-id='type-id-276' name='b' filepath='../gpshead/Objects/complexobject.c' line='50' column='1'/>
+ <return type-id='type-id-276'/>
+ </function-decl>
+ <function-decl name='_Py_c_neg' mangled-name='_Py_c_neg' filepath='../gpshead/Objects/complexobject.c' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_c_neg'>
+ <parameter type-id='type-id-276' name='a' filepath='../gpshead/Objects/complexobject.c' line='41' column='1'/>
+ <return type-id='type-id-276'/>
+ </function-decl>
+ <function-decl name='_Py_c_diff' mangled-name='_Py_c_diff' filepath='../gpshead/Objects/complexobject.c' line='32' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_c_diff'>
+ <parameter type-id='type-id-276' name='a' filepath='../gpshead/Objects/complexobject.c' line='50' column='1'/>
+ <parameter type-id='type-id-276' name='b' filepath='../gpshead/Objects/complexobject.c' line='50' column='1'/>
+ <return type-id='type-id-276'/>
+ </function-decl>
+ <function-decl name='_Py_c_sum' mangled-name='_Py_c_sum' filepath='../gpshead/Objects/complexobject.c' line='23' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_c_sum'>
+ <parameter type-id='type-id-276' name='a' filepath='../gpshead/Objects/complexobject.c' line='50' column='1'/>
+ <parameter type-id='type-id-276' name='b' filepath='../gpshead/Objects/complexobject.c' line='50' column='1'/>
+ <return type-id='type-id-276'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/descrobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyMethodDescr_Type' type-id='type-id-245' mangled-name='PyMethodDescr_Type' visibility='default' filepath='../gpshead/Include/descrobject.h' line='78' column='1' elf-symbol-id='PyMethodDescr_Type'/>
+ <var-decl name='PyClassMethodDescr_Type' type-id='type-id-245' mangled-name='PyClassMethodDescr_Type' visibility='default' filepath='../gpshead/Include/descrobject.h' line='75' column='1' elf-symbol-id='PyClassMethodDescr_Type'/>
+ <var-decl name='PyMemberDescr_Type' type-id='type-id-245' mangled-name='PyMemberDescr_Type' visibility='default' filepath='../gpshead/Include/descrobject.h' line='77' column='1' elf-symbol-id='PyMemberDescr_Type'/>
+ <var-decl name='PyGetSetDescr_Type' type-id='type-id-245' mangled-name='PyGetSetDescr_Type' visibility='default' filepath='../gpshead/Include/descrobject.h' line='76' column='1' elf-symbol-id='PyGetSetDescr_Type'/>
+ <var-decl name='PyWrapperDescr_Type' type-id='type-id-245' mangled-name='PyWrapperDescr_Type' visibility='default' filepath='../gpshead/Include/descrobject.h' line='79' column='1' elf-symbol-id='PyWrapperDescr_Type'/>
+ <var-decl name='_PyMethodWrapper_Type' type-id='type-id-245' mangled-name='_PyMethodWrapper_Type' visibility='default' filepath='../gpshead/Include/descrobject.h' line='82' column='1' elf-symbol-id='_PyMethodWrapper_Type'/>
+ <var-decl name='PyDictProxy_Type' type-id='type-id-245' mangled-name='PyDictProxy_Type' visibility='default' filepath='../gpshead/Include/descrobject.h' line='80' column='1' elf-symbol-id='PyDictProxy_Type'/>
+ <var-decl name='PyProperty_Type' type-id='type-id-245' mangled-name='PyProperty_Type' visibility='default' filepath='../gpshead/Include/descrobject.h' line='105' column='1' elf-symbol-id='PyProperty_Type'/>
+ <function-decl name='PyWrapper_New' mangled-name='PyWrapper_New' filepath='../gpshead/Objects/descrobject.c' line='1197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWrapper_New'>
+ <parameter type-id='type-id-52' name='d' filepath='../gpshead/Objects/descrobject.c' line='1197' column='1'/>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/descrobject.c' line='1197' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyDictProxy_New' mangled-name='PyDictProxy_New' filepath='../gpshead/Objects/descrobject.c' line='990' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDictProxy_New'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1434' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-245' size-in-bits='64' id='type-id-279'/>
+ <class-decl name='wrapperbase' size-in-bits='448' is-struct='yes' visibility='default' filepath='../gpshead/Include/descrobject.h' line='26' column='1' id='type-id-280'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='name' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/descrobject.h' line='27' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='offset' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/descrobject.h' line='28' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='function' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/descrobject.h' line='29' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='wrapper' type-id='type-id-281' visibility='default' filepath='../gpshead/Include/descrobject.h' line='30' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='doc' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/descrobject.h' line='31' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='flags' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/descrobject.h' line='32' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='name_strobj' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/descrobject.h' line='33' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-282' size-in-bits='64' id='type-id-283'/>
+ <typedef-decl name='wrapperfunc' type-id='type-id-283' filepath='../gpshead/Include/descrobject.h' line='20' column='1' id='type-id-281'/>
+ <pointer-type-def type-id='type-id-280' size-in-bits='64' id='type-id-284'/>
+ <function-decl name='PyDescr_NewWrapper' mangled-name='PyDescr_NewWrapper' filepath='../gpshead/Objects/descrobject.c' line='787' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewWrapper'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/descrobject.c' line='787' column='1'/>
+ <parameter type-id='type-id-284' name='base' filepath='../gpshead/Objects/descrobject.c' line='787' column='1'/>
+ <parameter type-id='type-id-56' name='wrapped' filepath='../gpshead/Objects/descrobject.c' line='787' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <typedef-decl name='PyGetSetDef' type-id='type-id-189' filepath='../gpshead/Include/descrobject.h' line='17' column='1' id='type-id-285'/>
+ <pointer-type-def type-id='type-id-285' size-in-bits='64' id='type-id-286'/>
+ <function-decl name='PyDescr_NewGetSet' mangled-name='PyDescr_NewGetSet' filepath='../gpshead/Objects/descrobject.c' line='775' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewGetSet'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/descrobject.c' line='775' column='1'/>
+ <parameter type-id='type-id-286' name='getset' filepath='../gpshead/Objects/descrobject.c' line='775' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <typedef-decl name='PyMemberDef' type-id='type-id-188' filepath='../gpshead/Include/structmember.h' line='24' column='1' id='type-id-287'/>
+ <pointer-type-def type-id='type-id-287' size-in-bits='64' id='type-id-288'/>
+ <function-decl name='PyDescr_NewMember' mangled-name='PyDescr_NewMember' filepath='../gpshead/Objects/descrobject.c' line='763' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewMember'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/descrobject.c' line='763' column='1'/>
+ <parameter type-id='type-id-288' name='member' filepath='../gpshead/Objects/descrobject.c' line='763' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyDescr_NewClassMethod' mangled-name='PyDescr_NewClassMethod' filepath='../gpshead/Objects/descrobject.c' line='751' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewClassMethod'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/descrobject.c' line='751' column='1'/>
+ <parameter type-id='type-id-269' name='method' filepath='../gpshead/Objects/descrobject.c' line='751' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyDescr_NewMethod' mangled-name='PyDescr_NewMethod' filepath='../gpshead/Objects/descrobject.c' line='739' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewMethod'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/descrobject.c' line='751' column='1'/>
+ <parameter type-id='type-id-269' name='method' filepath='../gpshead/Objects/descrobject.c' line='751' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyMethodDescr_FastCallKeywords' mangled-name='_PyMethodDescr_FastCallKeywords' filepath='../gpshead/Objects/descrobject.c' line='258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMethodDescr_FastCallKeywords'>
+ <parameter type-id='type-id-52' name='descrobj' filepath='../gpshead/Objects/descrobject.c' line='258' column='1'/>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Objects/descrobject.c' line='259' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Objects/descrobject.c' line='259' column='1'/>
+ <parameter type-id='type-id-52' name='kwnames' filepath='../gpshead/Objects/descrobject.c' line='260' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-282'>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-56'/>
+ <return type-id='type-id-52'/>
+ </function-type>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/enumobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyEnum_Type' type-id='type-id-245' mangled-name='PyEnum_Type' visibility='default' filepath='../gpshead/Include/enumobject.h' line='10' column='1' elf-symbol-id='PyEnum_Type'/>
+ <var-decl name='PyReversed_Type' type-id='type-id-245' mangled-name='PyReversed_Type' visibility='default' filepath='../gpshead/Include/enumobject.h' line='11' column='1' elf-symbol-id='PyReversed_Type'/>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/exceptions.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyExc_EnvironmentError' type-id='type-id-52' mangled-name='PyExc_EnvironmentError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='217' column='1' elf-symbol-id='PyExc_EnvironmentError'/>
+ <var-decl name='PyExc_IOError' type-id='type-id-52' mangled-name='PyExc_IOError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='218' column='1' elf-symbol-id='PyExc_IOError'/>
+ <var-decl name='PyExc_BaseException' type-id='type-id-52' mangled-name='PyExc_BaseException' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='151' column='1' elf-symbol-id='PyExc_BaseException'/>
+ <var-decl name='PyExc_Exception' type-id='type-id-52' mangled-name='PyExc_Exception' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='152' column='1' elf-symbol-id='PyExc_Exception'/>
+ <var-decl name='PyExc_TypeError' type-id='type-id-52' mangled-name='PyExc_TypeError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='188' column='1' elf-symbol-id='PyExc_TypeError'/>
+ <var-decl name='PyExc_StopAsyncIteration' type-id='type-id-52' mangled-name='PyExc_StopAsyncIteration' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='154' column='1' elf-symbol-id='PyExc_StopAsyncIteration'/>
+ <var-decl name='PyExc_StopIteration' type-id='type-id-52' mangled-name='PyExc_StopIteration' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='156' column='1' elf-symbol-id='PyExc_StopIteration'/>
+ <var-decl name='PyExc_GeneratorExit' type-id='type-id-52' mangled-name='PyExc_GeneratorExit' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='157' column='1' elf-symbol-id='PyExc_GeneratorExit'/>
+ <var-decl name='PyExc_SystemExit' type-id='type-id-52' mangled-name='PyExc_SystemExit' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='187' column='1' elf-symbol-id='PyExc_SystemExit'/>
+ <var-decl name='PyExc_KeyboardInterrupt' type-id='type-id-52' mangled-name='PyExc_KeyboardInterrupt' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='173' column='1' elf-symbol-id='PyExc_KeyboardInterrupt'/>
+ <var-decl name='PyExc_ImportError' type-id='type-id-52' mangled-name='PyExc_ImportError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='167' column='1' elf-symbol-id='PyExc_ImportError'/>
+ <var-decl name='PyExc_ModuleNotFoundError' type-id='type-id-52' mangled-name='PyExc_ModuleNotFoundError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='169' column='1' elf-symbol-id='PyExc_ModuleNotFoundError'/>
+ <var-decl name='PyExc_OSError' type-id='type-id-52' mangled-name='PyExc_OSError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='166' column='1' elf-symbol-id='PyExc_OSError'/>
+ <var-decl name='PyExc_BlockingIOError' type-id='type-id-52' mangled-name='PyExc_BlockingIOError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='198' column='1' elf-symbol-id='PyExc_BlockingIOError'/>
+ <var-decl name='PyExc_ConnectionError' type-id='type-id-52' mangled-name='PyExc_ConnectionError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='201' column='1' elf-symbol-id='PyExc_ConnectionError'/>
+ <var-decl name='PyExc_ChildProcessError' type-id='type-id-52' mangled-name='PyExc_ChildProcessError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='200' column='1' elf-symbol-id='PyExc_ChildProcessError'/>
+ <var-decl name='PyExc_BrokenPipeError' type-id='type-id-52' mangled-name='PyExc_BrokenPipeError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='199' column='1' elf-symbol-id='PyExc_BrokenPipeError'/>
+ <var-decl name='PyExc_ConnectionAbortedError' type-id='type-id-52' mangled-name='PyExc_ConnectionAbortedError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='202' column='1' elf-symbol-id='PyExc_ConnectionAbortedError'/>
+ <var-decl name='PyExc_ConnectionRefusedError' type-id='type-id-52' mangled-name='PyExc_ConnectionRefusedError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='203' column='1' elf-symbol-id='PyExc_ConnectionRefusedError'/>
+ <var-decl name='PyExc_ConnectionResetError' type-id='type-id-52' mangled-name='PyExc_ConnectionResetError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='204' column='1' elf-symbol-id='PyExc_ConnectionResetError'/>
+ <var-decl name='PyExc_FileExistsError' type-id='type-id-52' mangled-name='PyExc_FileExistsError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='205' column='1' elf-symbol-id='PyExc_FileExistsError'/>
+ <var-decl name='PyExc_FileNotFoundError' type-id='type-id-52' mangled-name='PyExc_FileNotFoundError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='206' column='1' elf-symbol-id='PyExc_FileNotFoundError'/>
+ <var-decl name='PyExc_IsADirectoryError' type-id='type-id-52' mangled-name='PyExc_IsADirectoryError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='208' column='1' elf-symbol-id='PyExc_IsADirectoryError'/>
+ <var-decl name='PyExc_NotADirectoryError' type-id='type-id-52' mangled-name='PyExc_NotADirectoryError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='209' column='1' elf-symbol-id='PyExc_NotADirectoryError'/>
+ <var-decl name='PyExc_InterruptedError' type-id='type-id-52' mangled-name='PyExc_InterruptedError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='207' column='1' elf-symbol-id='PyExc_InterruptedError'/>
+ <var-decl name='PyExc_PermissionError' type-id='type-id-52' mangled-name='PyExc_PermissionError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='210' column='1' elf-symbol-id='PyExc_PermissionError'/>
+ <var-decl name='PyExc_ProcessLookupError' type-id='type-id-52' mangled-name='PyExc_ProcessLookupError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='211' column='1' elf-symbol-id='PyExc_ProcessLookupError'/>
+ <var-decl name='PyExc_TimeoutError' type-id='type-id-52' mangled-name='PyExc_TimeoutError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='212' column='1' elf-symbol-id='PyExc_TimeoutError'/>
+ <var-decl name='PyExc_EOFError' type-id='type-id-52' mangled-name='PyExc_EOFError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='164' column='1' elf-symbol-id='PyExc_EOFError'/>
+ <var-decl name='PyExc_RuntimeError' type-id='type-id-52' mangled-name='PyExc_RuntimeError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='177' column='1' elf-symbol-id='PyExc_RuntimeError'/>
+ <var-decl name='PyExc_RecursionError' type-id='type-id-52' mangled-name='PyExc_RecursionError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='179' column='1' elf-symbol-id='PyExc_RecursionError'/>
+ <var-decl name='PyExc_NotImplementedError' type-id='type-id-52' mangled-name='PyExc_NotImplementedError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='181' column='1' elf-symbol-id='PyExc_NotImplementedError'/>
+ <var-decl name='PyExc_NameError' type-id='type-id-52' mangled-name='PyExc_NameError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='175' column='1' elf-symbol-id='PyExc_NameError'/>
+ <var-decl name='PyExc_UnboundLocalError' type-id='type-id-52' mangled-name='PyExc_UnboundLocalError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='189' column='1' elf-symbol-id='PyExc_UnboundLocalError'/>
+ <var-decl name='PyExc_AttributeError' type-id='type-id-52' mangled-name='PyExc_AttributeError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='162' column='1' elf-symbol-id='PyExc_AttributeError'/>
+ <var-decl name='PyExc_SyntaxError' type-id='type-id-52' mangled-name='PyExc_SyntaxError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='182' column='1' elf-symbol-id='PyExc_SyntaxError'/>
+ <var-decl name='PyExc_IndentationError' type-id='type-id-52' mangled-name='PyExc_IndentationError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='183' column='1' elf-symbol-id='PyExc_IndentationError'/>
+ <var-decl name='PyExc_TabError' type-id='type-id-52' mangled-name='PyExc_TabError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='184' column='1' elf-symbol-id='PyExc_TabError'/>
+ <var-decl name='PyExc_LookupError' type-id='type-id-52' mangled-name='PyExc_LookupError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='159' column='1' elf-symbol-id='PyExc_LookupError'/>
+ <var-decl name='PyExc_IndexError' type-id='type-id-52' mangled-name='PyExc_IndexError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='171' column='1' elf-symbol-id='PyExc_IndexError'/>
+ <var-decl name='PyExc_KeyError' type-id='type-id-52' mangled-name='PyExc_KeyError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='172' column='1' elf-symbol-id='PyExc_KeyError'/>
+ <var-decl name='PyExc_ValueError' type-id='type-id-52' mangled-name='PyExc_ValueError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='194' column='1' elf-symbol-id='PyExc_ValueError'/>
+ <var-decl name='PyExc_UnicodeError' type-id='type-id-52' mangled-name='PyExc_UnicodeError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='190' column='1' elf-symbol-id='PyExc_UnicodeError'/>
+ <var-decl name='PyExc_UnicodeEncodeError' type-id='type-id-52' mangled-name='PyExc_UnicodeEncodeError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='191' column='1' elf-symbol-id='PyExc_UnicodeEncodeError'/>
+ <var-decl name='PyExc_UnicodeDecodeError' type-id='type-id-52' mangled-name='PyExc_UnicodeDecodeError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='192' column='1' elf-symbol-id='PyExc_UnicodeDecodeError'/>
+ <var-decl name='PyExc_UnicodeTranslateError' type-id='type-id-52' mangled-name='PyExc_UnicodeTranslateError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='193' column='1' elf-symbol-id='PyExc_UnicodeTranslateError'/>
+ <var-decl name='PyExc_AssertionError' type-id='type-id-52' mangled-name='PyExc_AssertionError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='161' column='1' elf-symbol-id='PyExc_AssertionError'/>
+ <var-decl name='PyExc_ArithmeticError' type-id='type-id-52' mangled-name='PyExc_ArithmeticError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='158' column='1' elf-symbol-id='PyExc_ArithmeticError'/>
+ <var-decl name='PyExc_FloatingPointError' type-id='type-id-52' mangled-name='PyExc_FloatingPointError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='165' column='1' elf-symbol-id='PyExc_FloatingPointError'/>
+ <var-decl name='PyExc_OverflowError' type-id='type-id-52' mangled-name='PyExc_OverflowError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='176' column='1' elf-symbol-id='PyExc_OverflowError'/>
+ <var-decl name='PyExc_ZeroDivisionError' type-id='type-id-52' mangled-name='PyExc_ZeroDivisionError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='195' column='1' elf-symbol-id='PyExc_ZeroDivisionError'/>
+ <var-decl name='PyExc_SystemError' type-id='type-id-52' mangled-name='PyExc_SystemError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='186' column='1' elf-symbol-id='PyExc_SystemError'/>
+ <var-decl name='PyExc_ReferenceError' type-id='type-id-52' mangled-name='PyExc_ReferenceError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='185' column='1' elf-symbol-id='PyExc_ReferenceError'/>
+ <var-decl name='PyExc_MemoryError' type-id='type-id-52' mangled-name='PyExc_MemoryError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='174' column='1' elf-symbol-id='PyExc_MemoryError'/>
+ <var-decl name='PyExc_BufferError' type-id='type-id-52' mangled-name='PyExc_BufferError' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='163' column='1' elf-symbol-id='PyExc_BufferError'/>
+ <var-decl name='PyExc_Warning' type-id='type-id-52' mangled-name='PyExc_Warning' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='224' column='1' elf-symbol-id='PyExc_Warning'/>
+ <var-decl name='PyExc_UserWarning' type-id='type-id-52' mangled-name='PyExc_UserWarning' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='225' column='1' elf-symbol-id='PyExc_UserWarning'/>
+ <var-decl name='PyExc_DeprecationWarning' type-id='type-id-52' mangled-name='PyExc_DeprecationWarning' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='226' column='1' elf-symbol-id='PyExc_DeprecationWarning'/>
+ <var-decl name='PyExc_PendingDeprecationWarning' type-id='type-id-52' mangled-name='PyExc_PendingDeprecationWarning' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='227' column='1' elf-symbol-id='PyExc_PendingDeprecationWarning'/>
+ <var-decl name='PyExc_SyntaxWarning' type-id='type-id-52' mangled-name='PyExc_SyntaxWarning' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='228' column='1' elf-symbol-id='PyExc_SyntaxWarning'/>
+ <var-decl name='PyExc_RuntimeWarning' type-id='type-id-52' mangled-name='PyExc_RuntimeWarning' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='229' column='1' elf-symbol-id='PyExc_RuntimeWarning'/>
+ <var-decl name='PyExc_FutureWarning' type-id='type-id-52' mangled-name='PyExc_FutureWarning' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='230' column='1' elf-symbol-id='PyExc_FutureWarning'/>
+ <var-decl name='PyExc_ImportWarning' type-id='type-id-52' mangled-name='PyExc_ImportWarning' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='231' column='1' elf-symbol-id='PyExc_ImportWarning'/>
+ <var-decl name='PyExc_UnicodeWarning' type-id='type-id-52' mangled-name='PyExc_UnicodeWarning' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='232' column='1' elf-symbol-id='PyExc_UnicodeWarning'/>
+ <var-decl name='PyExc_BytesWarning' type-id='type-id-52' mangled-name='PyExc_BytesWarning' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='233' column='1' elf-symbol-id='PyExc_BytesWarning'/>
+ <var-decl name='PyExc_ResourceWarning' type-id='type-id-52' mangled-name='PyExc_ResourceWarning' visibility='default' filepath='../gpshead/Include/pyerrors.h' line='234' column='1' elf-symbol-id='PyExc_ResourceWarning'/>
+ <function-decl name='_PyErr_TrySetFromCause' mangled-name='_PyErr_TrySetFromCause' filepath='../gpshead/Objects/exceptions.c' line='2717' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_TrySetFromCause'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/exceptions.c' line='2717' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyExc_Fini' mangled-name='_PyExc_Fini' filepath='../gpshead/Objects/exceptions.c' line='2682' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyExc_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyExc_Init' mangled-name='_PyExc_Init' filepath='../gpshead/Objects/exceptions.c' line='2502' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyExc_Init'>
+ <parameter type-id='type-id-52' name='bltinmod' filepath='../gpshead/Objects/exceptions.c' line='2502' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyUnicodeTranslateError_Create' mangled-name='_PyUnicodeTranslateError_Create' filepath='../gpshead/Objects/exceptions.c' line='2181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeTranslateError_Create'>
+ <parameter type-id='type-id-52' name='object' filepath='../gpshead/Objects/exceptions.c' line='2182' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/exceptions.c' line='2183' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/exceptions.c' line='2183' column='1'/>
+ <parameter type-id='type-id-3' name='reason' filepath='../gpshead/Objects/exceptions.c' line='2183' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <typedef-decl name='Py_UNICODE' type-id='type-id-204' filepath='../gpshead/Include/unicodeobject.h' line='93' column='1' id='type-id-289'/>
+ <qualified-type-def type-id='type-id-289' const='yes' id='type-id-290'/>
+ <pointer-type-def type-id='type-id-290' size-in-bits='64' id='type-id-291'/>
+ <function-decl name='PyUnicodeTranslateError_Create' mangled-name='PyUnicodeTranslateError_Create' filepath='../gpshead/Objects/exceptions.c' line='2172' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_Create'>
+ <parameter type-id='type-id-291' name='object' filepath='../gpshead/Objects/exceptions.c' line='2173' column='1'/>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/exceptions.c' line='2173' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/exceptions.c' line='2174' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/exceptions.c' line='2174' column='1'/>
+ <parameter type-id='type-id-3' name='reason' filepath='../gpshead/Objects/exceptions.c' line='2174' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicodeDecodeError_Create' mangled-name='PyUnicodeDecodeError_Create' filepath='../gpshead/Objects/exceptions.c' line='2074' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_Create'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Objects/exceptions.c' line='2075' column='1'/>
+ <parameter type-id='type-id-3' name='object' filepath='../gpshead/Objects/exceptions.c' line='2075' column='1'/>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/exceptions.c' line='2075' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/exceptions.c' line='2076' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/exceptions.c' line='2076' column='1'/>
+ <parameter type-id='type-id-3' name='reason' filepath='../gpshead/Objects/exceptions.c' line='2076' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicodeEncodeError_Create' mangled-name='PyUnicodeEncodeError_Create' filepath='../gpshead/Objects/exceptions.c' line='1958' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_Create'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Objects/exceptions.c' line='1959' column='1'/>
+ <parameter type-id='type-id-291' name='object' filepath='../gpshead/Objects/exceptions.c' line='1959' column='1'/>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/exceptions.c' line='1959' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/exceptions.c' line='1960' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/exceptions.c' line='1960' column='1'/>
+ <parameter type-id='type-id-3' name='reason' filepath='../gpshead/Objects/exceptions.c' line='1960' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicodeTranslateError_SetReason' mangled-name='PyUnicodeTranslateError_SetReason' filepath='../gpshead/Objects/exceptions.c' line='1812' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_SetReason'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1812' column='1'/>
+ <parameter type-id='type-id-3' name='reason' filepath='../gpshead/Objects/exceptions.c' line='1812' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeDecodeError_SetReason' mangled-name='PyUnicodeDecodeError_SetReason' filepath='../gpshead/Objects/exceptions.c' line='1804' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_SetReason'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1812' column='1'/>
+ <parameter type-id='type-id-3' name='reason' filepath='../gpshead/Objects/exceptions.c' line='1812' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeEncodeError_SetReason' mangled-name='PyUnicodeEncodeError_SetReason' filepath='../gpshead/Objects/exceptions.c' line='1796' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetReason'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1812' column='1'/>
+ <parameter type-id='type-id-3' name='reason' filepath='../gpshead/Objects/exceptions.c' line='1812' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeTranslateError_GetReason' mangled-name='PyUnicodeTranslateError_GetReason' filepath='../gpshead/Objects/exceptions.c' line='1789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_GetReason'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicodeDecodeError_GetReason' mangled-name='PyUnicodeDecodeError_GetReason' filepath='../gpshead/Objects/exceptions.c' line='1782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetReason'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicodeEncodeError_GetReason' mangled-name='PyUnicodeEncodeError_GetReason' filepath='../gpshead/Objects/exceptions.c' line='1775' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetReason'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicodeTranslateError_SetEnd' mangled-name='PyUnicodeTranslateError_SetEnd' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_SetEnd'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeDecodeError_SetEnd' mangled-name='PyUnicodeDecodeError_SetEnd' filepath='../gpshead/Objects/exceptions.c' line='1760' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_SetEnd'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeEncodeError_SetEnd' mangled-name='PyUnicodeEncodeError_SetEnd' filepath='../gpshead/Objects/exceptions.c' line='1752' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetEnd'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeTranslateError_GetEnd' mangled-name='PyUnicodeTranslateError_GetEnd' filepath='../gpshead/Objects/exceptions.c' line='1745' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_GetEnd'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1745' column='1'/>
+ <parameter type-id='type-id-172' name='start' filepath='../gpshead/Objects/exceptions.c' line='1745' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeDecodeError_GetEnd' mangled-name='PyUnicodeDecodeError_GetEnd' filepath='../gpshead/Objects/exceptions.c' line='1727' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetEnd'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1727' column='1'/>
+ <parameter type-id='type-id-172' name='end' filepath='../gpshead/Objects/exceptions.c' line='1727' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeEncodeError_GetEnd' mangled-name='PyUnicodeEncodeError_GetEnd' filepath='../gpshead/Objects/exceptions.c' line='1708' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetEnd'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1727' column='1'/>
+ <parameter type-id='type-id-172' name='end' filepath='../gpshead/Objects/exceptions.c' line='1727' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeTranslateError_SetStart' mangled-name='PyUnicodeTranslateError_SetStart' filepath='../gpshead/Objects/exceptions.c' line='1700' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_SetStart'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeDecodeError_SetStart' mangled-name='PyUnicodeDecodeError_SetStart' filepath='../gpshead/Objects/exceptions.c' line='1692' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_SetStart'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeEncodeError_SetStart' mangled-name='PyUnicodeEncodeError_SetStart' filepath='../gpshead/Objects/exceptions.c' line='1684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetStart'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/exceptions.c' line='1768' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeTranslateError_GetStart' mangled-name='PyUnicodeTranslateError_GetStart' filepath='../gpshead/Objects/exceptions.c' line='1677' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_GetStart'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1745' column='1'/>
+ <parameter type-id='type-id-172' name='start' filepath='../gpshead/Objects/exceptions.c' line='1745' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeDecodeError_GetStart' mangled-name='PyUnicodeDecodeError_GetStart' filepath='../gpshead/Objects/exceptions.c' line='1659' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetStart'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1727' column='1'/>
+ <parameter type-id='type-id-172' name='end' filepath='../gpshead/Objects/exceptions.c' line='1727' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeEncodeError_GetStart' mangled-name='PyUnicodeEncodeError_GetStart' filepath='../gpshead/Objects/exceptions.c' line='1640' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetStart'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1727' column='1'/>
+ <parameter type-id='type-id-172' name='end' filepath='../gpshead/Objects/exceptions.c' line='1727' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicodeTranslateError_GetObject' mangled-name='PyUnicodeTranslateError_GetObject' filepath='../gpshead/Objects/exceptions.c' line='1634' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_GetObject'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicodeDecodeError_GetObject' mangled-name='PyUnicodeDecodeError_GetObject' filepath='../gpshead/Objects/exceptions.c' line='1628' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetObject'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicodeEncodeError_GetObject' mangled-name='PyUnicodeEncodeError_GetObject' filepath='../gpshead/Objects/exceptions.c' line='1622' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetObject'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicodeDecodeError_GetEncoding' mangled-name='PyUnicodeDecodeError_GetEncoding' filepath='../gpshead/Objects/exceptions.c' line='1616' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetEncoding'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicodeEncodeError_GetEncoding' mangled-name='PyUnicodeEncodeError_GetEncoding' filepath='../gpshead/Objects/exceptions.c' line='1610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetEncoding'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyException_SetContext' mangled-name='PyException_SetContext' filepath='../gpshead/Objects/exceptions.c' line='344' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_SetContext'>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/exceptions.c' line='344' column='1'/>
+ <parameter type-id='type-id-52' name='context' filepath='../gpshead/Objects/exceptions.c' line='344' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyException_GetContext' mangled-name='PyException_GetContext' filepath='../gpshead/Objects/exceptions.c' line='336' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_GetContext'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1434' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyException_SetCause' mangled-name='PyException_SetCause' filepath='../gpshead/Objects/exceptions.c' line='329' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_SetCause'>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/exceptions.c' line='344' column='1'/>
+ <parameter type-id='type-id-52' name='context' filepath='../gpshead/Objects/exceptions.c' line='344' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyException_GetCause' mangled-name='PyException_GetCause' filepath='../gpshead/Objects/exceptions.c' line='321' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_GetCause'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1434' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyException_SetTraceback' mangled-name='PyException_SetTraceback' filepath='../gpshead/Objects/exceptions.c' line='316' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_SetTraceback'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyException_GetTraceback' mangled-name='PyException_GetTraceback' filepath='../gpshead/Objects/exceptions.c' line='308' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_GetTraceback'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1434' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/genobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyGen_Type' type-id='type-id-245' mangled-name='PyGen_Type' visibility='default' filepath='../gpshead/Include/genobject.h' line='36' column='1' elf-symbol-id='PyGen_Type'/>
+ <var-decl name='PyCoro_Type' type-id='type-id-245' mangled-name='PyCoro_Type' visibility='default' filepath='../gpshead/Include/genobject.h' line='57' column='1' elf-symbol-id='PyCoro_Type'/>
+ <var-decl name='_PyCoroWrapper_Type' type-id='type-id-245' mangled-name='_PyCoroWrapper_Type' visibility='default' filepath='../gpshead/Include/genobject.h' line='58' column='1' elf-symbol-id='_PyCoroWrapper_Type'/>
+ <var-decl name='PyAsyncGen_Type' type-id='type-id-245' mangled-name='PyAsyncGen_Type' visibility='default' filepath='../gpshead/Include/genobject.h' line='83' column='1' elf-symbol-id='PyAsyncGen_Type'/>
+ <var-decl name='_PyAsyncGenASend_Type' type-id='type-id-245' mangled-name='_PyAsyncGenASend_Type' visibility='default' filepath='../gpshead/Include/genobject.h' line='84' column='1' elf-symbol-id='_PyAsyncGenASend_Type'/>
+ <var-decl name='_PyAsyncGenWrappedValue_Type' type-id='type-id-245' mangled-name='_PyAsyncGenWrappedValue_Type' visibility='default' filepath='../gpshead/Include/genobject.h' line='85' column='1' elf-symbol-id='_PyAsyncGenWrappedValue_Type'/>
+ <var-decl name='_PyAsyncGenAThrow_Type' type-id='type-id-245' mangled-name='_PyAsyncGenAThrow_Type' visibility='default' filepath='../gpshead/Include/genobject.h' line='86' column='1' elf-symbol-id='_PyAsyncGenAThrow_Type'/>
+ <function-decl name='_PyAsyncGenValueWrapperNew' mangled-name='_PyAsyncGenValueWrapperNew' filepath='../gpshead/Objects/genobject.c' line='1754' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAsyncGenValueWrapperNew'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1434' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyAsyncGen_Fini' mangled-name='PyAsyncGen_Fini' filepath='../gpshead/Objects/genobject.c' line='1470' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAsyncGen_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyAsyncGen_ClearFreeLists' mangled-name='PyAsyncGen_ClearFreeLists' filepath='../gpshead/Objects/genobject.c' line='1448' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAsyncGen_ClearFreeLists'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <class-decl name='_frame' size-in-bits='2944' is-struct='yes' visibility='default' filepath='../gpshead/Include/frameobject.h' line='17' column='1' id='type-id-206'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-72' visibility='default' filepath='../gpshead/Include/frameobject.h' line='18' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='f_back' type-id='type-id-50' visibility='default' filepath='../gpshead/Include/frameobject.h' line='19' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='f_code' type-id='type-id-272' visibility='default' filepath='../gpshead/Include/frameobject.h' line='20' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='f_builtins' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/frameobject.h' line='21' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='f_globals' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/frameobject.h' line='22' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='f_locals' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/frameobject.h' line='23' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='f_valuestack' type-id='type-id-259' visibility='default' filepath='../gpshead/Include/frameobject.h' line='24' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='f_stacktop' type-id='type-id-259' visibility='default' filepath='../gpshead/Include/frameobject.h' line='28' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='640'>
+ <var-decl name='f_trace' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/frameobject.h' line='29' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='704'>
+ <var-decl name='f_trace_lines' type-id='type-id-1' visibility='default' filepath='../gpshead/Include/frameobject.h' line='30' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='712'>
+ <var-decl name='f_trace_opcodes' type-id='type-id-1' visibility='default' filepath='../gpshead/Include/frameobject.h' line='31' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='768'>
+ <var-decl name='f_gen' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/frameobject.h' line='34' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='832'>
+ <var-decl name='f_lasti' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/frameobject.h' line='36' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='864'>
+ <var-decl name='f_lineno' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/frameobject.h' line='42' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='896'>
+ <var-decl name='f_iblock' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/frameobject.h' line='43' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='928'>
+ <var-decl name='f_executing' type-id='type-id-1' visibility='default' filepath='../gpshead/Include/frameobject.h' line='44' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='960'>
+ <var-decl name='f_blockstack' type-id='type-id-292' visibility='default' filepath='../gpshead/Include/frameobject.h' line='45' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2880'>
+ <var-decl name='f_localsplus' type-id='type-id-293' visibility='default' filepath='../gpshead/Include/frameobject.h' line='46' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='96' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-294' visibility='default' filepath='../gpshead/Include/frameobject.h' line='11' column='1' id='type-id-295'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='b_type' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/frameobject.h' line='12' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='32'>
+ <var-decl name='b_handler' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/frameobject.h' line='13' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='b_level' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/frameobject.h' line='14' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyTryBlock' type-id='type-id-295' filepath='../gpshead/Include/frameobject.h' line='15' column='1' id='type-id-294'/>
+
+ <array-type-def dimensions='1' type-id='type-id-294' size-in-bits='1920' id='type-id-292'>
+ <subrange length='20' type-id='type-id-38' id='type-id-122'/>
+
+ </array-type-def>
+
+ <array-type-def dimensions='1' type-id='type-id-52' size-in-bits='64' id='type-id-293'>
+ <subrange length='1' type-id='type-id-38' id='type-id-118'/>
+
+ </array-type-def>
+ <typedef-decl name='PyFrameObject' type-id='type-id-206' filepath='../gpshead/Include/frameobject.h' line='47' column='1' id='type-id-296'/>
+ <pointer-type-def type-id='type-id-296' size-in-bits='64' id='type-id-297'/>
+ <function-decl name='PyAsyncGen_New' mangled-name='PyAsyncGen_New' filepath='../gpshead/Objects/genobject.c' line='1432' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAsyncGen_New'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Objects/genobject.c' line='1432' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/genobject.c' line='1432' column='1'/>
+ <parameter type-id='type-id-52' name='qualname' filepath='../gpshead/Objects/genobject.c' line='1432' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCoro_New' mangled-name='PyCoro_New' filepath='../gpshead/Objects/genobject.c' line='1155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCoro_New'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Objects/genobject.c' line='1155' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/genobject.c' line='1155' column='1'/>
+ <parameter type-id='type-id-52' name='qualname' filepath='../gpshead/Objects/genobject.c' line='1155' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyCoro_GetAwaitableIter' mangled-name='_PyCoro_GetAwaitableIter' filepath='../gpshead/Objects/genobject.c' line='868' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCoro_GetAwaitableIter'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2519' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='768' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-298' visibility='default' filepath='../gpshead/Include/genobject.h' line='31' column='1' id='type-id-299'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-103' visibility='default' filepath='../gpshead/Include/genobject.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='gi_frame' type-id='type-id-50' visibility='default' filepath='../gpshead/Include/genobject.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='gi_running' type-id='type-id-1' visibility='default' filepath='../gpshead/Include/genobject.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='gi_code' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/genobject.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='gi_weakreflist' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/genobject.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='gi_name' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/genobject.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='gi_qualname' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/genobject.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='gi_exc_state' type-id='type-id-53' visibility='default' filepath='../gpshead/Include/genobject.h' line='33' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyGenObject' type-id='type-id-299' filepath='../gpshead/Include/genobject.h' line='34' column='1' id='type-id-298'/>
+ <pointer-type-def type-id='type-id-298' size-in-bits='64' id='type-id-300'/>
+ <function-decl name='PyGen_NeedsFinalizing' mangled-name='PyGen_NeedsFinalizing' filepath='../gpshead/Objects/genobject.c' line='823' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGen_NeedsFinalizing'>
+ <parameter type-id='type-id-300' name='gen' filepath='../gpshead/Objects/genobject.c' line='823' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyGen_New' mangled-name='PyGen_New' filepath='../gpshead/Objects/genobject.c' line='817' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGen_New'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Objects/genobject.c' line='817' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyGen_NewWithQualName' mangled-name='PyGen_NewWithQualName' filepath='../gpshead/Objects/genobject.c' line='811' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGen_NewWithQualName'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Objects/genobject.c' line='811' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/genobject.c' line='811' column='1'/>
+ <parameter type-id='type-id-52' name='qualname' filepath='../gpshead/Objects/genobject.c' line='811' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyGen_FetchStopIterationValue' mangled-name='_PyGen_FetchStopIterationValue' filepath='../gpshead/Objects/genobject.c' line='591' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGen_FetchStopIterationValue'>
+ <parameter type-id='type-id-259' name='pvalue' filepath='../gpshead/Objects/genobject.c' line='591' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyGen_SetStopIterationValue' mangled-name='_PyGen_SetStopIterationValue' filepath='../gpshead/Objects/genobject.c' line='552' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGen_SetStopIterationValue'>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/genobject.c' line='552' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyGen_yf' mangled-name='_PyGen_yf' filepath='../gpshead/Objects/genobject.c' line='330' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGen_yf'>
+ <parameter type-id='type-id-300' name='gen' filepath='../gpshead/Objects/genobject.c' line='330' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyGen_Send' mangled-name='_PyGen_Send' filepath='../gpshead/Objects/genobject.c' line='289' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGen_Send'>
+ <parameter type-id='type-id-300' name='gen' filepath='../gpshead/Objects/genobject.c' line='289' column='1'/>
+ <parameter type-id='type-id-52' name='arg' filepath='../gpshead/Objects/genobject.c' line='289' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyGen_Finalize' mangled-name='_PyGen_Finalize' filepath='../gpshead/Objects/genobject.c' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGen_Finalize'>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/genobject.c' line='41' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/fileobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyStdPrinter_Type' type-id='type-id-245' mangled-name='PyStdPrinter_Type' visibility='default' filepath='../gpshead/Include/fileobject.h' line='41' column='1' elf-symbol-id='PyStdPrinter_Type'/>
+ <function-decl name='PyFile_NewStdPrinter' mangled-name='PyFile_NewStdPrinter' filepath='../gpshead/Objects/fileobject.c' line='336' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_NewStdPrinter'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Objects/fileobject.c' line='336' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='Py_UniversalNewlineFgets' mangled-name='Py_UniversalNewlineFgets' filepath='../gpshead/Objects/fileobject.c' line='236' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UniversalNewlineFgets'>
+ <parameter type-id='type-id-12' name='buf' filepath='../gpshead/Objects/fileobject.c' line='236' column='1'/>
+ <parameter type-id='type-id-7' name='n' filepath='../gpshead/Objects/fileobject.c' line='236' column='1'/>
+ <parameter type-id='type-id-124' name='stream' filepath='../gpshead/Objects/fileobject.c' line='236' column='1'/>
+ <parameter type-id='type-id-52' name='fobj' filepath='../gpshead/Objects/fileobject.c' line='236' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <function-decl name='PyObject_AsFileDescriptor' mangled-name='PyObject_AsFileDescriptor' filepath='../gpshead/Objects/fileobject.c' line='177' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_AsFileDescriptor'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/fileobject.c' line='177' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyFile_WriteString' mangled-name='PyFile_WriteString' filepath='../gpshead/Objects/fileobject.c' line='147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_WriteString'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/fileobject.c' line='147' column='1'/>
+ <parameter type-id='type-id-52' name='f' filepath='../gpshead/Objects/fileobject.c' line='147' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyFile_WriteObject' mangled-name='PyFile_WriteObject' filepath='../gpshead/Objects/fileobject.c' line='116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_WriteObject'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/fileobject.c' line='116' column='1'/>
+ <parameter type-id='type-id-52' name='f' filepath='../gpshead/Objects/fileobject.c' line='116' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Objects/fileobject.c' line='116' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyFile_GetLine' mangled-name='PyFile_GetLine' filepath='../gpshead/Objects/fileobject.c' line='51' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_GetLine'>
+ <parameter type-id='type-id-52' name='f' filepath='../gpshead/Objects/fileobject.c' line='51' column='1'/>
+ <parameter type-id='type-id-7' name='n' filepath='../gpshead/Objects/fileobject.c' line='51' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFile_FromFd' mangled-name='PyFile_FromFd' filepath='../gpshead/Objects/fileobject.c' line='30' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_FromFd'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Objects/fileobject.c' line='30' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/fileobject.c' line='30' column='1'/>
+ <parameter type-id='type-id-3' name='mode' filepath='../gpshead/Objects/fileobject.c' line='30' column='1'/>
+ <parameter type-id='type-id-7' name='buffering' filepath='../gpshead/Objects/fileobject.c' line='30' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Objects/fileobject.c' line='30' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/fileobject.c' line='31' column='1'/>
+ <parameter type-id='type-id-3' name='newline' filepath='../gpshead/Objects/fileobject.c' line='31' column='1'/>
+ <parameter type-id='type-id-7' name='closefd' filepath='../gpshead/Objects/fileobject.c' line='31' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/floatobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyFloat_Type' type-id='type-id-245' mangled-name='PyFloat_Type' visibility='default' filepath='../gpshead/Include/floatobject.h' line='21' column='1' elf-symbol-id='PyFloat_Type'/>
+ <type-decl name='unsigned char' size-in-bits='8' id='type-id-301'/>
+ <qualified-type-def type-id='type-id-301' const='yes' id='type-id-302'/>
+ <pointer-type-def type-id='type-id-302' size-in-bits='64' id='type-id-303'/>
+ <function-decl name='_PyFloat_Unpack8' mangled-name='_PyFloat_Unpack8' filepath='../gpshead/Objects/floatobject.c' line='2539' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Unpack8'>
+ <parameter type-id='type-id-303' name='p' filepath='../gpshead/Objects/floatobject.c' line='2539' column='1'/>
+ <parameter type-id='type-id-7' name='le' filepath='../gpshead/Objects/floatobject.c' line='2539' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-decl name='_PyFloat_Unpack4' mangled-name='_PyFloat_Unpack4' filepath='../gpshead/Objects/floatobject.c' line='2461' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Unpack4'>
+ <parameter type-id='type-id-303' name='p' filepath='../gpshead/Objects/floatobject.c' line='2539' column='1'/>
+ <parameter type-id='type-id-7' name='le' filepath='../gpshead/Objects/floatobject.c' line='2539' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-decl name='_PyFloat_Unpack2' mangled-name='_PyFloat_Unpack2' filepath='../gpshead/Objects/floatobject.c' line='2391' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Unpack2'>
+ <parameter type-id='type-id-303' name='p' filepath='../gpshead/Objects/floatobject.c' line='2391' column='1'/>
+ <parameter type-id='type-id-7' name='le' filepath='../gpshead/Objects/floatobject.c' line='2391' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-301' size-in-bits='64' id='type-id-304'/>
+ <function-decl name='_PyFloat_Pack8' mangled-name='_PyFloat_Pack8' filepath='../gpshead/Objects/floatobject.c' line='2262' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Pack8'>
+ <parameter type-id='type-id-278' name='x' filepath='../gpshead/Objects/floatobject.c' line='2262' column='1'/>
+ <parameter type-id='type-id-304' name='p' filepath='../gpshead/Objects/floatobject.c' line='2262' column='1'/>
+ <parameter type-id='type-id-7' name='le' filepath='../gpshead/Objects/floatobject.c' line='2262' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyFloat_Pack4' mangled-name='_PyFloat_Pack4' filepath='../gpshead/Objects/floatobject.c' line='2155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Pack4'>
+ <parameter type-id='type-id-278' name='x' filepath='../gpshead/Objects/floatobject.c' line='2262' column='1'/>
+ <parameter type-id='type-id-304' name='p' filepath='../gpshead/Objects/floatobject.c' line='2262' column='1'/>
+ <parameter type-id='type-id-7' name='le' filepath='../gpshead/Objects/floatobject.c' line='2262' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyFloat_Pack2' mangled-name='_PyFloat_Pack2' filepath='../gpshead/Objects/floatobject.c' line='2051' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Pack2'>
+ <parameter type-id='type-id-278' name='x' filepath='../gpshead/Objects/floatobject.c' line='2051' column='1'/>
+ <parameter type-id='type-id-304' name='p' filepath='../gpshead/Objects/floatobject.c' line='2051' column='1'/>
+ <parameter type-id='type-id-7' name='le' filepath='../gpshead/Objects/floatobject.c' line='2051' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyFloat_DebugMallocStats' mangled-name='_PyFloat_DebugMallocStats' filepath='../gpshead/Objects/floatobject.c' line='2031' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_DebugMallocStats'>
+ <parameter type-id='type-id-124' name='out' filepath='../gpshead/Objects/classobject.c' line='392' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyFloat_Fini' mangled-name='PyFloat_Fini' filepath='../gpshead/Objects/floatobject.c' line='2024' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyFloat_ClearFreeList' mangled-name='PyFloat_ClearFreeList' filepath='../gpshead/Objects/floatobject.c' line='2009' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_ClearFreeList'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyFloat_Init' mangled-name='_PyFloat_Init' filepath='../gpshead/Objects/floatobject.c' line='1952' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Init'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyFloat_AsDouble' mangled-name='PyFloat_AsDouble' filepath='../gpshead/Objects/floatobject.c' line='232' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_AsDouble'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/floatobject.c' line='232' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-decl name='PyFloat_FromString' mangled-name='PyFloat_FromString' filepath='../gpshead/Objects/floatobject.c' line='166' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_FromString'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/floatobject.c' line='166' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFloat_FromDouble' mangled-name='PyFloat_FromDouble' filepath='../gpshead/Objects/floatobject.c' line='115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_FromDouble'>
+ <parameter type-id='type-id-278' name='fval' filepath='../gpshead/Objects/floatobject.c' line='115' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFloat_GetInfo' mangled-name='PyFloat_GetInfo' filepath='../gpshead/Objects/floatobject.c' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_GetInfo'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFloat_GetMin' mangled-name='PyFloat_GetMin' filepath='../gpshead/Objects/floatobject.c' line='36' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_GetMin'>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-decl name='PyFloat_GetMax' mangled-name='PyFloat_GetMax' filepath='../gpshead/Objects/floatobject.c' line='30' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_GetMax'>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/frameobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyFrame_Type' type-id='type-id-245' mangled-name='PyFrame_Type' visibility='default' filepath='../gpshead/Include/frameobject.h' line='52' column='1' elf-symbol-id='PyFrame_Type'/>
+ <function-decl name='_PyFrame_DebugMallocStats' mangled-name='_PyFrame_DebugMallocStats' filepath='../gpshead/Objects/frameobject.c' line='1052' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFrame_DebugMallocStats'>
+ <parameter type-id='type-id-124' name='out' filepath='../gpshead/Objects/classobject.c' line='392' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyFrame_Fini' mangled-name='PyFrame_Fini' filepath='../gpshead/Objects/frameobject.c' line='1045' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyFrame_ClearFreeList' mangled-name='PyFrame_ClearFreeList' filepath='../gpshead/Objects/frameobject.c' line='1030' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_ClearFreeList'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyFrame_LocalsToFast' mangled-name='PyFrame_LocalsToFast' filepath='../gpshead/Objects/frameobject.c' line='988' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_LocalsToFast'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Objects/frameobject.c' line='988' column='1'/>
+ <parameter type-id='type-id-7' name='clear' filepath='../gpshead/Objects/frameobject.c' line='988' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyFrame_FastToLocals' mangled-name='PyFrame_FastToLocals' filepath='../gpshead/Objects/frameobject.c' line='976' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_FastToLocals'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Objects/frameobject.c' line='976' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyFrame_FastToLocalsWithError' mangled-name='PyFrame_FastToLocalsWithError' filepath='../gpshead/Objects/frameobject.c' line='916' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_FastToLocalsWithError'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Objects/frameobject.c' line='916' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-294' size-in-bits='64' id='type-id-305'/>
+ <function-decl name='PyFrame_BlockPop' mangled-name='PyFrame_BlockPop' filepath='../gpshead/Objects/frameobject.c' line='808' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_BlockPop'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Objects/frameobject.c' line='808' column='1'/>
+ <return type-id='type-id-305'/>
+ </function-decl>
+ <function-decl name='PyFrame_BlockSetup' mangled-name='PyFrame_BlockSetup' filepath='../gpshead/Objects/frameobject.c' line='796' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_BlockSetup'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Objects/frameobject.c' line='796' column='1'/>
+ <parameter type-id='type-id-7' name='type' filepath='../gpshead/Objects/frameobject.c' line='796' column='1'/>
+ <parameter type-id='type-id-7' name='handler' filepath='../gpshead/Objects/frameobject.c' line='796' column='1'/>
+ <parameter type-id='type-id-7' name='level' filepath='../gpshead/Objects/frameobject.c' line='796' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyFrame_New' mangled-name='PyFrame_New' filepath='../gpshead/Objects/frameobject.c' line='783' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_New'>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Objects/frameobject.c' line='783' column='1'/>
+ <parameter type-id='type-id-272' name='code' filepath='../gpshead/Objects/frameobject.c' line='783' column='1'/>
+ <parameter type-id='type-id-52' name='globals' filepath='../gpshead/Objects/frameobject.c' line='784' column='1'/>
+ <parameter type-id='type-id-52' name='locals' filepath='../gpshead/Objects/frameobject.c' line='784' column='1'/>
+ <return type-id='type-id-297'/>
+ </function-decl>
+ <function-decl name='_PyFrame_New_NoTrack' mangled-name='_PyFrame_New_NoTrack' filepath='../gpshead/Objects/frameobject.c' line='657' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFrame_New_NoTrack'>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Objects/frameobject.c' line='657' column='1'/>
+ <parameter type-id='type-id-272' name='code' filepath='../gpshead/Objects/frameobject.c' line='657' column='1'/>
+ <parameter type-id='type-id-52' name='globals' filepath='../gpshead/Objects/frameobject.c' line='658' column='1'/>
+ <parameter type-id='type-id-52' name='locals' filepath='../gpshead/Objects/frameobject.c' line='658' column='1'/>
+ <return type-id='type-id-297'/>
+ </function-decl>
+ <function-decl name='_PyFrame_Init' mangled-name='_PyFrame_Init' filepath='../gpshead/Objects/frameobject.c' line='648' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFrame_Init'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyFrame_GetLineNumber' mangled-name='PyFrame_GetLineNumber' filepath='../gpshead/Objects/frameobject.c' line='34' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_GetLineNumber'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Objects/frameobject.c' line='34' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/funcobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyFunction_Type' type-id='type-id-245' mangled-name='PyFunction_Type' visibility='default' filepath='../gpshead/Include/funcobject.h' line='43' column='1' elf-symbol-id='PyFunction_Type'/>
+ <var-decl name='PyClassMethod_Type' type-id='type-id-245' mangled-name='PyClassMethod_Type' visibility='default' filepath='../gpshead/Include/funcobject.h' line='93' column='1' elf-symbol-id='PyClassMethod_Type'/>
+ <var-decl name='PyStaticMethod_Type' type-id='type-id-245' mangled-name='PyStaticMethod_Type' visibility='default' filepath='../gpshead/Include/funcobject.h' line='94' column='1' elf-symbol-id='PyStaticMethod_Type'/>
+ <function-decl name='PyStaticMethod_New' mangled-name='PyStaticMethod_New' filepath='../gpshead/Objects/funcobject.c' line='986' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStaticMethod_New'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyClassMethod_New' mangled-name='PyClassMethod_New' filepath='../gpshead/Objects/funcobject.c' line='808' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyClassMethod_New'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFunction_SetAnnotations' mangled-name='PyFunction_SetAnnotations' filepath='../gpshead/Objects/funcobject.c' line='210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_SetAnnotations'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/funcobject.c' line='210' column='1'/>
+ <parameter type-id='type-id-52' name='annotations' filepath='../gpshead/Objects/funcobject.c' line='210' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyFunction_GetAnnotations' mangled-name='PyFunction_GetAnnotations' filepath='../gpshead/Objects/funcobject.c' line='200' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetAnnotations'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFunction_SetClosure' mangled-name='PyFunction_SetClosure' filepath='../gpshead/Objects/funcobject.c' line='178' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_SetClosure'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/funcobject.c' line='210' column='1'/>
+ <parameter type-id='type-id-52' name='annotations' filepath='../gpshead/Objects/funcobject.c' line='210' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyFunction_GetClosure' mangled-name='PyFunction_GetClosure' filepath='../gpshead/Objects/funcobject.c' line='168' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetClosure'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFunction_SetKwDefaults' mangled-name='PyFunction_SetKwDefaults' filepath='../gpshead/Objects/funcobject.c' line='147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_SetKwDefaults'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/funcobject.c' line='210' column='1'/>
+ <parameter type-id='type-id-52' name='annotations' filepath='../gpshead/Objects/funcobject.c' line='210' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyFunction_GetKwDefaults' mangled-name='PyFunction_GetKwDefaults' filepath='../gpshead/Objects/funcobject.c' line='137' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetKwDefaults'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFunction_SetDefaults' mangled-name='PyFunction_SetDefaults' filepath='../gpshead/Objects/funcobject.c' line='117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_SetDefaults'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/funcobject.c' line='210' column='1'/>
+ <parameter type-id='type-id-52' name='annotations' filepath='../gpshead/Objects/funcobject.c' line='210' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyFunction_GetDefaults' mangled-name='PyFunction_GetDefaults' filepath='../gpshead/Objects/funcobject.c' line='107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetDefaults'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFunction_GetModule' mangled-name='PyFunction_GetModule' filepath='../gpshead/Objects/funcobject.c' line='97' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetModule'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFunction_GetGlobals' mangled-name='PyFunction_GetGlobals' filepath='../gpshead/Objects/funcobject.c' line='87' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetGlobals'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFunction_GetCode' mangled-name='PyFunction_GetCode' filepath='../gpshead/Objects/funcobject.c' line='77' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetCode'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFunction_New' mangled-name='PyFunction_New' filepath='../gpshead/Objects/funcobject.c' line='71' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_New'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyFunction_NewWithQualName' mangled-name='PyFunction_NewWithQualName' filepath='../gpshead/Objects/funcobject.c' line='11' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_NewWithQualName'>
+ <parameter type-id='type-id-52' name='code' filepath='../gpshead/Objects/funcobject.c' line='11' column='1'/>
+ <parameter type-id='type-id-52' name='globals' filepath='../gpshead/Objects/funcobject.c' line='11' column='1'/>
+ <parameter type-id='type-id-52' name='qualname' filepath='../gpshead/Objects/funcobject.c' line='11' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/iterobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PySeqIter_Type' type-id='type-id-245' mangled-name='PySeqIter_Type' visibility='default' filepath='../gpshead/Include/iterobject.h' line='8' column='1' elf-symbol-id='PySeqIter_Type'/>
+ <var-decl name='PyCallIter_Type' type-id='type-id-245' mangled-name='PyCallIter_Type' visibility='default' filepath='../gpshead/Include/iterobject.h' line='9' column='1' elf-symbol-id='PyCallIter_Type'/>
+ <function-decl name='PyCallIter_New' mangled-name='PyCallIter_New' filepath='../gpshead/Objects/iterobject.c' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCallIter_New'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySeqIter_New' mangled-name='PySeqIter_New' filepath='../gpshead/Objects/iterobject.c' line='14' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySeqIter_New'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1434' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/listobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyList_Type' type-id='type-id-245' mangled-name='PyList_Type' visibility='default' filepath='../gpshead/Include/listobject.h' line='43' column='1' elf-symbol-id='PyList_Type'/>
+ <var-decl name='PyListIter_Type' type-id='type-id-245' mangled-name='PyListIter_Type' visibility='default' filepath='../gpshead/Include/listobject.h' line='44' column='1' elf-symbol-id='PyListIter_Type'/>
+ <var-decl name='PyListRevIter_Type' type-id='type-id-245' mangled-name='PyListRevIter_Type' visibility='default' filepath='../gpshead/Include/listobject.h' line='45' column='1' elf-symbol-id='PyListRevIter_Type'/>
+ <function-decl name='PyList_AsTuple' mangled-name='PyList_AsTuple' filepath='../gpshead/Objects/listobject.c' line='2458' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_AsTuple'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/listobject.c' line='2458' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyList_Reverse' mangled-name='PyList_Reverse' filepath='../gpshead/Objects/listobject.c' line='2444' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Reverse'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/listobject.c' line='2444' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyList_Sort' mangled-name='PyList_Sort' filepath='../gpshead/Objects/listobject.c' line='2415' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Sort'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/listobject.c' line='2415' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-306' visibility='default' filepath='../gpshead/Include/listobject.h' line='23' column='1' id='type-id-307'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-72' visibility='default' filepath='../gpshead/Include/listobject.h' line='24' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='ob_item' type-id='type-id-259' visibility='default' filepath='../gpshead/Include/listobject.h' line='26' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='allocated' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/listobject.h' line='39' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyListObject' type-id='type-id-307' filepath='../gpshead/Include/listobject.h' line='40' column='1' id='type-id-306'/>
+ <pointer-type-def type-id='type-id-306' size-in-bits='64' id='type-id-308'/>
+ <function-decl name='_PyList_Extend' mangled-name='_PyList_Extend' filepath='../gpshead/Objects/listobject.c' line='939' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyList_Extend'>
+ <parameter type-id='type-id-308' name='self' filepath='../gpshead/Objects/listobject.c' line='939' column='1'/>
+ <parameter type-id='type-id-52' name='iterable' filepath='../gpshead/Objects/listobject.c' line='939' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyList_SetSlice' mangled-name='PyList_SetSlice' filepath='../gpshead/Objects/listobject.c' line='684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_SetSlice'>
+ <parameter type-id='type-id-52' name='a' filepath='../gpshead/Objects/listobject.c' line='684' column='1'/>
+ <parameter type-id='type-id-34' name='ilow' filepath='../gpshead/Objects/listobject.c' line='684' column='1'/>
+ <parameter type-id='type-id-34' name='ihigh' filepath='../gpshead/Objects/listobject.c' line='684' column='1'/>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/listobject.c' line='684' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyList_GetSlice' mangled-name='PyList_GetSlice' filepath='../gpshead/Objects/listobject.c' line='460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_GetSlice'>
+ <parameter type-id='type-id-52' name='a' filepath='../gpshead/Objects/listobject.c' line='460' column='1'/>
+ <parameter type-id='type-id-34' name='ilow' filepath='../gpshead/Objects/listobject.c' line='460' column='1'/>
+ <parameter type-id='type-id-34' name='ihigh' filepath='../gpshead/Objects/listobject.c' line='460' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyList_Append' mangled-name='PyList_Append' filepath='../gpshead/Objects/listobject.c' line='301' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Append'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyList_Insert' mangled-name='PyList_Insert' filepath='../gpshead/Objects/listobject.c' line='271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Insert'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/listobject.c' line='271' column='1'/>
+ <parameter type-id='type-id-34' name='where' filepath='../gpshead/Objects/listobject.c' line='271' column='1'/>
+ <parameter type-id='type-id-52' name='newitem' filepath='../gpshead/Objects/listobject.c' line='271' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyList_SetItem' mangled-name='PyList_SetItem' filepath='../gpshead/Objects/listobject.c' line='217' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_SetItem'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/listobject.c' line='217' column='1'/>
+ <parameter type-id='type-id-34' name='i' filepath='../gpshead/Objects/listobject.c' line='217' column='1'/>
+ <parameter type-id='type-id-52' name='newitem' filepath='../gpshead/Objects/listobject.c' line='218' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyList_GetItem' mangled-name='PyList_GetItem' filepath='../gpshead/Objects/listobject.c' line='197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_GetItem'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/listobject.c' line='197' column='1'/>
+ <parameter type-id='type-id-34' name='i' filepath='../gpshead/Objects/listobject.c' line='197' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyList_Size' mangled-name='PyList_Size' filepath='../gpshead/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-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2093' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyList_New' mangled-name='PyList_New' filepath='../gpshead/Objects/listobject.c' line='138' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_New'>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/listobject.c' line='138' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyList_DebugMallocStats' mangled-name='_PyList_DebugMallocStats' filepath='../gpshead/Objects/listobject.c' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyList_DebugMallocStats'>
+ <parameter type-id='type-id-124' name='out' filepath='../gpshead/Objects/classobject.c' line='392' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyList_Fini' mangled-name='PyList_Fini' filepath='../gpshead/Objects/listobject.c' line='123' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyList_ClearFreeList' mangled-name='PyList_ClearFreeList' filepath='../gpshead/Objects/listobject.c' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_ClearFreeList'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/longobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_PyLong_Zero' type-id='type-id-52' mangled-name='_PyLong_Zero' visibility='default' filepath='../gpshead/Include/longobject.h' line='213' column='1' elf-symbol-id='_PyLong_Zero'/>
+ <var-decl name='_PyLong_One' type-id='type-id-52' mangled-name='_PyLong_One' visibility='default' filepath='../gpshead/Include/longobject.h' line='214' column='1' elf-symbol-id='_PyLong_One'/>
+
+ <array-type-def dimensions='1' type-id='type-id-301' size-in-bits='2048' id='type-id-309'>
+ <subrange length='256' type-id='type-id-38' id='type-id-310'/>
+
+ </array-type-def>
+ <var-decl name='_PyLong_DigitValue' type-id='type-id-309' mangled-name='_PyLong_DigitValue' visibility='default' filepath='../gpshead/Include/longobject.h' line='71' column='1' elf-symbol-id='_PyLong_DigitValue'/>
+ <var-decl name='PyLong_Type' type-id='type-id-245' mangled-name='PyLong_Type' visibility='default' filepath='../gpshead/Include/longobject.h' line='12' column='1' elf-symbol-id='PyLong_Type'/>
+ <function-decl name='PyLong_Fini' mangled-name='PyLong_Fini' filepath='../gpshead/Objects/longobject.c' line='5511' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyLong_Init' mangled-name='_PyLong_Init' filepath='../gpshead/Objects/longobject.c' line='5463' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Init'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyLong_GetInfo' mangled-name='PyLong_GetInfo' filepath='../gpshead/Objects/longobject.c' line='5444' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_GetInfo'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyLong_DivmodNear' mangled-name='_PyLong_DivmodNear' filepath='../gpshead/Objects/longobject.c' line='4924' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_DivmodNear'>
+ <parameter type-id='type-id-52' name='a' filepath='../gpshead/Objects/longobject.c' line='4924' column='1'/>
+ <parameter type-id='type-id-52' name='b' filepath='../gpshead/Objects/longobject.c' line='4924' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyLong_GCD' mangled-name='_PyLong_GCD' filepath='../gpshead/Objects/longobject.c' line='4567' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_GCD'>
+ <parameter type-id='type-id-52' name='aarg' filepath='../gpshead/Objects/longobject.c' line='4567' column='1'/>
+ <parameter type-id='type-id-52' name='barg' filepath='../gpshead/Objects/longobject.c' line='4567' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyLong_AsDouble' mangled-name='PyLong_AsDouble' filepath='../gpshead/Objects/longobject.c' line='2862' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsDouble'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/longobject.c' line='2862' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <typedef-decl name='PyLongObject' type-id='type-id-246' filepath='../gpshead/Include/longobject.h' line='10' column='1' id='type-id-311'/>
+ <pointer-type-def type-id='type-id-311' size-in-bits='64' id='type-id-312'/>
+ <function-decl name='_PyLong_Frexp' mangled-name='_PyLong_Frexp' filepath='../gpshead/Objects/longobject.c' line='2749' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Frexp'>
+ <parameter type-id='type-id-312' name='a' filepath='../gpshead/Objects/longobject.c' line='2749' column='1'/>
+ <parameter type-id='type-id-172' name='e' filepath='../gpshead/Objects/longobject.c' line='2749' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-decl name='PyLong_FromUnicodeObject' mangled-name='PyLong_FromUnicodeObject' filepath='../gpshead/Objects/longobject.c' line='2509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromUnicodeObject'>
+ <parameter type-id='type-id-52' name='u' filepath='../gpshead/Objects/longobject.c' line='2509' column='1'/>
+ <parameter type-id='type-id-7' name='base' filepath='../gpshead/Objects/longobject.c' line='2509' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-289' size-in-bits='64' id='type-id-313'/>
+ <function-decl name='PyLong_FromUnicode' mangled-name='PyLong_FromUnicode' filepath='../gpshead/Objects/longobject.c' line='2498' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromUnicode'>
+ <parameter type-id='type-id-313' name='u' filepath='../gpshead/Objects/longobject.c' line='2498' column='1'/>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/longobject.c' line='2498' column='1'/>
+ <parameter type-id='type-id-7' name='base' filepath='../gpshead/Objects/longobject.c' line='2498' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyLong_FromBytes' mangled-name='_PyLong_FromBytes' filepath='../gpshead/Objects/longobject.c' line='2478' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromBytes'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/longobject.c' line='2478' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/longobject.c' line='2478' column='1'/>
+ <parameter type-id='type-id-7' name='base' filepath='../gpshead/Objects/longobject.c' line='2478' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyLong_FromString' mangled-name='PyLong_FromString' filepath='../gpshead/Objects/longobject.c' line='2117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromString'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/longobject.c' line='2117' column='1'/>
+ <parameter type-id='type-id-233' name='pend' filepath='../gpshead/Objects/longobject.c' line='2117' column='1'/>
+ <parameter type-id='type-id-7' name='base' filepath='../gpshead/Objects/longobject.c' line='2117' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyLong_FormatBytesWriter' mangled-name='_PyLong_FormatBytesWriter' filepath='../gpshead/Objects/longobject.c' line='1966' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FormatBytesWriter'>
+ <parameter type-id='type-id-258' name='writer' filepath='../gpshead/Objects/longobject.c' line='1966' column='1'/>
+ <parameter type-id='type-id-12' name='str' filepath='../gpshead/Objects/longobject.c' line='1966' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/longobject.c' line='1967' column='1'/>
+ <parameter type-id='type-id-7' name='base' filepath='../gpshead/Objects/longobject.c' line='1968' column='1'/>
+ <parameter type-id='type-id-7' name='alternate' filepath='../gpshead/Objects/longobject.c' line='1968' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='448' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-314' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='885' column='1' id='type-id-315'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='buffer' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='886' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='data' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='887' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='kind' type-id='type-id-316' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='888' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='160'>
+ <var-decl name='maxchar' type-id='type-id-317' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='889' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='size' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='890' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='pos' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='891' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='min_length' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='894' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='min_char' type-id='type-id-317' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='897' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='416'>
+ <var-decl name='overallocate' type-id='type-id-301' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='900' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='424'>
+ <var-decl name='readonly' type-id='type-id-301' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='904' column='1'/>
+ </data-member>
+ </class-decl>
+ <enum-decl name='PyUnicode_Kind' filepath='../gpshead/Include/unicodeobject.h' line='435' column='1' id='type-id-316'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='PyUnicode_WCHAR_KIND' value='0'/>
+ <enumerator name='PyUnicode_1BYTE_KIND' value='1'/>
+ <enumerator name='PyUnicode_2BYTE_KIND' value='2'/>
+ <enumerator name='PyUnicode_4BYTE_KIND' value='4'/>
+ </enum-decl>
+ <typedef-decl name='Py_UCS4' type-id='type-id-249' filepath='../gpshead/Include/unicodeobject.h' line='112' column='1' id='type-id-317'/>
+ <typedef-decl name='_PyUnicodeWriter' type-id='type-id-315' filepath='../gpshead/Include/unicodeobject.h' line='905' column='1' id='type-id-314'/>
+ <pointer-type-def type-id='type-id-314' size-in-bits='64' id='type-id-318'/>
+ <function-decl name='_PyLong_FormatWriter' mangled-name='_PyLong_FormatWriter' filepath='../gpshead/Objects/longobject.c' line='1953' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FormatWriter'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Objects/longobject.c' line='1953' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/longobject.c' line='1954' column='1'/>
+ <parameter type-id='type-id-7' name='base' filepath='../gpshead/Objects/longobject.c' line='1955' column='1'/>
+ <parameter type-id='type-id-7' name='alternate' filepath='../gpshead/Objects/longobject.c' line='1955' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyLong_Format' mangled-name='_PyLong_Format' filepath='../gpshead/Objects/longobject.c' line='1939' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Format'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/longobject.c' line='1939' column='1'/>
+ <parameter type-id='type-id-7' name='base' filepath='../gpshead/Objects/longobject.c' line='1939' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <type-decl name='long long int' size-in-bits='64' id='type-id-319'/>
+ <function-decl name='PyLong_AsLongLongAndOverflow' mangled-name='PyLong_AsLongLongAndOverflow' filepath='../gpshead/Objects/longobject.c' line='1367' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLongLongAndOverflow'>
+ <parameter type-id='type-id-52' name='vv' filepath='../gpshead/Objects/longobject.c' line='1367' column='1'/>
+ <parameter type-id='type-id-18' name='overflow' filepath='../gpshead/Objects/longobject.c' line='1367' column='1'/>
+ <return type-id='type-id-319'/>
+ </function-decl>
+ <type-decl name='long long unsigned int' size-in-bits='64' id='type-id-320'/>
+ <function-decl name='PyLong_AsUnsignedLongLongMask' mangled-name='PyLong_AsUnsignedLongLongMask' filepath='../gpshead/Objects/longobject.c' line='1333' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsUnsignedLongLongMask'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/longobject.c' line='1333' column='1'/>
+ <return type-id='type-id-320'/>
+ </function-decl>
+ <function-decl name='PyLong_AsUnsignedLongLong' mangled-name='PyLong_AsUnsignedLongLong' filepath='../gpshead/Objects/longobject.c' line='1268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsUnsignedLongLong'>
+ <parameter type-id='type-id-52' name='vv' filepath='../gpshead/Objects/longobject.c' line='1268' column='1'/>
+ <return type-id='type-id-320'/>
+ </function-decl>
+ <function-decl name='PyLong_AsLongLong' mangled-name='PyLong_AsLongLong' filepath='../gpshead/Objects/longobject.c' line='1216' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLongLong'>
+ <parameter type-id='type-id-52' name='vv' filepath='../gpshead/Objects/longobject.c' line='1216' column='1'/>
+ <return type-id='type-id-319'/>
+ </function-decl>
+ <function-decl name='PyLong_FromSize_t' mangled-name='PyLong_FromSize_t' filepath='../gpshead/Objects/longobject.c' line='1186' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromSize_t'>
+ <parameter type-id='type-id-62' name='ival' filepath='../gpshead/Objects/longobject.c' line='1186' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyLong_FromSsize_t' mangled-name='PyLong_FromSsize_t' filepath='../gpshead/Objects/longobject.c' line='1146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromSsize_t'>
+ <parameter type-id='type-id-34' name='ival' filepath='../gpshead/Objects/longobject.c' line='1146' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyLong_FromUnsignedLongLong' mangled-name='PyLong_FromUnsignedLongLong' filepath='../gpshead/Objects/longobject.c' line='1118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromUnsignedLongLong'>
+ <parameter type-id='type-id-320' name='ival' filepath='../gpshead/Objects/longobject.c' line='1118' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyLong_FromLongLong' mangled-name='PyLong_FromLongLong' filepath='../gpshead/Objects/longobject.c' line='1074' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromLongLong'>
+ <parameter type-id='type-id-319' name='ival' filepath='../gpshead/Objects/longobject.c' line='1074' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyLong_AsVoidPtr' mangled-name='PyLong_AsVoidPtr' filepath='../gpshead/Objects/longobject.c' line='1037' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsVoidPtr'>
+ <parameter type-id='type-id-52' name='vv' filepath='../gpshead/Objects/longobject.c' line='1037' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyLong_FromVoidPtr' mangled-name='PyLong_FromVoidPtr' filepath='../gpshead/Objects/longobject.c' line='1020' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromVoidPtr'>
+ <parameter type-id='type-id-56' name='p' filepath='../gpshead/Objects/longobject.c' line='1020' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyLong_AsByteArray' mangled-name='_PyLong_AsByteArray' filepath='../gpshead/Objects/longobject.c' line='885' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_AsByteArray'>
+ <parameter type-id='type-id-312' name='v' filepath='../gpshead/Objects/longobject.c' line='885' column='1'/>
+ <parameter type-id='type-id-304' name='bytes' filepath='../gpshead/Objects/longobject.c' line='886' column='1'/>
+ <parameter type-id='type-id-62' name='n' filepath='../gpshead/Objects/longobject.c' line='886' column='1'/>
+ <parameter type-id='type-id-7' name='little_endian' filepath='../gpshead/Objects/longobject.c' line='887' column='1'/>
+ <parameter type-id='type-id-7' name='is_signed' filepath='../gpshead/Objects/longobject.c' line='887' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyLong_FromByteArray' mangled-name='_PyLong_FromByteArray' filepath='../gpshead/Objects/longobject.c' line='774' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromByteArray'>
+ <parameter type-id='type-id-303' name='bytes' filepath='../gpshead/Objects/longobject.c' line='774' column='1'/>
+ <parameter type-id='type-id-62' name='n' filepath='../gpshead/Objects/longobject.c' line='774' column='1'/>
+ <parameter type-id='type-id-7' name='little_endian' filepath='../gpshead/Objects/longobject.c' line='775' column='1'/>
+ <parameter type-id='type-id-7' name='is_signed' filepath='../gpshead/Objects/longobject.c' line='775' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyLong_NumBits' mangled-name='_PyLong_NumBits' filepath='../gpshead/Objects/longobject.c' line='744' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_NumBits'>
+ <parameter type-id='type-id-52' name='vv' filepath='../gpshead/Objects/longobject.c' line='744' column='1'/>
+ <return type-id='type-id-62'/>
+ </function-decl>
+ <function-decl name='_PyLong_Sign' mangled-name='_PyLong_Sign' filepath='../gpshead/Objects/longobject.c' line='713' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Sign'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/listobject.c' line='2444' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyLong_AsUnsignedLongMask' mangled-name='PyLong_AsUnsignedLongMask' filepath='../gpshead/Objects/longobject.c' line='689' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsUnsignedLongMask'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/longobject.c' line='689' column='1'/>
+ <return type-id='type-id-38'/>
+ </function-decl>
+ <function-decl name='PyLong_AsSize_t' mangled-name='PyLong_AsSize_t' filepath='../gpshead/Objects/longobject.c' line='616' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsSize_t'>
+ <parameter type-id='type-id-52' name='vv' filepath='../gpshead/Objects/longobject.c' line='616' column='1'/>
+ <return type-id='type-id-62'/>
+ </function-decl>
+ <function-decl name='PyLong_AsUnsignedLong' mangled-name='PyLong_AsUnsignedLong' filepath='../gpshead/Objects/longobject.c' line='572' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsUnsignedLong'>
+ <parameter type-id='type-id-52' name='vv' filepath='../gpshead/Objects/longobject.c' line='572' column='1'/>
+ <return type-id='type-id-38'/>
+ </function-decl>
+ <function-decl name='PyLong_AsSsize_t' mangled-name='PyLong_AsSsize_t' filepath='../gpshead/Objects/longobject.c' line='517' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsSsize_t'>
+ <parameter type-id='type-id-52' name='vv' filepath='../gpshead/Objects/longobject.c' line='517' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_PyLong_AsInt' mangled-name='_PyLong_AsInt' filepath='../gpshead/Objects/longobject.c' line='499' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_AsInt'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/abstract.c' line='276' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyLong_AsLong' mangled-name='PyLong_AsLong' filepath='../gpshead/Objects/longobject.c' line='482' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLong'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/longobject.c' line='482' column='1'/>
+ <return type-id='type-id-31'/>
+ </function-decl>
+ <function-decl name='PyLong_AsLongAndOverflow' mangled-name='PyLong_AsLongAndOverflow' filepath='../gpshead/Objects/longobject.c' line='403' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLongAndOverflow'>
+ <parameter type-id='type-id-52' name='vv' filepath='../gpshead/Objects/longobject.c' line='403' column='1'/>
+ <parameter type-id='type-id-18' name='overflow' filepath='../gpshead/Objects/longobject.c' line='403' column='1'/>
+ <return type-id='type-id-31'/>
+ </function-decl>
+ <function-decl name='PyLong_FromDouble' mangled-name='PyLong_FromDouble' filepath='../gpshead/Objects/longobject.c' line='341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromDouble'>
+ <parameter type-id='type-id-278' name='dval' filepath='../gpshead/Objects/longobject.c' line='341' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyLong_FromUnsignedLong' mangled-name='PyLong_FromUnsignedLong' filepath='../gpshead/Objects/longobject.c' line='313' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromUnsignedLong'>
+ <parameter type-id='type-id-38' name='ival' filepath='../gpshead/Objects/longobject.c' line='313' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyLong_FromLong' mangled-name='PyLong_FromLong' filepath='../gpshead/Objects/longobject.c' line='243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromLong'>
+ <parameter type-id='type-id-31' name='ival' filepath='../gpshead/Objects/longobject.c' line='243' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyLong_Copy' mangled-name='_PyLong_Copy' filepath='../gpshead/Objects/longobject.c' line='218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Copy'>
+ <parameter type-id='type-id-312' name='src' filepath='../gpshead/Objects/longobject.c' line='218' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyLong_New' mangled-name='_PyLong_New' filepath='../gpshead/Objects/longobject.c' line='195' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_New'>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/longobject.c' line='195' column='1'/>
+ <return type-id='type-id-312'/>
+ </function-decl>
+ <function-decl name='_PyLong_FromNbInt' mangled-name='_PyLong_FromNbInt' filepath='../gpshead/Objects/longobject.c' line='144' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromNbInt'>
+ <parameter type-id='type-id-52' name='integral' filepath='../gpshead/Objects/longobject.c' line='144' column='1'/>
+ <return type-id='type-id-312'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/dictobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyDict_Type' type-id='type-id-245' mangled-name='PyDict_Type' visibility='default' filepath='../gpshead/Include/dictobject.h' line='50' column='1' elf-symbol-id='PyDict_Type'/>
+ <var-decl name='PyDictIterKey_Type' type-id='type-id-245' mangled-name='PyDictIterKey_Type' visibility='default' filepath='../gpshead/Include/dictobject.h' line='51' column='1' elf-symbol-id='PyDictIterKey_Type'/>
+ <var-decl name='PyDictIterValue_Type' type-id='type-id-245' mangled-name='PyDictIterValue_Type' visibility='default' filepath='../gpshead/Include/dictobject.h' line='52' column='1' elf-symbol-id='PyDictIterValue_Type'/>
+ <var-decl name='PyDictIterItem_Type' type-id='type-id-245' mangled-name='PyDictIterItem_Type' visibility='default' filepath='../gpshead/Include/dictobject.h' line='53' column='1' elf-symbol-id='PyDictIterItem_Type'/>
+ <var-decl name='PyDictKeys_Type' type-id='type-id-245' mangled-name='PyDictKeys_Type' visibility='default' filepath='../gpshead/Include/dictobject.h' line='54' column='1' elf-symbol-id='PyDictKeys_Type'/>
+ <var-decl name='PyDictItems_Type' type-id='type-id-245' mangled-name='PyDictItems_Type' visibility='default' filepath='../gpshead/Include/dictobject.h' line='55' column='1' elf-symbol-id='PyDictItems_Type'/>
+ <var-decl name='PyDictValues_Type' type-id='type-id-245' mangled-name='PyDictValues_Type' visibility='default' filepath='../gpshead/Include/dictobject.h' line='56' column='1' elf-symbol-id='PyDictValues_Type'/>
+ <class-decl name='_dictkeysobject' size-in-bits='320' is-struct='yes' visibility='default' filepath='../gpshead/Objects/dict-common.h' line='22' column='1' id='type-id-321'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='dk_refcnt' type-id='type-id-34' visibility='default' filepath='../gpshead/Objects/dict-common.h' line='23' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='dk_size' type-id='type-id-34' visibility='default' filepath='../gpshead/Objects/dict-common.h' line='26' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='dk_lookup' type-id='type-id-322' visibility='default' filepath='../gpshead/Objects/dict-common.h' line='41' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='dk_usable' type-id='type-id-34' visibility='default' filepath='../gpshead/Objects/dict-common.h' line='44' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='dk_nentries' type-id='type-id-34' visibility='default' filepath='../gpshead/Objects/dict-common.h' line='47' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='dk_indices' type-id='type-id-253' visibility='default' filepath='../gpshead/Objects/dict-common.h' line='62' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='384' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-323' visibility='default' filepath='../gpshead/Include/dictobject.h' line='23' column='1' id='type-id-324'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-103' visibility='default' filepath='../gpshead/Include/dictobject.h' line='24' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='ma_used' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/dictobject.h' line='27' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='ma_version_tag' type-id='type-id-57' visibility='default' filepath='../gpshead/Include/dictobject.h' line='31' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='ma_keys' type-id='type-id-325' visibility='default' filepath='../gpshead/Include/dictobject.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='ma_values' type-id='type-id-259' visibility='default' filepath='../gpshead/Include/dictobject.h' line='40' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyDictKeysObject' type-id='type-id-321' filepath='../gpshead/Include/dictobject.h' line='18' column='1' id='type-id-326'/>
+ <pointer-type-def type-id='type-id-326' size-in-bits='64' id='type-id-325'/>
+ <typedef-decl name='PyDictObject' type-id='type-id-324' filepath='../gpshead/Include/dictobject.h' line='41' column='1' id='type-id-323'/>
+ <pointer-type-def type-id='type-id-323' size-in-bits='64' id='type-id-327'/>
+ <pointer-type-def type-id='type-id-328' size-in-bits='64' id='type-id-329'/>
+ <typedef-decl name='dict_lookup_func' type-id='type-id-329' filepath='../gpshead/Objects/dict-common.h' line='14' column='1' id='type-id-322'/>
+ <function-decl name='_PyDictKeys_DecRef' mangled-name='_PyDictKeys_DecRef' filepath='../gpshead/Objects/dictobject.c' line='4382' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDictKeys_DecRef'>
+ <parameter type-id='type-id-325' name='keys' filepath='../gpshead/Objects/dictobject.c' line='4382' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyObjectDict_SetItem' mangled-name='_PyObjectDict_SetItem' filepath='../gpshead/Objects/dictobject.c' line='4306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObjectDict_SetItem'>
+ <parameter type-id='type-id-279' name='tp' filepath='../gpshead/Objects/dictobject.c' line='4306' column='1'/>
+ <parameter type-id='type-id-259' name='dictptr' filepath='../gpshead/Objects/dictobject.c' line='4306' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='4307' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/dictobject.c' line='4307' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_GenericGetDict' mangled-name='PyObject_GenericGetDict' filepath='../gpshead/Objects/dictobject.c' line='4282' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericGetDict'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/dictobject.c' line='4282' column='1'/>
+ <parameter type-id='type-id-56' name='context' filepath='../gpshead/Objects/dictobject.c' line='4282' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyDict_NewKeysForClass' mangled-name='_PyDict_NewKeysForClass' filepath='../gpshead/Objects/dictobject.c' line='4269' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_NewKeysForClass'>
+ <return type-id='type-id-325'/>
+ </function-decl>
+ <function-decl name='_PyDictView_Intersect' mangled-name='_PyDictView_Intersect' filepath='../gpshead/Objects/dictobject.c' line='3934' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDictView_Intersect'>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/dictobject.c' line='3934' column='1'/>
+ <parameter type-id='type-id-52' name='other' filepath='../gpshead/Objects/dictobject.c' line='3934' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyDictView_New' mangled-name='_PyDictView_New' filepath='../gpshead/Objects/dictobject.c' line='3743' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDictView_New'>
+ <parameter type-id='type-id-52' name='dict' filepath='../gpshead/Objects/dictobject.c' line='3743' column='1'/>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/dictobject.c' line='3743' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyDict_DelItemString' mangled-name='PyDict_DelItemString' filepath='../gpshead/Objects/dictobject.c' line='3308' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_DelItemString'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='255' column='1'/>
+ <parameter type-id='type-id-3' name='key' filepath='../gpshead/Objects/abstract.c' line='255' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-267' size-in-bits='64' id='type-id-330'/>
+ <function-decl name='_PyDict_DelItemId' mangled-name='_PyDict_DelItemId' filepath='../gpshead/Objects/dictobject.c' line='3299' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DelItemId'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/dictobject.c' line='3299' column='1'/>
+ <parameter type-id='type-id-330' name='key' filepath='../gpshead/Objects/dictobject.c' line='3299' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyDict_SetItemString' mangled-name='PyDict_SetItemString' filepath='../gpshead/Objects/dictobject.c' line='3285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetItemString'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2117' column='1'/>
+ <parameter type-id='type-id-3' name='key' filepath='../gpshead/Objects/abstract.c' line='2117' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/abstract.c' line='2117' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyDict_SetItemId' mangled-name='_PyDict_SetItemId' filepath='../gpshead/Objects/dictobject.c' line='3275' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SetItemId'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/dictobject.c' line='3275' column='1'/>
+ <parameter type-id='type-id-266' name='key' filepath='../gpshead/Objects/dictobject.c' line='3275' column='1'/>
+ <parameter type-id='type-id-52' name='item' filepath='../gpshead/Objects/dictobject.c' line='3275' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyDict_GetItemString' mangled-name='PyDict_GetItemString' filepath='../gpshead/Objects/dictobject.c' line='3261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItemString'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2100' column='1'/>
+ <parameter type-id='type-id-3' name='key' filepath='../gpshead/Objects/abstract.c' line='2100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyDict_GetItemId' mangled-name='_PyDict_GetItemId' filepath='../gpshead/Objects/dictobject.c' line='3247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItemId'>
+ <parameter type-id='type-id-52' name='dp' filepath='../gpshead/Objects/dictobject.c' line='3247' column='1'/>
+ <parameter type-id='type-id-266' name='key' filepath='../gpshead/Objects/dictobject.c' line='3247' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyDict_Contains' mangled-name='_PyDict_Contains' filepath='../gpshead/Objects/dictobject.c' line='3127' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Contains'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='3127' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='3127' column='1'/>
+ <parameter type-id='type-id-164' name='hash' filepath='../gpshead/Objects/dictobject.c' line='3127' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyDict_Contains' mangled-name='PyDict_Contains' filepath='../gpshead/Objects/dictobject.c' line='3106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Contains'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='3106' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='3106' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyDict_KeysSize' mangled-name='_PyDict_KeysSize' filepath='../gpshead/Objects/dictobject.c' line='3026' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_KeysSize'>
+ <parameter type-id='type-id-325' name='keys' filepath='../gpshead/Objects/dictobject.c' line='3026' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_PyDict_SizeOf' mangled-name='_PyDict_SizeOf' filepath='../gpshead/Objects/dictobject.c' line='3006' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SizeOf'>
+ <parameter type-id='type-id-327' name='mp' filepath='../gpshead/Objects/dictobject.c' line='3006' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyDict_SetDefault' mangled-name='PyDict_SetDefault' filepath='../gpshead/Objects/dictobject.c' line='2782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetDefault'>
+ <parameter type-id='type-id-52' name='d' filepath='../gpshead/Objects/dictobject.c' line='2782' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='2782' column='1'/>
+ <parameter type-id='type-id-52' name='defaultobj' filepath='../gpshead/Objects/dictobject.c' line='2782' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyDict_Items' mangled-name='PyDict_Items' filepath='../gpshead/Objects/dictobject.c' line='2633' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Items'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyDict_Values' mangled-name='PyDict_Values' filepath='../gpshead/Objects/dictobject.c' line='2623' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Values'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyDict_Keys' mangled-name='PyDict_Keys' filepath='../gpshead/Objects/dictobject.c' line='2613' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Keys'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyDict_Size' mangled-name='PyDict_Size' filepath='../gpshead/Objects/dictobject.c' line='2603' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Size'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2093' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyDict_Copy' mangled-name='PyDict_Copy' filepath='../gpshead/Objects/dictobject.c' line='2529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Copy'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/dictobject.c' line='2529' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyDict_MergeEx' mangled-name='_PyDict_MergeEx' filepath='../gpshead/Objects/dictobject.c' line='2517' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_MergeEx'>
+ <parameter type-id='type-id-52' name='a' filepath='../gpshead/Objects/dictobject.c' line='2517' column='1'/>
+ <parameter type-id='type-id-52' name='b' filepath='../gpshead/Objects/dictobject.c' line='2517' column='1'/>
+ <parameter type-id='type-id-7' name='override' filepath='../gpshead/Objects/dictobject.c' line='2517' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyDict_Merge' mangled-name='PyDict_Merge' filepath='../gpshead/Objects/dictobject.c' line='2510' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Merge'>
+ <parameter type-id='type-id-52' name='a' filepath='../gpshead/Objects/dictobject.c' line='2517' column='1'/>
+ <parameter type-id='type-id-52' name='b' filepath='../gpshead/Objects/dictobject.c' line='2517' column='1'/>
+ <parameter type-id='type-id-7' name='override' filepath='../gpshead/Objects/dictobject.c' line='2517' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyDict_Update' mangled-name='PyDict_Update' filepath='../gpshead/Objects/dictobject.c' line='2504' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Update'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyDict_MergeFromSeq2' mangled-name='PyDict_MergeFromSeq2' filepath='../gpshead/Objects/dictobject.c' line='2288' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_MergeFromSeq2'>
+ <parameter type-id='type-id-52' name='d' filepath='../gpshead/Objects/dictobject.c' line='2288' column='1'/>
+ <parameter type-id='type-id-52' name='seq2' filepath='../gpshead/Objects/dictobject.c' line='2288' column='1'/>
+ <parameter type-id='type-id-7' name='override' filepath='../gpshead/Objects/dictobject.c' line='2288' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyDict_FromKeys' mangled-name='_PyDict_FromKeys' filepath='../gpshead/Objects/dictobject.c' line='1804' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_FromKeys'>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/dictobject.c' line='1804' column='1'/>
+ <parameter type-id='type-id-52' name='iterable' filepath='../gpshead/Objects/dictobject.c' line='1804' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/dictobject.c' line='1804' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyDict_Pop' mangled-name='_PyDict_Pop' filepath='../gpshead/Objects/dictobject.c' line='1781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Pop'>
+ <parameter type-id='type-id-52' name='dict' filepath='../gpshead/Objects/dictobject.c' line='1781' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='1781' column='1'/>
+ <parameter type-id='type-id-52' name='deflt' filepath='../gpshead/Objects/dictobject.c' line='1781' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyDict_Pop_KnownHash' mangled-name='_PyDict_Pop_KnownHash' filepath='../gpshead/Objects/dictobject.c' line='1724' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Pop_KnownHash'>
+ <parameter type-id='type-id-52' name='dict' filepath='../gpshead/Objects/dictobject.c' line='1724' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='1724' column='1'/>
+ <parameter type-id='type-id-164' name='hash' filepath='../gpshead/Objects/dictobject.c' line='1724' column='1'/>
+ <parameter type-id='type-id-52' name='deflt' filepath='../gpshead/Objects/dictobject.c' line='1724' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyDict_Next' mangled-name='PyDict_Next' filepath='../gpshead/Objects/dictobject.c' line='1717' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Next'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1717' column='1'/>
+ <parameter type-id='type-id-172' name='ppos' filepath='../gpshead/Objects/dictobject.c' line='1717' column='1'/>
+ <parameter type-id='type-id-259' name='pkey' filepath='../gpshead/Objects/dictobject.c' line='1717' column='1'/>
+ <parameter type-id='type-id-259' name='pvalue' filepath='../gpshead/Objects/dictobject.c' line='1717' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-164' size-in-bits='64' id='type-id-331'/>
+ <function-decl name='_PyDict_Next' mangled-name='_PyDict_Next' filepath='../gpshead/Objects/dictobject.c' line='1655' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Next'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1655' column='1'/>
+ <parameter type-id='type-id-172' name='ppos' filepath='../gpshead/Objects/dictobject.c' line='1655' column='1'/>
+ <parameter type-id='type-id-259' name='pkey' filepath='../gpshead/Objects/dictobject.c' line='1655' column='1'/>
+ <parameter type-id='type-id-259' name='pvalue' filepath='../gpshead/Objects/dictobject.c' line='1656' column='1'/>
+ <parameter type-id='type-id-331' name='phash' filepath='../gpshead/Objects/dictobject.c' line='1656' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyDict_Clear' mangled-name='PyDict_Clear' filepath='../gpshead/Objects/dictobject.c' line='1614' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Clear'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1614' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyDict_DelItemIf' mangled-name='_PyDict_DelItemIf' filepath='../gpshead/Objects/dictobject.c' line='1564' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DelItemIf'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1564' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='1564' column='1'/>
+ <parameter type-id='type-id-144' name='predicate' filepath='../gpshead/Objects/dictobject.c' line='1565' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyDict_DelItem_KnownHash' mangled-name='_PyDict_DelItem_KnownHash' filepath='../gpshead/Objects/dictobject.c' line='1526' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DelItem_KnownHash'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='3127' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='3127' column='1'/>
+ <parameter type-id='type-id-164' name='hash' filepath='../gpshead/Objects/dictobject.c' line='3127' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyDict_DelItem' mangled-name='PyDict_DelItem' filepath='../gpshead/Objects/dictobject.c' line='1511' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_DelItem'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1511' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='1511' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyDict_SetItem_KnownHash' mangled-name='_PyDict_SetItem_KnownHash' filepath='../gpshead/Objects/dictobject.c' line='1467' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SetItem_KnownHash'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1467' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='1467' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/dictobject.c' line='1467' column='1'/>
+ <parameter type-id='type-id-164' name='hash' filepath='../gpshead/Objects/dictobject.c' line='1468' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyDict_SetItem' mangled-name='PyDict_SetItem' filepath='../gpshead/Objects/dictobject.c' line='1443' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetItem'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1443' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='1443' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/dictobject.c' line='1443' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyDict_LoadGlobal' mangled-name='_PyDict_LoadGlobal' filepath='../gpshead/Objects/dictobject.c' line='1408' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_LoadGlobal'>
+ <parameter type-id='type-id-327' name='globals' filepath='../gpshead/Objects/dictobject.c' line='1408' column='1'/>
+ <parameter type-id='type-id-327' name='builtins' filepath='../gpshead/Objects/dictobject.c' line='1408' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='1408' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyDict_GetItemIdWithError' mangled-name='_PyDict_GetItemIdWithError' filepath='../gpshead/Objects/dictobject.c' line='1391' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItemIdWithError'>
+ <parameter type-id='type-id-52' name='dp' filepath='../gpshead/Objects/dictobject.c' line='3247' column='1'/>
+ <parameter type-id='type-id-266' name='key' filepath='../gpshead/Objects/dictobject.c' line='3247' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyDict_GetItemWithError' mangled-name='PyDict_GetItemWithError' filepath='../gpshead/Objects/dictobject.c' line='1364' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItemWithError'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1364' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='1364' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyDict_GetItem_KnownHash' mangled-name='_PyDict_GetItem_KnownHash' filepath='../gpshead/Objects/dictobject.c' line='1341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItem_KnownHash'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1341' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='1341' column='1'/>
+ <parameter type-id='type-id-164' name='hash' filepath='../gpshead/Objects/dictobject.c' line='1341' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyDict_GetItem' mangled-name='PyDict_GetItem' filepath='../gpshead/Objects/dictobject.c' line='1290' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItem'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1290' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='1290' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyDict_NewPresized' mangled-name='_PyDict_NewPresized' filepath='../gpshead/Objects/dictobject.c' line='1251' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_NewPresized'>
+ <parameter type-id='type-id-34' name='minused' filepath='../gpshead/Objects/dictobject.c' line='1251' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyDict_MaybeUntrack' mangled-name='_PyDict_MaybeUntrack' filepath='../gpshead/Objects/dictobject.c' line='936' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_MaybeUntrack'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1614' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyDict_HasOnlyStringKeys' mangled-name='_PyDict_HasOnlyStringKeys' filepath='../gpshead/Objects/dictobject.c' line='911' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_HasOnlyStringKeys'>
+ <parameter type-id='type-id-52' name='dict' filepath='../gpshead/Objects/dictobject.c' line='911' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyDict_New' mangled-name='PyDict_New' filepath='../gpshead/Objects/dictobject.c' line='672' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_New'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyDict_Fini' mangled-name='PyDict_Fini' filepath='../gpshead/Objects/dictobject.c' line='284' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyDict_DebugMallocStats' mangled-name='_PyDict_DebugMallocStats' filepath='../gpshead/Objects/dictobject.c' line='276' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DebugMallocStats'>
+ <parameter type-id='type-id-124' name='out' filepath='../gpshead/Objects/classobject.c' line='392' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyDict_ClearFreeList' mangled-name='PyDict_ClearFreeList' filepath='../gpshead/Objects/dictobject.c' line='259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_ClearFreeList'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-328'>
+ <parameter type-id='type-id-327'/>
+ <parameter type-id='type-id-52'/>
+ <parameter type-id='type-id-164'/>
+ <parameter type-id='type-id-259'/>
+ <return type-id='type-id-34'/>
+ </function-type>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/odictobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyODict_Type' type-id='type-id-245' mangled-name='PyODict_Type' visibility='default' filepath='../gpshead/Include/odictobject.h' line='15' column='1' elf-symbol-id='PyODict_Type'/>
+ <var-decl name='PyODictIter_Type' type-id='type-id-245' mangled-name='PyODictIter_Type' visibility='default' filepath='../gpshead/Include/odictobject.h' line='16' column='1' elf-symbol-id='PyODictIter_Type'/>
+ <var-decl name='PyODictKeys_Type' type-id='type-id-245' mangled-name='PyODictKeys_Type' visibility='default' filepath='../gpshead/Include/odictobject.h' line='17' column='1' elf-symbol-id='PyODictKeys_Type'/>
+ <var-decl name='PyODictItems_Type' type-id='type-id-245' mangled-name='PyODictItems_Type' visibility='default' filepath='../gpshead/Include/odictobject.h' line='18' column='1' elf-symbol-id='PyODictItems_Type'/>
+ <var-decl name='PyODictValues_Type' type-id='type-id-245' mangled-name='PyODictValues_Type' visibility='default' filepath='../gpshead/Include/odictobject.h' line='19' column='1' elf-symbol-id='PyODictValues_Type'/>
+ <function-decl name='PyODict_DelItem' mangled-name='PyODict_DelItem' filepath='../gpshead/Objects/odictobject.c' line='1637' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_DelItem'>
+ <parameter type-id='type-id-52' name='seq' filepath='../gpshead/Objects/abstract.c' line='2037' column='1'/>
+ <parameter type-id='type-id-52' name='ob' filepath='../gpshead/Objects/abstract.c' line='2037' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyODict_SetItem' mangled-name='PyODict_SetItem' filepath='../gpshead/Objects/odictobject.c' line='1628' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_SetItem'>
+ <parameter type-id='type-id-52' name='od' filepath='../gpshead/Objects/odictobject.c' line='1628' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/odictobject.c' line='1628' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/odictobject.c' line='1628' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyODict_New' mangled-name='PyODict_New' filepath='../gpshead/Objects/odictobject.c' line='1604' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_New'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/memoryobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_PyManagedBuffer_Type' type-id='type-id-245' mangled-name='_PyManagedBuffer_Type' visibility='default' filepath='../gpshead/Include/memoryobject.h' line='10' column='1' elf-symbol-id='_PyManagedBuffer_Type'/>
+ <var-decl name='PyMemoryView_Type' type-id='type-id-245' mangled-name='PyMemoryView_Type' visibility='default' filepath='../gpshead/Include/memoryobject.h' line='12' column='1' elf-symbol-id='PyMemoryView_Type'/>
+ <function-decl name='PyBuffer_ToContiguous' mangled-name='PyBuffer_ToContiguous' filepath='../gpshead/Objects/memoryobject.c' line='983' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_ToContiguous'>
+ <parameter type-id='type-id-56' name='buf' filepath='../gpshead/Objects/memoryobject.c' line='983' column='1'/>
+ <parameter type-id='type-id-174' name='src' filepath='../gpshead/Objects/memoryobject.c' line='983' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/memoryobject.c' line='983' column='1'/>
+ <parameter type-id='type-id-1' name='order' filepath='../gpshead/Objects/memoryobject.c' line='983' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyMemoryView_GetContiguous' mangled-name='PyMemoryView_GetContiguous' filepath='../gpshead/Objects/memoryobject.c' line='920' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMemoryView_GetContiguous'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/memoryobject.c' line='920' column='1'/>
+ <parameter type-id='type-id-7' name='buffertype' filepath='../gpshead/Objects/memoryobject.c' line='920' column='1'/>
+ <parameter type-id='type-id-1' name='order' filepath='../gpshead/Objects/memoryobject.c' line='920' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMemoryView_FromObject' mangled-name='PyMemoryView_FromObject' filepath='../gpshead/Objects/memoryobject.c' line='788' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMemoryView_FromObject'>
+ <parameter type-id='type-id-52' name='item' filepath='../gpshead/Objects/abstract.c' line='1255' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMemoryView_FromBuffer' mangled-name='PyMemoryView_FromBuffer' filepath='../gpshead/Objects/memoryobject.c' line='758' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMemoryView_FromBuffer'>
+ <parameter type-id='type-id-174' name='info' filepath='../gpshead/Objects/memoryobject.c' line='758' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMemoryView_FromMemory' mangled-name='PyMemoryView_FromMemory' filepath='../gpshead/Objects/memoryobject.c' line='729' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMemoryView_FromMemory'>
+ <parameter type-id='type-id-12' name='mem' filepath='../gpshead/Objects/memoryobject.c' line='729' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/memoryobject.c' line='729' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Objects/memoryobject.c' line='729' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/methodobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyCFunction_Type' type-id='type-id-245' mangled-name='PyCFunction_Type' visibility='default' filepath='../gpshead/Include/methodobject.h' line='14' column='1' elf-symbol-id='PyCFunction_Type'/>
+ <function-decl name='_PyCFunction_DebugMallocStats' mangled-name='_PyCFunction_DebugMallocStats' filepath='../gpshead/Objects/methodobject.c' line='328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCFunction_DebugMallocStats'>
+ <parameter type-id='type-id-124' name='out' filepath='../gpshead/Objects/classobject.c' line='392' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyCFunction_Fini' mangled-name='PyCFunction_Fini' filepath='../gpshead/Objects/methodobject.c' line='321' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyCFunction_ClearFreeList' mangled-name='PyCFunction_ClearFreeList' filepath='../gpshead/Objects/methodobject.c' line='306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_ClearFreeList'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyCFunction_GetFlags' mangled-name='PyCFunction_GetFlags' filepath='../gpshead/Objects/methodobject.c' line='73' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_GetFlags'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2064' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyCFunction_GetSelf' mangled-name='PyCFunction_GetSelf' filepath='../gpshead/Objects/methodobject.c' line='63' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_GetSelf'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCFunction_GetFunction' mangled-name='PyCFunction_GetFunction' filepath='../gpshead/Objects/methodobject.c' line='53' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_GetFunction'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/methodobject.c' line='53' column='1'/>
+ <return type-id='type-id-187'/>
+ </function-decl>
+ <function-decl name='PyCFunction_NewEx' mangled-name='PyCFunction_NewEx' filepath='../gpshead/Objects/methodobject.c' line='28' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_NewEx'>
+ <parameter type-id='type-id-269' name='ml' filepath='../gpshead/Objects/methodobject.c' line='28' column='1'/>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/methodobject.c' line='28' column='1'/>
+ <parameter type-id='type-id-52' name='module' filepath='../gpshead/Objects/methodobject.c' line='28' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCFunction_New' mangled-name='PyCFunction_New' filepath='../gpshead/Objects/methodobject.c' line='22' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_New'>
+ <parameter type-id='type-id-269' name='ml' filepath='../gpshead/Objects/methodobject.c' line='22' column='1'/>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/methodobject.c' line='22' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/moduleobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyModuleDef_Type' type-id='type-id-245' mangled-name='PyModuleDef_Type' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='40' column='1' elf-symbol-id='PyModuleDef_Type'/>
+ <var-decl name='PyModule_Type' type-id='type-id-245' mangled-name='PyModule_Type' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='10' column='1' elf-symbol-id='PyModule_Type'/>
+ <function-decl name='_PyModule_ClearDict' mangled-name='_PyModule_ClearDict' filepath='../gpshead/Objects/moduleobject.c' line='581' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyModule_ClearDict'>
+ <parameter type-id='type-id-52' name='d' filepath='../gpshead/Objects/moduleobject.c' line='581' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyModule_Clear' mangled-name='_PyModule_Clear' filepath='../gpshead/Objects/moduleobject.c' line='573' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyModule_Clear'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Objects/moduleobject.c' line='573' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyModule_GetState' mangled-name='PyModule_GetState' filepath='../gpshead/Objects/moduleobject.c' line='563' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetState'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Objects/moduleobject.c' line='563' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <class-decl name='PyModuleDef' size-in-bits='832' is-struct='yes' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='74' column='1' id='type-id-332'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='m_base' type-id='type-id-333' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='75' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='m_name' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='76' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='m_doc' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='77' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='m_size' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='78' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='m_methods' type-id='type-id-269' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='79' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='m_slots' type-id='type-id-334' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='80' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='640'>
+ <var-decl name='m_traverse' type-id='type-id-87' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='81' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='704'>
+ <var-decl name='m_clear' type-id='type-id-88' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='82' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='768'>
+ <var-decl name='m_free' type-id='type-id-100' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='83' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='PyModuleDef_Base' size-in-bits='320' is-struct='yes' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='43' column='1' id='type-id-335'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-103' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='44' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='m_init' type-id='type-id-336' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='45' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='m_index' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='46' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='m_copy' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='47' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-337' size-in-bits='64' id='type-id-336'/>
+ <typedef-decl name='PyModuleDef_Base' type-id='type-id-335' filepath='../gpshead/Include/moduleobject.h' line='48' column='1' id='type-id-333'/>
+ <class-decl name='PyModuleDef_Slot' size-in-bits='128' is-struct='yes' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='60' column='1' id='type-id-338'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='slot' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='61' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='value' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/moduleobject.h' line='62' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-338' size-in-bits='64' id='type-id-334'/>
+ <typedef-decl name='PyModuleDef' type-id='type-id-332' filepath='../gpshead/Include/moduleobject.h' line='84' column='1' id='type-id-339'/>
+ <pointer-type-def type-id='type-id-339' size-in-bits='64' id='type-id-340'/>
+ <function-decl name='PyModule_GetDef' mangled-name='PyModule_GetDef' filepath='../gpshead/Objects/moduleobject.c' line='553' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetDef'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Objects/moduleobject.c' line='553' column='1'/>
+ <return type-id='type-id-340'/>
+ </function-decl>
+ <function-decl name='PyModule_GetFilename' mangled-name='PyModule_GetFilename' filepath='../gpshead/Objects/moduleobject.c' line='540' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetFilename'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Objects/moduleobject.c' line='540' column='1'/>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='PyModule_GetFilenameObject' mangled-name='PyModule_GetFilenameObject' filepath='../gpshead/Objects/moduleobject.c' line='518' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetFilenameObject'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Objects/moduleobject.c' line='518' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyModule_GetName' mangled-name='PyModule_GetName' filepath='../gpshead/Objects/moduleobject.c' line='508' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetName'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Objects/moduleobject.c' line='508' column='1'/>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='PyModule_GetNameObject' mangled-name='PyModule_GetNameObject' filepath='../gpshead/Objects/moduleobject.c' line='486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetNameObject'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Objects/moduleobject.c' line='518' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyModule_GetDict' mangled-name='PyModule_GetDict' filepath='../gpshead/Objects/moduleobject.c' line='473' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetDict'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyModule_SetDocString' mangled-name='PyModule_SetDocString' filepath='../gpshead/Objects/moduleobject.c' line='458' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_SetDocString'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Objects/moduleobject.c' line='458' column='1'/>
+ <parameter type-id='type-id-3' name='doc' filepath='../gpshead/Objects/moduleobject.c' line='458' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyModule_AddFunctions' mangled-name='PyModule_AddFunctions' filepath='../gpshead/Objects/moduleobject.c' line='444' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddFunctions'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Objects/moduleobject.c' line='444' column='1'/>
+ <parameter type-id='type-id-269' name='functions' filepath='../gpshead/Objects/moduleobject.c' line='444' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyModule_ExecDef' mangled-name='PyModule_ExecDef' filepath='../gpshead/Objects/moduleobject.c' line='379' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_ExecDef'>
+ <parameter type-id='type-id-52' name='module' filepath='../gpshead/Objects/moduleobject.c' line='379' column='1'/>
+ <parameter type-id='type-id-340' name='def' filepath='../gpshead/Objects/moduleobject.c' line='379' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyModule_FromDefAndSpec2' mangled-name='PyModule_FromDefAndSpec2' filepath='../gpshead/Objects/moduleobject.c' line='245' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_FromDefAndSpec2'>
+ <parameter type-id='type-id-340' name='def' filepath='../gpshead/Objects/moduleobject.c' line='245' column='1'/>
+ <parameter type-id='type-id-52' name='spec' filepath='../gpshead/Objects/moduleobject.c' line='245' column='1'/>
+ <parameter type-id='type-id-7' name='module_api_version' filepath='../gpshead/Objects/moduleobject.c' line='245' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyModule_CreateInitialized' mangled-name='_PyModule_CreateInitialized' filepath='../gpshead/Objects/moduleobject.c' line='182' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyModule_CreateInitialized'>
+ <parameter type-id='type-id-340' name='module' filepath='../gpshead/Objects/moduleobject.c' line='182' column='1'/>
+ <parameter type-id='type-id-7' name='module_api_version' filepath='../gpshead/Objects/moduleobject.c' line='182' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyModule_Create2' mangled-name='PyModule_Create2' filepath='../gpshead/Objects/moduleobject.c' line='174' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_Create2'>
+ <parameter type-id='type-id-340' name='module' filepath='../gpshead/Objects/moduleobject.c' line='174' column='1'/>
+ <parameter type-id='type-id-7' name='module_api_version' filepath='../gpshead/Objects/moduleobject.c' line='174' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyModule_New' mangled-name='PyModule_New' filepath='../gpshead/Objects/moduleobject.c' line='114' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_New'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/moduleobject.c' line='114' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyModule_NewObject' mangled-name='PyModule_NewObject' filepath='../gpshead/Objects/moduleobject.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_NewObject'>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/moduleobject.c' line='92' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyModuleDef_Init' mangled-name='PyModuleDef_Init' filepath='../gpshead/Objects/moduleobject.c' line='44' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModuleDef_Init'>
+ <parameter type-id='type-id-340' name='def' filepath='../gpshead/Objects/moduleobject.c' line='44' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-337'>
+ <return type-id='type-id-52'/>
+ </function-type>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/namespaceobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_PyNamespace_Type' type-id='type-id-245' mangled-name='_PyNamespace_Type' visibility='default' filepath='../gpshead/Include/namespaceobject.h' line='11' column='1' elf-symbol-id='_PyNamespace_Type'/>
+ <function-decl name='_PyNamespace_New' mangled-name='_PyNamespace_New' filepath='../gpshead/Objects/namespaceobject.c' line='246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyNamespace_New'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1434' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/object.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+
+ <array-type-def dimensions='1' type-id='type-id-7' size-in-bits='infinite' id='type-id-341'>
+ <subrange length='infinite' id='type-id-226'/>
+
+ </array-type-def>
+ <var-decl name='_Py_SwappedOp' type-id='type-id-341' mangled-name='_Py_SwappedOp' visibility='default' filepath='../gpshead/Include/object.h' line='968' column='1' elf-symbol-id='_Py_SwappedOp'/>
+ <var-decl name='_PyNone_Type' type-id='type-id-245' mangled-name='_PyNone_Type' visibility='default' filepath='../gpshead/Include/object.h' line='910' column='1' elf-symbol-id='_PyNone_Type'/>
+ <var-decl name='_Py_NoneStruct' type-id='type-id-103' mangled-name='_Py_NoneStruct' visibility='default' filepath='../gpshead/Include/object.h' line='920' column='1' elf-symbol-id='_Py_NoneStruct'/>
+ <var-decl name='_PyNotImplemented_Type' type-id='type-id-245' mangled-name='_PyNotImplemented_Type' visibility='default' filepath='../gpshead/Include/object.h' line='911' column='1' elf-symbol-id='_PyNotImplemented_Type'/>
+ <var-decl name='_Py_NotImplementedStruct' type-id='type-id-103' mangled-name='_Py_NotImplementedStruct' visibility='default' filepath='../gpshead/Include/object.h' line='930' column='1' elf-symbol-id='_Py_NotImplementedStruct'/>
+ <var-decl name='_Py_abstract_hack' type-id='type-id-152' mangled-name='_Py_abstract_hack' visibility='default' filepath='../gpshead/Objects/object.c' line='2039' column='1' elf-symbol-id='_Py_abstract_hack'/>
+ <function-decl name='_Py_Dealloc' mangled-name='_Py_Dealloc' filepath='../gpshead/Objects/object.c' line='2227' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Dealloc'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/object.c' line='2227' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyTrash_thread_destroy_chain' mangled-name='_PyTrash_thread_destroy_chain' filepath='../gpshead/Objects/object.c' line='2185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_thread_destroy_chain'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyTrash_destroy_chain' mangled-name='_PyTrash_destroy_chain' filepath='../gpshead/Objects/object.c' line='2161' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_destroy_chain'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyTrash_thread_deposit_object' mangled-name='_PyTrash_thread_deposit_object' filepath='../gpshead/Objects/object.c' line='2147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_thread_deposit_object'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/object.c' line='2147' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyTrash_deposit_object' mangled-name='_PyTrash_deposit_object' filepath='../gpshead/Objects/object.c' line='2136' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_deposit_object'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/object.c' line='2227' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_ReprLeave' mangled-name='Py_ReprLeave' filepath='../gpshead/Objects/object.c' line='2098' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_ReprLeave'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/object.c' line='2098' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_ReprEnter' mangled-name='Py_ReprEnter' filepath='../gpshead/Objects/object.c' line='2067' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_ReprEnter'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/fileobject.c' line='177' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyObject_DebugTypeStats' mangled-name='_PyObject_DebugTypeStats' filepath='../gpshead/Objects/object.c' line='2043' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_DebugTypeStats'>
+ <parameter type-id='type-id-124' name='out' filepath='../gpshead/Objects/classobject.c' line='392' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_ReadyTypes' mangled-name='_Py_ReadyTypes' filepath='../gpshead/Objects/object.c' line='1739' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ReadyTypes'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyObject_Dir' mangled-name='PyObject_Dir' filepath='../gpshead/Objects/object.c' line='1526' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Dir'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCallable_Check' mangled-name='PyCallable_Check' filepath='../gpshead/Objects/object.c' line='1454' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCallable_Check'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2064' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_Not' mangled-name='PyObject_Not' filepath='../gpshead/Objects/object.c' line='1442' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Not'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/listobject.c' line='2444' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_IsTrue' mangled-name='PyObject_IsTrue' filepath='../gpshead/Objects/object.c' line='1414' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IsTrue'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/listobject.c' line='2444' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_GenericSetDict' mangled-name='PyObject_GenericSetDict' filepath='../gpshead/Objects/object.c' line='1386' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericSetDict'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/object.c' line='1386' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/object.c' line='1386' column='1'/>
+ <parameter type-id='type-id-56' name='context' filepath='../gpshead/Objects/object.c' line='1386' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_GenericSetAttr' mangled-name='PyObject_GenericSetAttr' filepath='../gpshead/Objects/object.c' line='1380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericSetAttr'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/object.c' line='1380' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/object.c' line='1380' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/object.c' line='1380' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyObject_GenericSetAttrWithDict' mangled-name='_PyObject_GenericSetAttrWithDict' filepath='../gpshead/Objects/object.c' line='1313' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GenericSetAttrWithDict'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/object.c' line='1313' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/object.c' line='1313' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/object.c' line='1314' column='1'/>
+ <parameter type-id='type-id-52' name='dict' filepath='../gpshead/Objects/object.c' line='1314' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_GenericGetAttr' mangled-name='PyObject_GenericGetAttr' filepath='../gpshead/Objects/object.c' line='1307' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericGetAttr'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_GenericGetAttrWithDict' mangled-name='_PyObject_GenericGetAttrWithDict' filepath='../gpshead/Objects/object.c' line='1202' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GenericGetAttrWithDict'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/object.c' line='1202' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/object.c' line='1202' column='1'/>
+ <parameter type-id='type-id-52' name='dict' filepath='../gpshead/Objects/object.c' line='1203' column='1'/>
+ <parameter type-id='type-id-7' name='suppress' filepath='../gpshead/Objects/object.c' line='1203' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_GetMethod' mangled-name='_PyObject_GetMethod' filepath='../gpshead/Objects/object.c' line='1127' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetMethod'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/object.c' line='1127' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/object.c' line='1127' column='1'/>
+ <parameter type-id='type-id-259' name='method' filepath='../gpshead/Objects/object.c' line='1127' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyObject_NextNotImplemented' mangled-name='_PyObject_NextNotImplemented' filepath='../gpshead/Objects/object.c' line='1107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_NextNotImplemented'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_GetBuiltin' mangled-name='_PyObject_GetBuiltin' filepath='../gpshead/Objects/object.c' line='1086' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetBuiltin'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/object.c' line='1086' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_SelfIter' mangled-name='PyObject_SelfIter' filepath='../gpshead/Objects/object.c' line='1078' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SelfIter'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_GetDictPtr' mangled-name='_PyObject_GetDictPtr' filepath='../gpshead/Objects/object.c' line='1053' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetDictPtr'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/object.c' line='1053' column='1'/>
+ <return type-id='type-id-259'/>
+ </function-decl>
+ <function-decl name='PyObject_SetAttr' mangled-name='PyObject_SetAttr' filepath='../gpshead/Objects/object.c' line='1002' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetAttr'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='1002' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/object.c' line='1002' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/object.c' line='1002' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_HasAttr' mangled-name='PyObject_HasAttr' filepath='../gpshead/Objects/object.c' line='987' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_HasAttr'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2150' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/abstract.c' line='2150' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyObject_LookupAttrId' mangled-name='_PyObject_LookupAttrId' filepath='../gpshead/Objects/object.c' line='976' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_LookupAttrId'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='976' column='1'/>
+ <parameter type-id='type-id-330' name='name' filepath='../gpshead/Objects/object.c' line='976' column='1'/>
+ <parameter type-id='type-id-259' name='result' filepath='../gpshead/Objects/object.c' line='976' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyObject_LookupAttr' mangled-name='_PyObject_LookupAttr' filepath='../gpshead/Objects/object.c' line='927' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_LookupAttr'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='927' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/object.c' line='927' column='1'/>
+ <parameter type-id='type-id-259' name='result' filepath='../gpshead/Objects/object.c' line='927' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_GetAttr' mangled-name='PyObject_GetAttr' filepath='../gpshead/Objects/object.c' line='902' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetAttr'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1593' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_SetAttrId' mangled-name='_PyObject_SetAttrId' filepath='../gpshead/Objects/object.c' line='891' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_SetAttrId'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='891' column='1'/>
+ <parameter type-id='type-id-330' name='name' filepath='../gpshead/Objects/object.c' line='891' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/object.c' line='891' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyObject_HasAttrId' mangled-name='_PyObject_HasAttrId' filepath='../gpshead/Objects/object.c' line='880' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_HasAttrId'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='880' column='1'/>
+ <parameter type-id='type-id-330' name='name' filepath='../gpshead/Objects/object.c' line='880' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyObject_GetAttrId' mangled-name='_PyObject_GetAttrId' filepath='../gpshead/Objects/object.c' line='869' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetAttrId'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='869' column='1'/>
+ <parameter type-id='type-id-330' name='name' filepath='../gpshead/Objects/object.c' line='869' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_IsAbstract' mangled-name='_PyObject_IsAbstract' filepath='../gpshead/Objects/object.c' line='852' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_IsAbstract'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/object.c' line='852' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_SetAttrString' mangled-name='PyObject_SetAttrString' filepath='../gpshead/Objects/object.c' line='836' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetAttrString'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2117' column='1'/>
+ <parameter type-id='type-id-3' name='key' filepath='../gpshead/Objects/abstract.c' line='2117' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/abstract.c' line='2117' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_HasAttrString' mangled-name='PyObject_HasAttrString' filepath='../gpshead/Objects/object.c' line='824' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_HasAttrString'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2136' column='1'/>
+ <parameter type-id='type-id-3' name='key' filepath='../gpshead/Objects/abstract.c' line='2136' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_GetAttrString' mangled-name='PyObject_GetAttrString' filepath='../gpshead/Objects/object.c' line='809' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetAttrString'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2100' column='1'/>
+ <parameter type-id='type-id-3' name='key' filepath='../gpshead/Objects/abstract.c' line='2100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_Hash' mangled-name='PyObject_Hash' filepath='../gpshead/Objects/object.c' line='788' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Hash'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='788' column='1'/>
+ <return type-id='type-id-164'/>
+ </function-decl>
+ <function-decl name='PyObject_HashNotImplemented' mangled-name='PyObject_HashNotImplemented' filepath='../gpshead/Objects/object.c' line='780' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_HashNotImplemented'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='780' column='1'/>
+ <return type-id='type-id-164'/>
+ </function-decl>
+ <function-decl name='PyObject_RichCompareBool' mangled-name='PyObject_RichCompareBool' filepath='../gpshead/Objects/object.c' line='754' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_RichCompareBool'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='754' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/object.c' line='754' column='1'/>
+ <parameter type-id='type-id-7' name='op' filepath='../gpshead/Objects/object.c' line='754' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_RichCompare' mangled-name='PyObject_RichCompare' filepath='../gpshead/Objects/object.c' line='734' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_RichCompare'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='734' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/object.c' line='734' column='1'/>
+ <parameter type-id='type-id-7' name='op' filepath='../gpshead/Objects/object.c' line='734' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_Bytes' mangled-name='PyObject_Bytes' filepath='../gpshead/Objects/object.c' line='612' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Bytes'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1889' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_ASCII' mangled-name='PyObject_ASCII' filepath='../gpshead/Objects/object.c' line='585' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ASCII'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='585' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_Str' mangled-name='PyObject_Str' filepath='../gpshead/Objects/object.c' line='530' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Str'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='530' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_Repr' mangled-name='PyObject_Repr' filepath='../gpshead/Objects/object.c' line='483' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Repr'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='530' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_Dump' mangled-name='_PyObject_Dump' filepath='../gpshead/Objects/object.c' line='442' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_Dump'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/object.c' line='442' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyObject_IsFreed' mangled-name='_PyObject_IsFreed' filepath='../gpshead/Objects/object.c' line='421' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_IsFreed'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2064' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_BreakPoint' mangled-name='_Py_BreakPoint' filepath='../gpshead/Objects/object.c' line='409' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_BreakPoint'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyObject_Print' mangled-name='PyObject_Print' filepath='../gpshead/Objects/object.c' line='339' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Print'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/object.c' line='339' column='1'/>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Objects/object.c' line='339' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Objects/object.c' line='339' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_CallFinalizerFromDealloc' mangled-name='PyObject_CallFinalizerFromDealloc' filepath='../gpshead/Objects/object.c' line='292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallFinalizerFromDealloc'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/listobject.c' line='2444' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyObject_CallFinalizer' mangled-name='PyObject_CallFinalizer' filepath='../gpshead/Objects/object.c' line='273' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallFinalizer'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Objects/moduleobject.c' line='573' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-72' size-in-bits='64' id='type-id-342'/>
+ <function-decl name='_PyObject_NewVar' mangled-name='_PyObject_NewVar' filepath='../gpshead/Objects/object.c' line='262' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_NewVar'>
+ <parameter type-id='type-id-279' name='tp' filepath='../gpshead/Objects/object.c' line='262' column='1'/>
+ <parameter type-id='type-id-34' name='nitems' filepath='../gpshead/Objects/object.c' line='262' column='1'/>
+ <return type-id='type-id-342'/>
+ </function-decl>
+ <function-decl name='_PyObject_New' mangled-name='_PyObject_New' filepath='../gpshead/Objects/object.c' line='252' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_New'>
+ <parameter type-id='type-id-279' name='tp' filepath='../gpshead/Objects/object.c' line='252' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_InitVar' mangled-name='PyObject_InitVar' filepath='../gpshead/Objects/object.c' line='240' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_InitVar'>
+ <parameter type-id='type-id-342' name='op' filepath='../gpshead/Objects/object.c' line='240' column='1'/>
+ <parameter type-id='type-id-279' name='tp' filepath='../gpshead/Objects/object.c' line='240' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/object.c' line='240' column='1'/>
+ <return type-id='type-id-342'/>
+ </function-decl>
+ <function-decl name='PyObject_Init' mangled-name='PyObject_Init' filepath='../gpshead/Objects/object.c' line='229' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Init'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/object.c' line='229' column='1'/>
+ <parameter type-id='type-id-279' name='tp' filepath='../gpshead/Objects/object.c' line='229' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='Py_DecRef' mangled-name='Py_DecRef' filepath='../gpshead/Objects/object.c' line='223' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_DecRef'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/object.c' line='223' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_IncRef' mangled-name='Py_IncRef' filepath='../gpshead/Objects/object.c' line='217' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IncRef'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/object.c' line='223' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/obmalloc.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_PyObject_DebugMallocStats' mangled-name='_PyObject_DebugMallocStats' filepath='../gpshead/Objects/obmalloc.c' line='2501' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_DebugMallocStats'>
+ <parameter type-id='type-id-124' name='out' filepath='../gpshead/Objects/obmalloc.c' line='2501' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyDebugAllocatorStats' mangled-name='_PyDebugAllocatorStats' filepath='../gpshead/Objects/obmalloc.c' line='2456' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDebugAllocatorStats'>
+ <parameter type-id='type-id-124' name='out' filepath='../gpshead/Objects/obmalloc.c' line='2456' column='1'/>
+ <parameter type-id='type-id-3' name='block_name' filepath='../gpshead/Objects/obmalloc.c' line='2457' column='1'/>
+ <parameter type-id='type-id-7' name='num_blocks' filepath='../gpshead/Objects/obmalloc.c' line='2457' column='1'/>
+ <parameter type-id='type-id-62' name='sizeof_block' filepath='../gpshead/Objects/obmalloc.c' line='2457' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_GetAllocatedBlocks' mangled-name='_Py_GetAllocatedBlocks' filepath='../gpshead/Objects/obmalloc.c' line='1173' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetAllocatedBlocks'>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyObject_Free' mangled-name='PyObject_Free' filepath='../gpshead/Objects/obmalloc.c' line='655' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Free'>
+ <parameter type-id='type-id-56' name='ptr' filepath='../gpshead/Objects/obmalloc.c' line='655' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyObject_Realloc' mangled-name='PyObject_Realloc' filepath='../gpshead/Objects/obmalloc.c' line='646' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Realloc'>
+ <parameter type-id='type-id-56' name='ptr' filepath='../gpshead/Objects/obmalloc.c' line='646' column='1'/>
+ <parameter type-id='type-id-62' name='new_size' filepath='../gpshead/Objects/obmalloc.c' line='646' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyObject_Calloc' mangled-name='PyObject_Calloc' filepath='../gpshead/Objects/obmalloc.c' line='637' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Calloc'>
+ <parameter type-id='type-id-62' name='nelem' filepath='../gpshead/Objects/obmalloc.c' line='637' column='1'/>
+ <parameter type-id='type-id-62' name='elsize' filepath='../gpshead/Objects/obmalloc.c' line='637' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyObject_Malloc' mangled-name='PyObject_Malloc' filepath='../gpshead/Objects/obmalloc.c' line='628' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Malloc'>
+ <parameter type-id='type-id-62' name='size' filepath='../gpshead/Objects/obmalloc.c' line='628' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='_PyMem_Strdup' mangled-name='_PyMem_Strdup' filepath='../gpshead/Objects/obmalloc.c' line='615' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_Strdup'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/obmalloc.c' line='615' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <function-decl name='_PyMem_RawStrdup' mangled-name='_PyMem_RawStrdup' filepath='../gpshead/Objects/obmalloc.c' line='602' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_RawStrdup'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/obmalloc.c' line='615' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <qualified-type-def type-id='type-id-204' const='yes' id='type-id-343'/>
+ <pointer-type-def type-id='type-id-343' size-in-bits='64' id='type-id-344'/>
+ <function-decl name='_PyMem_RawWcsdup' mangled-name='_PyMem_RawWcsdup' filepath='../gpshead/Objects/obmalloc.c' line='582' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_RawWcsdup'>
+ <parameter type-id='type-id-344' name='str' filepath='../gpshead/Objects/obmalloc.c' line='582' column='1'/>
+ <return type-id='type-id-202'/>
+ </function-decl>
+ <function-decl name='PyMem_Free' mangled-name='PyMem_Free' filepath='../gpshead/Objects/obmalloc.c' line='575' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_Free'>
+ <parameter type-id='type-id-56' name='ptr' filepath='../gpshead/Objects/obmalloc.c' line='655' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyMem_Realloc' mangled-name='PyMem_Realloc' filepath='../gpshead/Objects/obmalloc.c' line='566' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_Realloc'>
+ <parameter type-id='type-id-56' name='ptr' filepath='../gpshead/Objects/obmalloc.c' line='646' column='1'/>
+ <parameter type-id='type-id-62' name='new_size' filepath='../gpshead/Objects/obmalloc.c' line='646' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyMem_Calloc' mangled-name='PyMem_Calloc' filepath='../gpshead/Objects/obmalloc.c' line='557' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_Calloc'>
+ <parameter type-id='type-id-62' name='nelem' filepath='../gpshead/Objects/obmalloc.c' line='637' column='1'/>
+ <parameter type-id='type-id-62' name='elsize' filepath='../gpshead/Objects/obmalloc.c' line='637' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyMem_Malloc' mangled-name='PyMem_Malloc' filepath='../gpshead/Objects/obmalloc.c' line='548' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_Malloc'>
+ <parameter type-id='type-id-62' name='size' filepath='../gpshead/Objects/obmalloc.c' line='628' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyMem_RawFree' mangled-name='PyMem_RawFree' filepath='../gpshead/Objects/obmalloc.c' line='541' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_RawFree'>
+ <parameter type-id='type-id-56' name='ptr' filepath='../gpshead/Objects/obmalloc.c' line='655' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyMem_RawRealloc' mangled-name='PyMem_RawRealloc' filepath='../gpshead/Objects/obmalloc.c' line='533' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_RawRealloc'>
+ <parameter type-id='type-id-56' name='ptr' filepath='../gpshead/Objects/obmalloc.c' line='646' column='1'/>
+ <parameter type-id='type-id-62' name='new_size' filepath='../gpshead/Objects/obmalloc.c' line='646' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyMem_RawCalloc' mangled-name='PyMem_RawCalloc' filepath='../gpshead/Objects/obmalloc.c' line='524' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_RawCalloc'>
+ <parameter type-id='type-id-62' name='nelem' filepath='../gpshead/Objects/obmalloc.c' line='637' column='1'/>
+ <parameter type-id='type-id-62' name='elsize' filepath='../gpshead/Objects/obmalloc.c' line='637' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyMem_RawMalloc' mangled-name='PyMem_RawMalloc' filepath='../gpshead/Objects/obmalloc.c' line='510' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_RawMalloc'>
+ <parameter type-id='type-id-62' name='size' filepath='../gpshead/Objects/obmalloc.c' line='628' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-345' visibility='default' filepath='../gpshead/Include/objimpl.h' line='207' column='1' id='type-id-346'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ctx' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/objimpl.h' line='209' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='alloc' type-id='type-id-347' visibility='default' filepath='../gpshead/Include/objimpl.h' line='212' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='free' type-id='type-id-348' visibility='default' filepath='../gpshead/Include/objimpl.h' line='215' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-349' size-in-bits='64' id='type-id-347'/>
+ <pointer-type-def type-id='type-id-350' size-in-bits='64' id='type-id-348'/>
+ <typedef-decl name='PyObjectArenaAllocator' type-id='type-id-346' filepath='../gpshead/Include/objimpl.h' line='216' column='1' id='type-id-345'/>
+ <pointer-type-def type-id='type-id-345' size-in-bits='64' id='type-id-351'/>
+ <function-decl name='PyObject_SetArenaAllocator' mangled-name='PyObject_SetArenaAllocator' filepath='../gpshead/Objects/obmalloc.c' line='504' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetArenaAllocator'>
+ <parameter type-id='type-id-351' name='allocator' filepath='../gpshead/Objects/obmalloc.c' line='504' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyObject_GetArenaAllocator' mangled-name='PyObject_GetArenaAllocator' filepath='../gpshead/Objects/obmalloc.c' line='498' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetArenaAllocator'>
+ <parameter type-id='type-id-351' name='allocator' filepath='../gpshead/Objects/obmalloc.c' line='504' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../gpshead/Include/pymem.h' line='166' column='1' id='type-id-352'>
+ <underlying-type type-id='type-id-231'/>
+ <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-352' filepath='../gpshead/Include/pymem.h' line='175' column='1' id='type-id-353'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-354' visibility='default' filepath='../gpshead/Include/pymem.h' line='177' column='1' id='type-id-355'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ctx' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/pymem.h' line='179' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='malloc' type-id='type-id-347' visibility='default' filepath='../gpshead/Include/pymem.h' line='182' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='calloc' type-id='type-id-356' visibility='default' filepath='../gpshead/Include/pymem.h' line='185' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='realloc' type-id='type-id-357' visibility='default' filepath='../gpshead/Include/pymem.h' line='188' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='free' type-id='type-id-358' visibility='default' filepath='../gpshead/Include/pymem.h' line='191' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-359' size-in-bits='64' id='type-id-356'/>
+ <pointer-type-def type-id='type-id-360' size-in-bits='64' id='type-id-357'/>
+ <pointer-type-def type-id='type-id-361' size-in-bits='64' id='type-id-358'/>
+ <typedef-decl name='PyMemAllocatorEx' type-id='type-id-355' filepath='../gpshead/Include/pymem.h' line='192' column='1' id='type-id-354'/>
+ <pointer-type-def type-id='type-id-354' size-in-bits='64' id='type-id-362'/>
+ <function-decl name='PyMem_SetAllocator' mangled-name='PyMem_SetAllocator' filepath='../gpshead/Objects/obmalloc.c' line='486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_SetAllocator'>
+ <parameter type-id='type-id-353' name='domain' filepath='../gpshead/Objects/obmalloc.c' line='486' column='1'/>
+ <parameter type-id='type-id-362' name='allocator' filepath='../gpshead/Objects/obmalloc.c' line='486' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyMem_GetAllocator' mangled-name='PyMem_GetAllocator' filepath='../gpshead/Objects/obmalloc.c' line='468' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_GetAllocator'>
+ <parameter type-id='type-id-353' name='domain' filepath='../gpshead/Objects/obmalloc.c' line='486' column='1'/>
+ <parameter type-id='type-id-362' name='allocator' filepath='../gpshead/Objects/obmalloc.c' line='486' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyMem_SetupDebugHooks' mangled-name='PyMem_SetupDebugHooks' filepath='../gpshead/Objects/obmalloc.c' line='460' 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_GetAllocatorsName' mangled-name='_PyMem_GetAllocatorsName' filepath='../gpshead/Objects/obmalloc.c' line='322' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_GetAllocatorsName'>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='_PyMem_SetupAllocators' mangled-name='_PyMem_SetupAllocators' filepath='../gpshead/Objects/obmalloc.c' line='264' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_SetupAllocators'>
+ <parameter type-id='type-id-3' name='opt' filepath='../gpshead/Objects/obmalloc.c' line='264' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyMem_SetDefaultAllocator' mangled-name='_PyMem_SetDefaultAllocator' filepath='../gpshead/Objects/obmalloc.c' line='251' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_SetDefaultAllocator'>
+ <parameter type-id='type-id-353' name='domain' filepath='../gpshead/Objects/obmalloc.c' line='251' column='1'/>
+ <parameter type-id='type-id-362' name='old_alloc' filepath='../gpshead/Objects/obmalloc.c' line='252' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-361'>
+ <parameter type-id='type-id-56'/>
+ <parameter type-id='type-id-56'/>
+ <return type-id='type-id-4'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-350'>
+ <parameter type-id='type-id-56'/>
+ <parameter type-id='type-id-56'/>
+ <parameter type-id='type-id-62'/>
+ <return type-id='type-id-4'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-349'>
+ <parameter type-id='type-id-56'/>
+ <parameter type-id='type-id-62'/>
+ <return type-id='type-id-56'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-359'>
+ <parameter type-id='type-id-56'/>
+ <parameter type-id='type-id-62'/>
+ <parameter type-id='type-id-62'/>
+ <return type-id='type-id-56'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-360'>
+ <parameter type-id='type-id-56'/>
+ <parameter type-id='type-id-56'/>
+ <parameter type-id='type-id-62'/>
+ <return type-id='type-id-56'/>
+ </function-type>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/capsule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyCapsule_Type' type-id='type-id-245' mangled-name='PyCapsule_Type' visibility='default' filepath='../gpshead/Include/pycapsule.h' line='21' column='1' elf-symbol-id='PyCapsule_Type'/>
+ <function-decl name='PyCapsule_Import' mangled-name='PyCapsule_Import' filepath='../gpshead/Objects/capsule.c' line='195' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_Import'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/capsule.c' line='195' column='1'/>
+ <parameter type-id='type-id-7' name='no_block' filepath='../gpshead/Objects/capsule.c' line='195' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyCapsule_SetContext' mangled-name='PyCapsule_SetContext' filepath='../gpshead/Objects/capsule.c' line='181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_SetContext'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/capsule.c' line='181' column='1'/>
+ <parameter type-id='type-id-56' name='context' filepath='../gpshead/Objects/capsule.c' line='181' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <typedef-decl name='PyCapsule_Destructor' type-id='type-id-67' filepath='../gpshead/Include/pycapsule.h' line='23' column='1' id='type-id-363'/>
+ <function-decl name='PyCapsule_SetDestructor' mangled-name='PyCapsule_SetDestructor' filepath='../gpshead/Objects/capsule.c' line='167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_SetDestructor'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/capsule.c' line='167' column='1'/>
+ <parameter type-id='type-id-363' name='destructor' filepath='../gpshead/Objects/capsule.c' line='167' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyCapsule_SetName' mangled-name='PyCapsule_SetName' filepath='../gpshead/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-52' name='o' filepath='../gpshead/Objects/capsule.c' line='153' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/capsule.c' line='153' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyCapsule_SetPointer' mangled-name='PyCapsule_SetPointer' filepath='../gpshead/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-52' name='o' filepath='../gpshead/Objects/capsule.c' line='181' column='1'/>
+ <parameter type-id='type-id-56' name='context' filepath='../gpshead/Objects/capsule.c' line='181' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyCapsule_GetContext' mangled-name='PyCapsule_GetContext' filepath='../gpshead/Objects/capsule.c' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_GetContext'>
+ <parameter type-id='type-id-52' name='vv' filepath='../gpshead/Objects/longobject.c' line='1037' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyCapsule_GetDestructor' mangled-name='PyCapsule_GetDestructor' filepath='../gpshead/Objects/capsule.c' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_GetDestructor'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/capsule.c' line='110' column='1'/>
+ <return type-id='type-id-363'/>
+ </function-decl>
+ <function-decl name='PyCapsule_GetName' mangled-name='PyCapsule_GetName' filepath='../gpshead/Objects/capsule.c' line='98' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_GetName'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/capsule.c' line='98' column='1'/>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='PyCapsule_GetPointer' mangled-name='PyCapsule_GetPointer' filepath='../gpshead/Objects/capsule.c' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_GetPointer'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/capsule.c' line='80' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/capsule.c' line='80' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyCapsule_IsValid' mangled-name='PyCapsule_IsValid' filepath='../gpshead/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-52' name='o' filepath='../gpshead/Objects/capsule.c' line='153' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/capsule.c' line='153' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyCapsule_New' mangled-name='PyCapsule_New' filepath='../gpshead/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-56' name='pointer' filepath='../gpshead/Objects/capsule.c' line='44' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/capsule.c' line='44' column='1'/>
+ <parameter type-id='type-id-363' name='destructor' filepath='../gpshead/Objects/capsule.c' line='44' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/rangeobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyRange_Type' type-id='type-id-245' mangled-name='PyRange_Type' visibility='default' filepath='../gpshead/Include/rangeobject.h' line='18' column='1' elf-symbol-id='PyRange_Type'/>
+ <var-decl name='PyRangeIter_Type' type-id='type-id-245' mangled-name='PyRangeIter_Type' visibility='default' filepath='../gpshead/Include/rangeobject.h' line='19' column='1' elf-symbol-id='PyRangeIter_Type'/>
+ <var-decl name='PyLongRangeIter_Type' type-id='type-id-245' mangled-name='PyLongRangeIter_Type' visibility='default' filepath='../gpshead/Include/rangeobject.h' line='20' column='1' elf-symbol-id='PyLongRangeIter_Type'/>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/setobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PySetIter_Type' type-id='type-id-245' mangled-name='PySetIter_Type' visibility='default' filepath='../gpshead/Include/setobject.h' line='79' column='1' elf-symbol-id='PySetIter_Type'/>
+ <var-decl name='PySet_Type' type-id='type-id-245' mangled-name='PySet_Type' visibility='default' filepath='../gpshead/Include/setobject.h' line='77' column='1' elf-symbol-id='PySet_Type'/>
+ <var-decl name='PyFrozenSet_Type' type-id='type-id-245' mangled-name='PyFrozenSet_Type' visibility='default' filepath='../gpshead/Include/setobject.h' line='78' column='1' elf-symbol-id='PyFrozenSet_Type'/>
+ <var-decl name='_PySet_Dummy' type-id='type-id-52' mangled-name='_PySet_Dummy' visibility='default' filepath='../gpshead/Include/setobject.h' line='69' column='1' elf-symbol-id='_PySet_Dummy'/>
+ <function-decl name='_PySet_Update' mangled-name='_PySet_Update' filepath='../gpshead/Objects/setobject.c' line='2375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySet_Update'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySet_Pop' mangled-name='PySet_Pop' filepath='../gpshead/Objects/setobject.c' line='2365' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Pop'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PySet_NextEntry' mangled-name='_PySet_NextEntry' filepath='../gpshead/Objects/setobject.c' line='2349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySet_NextEntry'>
+ <parameter type-id='type-id-52' name='set' filepath='../gpshead/Objects/setobject.c' line='2349' column='1'/>
+ <parameter type-id='type-id-172' name='pos' filepath='../gpshead/Objects/setobject.c' line='2349' column='1'/>
+ <parameter type-id='type-id-259' name='key' filepath='../gpshead/Objects/setobject.c' line='2349' column='1'/>
+ <parameter type-id='type-id-331' name='hash' filepath='../gpshead/Objects/setobject.c' line='2349' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySet_Fini' mangled-name='PySet_Fini' filepath='../gpshead/Objects/setobject.c' line='2343' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PySet_ClearFreeList' mangled-name='PySet_ClearFreeList' filepath='../gpshead/Objects/setobject.c' line='2337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_ClearFreeList'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySet_Add' mangled-name='PySet_Add' filepath='../gpshead/Objects/setobject.c' line='2326' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Add'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySet_Discard' mangled-name='PySet_Discard' filepath='../gpshead/Objects/setobject.c' line='2316' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Discard'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySet_Contains' mangled-name='PySet_Contains' filepath='../gpshead/Objects/setobject.c' line='2306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Contains'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySet_Clear' mangled-name='PySet_Clear' filepath='../gpshead/Objects/setobject.c' line='2296' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Clear'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2064' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySet_Size' mangled-name='PySet_Size' filepath='../gpshead/Objects/setobject.c' line='2286' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Size'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2093' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyFrozenSet_New' mangled-name='PyFrozenSet_New' filepath='../gpshead/Objects/setobject.c' line='2280' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrozenSet_New'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySet_New' mangled-name='PySet_New' filepath='../gpshead/Objects/setobject.c' line='2274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_New'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/sliceobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyEllipsis_Type' type-id='type-id-245' mangled-name='PyEllipsis_Type' visibility='default' filepath='../gpshead/Include/sliceobject.h' line='29' column='1' elf-symbol-id='PyEllipsis_Type'/>
+ <var-decl name='_Py_EllipsisObject' type-id='type-id-103' mangled-name='_Py_EllipsisObject' visibility='default' filepath='../gpshead/Include/sliceobject.h' line='9' column='1' elf-symbol-id='_Py_EllipsisObject'/>
+ <var-decl name='PySlice_Type' type-id='type-id-245' mangled-name='PySlice_Type' visibility='default' filepath='../gpshead/Include/sliceobject.h' line='28' column='1' elf-symbol-id='PySlice_Type'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-364' visibility='default' filepath='../gpshead/Include/sliceobject.h' line='22' column='1' id='type-id-365'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-103' visibility='default' filepath='../gpshead/Include/sliceobject.h' line='23' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='start' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/sliceobject.h' line='24' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='stop' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/sliceobject.h' line='24' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='step' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/sliceobject.h' line='24' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PySliceObject' type-id='type-id-365' filepath='../gpshead/Include/sliceobject.h' line='25' column='1' id='type-id-364'/>
+ <pointer-type-def type-id='type-id-364' size-in-bits='64' id='type-id-366'/>
+ <function-decl name='_PySlice_GetLongIndices' mangled-name='_PySlice_GetLongIndices' filepath='../gpshead/Objects/sliceobject.c' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySlice_GetLongIndices'>
+ <parameter type-id='type-id-366' name='self' filepath='../gpshead/Objects/sliceobject.c' line='371' column='1'/>
+ <parameter type-id='type-id-52' name='length' filepath='../gpshead/Objects/sliceobject.c' line='371' column='1'/>
+ <parameter type-id='type-id-259' name='start_ptr' filepath='../gpshead/Objects/sliceobject.c' line='372' column='1'/>
+ <parameter type-id='type-id-259' name='stop_ptr' filepath='../gpshead/Objects/sliceobject.c' line='372' column='1'/>
+ <parameter type-id='type-id-259' name='step_ptr' filepath='../gpshead/Objects/sliceobject.c' line='373' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySlice_GetIndicesEx' mangled-name='PySlice_GetIndicesEx' filepath='../gpshead/Objects/sliceobject.c' line='285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySlice_GetIndicesEx'>
+ <parameter type-id='type-id-52' name='_r' filepath='../gpshead/Objects/sliceobject.c' line='285' column='1'/>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/sliceobject.c' line='285' column='1'/>
+ <parameter type-id='type-id-172' name='start' filepath='../gpshead/Objects/sliceobject.c' line='286' column='1'/>
+ <parameter type-id='type-id-172' name='stop' filepath='../gpshead/Objects/sliceobject.c' line='286' column='1'/>
+ <parameter type-id='type-id-172' name='step' filepath='../gpshead/Objects/sliceobject.c' line='286' column='1'/>
+ <parameter type-id='type-id-172' name='slicelength' filepath='../gpshead/Objects/sliceobject.c' line='287' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySlice_AdjustIndices' mangled-name='PySlice_AdjustIndices' filepath='../gpshead/Objects/sliceobject.c' line='241' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySlice_AdjustIndices'>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/sliceobject.c' line='241' column='1'/>
+ <parameter type-id='type-id-172' name='start' filepath='../gpshead/Objects/sliceobject.c' line='242' column='1'/>
+ <parameter type-id='type-id-172' name='stop' filepath='../gpshead/Objects/sliceobject.c' line='242' column='1'/>
+ <parameter type-id='type-id-34' name='step' filepath='../gpshead/Objects/sliceobject.c' line='242' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PySlice_Unpack' mangled-name='PySlice_Unpack' filepath='../gpshead/Objects/sliceobject.c' line='196' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySlice_Unpack'>
+ <parameter type-id='type-id-52' name='_r' filepath='../gpshead/Objects/sliceobject.c' line='196' column='1'/>
+ <parameter type-id='type-id-172' name='start' filepath='../gpshead/Objects/sliceobject.c' line='197' column='1'/>
+ <parameter type-id='type-id-172' name='stop' filepath='../gpshead/Objects/sliceobject.c' line='197' column='1'/>
+ <parameter type-id='type-id-172' name='step' filepath='../gpshead/Objects/sliceobject.c' line='197' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySlice_GetIndices' mangled-name='PySlice_GetIndices' filepath='../gpshead/Objects/sliceobject.c' line='164' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySlice_GetIndices'>
+ <parameter type-id='type-id-52' name='_r' filepath='../gpshead/Objects/sliceobject.c' line='164' column='1'/>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/sliceobject.c' line='164' column='1'/>
+ <parameter type-id='type-id-172' name='start' filepath='../gpshead/Objects/sliceobject.c' line='165' column='1'/>
+ <parameter type-id='type-id-172' name='stop' filepath='../gpshead/Objects/sliceobject.c' line='165' column='1'/>
+ <parameter type-id='type-id-172' name='step' filepath='../gpshead/Objects/sliceobject.c' line='165' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PySlice_FromIndices' mangled-name='_PySlice_FromIndices' filepath='../gpshead/Objects/sliceobject.c' line='145' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySlice_FromIndices'>
+ <parameter type-id='type-id-34' name='istart' filepath='../gpshead/Objects/sliceobject.c' line='145' column='1'/>
+ <parameter type-id='type-id-34' name='istop' filepath='../gpshead/Objects/sliceobject.c' line='145' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySlice_New' mangled-name='PySlice_New' filepath='../gpshead/Objects/sliceobject.c' line='116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySlice_New'>
+ <parameter type-id='type-id-52' name='start' filepath='../gpshead/Objects/sliceobject.c' line='116' column='1'/>
+ <parameter type-id='type-id-52' name='stop' filepath='../gpshead/Objects/sliceobject.c' line='116' column='1'/>
+ <parameter type-id='type-id-52' name='step' filepath='../gpshead/Objects/sliceobject.c' line='116' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySlice_Fini' mangled-name='PySlice_Fini' filepath='../gpshead/Objects/sliceobject.c' line='102' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySlice_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/structseq.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyStructSequence_UnnamedField' type-id='type-id-12' mangled-name='PyStructSequence_UnnamedField' visibility='default' filepath='../gpshead/Include/structseq.h' line='22' column='1' elf-symbol-id='PyStructSequence_UnnamedField'/>
+ <function-decl name='_PyStructSequence_Init' mangled-name='_PyStructSequence_Init' filepath='../gpshead/Objects/structseq.c' line='436' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyStructSequence_Init'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <class-decl name='PyStructSequence_Desc' size-in-bits='256' is-struct='yes' visibility='default' filepath='../gpshead/Include/structseq.h' line='15' column='1' id='type-id-367'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='name' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/structseq.h' line='16' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='doc' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/structseq.h' line='17' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='fields' type-id='type-id-368' visibility='default' filepath='../gpshead/Include/structseq.h' line='18' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='n_in_sequence' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/structseq.h' line='19' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='PyStructSequence_Field' size-in-bits='128' is-struct='yes' visibility='default' filepath='../gpshead/Include/structseq.h' line='10' column='1' id='type-id-369'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='name' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/structseq.h' line='11' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='doc' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/structseq.h' line='12' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-369' size-in-bits='64' id='type-id-368'/>
+ <typedef-decl name='PyStructSequence_Desc' type-id='type-id-367' filepath='../gpshead/Include/structseq.h' line='20' column='1' id='type-id-370'/>
+ <pointer-type-def type-id='type-id-370' size-in-bits='64' id='type-id-371'/>
+ <function-decl name='PyStructSequence_NewType' mangled-name='PyStructSequence_NewType' filepath='../gpshead/Objects/structseq.c' line='422' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_NewType'>
+ <parameter type-id='type-id-371' name='desc' filepath='../gpshead/Objects/structseq.c' line='422' column='1'/>
+ <return type-id='type-id-279'/>
+ </function-decl>
+ <function-decl name='PyStructSequence_InitType' mangled-name='PyStructSequence_InitType' filepath='../gpshead/Objects/structseq.c' line='416' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_InitType'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/structseq.c' line='416' column='1'/>
+ <parameter type-id='type-id-371' name='desc' filepath='../gpshead/Objects/structseq.c' line='416' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyStructSequence_InitType2' mangled-name='PyStructSequence_InitType2' filepath='../gpshead/Objects/structseq.c' line='344' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_InitType2'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/structseq.c' line='344' column='1'/>
+ <parameter type-id='type-id-371' name='desc' filepath='../gpshead/Objects/structseq.c' line='344' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyStructSequence_GetItem' mangled-name='PyStructSequence_GetItem' filepath='../gpshead/Objects/structseq.c' line='62' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_GetItem'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/listobject.c' line='197' column='1'/>
+ <parameter type-id='type-id-34' name='i' filepath='../gpshead/Objects/listobject.c' line='197' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyStructSequence_SetItem' mangled-name='PyStructSequence_SetItem' filepath='../gpshead/Objects/structseq.c' line='56' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_SetItem'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/structseq.c' line='56' column='1'/>
+ <parameter type-id='type-id-34' name='i' filepath='../gpshead/Objects/structseq.c' line='56' column='1'/>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/structseq.c' line='56' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyStructSequence_New' mangled-name='PyStructSequence_New' filepath='../gpshead/Objects/structseq.c' line='38' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_New'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/structseq.c' line='38' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/tupleobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyTuple_Type' type-id='type-id-245' mangled-name='PyTuple_Type' visibility='default' filepath='../gpshead/Include/tupleobject.h' line='36' column='1' elf-symbol-id='PyTuple_Type'/>
+ <var-decl name='PyTupleIter_Type' type-id='type-id-245' mangled-name='PyTupleIter_Type' visibility='default' filepath='../gpshead/Include/tupleobject.h' line='37' column='1' elf-symbol-id='PyTupleIter_Type'/>
+ <function-decl name='PyTuple_Fini' mangled-name='PyTuple_Fini' filepath='../gpshead/Objects/tupleobject.c' line='933' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyTuple_ClearFreeList' mangled-name='PyTuple_ClearFreeList' filepath='../gpshead/Objects/tupleobject.c' line='911' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_ClearFreeList'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTuple_Resize' mangled-name='_PyTuple_Resize' filepath='../gpshead/Objects/tupleobject.c' line='857' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTuple_Resize'>
+ <parameter type-id='type-id-259' name='pv' filepath='../gpshead/Objects/tupleobject.c' line='857' column='1'/>
+ <parameter type-id='type-id-34' name='newsize' filepath='../gpshead/Objects/tupleobject.c' line='857' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyTuple_GetSlice' mangled-name='PyTuple_GetSlice' filepath='../gpshead/Objects/tupleobject.c' line='433' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_GetSlice'>
+ <parameter type-id='type-id-52' name='a' filepath='../gpshead/Objects/listobject.c' line='460' column='1'/>
+ <parameter type-id='type-id-34' name='ilow' filepath='../gpshead/Objects/listobject.c' line='460' column='1'/>
+ <parameter type-id='type-id-34' name='ihigh' filepath='../gpshead/Objects/listobject.c' line='460' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyTuple_Pack' mangled-name='PyTuple_Pack' filepath='../gpshead/Objects/tupleobject.c' line='209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_Pack'>
+ <parameter type-id='type-id-34' name='n' filepath='../gpshead/Objects/tupleobject.c' line='209' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyTuple_MaybeUntrack' mangled-name='_PyTuple_MaybeUntrack' filepath='../gpshead/Objects/tupleobject.c' line='183' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTuple_MaybeUntrack'>
+ <parameter type-id='type-id-52' name='d' filepath='../gpshead/Objects/moduleobject.c' line='581' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyTuple_SetItem' mangled-name='PyTuple_SetItem' filepath='../gpshead/Objects/tupleobject.c' line='163' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_SetItem'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/listobject.c' line='217' column='1'/>
+ <parameter type-id='type-id-34' name='i' filepath='../gpshead/Objects/listobject.c' line='217' column='1'/>
+ <parameter type-id='type-id-52' name='newitem' filepath='../gpshead/Objects/listobject.c' line='218' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyTuple_GetItem' mangled-name='PyTuple_GetItem' filepath='../gpshead/Objects/tupleobject.c' line='149' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_GetItem'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/listobject.c' line='197' column='1'/>
+ <parameter type-id='type-id-34' name='i' filepath='../gpshead/Objects/listobject.c' line='197' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyTuple_Size' mangled-name='PyTuple_Size' filepath='../gpshead/Objects/tupleobject.c' line='138' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_Size'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2093' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyTuple_New' mangled-name='PyTuple_New' filepath='../gpshead/Objects/tupleobject.c' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_New'>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/tupleobject.c' line='79' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyTuple_DebugMallocStats' mangled-name='_PyTuple_DebugMallocStats' filepath='../gpshead/Objects/tupleobject.c' line='63' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTuple_DebugMallocStats'>
+ <parameter type-id='type-id-124' name='out' filepath='../gpshead/Objects/tupleobject.c' line='63' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/typeobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyType_Type' type-id='type-id-245' mangled-name='PyType_Type' visibility='default' filepath='../gpshead/Include/object.h' line='489' column='1' elf-symbol-id='PyType_Type'/>
+ <var-decl name='PyBaseObject_Type' type-id='type-id-245' mangled-name='PyBaseObject_Type' visibility='default' filepath='../gpshead/Include/object.h' line='490' column='1' elf-symbol-id='PyBaseObject_Type'/>
+ <var-decl name='PySuper_Type' type-id='type-id-245' mangled-name='PySuper_Type' visibility='default' filepath='../gpshead/Include/object.h' line='491' column='1' elf-symbol-id='PySuper_Type'/>
+ <function-decl name='PyType_Ready' mangled-name='PyType_Ready' filepath='../gpshead/Objects/typeobject.c' line='5136' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_Ready'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/typeobject.c' line='5136' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyType_LookupId' mangled-name='_PyType_LookupId' filepath='../gpshead/Objects/typeobject.c' line='3154' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_LookupId'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/typeobject.c' line='3154' column='1'/>
+ <parameter type-id='type-id-266' name='name' filepath='../gpshead/Objects/typeobject.c' line='3154' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyType_Lookup' mangled-name='_PyType_Lookup' filepath='../gpshead/Objects/typeobject.c' line='3097' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_Lookup'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/typeobject.c' line='3097' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Objects/typeobject.c' line='3097' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyType_GetSlot' mangled-name='PyType_GetSlot' filepath='../gpshead/Objects/typeobject.c' line='3019' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetSlot'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/typeobject.c' line='3019' column='1'/>
+ <parameter type-id='type-id-7' name='slot' filepath='../gpshead/Objects/typeobject.c' line='3019' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-372' visibility='default' filepath='../gpshead/Include/object.h' line='443' column='1' id='type-id-373'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='name' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/object.h' line='444' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='basicsize' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/object.h' line='445' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='96'>
+ <var-decl name='itemsize' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/object.h' line='446' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='flags' type-id='type-id-101' visibility='default' filepath='../gpshead/Include/object.h' line='447' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='slots' type-id='type-id-374' visibility='default' filepath='../gpshead/Include/object.h' line='448' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-375' visibility='default' filepath='../gpshead/Include/object.h' line='438' column='1' id='type-id-376'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='slot' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/object.h' line='439' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='pfunc' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/object.h' line='440' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyType_Slot' type-id='type-id-376' filepath='../gpshead/Include/object.h' line='441' column='1' id='type-id-375'/>
+ <pointer-type-def type-id='type-id-375' size-in-bits='64' id='type-id-374'/>
+ <typedef-decl name='PyType_Spec' type-id='type-id-373' filepath='../gpshead/Include/object.h' line='449' column='1' id='type-id-372'/>
+ <pointer-type-def type-id='type-id-372' size-in-bits='64' id='type-id-377'/>
+ <function-decl name='PyType_FromSpec' mangled-name='PyType_FromSpec' filepath='../gpshead/Objects/typeobject.c' line='3013' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromSpec'>
+ <parameter type-id='type-id-377' name='spec' filepath='../gpshead/Objects/typeobject.c' line='3013' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyType_FromSpecWithBases' mangled-name='PyType_FromSpecWithBases' filepath='../gpshead/Objects/typeobject.c' line='2863' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromSpecWithBases'>
+ <parameter type-id='type-id-377' name='spec' filepath='../gpshead/Objects/typeobject.c' line='2863' column='1'/>
+ <parameter type-id='type-id-52' name='bases' filepath='../gpshead/Objects/typeobject.c' line='2863' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyType_CalculateMetaclass' mangled-name='_PyType_CalculateMetaclass' filepath='../gpshead/Objects/typeobject.c' line='2336' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_CalculateMetaclass'>
+ <parameter type-id='type-id-279' name='metatype' filepath='../gpshead/Objects/typeobject.c' line='2336' column='1'/>
+ <parameter type-id='type-id-52' name='bases' filepath='../gpshead/Objects/typeobject.c' line='2336' column='1'/>
+ <return type-id='type-id-279'/>
+ </function-decl>
+ <function-decl name='PyType_GetFlags' mangled-name='PyType_GetFlags' filepath='../gpshead/Objects/typeobject.c' line='2329' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetFlags'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/typeobject.c' line='2329' column='1'/>
+ <return type-id='type-id-38'/>
+ </function-decl>
+ <function-decl name='_PyObject_LookupSpecial' mangled-name='_PyObject_LookupSpecial' filepath='../gpshead/Objects/typeobject.c' line='1447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_LookupSpecial'>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/typeobject.c' line='1447' column='1'/>
+ <parameter type-id='type-id-330' name='attrid' filepath='../gpshead/Objects/typeobject.c' line='1447' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyType_IsSubtype' mangled-name='PyType_IsSubtype' filepath='../gpshead/Objects/typeobject.c' line='1409' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_IsSubtype'>
+ <parameter type-id='type-id-279' name='a' filepath='../gpshead/Objects/typeobject.c' line='1409' column='1'/>
+ <parameter type-id='type-id-279' name='b' filepath='../gpshead/Objects/typeobject.c' line='1409' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyType_GenericNew' mangled-name='PyType_GenericNew' filepath='../gpshead/Objects/typeobject.c' line='1015' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GenericNew'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/typeobject.c' line='1015' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Objects/typeobject.c' line='1015' column='1'/>
+ <parameter type-id='type-id-52' name='kwds' filepath='../gpshead/Objects/typeobject.c' line='1015' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyType_GenericAlloc' mangled-name='PyType_GenericAlloc' filepath='../gpshead/Objects/typeobject.c' line='985' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GenericAlloc'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/typeobject.c' line='985' column='1'/>
+ <parameter type-id='type-id-34' name='nitems' filepath='../gpshead/Objects/typeobject.c' line='985' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyType_Name' mangled-name='_PyType_Name' filepath='../gpshead/Objects/typeobject.c' line='415' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_Name'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/typeobject.c' line='415' column='1'/>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='PyType_Modified' mangled-name='PyType_Modified' filepath='../gpshead/Objects/typeobject.c' line='236' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_Modified'>
+ <parameter type-id='type-id-279' name='type' filepath='../gpshead/Objects/typeobject.c' line='236' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyType_Fini' mangled-name='_PyType_Fini' filepath='../gpshead/Objects/typeobject.c' line='229' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyType_ClearCache' mangled-name='PyType_ClearCache' filepath='../gpshead/Objects/typeobject.c' line='200' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_ClearCache'>
+ <return type-id='type-id-101'/>
+ </function-decl>
+ <function-decl name='_PyType_GetTextSignatureFromInternalDoc' mangled-name='_PyType_GetTextSignatureFromInternalDoc' filepath='../gpshead/Objects/typeobject.c' line='178' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_GetTextSignatureFromInternalDoc'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/typeobject.c' line='178' column='1'/>
+ <parameter type-id='type-id-3' name='internal_doc' filepath='../gpshead/Objects/typeobject.c' line='178' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyType_GetDocFromInternalDoc' mangled-name='_PyType_GetDocFromInternalDoc' filepath='../gpshead/Objects/typeobject.c' line='166' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_GetDocFromInternalDoc'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/typeobject.c' line='166' column='1'/>
+ <parameter type-id='type-id-3' name='internal_doc' filepath='../gpshead/Objects/typeobject.c' line='166' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/unicodeobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+
+ <array-type-def dimensions='1' type-id='type-id-302' size-in-bits='infinite' id='type-id-378'>
+ <subrange length='infinite' id='type-id-226'/>
+
+ </array-type-def>
+ <qualified-type-def type-id='type-id-378' const='yes' id='type-id-379'/>
+ <var-decl name='_Py_ascii_whitespace' type-id='type-id-379' mangled-name='_Py_ascii_whitespace' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='2153' column='1' elf-symbol-id='_Py_ascii_whitespace'/>
+ <var-decl name='PyUnicode_Type' type-id='type-id-245' mangled-name='PyUnicode_Type' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='359' column='1' elf-symbol-id='PyUnicode_Type'/>
+ <var-decl name='PyUnicodeIter_Type' type-id='type-id-245' mangled-name='PyUnicodeIter_Type' visibility='default' filepath='../gpshead/Include/unicodeobject.h' line='360' column='1' elf-symbol-id='PyUnicodeIter_Type'/>
+ <function-decl name='PyInit__string' mangled-name='PyInit__string' filepath='../gpshead/Objects/unicodeobject.c' line='15687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__string'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsUnicodeCopy' mangled-name='PyUnicode_AsUnicodeCopy' filepath='../gpshead/Objects/unicodeobject.c' line='15635' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeCopy'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='15635' column='1'/>
+ <return type-id='type-id-313'/>
+ </function-decl>
+ <function-decl name='Py_UNICODE_strrchr' mangled-name='Py_UNICODE_strrchr' filepath='../gpshead/Objects/unicodeobject.c' line='15622' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strrchr'>
+ <parameter type-id='type-id-291' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='15622' column='1'/>
+ <parameter type-id='type-id-289' name='c' filepath='../gpshead/Objects/unicodeobject.c' line='15622' column='1'/>
+ <return type-id='type-id-313'/>
+ </function-decl>
+ <function-decl name='Py_UNICODE_strchr' mangled-name='Py_UNICODE_strchr' filepath='../gpshead/Objects/unicodeobject.c' line='15612' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strchr'>
+ <parameter type-id='type-id-291' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='15622' column='1'/>
+ <parameter type-id='type-id-289' name='c' filepath='../gpshead/Objects/unicodeobject.c' line='15622' column='1'/>
+ <return type-id='type-id-313'/>
+ </function-decl>
+ <function-decl name='Py_UNICODE_strncmp' mangled-name='Py_UNICODE_strncmp' filepath='../gpshead/Objects/unicodeobject.c' line='15595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strncmp'>
+ <parameter type-id='type-id-291' name='s1' filepath='../gpshead/Objects/unicodeobject.c' line='15595' column='1'/>
+ <parameter type-id='type-id-291' name='s2' filepath='../gpshead/Objects/unicodeobject.c' line='15595' column='1'/>
+ <parameter type-id='type-id-62' name='n' filepath='../gpshead/Objects/unicodeobject.c' line='15595' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='Py_UNICODE_strcmp' mangled-name='Py_UNICODE_strcmp' filepath='../gpshead/Objects/unicodeobject.c' line='15581' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strcmp'>
+ <parameter type-id='type-id-291' name='s1' filepath='../gpshead/Objects/unicodeobject.c' line='15581' column='1'/>
+ <parameter type-id='type-id-291' name='s2' filepath='../gpshead/Objects/unicodeobject.c' line='15581' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='Py_UNICODE_strcat' mangled-name='Py_UNICODE_strcat' filepath='../gpshead/Objects/unicodeobject.c' line='15572' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strcat'>
+ <parameter type-id='type-id-313' name='s1' filepath='../gpshead/Objects/unicodeobject.c' line='15572' column='1'/>
+ <parameter type-id='type-id-291' name='s2' filepath='../gpshead/Objects/unicodeobject.c' line='15572' column='1'/>
+ <return type-id='type-id-313'/>
+ </function-decl>
+ <function-decl name='Py_UNICODE_strncpy' mangled-name='Py_UNICODE_strncpy' filepath='../gpshead/Objects/unicodeobject.c' line='15562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strncpy'>
+ <parameter type-id='type-id-313' name='s1' filepath='../gpshead/Objects/unicodeobject.c' line='15562' column='1'/>
+ <parameter type-id='type-id-291' name='s2' filepath='../gpshead/Objects/unicodeobject.c' line='15562' column='1'/>
+ <parameter type-id='type-id-62' name='n' filepath='../gpshead/Objects/unicodeobject.c' line='15562' column='1'/>
+ <return type-id='type-id-313'/>
+ </function-decl>
+ <function-decl name='Py_UNICODE_strcpy' mangled-name='Py_UNICODE_strcpy' filepath='../gpshead/Objects/unicodeobject.c' line='15554' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strcpy'>
+ <parameter type-id='type-id-313' name='s1' filepath='../gpshead/Objects/unicodeobject.c' line='15572' column='1'/>
+ <parameter type-id='type-id-291' name='s2' filepath='../gpshead/Objects/unicodeobject.c' line='15572' column='1'/>
+ <return type-id='type-id-313'/>
+ </function-decl>
+ <function-decl name='Py_UNICODE_strlen' mangled-name='Py_UNICODE_strlen' filepath='../gpshead/Objects/unicodeobject.c' line='15548' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UNICODE_strlen'>
+ <parameter type-id='type-id-291' name='u' filepath='../gpshead/Objects/unicodeobject.c' line='15548' column='1'/>
+ <return type-id='type-id-62'/>
+ </function-decl>
+ <function-decl name='_Py_ReleaseInternedUnicodeStrings' mangled-name='_Py_ReleaseInternedUnicodeStrings' filepath='../gpshead/Objects/unicodeobject.c' line='15334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ReleaseInternedUnicodeStrings'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyUnicode_InternFromString' mangled-name='PyUnicode_InternFromString' filepath='../gpshead/Objects/unicodeobject.c' line='15324' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternFromString'>
+ <parameter type-id='type-id-3' name='cp' filepath='../gpshead/Objects/unicodeobject.c' line='15324' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_InternImmortal' mangled-name='PyUnicode_InternImmortal' filepath='../gpshead/Objects/unicodeobject.c' line='15314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternImmortal'>
+ <parameter type-id='type-id-259' name='p' filepath='../gpshead/Objects/unicodeobject.c' line='15314' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyUnicode_InternInPlace' mangled-name='PyUnicode_InternInPlace' filepath='../gpshead/Objects/unicodeobject.c' line='15271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternInPlace'>
+ <parameter type-id='type-id-259' name='p' filepath='../gpshead/Objects/unicodeobject.c' line='15271' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_Fini' mangled-name='_PyUnicode_Fini' filepath='../gpshead/Objects/unicodeobject.c' line='15258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyUnicode_ClearFreeList' mangled-name='PyUnicode_ClearFreeList' filepath='../gpshead/Objects/unicodeobject.c' line='15252' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_ClearFreeList'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_Init' mangled-name='_PyUnicode_Init' filepath='../gpshead/Objects/unicodeobject.c' line='15209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_Init'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Format' mangled-name='PyUnicode_Format' filepath='../gpshead/Objects/unicodeobject.c' line='14943' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Format'>
+ <parameter type-id='type-id-52' name='format' filepath='../gpshead/Objects/unicodeobject.c' line='14943' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Objects/unicodeobject.c' line='14943' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_FormatLong' mangled-name='_PyUnicode_FormatLong' filepath='../gpshead/Objects/unicodeobject.c' line='14169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FormatLong'>
+ <parameter type-id='type-id-52' name='val' filepath='../gpshead/Objects/unicodeobject.c' line='14169' column='1'/>
+ <parameter type-id='type-id-7' name='alt' filepath='../gpshead/Objects/unicodeobject.c' line='14169' column='1'/>
+ <parameter type-id='type-id-7' name='prec' filepath='../gpshead/Objects/unicodeobject.c' line='14169' column='1'/>
+ <parameter type-id='type-id-7' name='type' filepath='../gpshead/Objects/unicodeobject.c' line='14169' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicodeWriter_Dealloc' mangled-name='_PyUnicodeWriter_Dealloc' filepath='../gpshead/Objects/unicodeobject.c' line='13809' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Dealloc'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Objects/unicodeobject.c' line='13809' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyUnicodeWriter_Finish' mangled-name='_PyUnicodeWriter_Finish' filepath='../gpshead/Objects/unicodeobject.c' line='13777' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Finish'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Objects/unicodeobject.c' line='13777' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicodeWriter_WriteLatin1String' mangled-name='_PyUnicodeWriter_WriteLatin1String' filepath='../gpshead/Objects/unicodeobject.c' line='13763' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteLatin1String'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Objects/unicodeobject.c' line='13763' column='1'/>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='13764' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/unicodeobject.c' line='13764' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicodeWriter_WriteASCIIString' mangled-name='_PyUnicodeWriter_WriteASCIIString' filepath='../gpshead/Objects/unicodeobject.c' line='13703' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteASCIIString'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Objects/unicodeobject.c' line='13703' column='1'/>
+ <parameter type-id='type-id-3' name='ascii' filepath='../gpshead/Objects/unicodeobject.c' line='13704' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/unicodeobject.c' line='13704' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicodeWriter_WriteSubstring' mangled-name='_PyUnicodeWriter_WriteSubstring' filepath='../gpshead/Objects/unicodeobject.c' line='13668' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteSubstring'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Objects/unicodeobject.c' line='13668' column='1'/>
+ <parameter type-id='type-id-52' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='13668' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/unicodeobject.c' line='13669' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/unicodeobject.c' line='13669' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicodeWriter_WriteStr' mangled-name='_PyUnicodeWriter_WriteStr' filepath='../gpshead/Objects/unicodeobject.c' line='13637' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteStr'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Objects/unicodeobject.c' line='13637' column='1'/>
+ <parameter type-id='type-id-52' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='13637' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicodeWriter_WriteChar' mangled-name='_PyUnicodeWriter_WriteChar' filepath='../gpshead/Objects/unicodeobject.c' line='13631' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteChar'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Objects/unicodeobject.c' line='13631' column='1'/>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodeobject.c' line='13631' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicodeWriter_PrepareKindInternal' mangled-name='_PyUnicodeWriter_PrepareKindInternal' filepath='../gpshead/Objects/unicodeobject.c' line='13599' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_PrepareKindInternal'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Objects/unicodeobject.c' line='13599' column='1'/>
+ <parameter type-id='type-id-316' name='kind' filepath='../gpshead/Objects/unicodeobject.c' line='13600' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicodeWriter_PrepareInternal' mangled-name='_PyUnicodeWriter_PrepareInternal' filepath='../gpshead/Objects/unicodeobject.c' line='13522' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_PrepareInternal'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Objects/unicodeobject.c' line='13522' column='1'/>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/unicodeobject.c' line='13523' column='1'/>
+ <parameter type-id='type-id-317' name='maxchar' filepath='../gpshead/Objects/unicodeobject.c' line='13523' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicodeWriter_Init' mangled-name='_PyUnicodeWriter_Init' filepath='../gpshead/Objects/unicodeobject.c' line='13508' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Init'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Objects/unicodeobject.c' line='13508' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyUnicode_RSplit' mangled-name='PyUnicode_RSplit' filepath='../gpshead/Objects/unicodeobject.c' line='13083' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RSplit'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='13083' column='1'/>
+ <parameter type-id='type-id-52' name='sep' filepath='../gpshead/Objects/unicodeobject.c' line='13083' column='1'/>
+ <parameter type-id='type-id-34' name='maxsplit' filepath='../gpshead/Objects/unicodeobject.c' line='13083' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_RPartition' mangled-name='PyUnicode_RPartition' filepath='../gpshead/Objects/unicodeobject.c' line='12984' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RPartition'>
+ <parameter type-id='type-id-52' name='str_obj' filepath='../gpshead/Objects/unicodeobject.c' line='12984' column='1'/>
+ <parameter type-id='type-id-52' name='sep_obj' filepath='../gpshead/Objects/unicodeobject.c' line='12984' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Partition' mangled-name='PyUnicode_Partition' filepath='../gpshead/Objects/unicodeobject.c' line='12927' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Partition'>
+ <parameter type-id='type-id-52' name='str_obj' filepath='../gpshead/Objects/unicodeobject.c' line='12984' column='1'/>
+ <parameter type-id='type-id-52' name='sep_obj' filepath='../gpshead/Objects/unicodeobject.c' line='12984' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Split' mangled-name='PyUnicode_Split' filepath='../gpshead/Objects/unicodeobject.c' line='12889' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Split'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='13083' column='1'/>
+ <parameter type-id='type-id-52' name='sep' filepath='../gpshead/Objects/unicodeobject.c' line='13083' column='1'/>
+ <parameter type-id='type-id-34' name='maxsplit' filepath='../gpshead/Objects/unicodeobject.c' line='13083' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Replace' mangled-name='PyUnicode_Replace' filepath='../gpshead/Objects/unicodeobject.c' line='12593' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Replace'>
+ <parameter type-id='type-id-52' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='12593' column='1'/>
+ <parameter type-id='type-id-52' name='substr' filepath='../gpshead/Objects/unicodeobject.c' line='12594' column='1'/>
+ <parameter type-id='type-id-52' name='replstr' filepath='../gpshead/Objects/unicodeobject.c' line='12595' column='1'/>
+ <parameter type-id='type-id-34' name='maxcount' filepath='../gpshead/Objects/unicodeobject.c' line='12596' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Substring' mangled-name='PyUnicode_Substring' filepath='../gpshead/Objects/unicodeobject.c' line='12351' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Substring'>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/unicodeobject.c' line='12351' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/unicodeobject.c' line='12351' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/unicodeobject.c' line='12351' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_XStrip' mangled-name='_PyUnicode_XStrip' filepath='../gpshead/Objects/unicodeobject.c' line='12301' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_XStrip'>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/unicodeobject.c' line='12301' column='1'/>
+ <parameter type-id='type-id-7' name='striptype' filepath='../gpshead/Objects/unicodeobject.c' line='12301' column='1'/>
+ <parameter type-id='type-id-52' name='sepobj' filepath='../gpshead/Objects/unicodeobject.c' line='12301' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_IsIdentifier' mangled-name='PyUnicode_IsIdentifier' filepath='../gpshead/Objects/unicodeobject.c' line='12131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_IsIdentifier'>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/unicodeobject.c' line='12131' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AppendAndDel' mangled-name='PyUnicode_AppendAndDel' filepath='../gpshead/Objects/unicodeobject.c' line='11396' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AppendAndDel'>
+ <parameter type-id='type-id-259' name='pv' filepath='../gpshead/Objects/bytesobject.c' line='2966' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/bytesobject.c' line='2966' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Append' mangled-name='PyUnicode_Append' filepath='../gpshead/Objects/unicodeobject.c' line='11315' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Append'>
+ <parameter type-id='type-id-259' name='p_left' filepath='../gpshead/Objects/unicodeobject.c' line='11315' column='1'/>
+ <parameter type-id='type-id-52' name='right' filepath='../gpshead/Objects/unicodeobject.c' line='11315' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Concat' mangled-name='PyUnicode_Concat' filepath='../gpshead/Objects/unicodeobject.c' line='11267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Concat'>
+ <parameter type-id='type-id-52' name='left' filepath='../gpshead/Objects/unicodeobject.c' line='11267' column='1'/>
+ <parameter type-id='type-id-52' name='right' filepath='../gpshead/Objects/unicodeobject.c' line='11267' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Contains' mangled-name='PyUnicode_Contains' filepath='../gpshead/Objects/unicodeobject.c' line='11205' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Contains'>
+ <parameter type-id='type-id-52' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='11205' column='1'/>
+ <parameter type-id='type-id-52' name='substr' filepath='../gpshead/Objects/unicodeobject.c' line='11205' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_EQ' mangled-name='_PyUnicode_EQ' filepath='../gpshead/Objects/unicodeobject.c' line='11199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EQ'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_RichCompare' mangled-name='PyUnicode_RichCompare' filepath='../gpshead/Objects/unicodeobject.c' line='11160' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RichCompare'>
+ <parameter type-id='type-id-52' name='left' filepath='../gpshead/Objects/unicodeobject.c' line='11160' column='1'/>
+ <parameter type-id='type-id-52' name='right' filepath='../gpshead/Objects/unicodeobject.c' line='11160' column='1'/>
+ <parameter type-id='type-id-7' name='op' filepath='../gpshead/Objects/unicodeobject.c' line='11160' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_EqualToASCIIId' mangled-name='_PyUnicode_EqualToASCIIId' filepath='../gpshead/Objects/unicodeobject.c' line='11116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EqualToASCIIId'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='880' column='1'/>
+ <parameter type-id='type-id-330' name='name' filepath='../gpshead/Objects/object.c' line='880' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_EqualToASCIIString' mangled-name='_PyUnicode_EqualToASCIIString' filepath='../gpshead/Objects/unicodeobject.c' line='11093' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EqualToASCIIString'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/capsule.c' line='153' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/capsule.c' line='153' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_CompareWithASCIIString' mangled-name='PyUnicode_CompareWithASCIIString' filepath='../gpshead/Objects/unicodeobject.c' line='11014' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_CompareWithASCIIString'>
+ <parameter type-id='type-id-52' name='uni' filepath='../gpshead/Objects/unicodeobject.c' line='11014' column='1'/>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='11014' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Compare' mangled-name='PyUnicode_Compare' filepath='../gpshead/Objects/unicodeobject.c' line='10993' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Compare'>
+ <parameter type-id='type-id-52' name='derived' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <parameter type-id='type-id-52' name='cls' filepath='../gpshead/Objects/abstract.c' line='2512' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Splitlines' mangled-name='PyUnicode_Splitlines' filepath='../gpshead/Objects/unicodeobject.c' line='10201' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Splitlines'>
+ <parameter type-id='type-id-52' name='string' filepath='../gpshead/Objects/unicodeobject.c' line='10201' column='1'/>
+ <parameter type-id='type-id-7' name='keepends' filepath='../gpshead/Objects/unicodeobject.c' line='10201' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Fill' mangled-name='PyUnicode_Fill' filepath='../gpshead/Objects/unicodeobject.c' line='10125' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Fill'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='10125' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/unicodeobject.c' line='10125' column='1'/>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/unicodeobject.c' line='10125' column='1'/>
+ <parameter type-id='type-id-317' name='fill_char' filepath='../gpshead/Objects/unicodeobject.c' line='10126' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_FastFill' mangled-name='_PyUnicode_FastFill' filepath='../gpshead/Objects/unicodeobject.c' line='10111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FastFill'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='10111' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/unicodeobject.c' line='10111' column='1'/>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/unicodeobject.c' line='10111' column='1'/>
+ <parameter type-id='type-id-317' name='fill_char' filepath='../gpshead/Objects/unicodeobject.c' line='10112' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_JoinArray' mangled-name='_PyUnicode_JoinArray' filepath='../gpshead/Objects/unicodeobject.c' line='9939' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_JoinArray'>
+ <parameter type-id='type-id-52' name='separator' filepath='../gpshead/Objects/unicodeobject.c' line='9939' column='1'/>
+ <parameter type-id='type-id-263' name='items' filepath='../gpshead/Objects/unicodeobject.c' line='9939' column='1'/>
+ <parameter type-id='type-id-34' name='seqlen' filepath='../gpshead/Objects/unicodeobject.c' line='9939' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Join' mangled-name='PyUnicode_Join' filepath='../gpshead/Objects/unicodeobject.c' line='9915' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Join'>
+ <parameter type-id='type-id-52' name='separator' filepath='../gpshead/Objects/unicodeobject.c' line='9915' column='1'/>
+ <parameter type-id='type-id-52' name='seq' filepath='../gpshead/Objects/unicodeobject.c' line='9915' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Tailmatch' mangled-name='PyUnicode_Tailmatch' filepath='../gpshead/Objects/unicodeobject.c' line='9670' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Tailmatch'>
+ <parameter type-id='type-id-52' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='9670' column='1'/>
+ <parameter type-id='type-id-52' name='substr' filepath='../gpshead/Objects/unicodeobject.c' line='9671' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/unicodeobject.c' line='9672' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/unicodeobject.c' line='9673' column='1'/>
+ <parameter type-id='type-id-7' name='direction' filepath='../gpshead/Objects/unicodeobject.c' line='9674' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FindChar' mangled-name='PyUnicode_FindChar' filepath='../gpshead/Objects/unicodeobject.c' line='9581' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FindChar'>
+ <parameter type-id='type-id-52' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='9581' column='1'/>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodeobject.c' line='9581' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/unicodeobject.c' line='9582' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/unicodeobject.c' line='9582' column='1'/>
+ <parameter type-id='type-id-7' name='direction' filepath='../gpshead/Objects/unicodeobject.c' line='9583' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Find' mangled-name='PyUnicode_Find' filepath='../gpshead/Objects/unicodeobject.c' line='9568' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Find'>
+ <parameter type-id='type-id-52' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='9670' column='1'/>
+ <parameter type-id='type-id-52' name='substr' filepath='../gpshead/Objects/unicodeobject.c' line='9671' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/unicodeobject.c' line='9672' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/unicodeobject.c' line='9673' column='1'/>
+ <parameter type-id='type-id-7' name='direction' filepath='../gpshead/Objects/unicodeobject.c' line='9674' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Count' mangled-name='PyUnicode_Count' filepath='../gpshead/Objects/unicodeobject.c' line='9496' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Count'>
+ <parameter type-id='type-id-52' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='9496' column='1'/>
+ <parameter type-id='type-id-52' name='substr' filepath='../gpshead/Objects/unicodeobject.c' line='9497' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/unicodeobject.c' line='9498' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/unicodeobject.c' line='9499' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-317' size-in-bits='64' id='type-id-380'/>
+ <function-decl name='_PyUnicode_InsertThousandsGrouping' mangled-name='_PyUnicode_InsertThousandsGrouping' filepath='../gpshead/Objects/unicodeobject.c' line='9376' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_InsertThousandsGrouping'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Objects/unicodeobject.c' line='9377' column='1'/>
+ <parameter type-id='type-id-34' name='n_buffer' filepath='../gpshead/Objects/unicodeobject.c' line='9378' column='1'/>
+ <parameter type-id='type-id-52' name='digits' filepath='../gpshead/Objects/unicodeobject.c' line='9379' column='1'/>
+ <parameter type-id='type-id-34' name='d_pos' filepath='../gpshead/Objects/unicodeobject.c' line='9380' column='1'/>
+ <parameter type-id='type-id-34' name='n_digits' filepath='../gpshead/Objects/unicodeobject.c' line='9381' column='1'/>
+ <parameter type-id='type-id-34' name='min_width' filepath='../gpshead/Objects/unicodeobject.c' line='9382' column='1'/>
+ <parameter type-id='type-id-3' name='grouping' filepath='../gpshead/Objects/unicodeobject.c' line='9383' column='1'/>
+ <parameter type-id='type-id-52' name='thousands_sep' filepath='../gpshead/Objects/unicodeobject.c' line='9384' column='1'/>
+ <parameter type-id='type-id-380' name='maxchar' filepath='../gpshead/Objects/unicodeobject.c' line='9385' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyUnicode_EncodeDecimal' mangled-name='PyUnicode_EncodeDecimal' filepath='../gpshead/Objects/unicodeobject.c' line='9188' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeDecimal'>
+ <parameter type-id='type-id-313' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='9188' column='1'/>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/unicodeobject.c' line='9189' column='1'/>
+ <parameter type-id='type-id-12' name='output' filepath='../gpshead/Objects/unicodeobject.c' line='9190' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='9191' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_TransformDecimalToASCII' mangled-name='PyUnicode_TransformDecimalToASCII' filepath='../gpshead/Objects/unicodeobject.c' line='9147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_TransformDecimalToASCII'>
+ <parameter type-id='type-id-313' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='9147' column='1'/>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/unicodeobject.c' line='9148' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_TransformDecimalAndSpaceToASCII' mangled-name='_PyUnicode_TransformDecimalAndSpaceToASCII' filepath='../gpshead/Objects/unicodeobject.c' line='9098' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_TransformDecimalAndSpaceToASCII'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='9098' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Translate' mangled-name='PyUnicode_Translate' filepath='../gpshead/Objects/unicodeobject.c' line='9088' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Translate'>
+ <parameter type-id='type-id-52' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='9088' column='1'/>
+ <parameter type-id='type-id-52' name='mapping' filepath='../gpshead/Objects/unicodeobject.c' line='9089' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='9090' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_TranslateCharmap' mangled-name='PyUnicode_TranslateCharmap' filepath='../gpshead/Objects/unicodeobject.c' line='9073' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_TranslateCharmap'>
+ <parameter type-id='type-id-291' name='p' filepath='../gpshead/Objects/unicodeobject.c' line='9073' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='9074' column='1'/>
+ <parameter type-id='type-id-52' name='mapping' filepath='../gpshead/Objects/unicodeobject.c' line='9075' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='9076' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsCharmapString' mangled-name='PyUnicode_AsCharmapString' filepath='../gpshead/Objects/unicodeobject.c' line='8648' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsCharmapString'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_EncodeCharmap' mangled-name='PyUnicode_EncodeCharmap' filepath='../gpshead/Objects/unicodeobject.c' line='8633' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeCharmap'>
+ <parameter type-id='type-id-291' name='p' filepath='../gpshead/Objects/unicodeobject.c' line='9073' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='9074' column='1'/>
+ <parameter type-id='type-id-52' name='mapping' filepath='../gpshead/Objects/unicodeobject.c' line='9075' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='9076' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_EncodeCharmap' mangled-name='_PyUnicode_EncodeCharmap' filepath='../gpshead/Objects/unicodeobject.c' line='8561' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeCharmap'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='8561' column='1'/>
+ <parameter type-id='type-id-52' name='mapping' filepath='../gpshead/Objects/unicodeobject.c' line='8562' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='8563' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_BuildEncodingMap' mangled-name='PyUnicode_BuildEncodingMap' filepath='../gpshead/Objects/unicodeobject.c' line='8150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_BuildEncodingMap'>
+ <parameter type-id='type-id-52' name='string' filepath='../gpshead/Objects/unicodeobject.c' line='8150' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeCharmap' mangled-name='PyUnicode_DecodeCharmap' filepath='../gpshead/Objects/unicodeobject.c' line='8043' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeCharmap'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='8043' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='8044' column='1'/>
+ <parameter type-id='type-id-52' name='mapping' filepath='../gpshead/Objects/unicodeobject.c' line='8045' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='8046' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsASCIIString' mangled-name='PyUnicode_AsASCIIString' filepath='../gpshead/Objects/unicodeobject.c' line='7075' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsASCIIString'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_AsASCIIString' mangled-name='_PyUnicode_AsASCIIString' filepath='../gpshead/Objects/unicodeobject.c' line='7058' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsASCIIString'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='7058' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='7058' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_EncodeASCII' mangled-name='PyUnicode_EncodeASCII' filepath='../gpshead/Objects/unicodeobject.c' line='7044' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeASCII'>
+ <parameter type-id='type-id-291' name='p' filepath='../gpshead/Objects/unicodeobject.c' line='7044' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='7045' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='7046' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeASCII' mangled-name='PyUnicode_DecodeASCII' filepath='../gpshead/Objects/unicodeobject.c' line='6944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeASCII'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='6944' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='6945' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='6946' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsLatin1String' mangled-name='PyUnicode_AsLatin1String' filepath='../gpshead/Objects/unicodeobject.c' line='6936' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsLatin1String'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_AsLatin1String' mangled-name='_PyUnicode_AsLatin1String' filepath='../gpshead/Objects/unicodeobject.c' line='6917' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsLatin1String'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='7058' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='7058' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_EncodeLatin1' mangled-name='PyUnicode_EncodeLatin1' filepath='../gpshead/Objects/unicodeobject.c' line='6903' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeLatin1'>
+ <parameter type-id='type-id-291' name='p' filepath='../gpshead/Objects/unicodeobject.c' line='7044' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='7045' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='7046' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeLatin1' mangled-name='PyUnicode_DecodeLatin1' filepath='../gpshead/Objects/unicodeobject.c' line='6619' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLatin1'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='6619' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='6620' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='6621' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_DecodeUnicodeInternal' mangled-name='_PyUnicode_DecodeUnicodeInternal' filepath='../gpshead/Objects/unicodeobject.c' line='6517' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_DecodeUnicodeInternal'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='6517' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='6518' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='6519' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_EncodeRawUnicodeEscape' mangled-name='PyUnicode_EncodeRawUnicodeEscape' filepath='../gpshead/Objects/unicodeobject.c' line='6502' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeRawUnicodeEscape'>
+ <parameter type-id='type-id-291' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='6502' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='6503' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsRawUnicodeEscapeString' mangled-name='PyUnicode_AsRawUnicodeEscapeString' filepath='../gpshead/Objects/unicodeobject.c' line='6423' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsRawUnicodeEscapeString'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='6423' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeRawUnicodeEscape' mangled-name='PyUnicode_DecodeRawUnicodeEscape' filepath='../gpshead/Objects/unicodeobject.c' line='6304' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeRawUnicodeEscape'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='6304' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='6305' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='6306' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_EncodeUnicodeEscape' mangled-name='PyUnicode_EncodeUnicodeEscape' filepath='../gpshead/Objects/unicodeobject.c' line='6287' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUnicodeEscape'>
+ <parameter type-id='type-id-291' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='6502' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='6503' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsUnicodeEscapeString' mangled-name='PyUnicode_AsUnicodeEscapeString' filepath='../gpshead/Objects/unicodeobject.c' line='6169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeEscapeString'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='6423' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeUnicodeEscape' mangled-name='PyUnicode_DecodeUnicodeEscape' filepath='../gpshead/Objects/unicodeobject.c' line='6146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUnicodeEscape'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='6146' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='6147' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='6148' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_DecodeUnicodeEscape' mangled-name='_PyUnicode_DecodeUnicodeEscape' filepath='../gpshead/Objects/unicodeobject.c' line='5921' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_DecodeUnicodeEscape'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='5921' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='5922' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='5923' column='1'/>
+ <parameter type-id='type-id-241' name='first_invalid_escape' filepath='../gpshead/Objects/unicodeobject.c' line='5924' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsUTF16String' mangled-name='PyUnicode_AsUTF16String' filepath='../gpshead/Objects/unicodeobject.c' line='5911' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF16String'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_EncodeUTF16' mangled-name='PyUnicode_EncodeUTF16' filepath='../gpshead/Objects/unicodeobject.c' line='5896' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF16'>
+ <parameter type-id='type-id-291' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='5896' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='5897' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='5898' column='1'/>
+ <parameter type-id='type-id-7' name='byteorder' filepath='../gpshead/Objects/unicodeobject.c' line='5899' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_EncodeUTF16' mangled-name='_PyUnicode_EncodeUTF16' filepath='../gpshead/Objects/unicodeobject.c' line='5730' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF16'>
+ <parameter type-id='type-id-52' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='5730' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='5731' column='1'/>
+ <parameter type-id='type-id-7' name='byteorder' filepath='../gpshead/Objects/unicodeobject.c' line='5732' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeUTF16Stateful' mangled-name='PyUnicode_DecodeUTF16Stateful' filepath='../gpshead/Objects/unicodeobject.c' line='5575' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF16Stateful'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='5575' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='5576' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='5577' column='1'/>
+ <parameter type-id='type-id-18' name='byteorder' filepath='../gpshead/Objects/unicodeobject.c' line='5578' column='1'/>
+ <parameter type-id='type-id-172' name='consumed' filepath='../gpshead/Objects/unicodeobject.c' line='5579' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeUTF16' mangled-name='PyUnicode_DecodeUTF16' filepath='../gpshead/Objects/unicodeobject.c' line='5566' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF16'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='5566' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='5567' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='5568' column='1'/>
+ <parameter type-id='type-id-18' name='byteorder' filepath='../gpshead/Objects/unicodeobject.c' line='5569' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsUTF32String' mangled-name='PyUnicode_AsUTF32String' filepath='../gpshead/Objects/unicodeobject.c' line='5558' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF32String'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_EncodeUTF32' mangled-name='PyUnicode_EncodeUTF32' filepath='../gpshead/Objects/unicodeobject.c' line='5543' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF32'>
+ <parameter type-id='type-id-291' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='5896' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='5897' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='5898' column='1'/>
+ <parameter type-id='type-id-7' name='byteorder' filepath='../gpshead/Objects/unicodeobject.c' line='5899' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_EncodeUTF32' mangled-name='_PyUnicode_EncodeUTF32' filepath='../gpshead/Objects/unicodeobject.c' line='5396' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF32'>
+ <parameter type-id='type-id-52' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='5396' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='5397' column='1'/>
+ <parameter type-id='type-id-7' name='byteorder' filepath='../gpshead/Objects/unicodeobject.c' line='5398' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeUTF32Stateful' mangled-name='PyUnicode_DecodeUTF32Stateful' filepath='../gpshead/Objects/unicodeobject.c' line='5251' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF32Stateful'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='5251' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='5252' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='5253' column='1'/>
+ <parameter type-id='type-id-18' name='byteorder' filepath='../gpshead/Objects/unicodeobject.c' line='5254' column='1'/>
+ <parameter type-id='type-id-172' name='consumed' filepath='../gpshead/Objects/unicodeobject.c' line='5255' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeUTF32' mangled-name='PyUnicode_DecodeUTF32' filepath='../gpshead/Objects/unicodeobject.c' line='5242' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF32'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='5566' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='5567' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='5568' column='1'/>
+ <parameter type-id='type-id-18' name='byteorder' filepath='../gpshead/Objects/unicodeobject.c' line='5569' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsUTF8String' mangled-name='PyUnicode_AsUTF8String' filepath='../gpshead/Objects/unicodeobject.c' line='5234' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF8String'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_EncodeUTF8' mangled-name='PyUnicode_EncodeUTF8' filepath='../gpshead/Objects/unicodeobject.c' line='5219' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF8'>
+ <parameter type-id='type-id-291' name='p' filepath='../gpshead/Objects/unicodeobject.c' line='7044' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='7045' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='7046' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_AsUTF8String' mangled-name='_PyUnicode_AsUTF8String' filepath='../gpshead/Objects/unicodeobject.c' line='5182' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsUTF8String'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='5182' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='5182' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-62' size-in-bits='64' id='type-id-381'/>
+ <function-decl name='_Py_EncodeUTF8Ex' mangled-name='_Py_EncodeUTF8Ex' filepath='../gpshead/Objects/unicodeobject.c' line='5077' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeUTF8Ex'>
+ <parameter type-id='type-id-344' name='text' filepath='../gpshead/Objects/unicodeobject.c' line='5077' column='1'/>
+ <parameter type-id='type-id-233' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='5077' column='1'/>
+ <parameter type-id='type-id-381' name='error_pos' filepath='../gpshead/Objects/unicodeobject.c' line='5077' column='1'/>
+ <parameter type-id='type-id-241' name='reason' filepath='../gpshead/Objects/unicodeobject.c' line='5078' column='1'/>
+ <parameter type-id='type-id-7' name='raw_malloc' filepath='../gpshead/Objects/unicodeobject.c' line='5078' column='1'/>
+ <parameter type-id='type-id-7' name='surrogateescape' filepath='../gpshead/Objects/unicodeobject.c' line='5078' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_DecodeUTF8_surrogateescape' mangled-name='_Py_DecodeUTF8_surrogateescape' filepath='../gpshead/Objects/unicodeobject.c' line='5055' 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='../gpshead/Objects/unicodeobject.c' line='5055' column='1'/>
+ <parameter type-id='type-id-34' name='arglen' filepath='../gpshead/Objects/unicodeobject.c' line='5055' column='1'/>
+ <return type-id='type-id-202'/>
+ </function-decl>
+ <function-decl name='_Py_DecodeUTF8Ex' mangled-name='_Py_DecodeUTF8Ex' filepath='../gpshead/Objects/unicodeobject.c' line='4979' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DecodeUTF8Ex'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='4979' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='4979' column='1'/>
+ <parameter type-id='type-id-203' name='wstr' filepath='../gpshead/Objects/unicodeobject.c' line='4979' column='1'/>
+ <parameter type-id='type-id-381' name='wlen' filepath='../gpshead/Objects/unicodeobject.c' line='4979' column='1'/>
+ <parameter type-id='type-id-241' name='reason' filepath='../gpshead/Objects/unicodeobject.c' line='4980' column='1'/>
+ <parameter type-id='type-id-7' name='surrogateescape' filepath='../gpshead/Objects/unicodeobject.c' line='4980' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeUTF8Stateful' mangled-name='PyUnicode_DecodeUTF8Stateful' filepath='../gpshead/Objects/unicodeobject.c' line='4825' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF8Stateful'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='4825' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='4826' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='4827' column='1'/>
+ <parameter type-id='type-id-172' name='consumed' filepath='../gpshead/Objects/unicodeobject.c' line='4828' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeUTF8' mangled-name='PyUnicode_DecodeUTF8' filepath='../gpshead/Objects/unicodeobject.c' line='4727' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF8'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='6619' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='6620' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='6621' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_EncodeUTF7' mangled-name='PyUnicode_EncodeUTF7' filepath='../gpshead/Objects/unicodeobject.c' line='4702' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF7'>
+ <parameter type-id='type-id-291' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='4702' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='4703' column='1'/>
+ <parameter type-id='type-id-7' name='base64SetO' filepath='../gpshead/Objects/unicodeobject.c' line='4704' column='1'/>
+ <parameter type-id='type-id-7' name='base64WhiteSpace' filepath='../gpshead/Objects/unicodeobject.c' line='4705' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='4706' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_EncodeUTF7' mangled-name='_PyUnicode_EncodeUTF7' filepath='../gpshead/Objects/unicodeobject.c' line='4601' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF7'>
+ <parameter type-id='type-id-52' name='str' filepath='../gpshead/Objects/unicodeobject.c' line='4601' column='1'/>
+ <parameter type-id='type-id-7' name='base64SetO' filepath='../gpshead/Objects/unicodeobject.c' line='4602' column='1'/>
+ <parameter type-id='type-id-7' name='base64WhiteSpace' filepath='../gpshead/Objects/unicodeobject.c' line='4603' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='4604' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeUTF7Stateful' mangled-name='PyUnicode_DecodeUTF7Stateful' filepath='../gpshead/Objects/unicodeobject.c' line='4408' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF7Stateful'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='4408' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='4409' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='4410' column='1'/>
+ <parameter type-id='type-id-172' name='consumed' filepath='../gpshead/Objects/unicodeobject.c' line='4411' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeUTF7' mangled-name='PyUnicode_DecodeUTF7' filepath='../gpshead/Objects/unicodeobject.c' line='4393' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF7'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='6619' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='6620' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='6621' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_GetDefaultEncoding' mangled-name='PyUnicode_GetDefaultEncoding' filepath='../gpshead/Objects/unicodeobject.c' line='4067' 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='../gpshead/Objects/unicodeobject.c' line='4044' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_WriteChar'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='4044' column='1'/>
+ <parameter type-id='type-id-34' name='index' filepath='../gpshead/Objects/unicodeobject.c' line='4044' column='1'/>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodeobject.c' line='4044' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_ReadChar' mangled-name='PyUnicode_ReadChar' filepath='../gpshead/Objects/unicodeobject.c' line='4022' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_ReadChar'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='4022' column='1'/>
+ <parameter type-id='type-id-34' name='index' filepath='../gpshead/Objects/unicodeobject.c' line='4022' column='1'/>
+ <return type-id='type-id-317'/>
+ </function-decl>
+ <function-decl name='PyUnicode_GetLength' mangled-name='PyUnicode_GetLength' filepath='../gpshead/Objects/unicodeobject.c' line='4010' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetLength'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2093' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyUnicode_GetSize' mangled-name='PyUnicode_GetSize' filepath='../gpshead/Objects/unicodeobject.c' line='3993' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetSize'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3993' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_AsUnicode' mangled-name='_PyUnicode_AsUnicode' filepath='../gpshead/Objects/unicodeobject.c' line='3978' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsUnicode'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3978' column='1'/>
+ <return type-id='type-id-291'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsUnicode' mangled-name='PyUnicode_AsUnicode' filepath='../gpshead/Objects/unicodeobject.c' line='3972' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicode'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3972' column='1'/>
+ <return type-id='type-id-313'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsUnicodeAndSize' mangled-name='PyUnicode_AsUnicodeAndSize' filepath='../gpshead/Objects/unicodeobject.c' line='3855' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeAndSize'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3855' column='1'/>
+ <parameter type-id='type-id-172' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='3855' column='1'/>
+ <return type-id='type-id-313'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsUTF8' mangled-name='PyUnicode_AsUTF8' filepath='../gpshead/Objects/unicodeobject.c' line='3849' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF8'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3849' column='1'/>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsUTF8AndSize' mangled-name='PyUnicode_AsUTF8AndSize' filepath='../gpshead/Objects/unicodeobject.c' line='3814' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF8AndSize'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3814' column='1'/>
+ <parameter type-id='type-id-172' name='psize' filepath='../gpshead/Objects/unicodeobject.c' line='3814' column='1'/>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FSDecoder' mangled-name='PyUnicode_FSDecoder' filepath='../gpshead/Objects/unicodeobject.c' line='3739' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FSDecoder'>
+ <parameter type-id='type-id-52' name='arg' filepath='../gpshead/Objects/unicodeobject.c' line='3739' column='1'/>
+ <parameter type-id='type-id-56' name='addr' filepath='../gpshead/Objects/unicodeobject.c' line='3739' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FSConverter' mangled-name='PyUnicode_FSConverter' filepath='../gpshead/Objects/unicodeobject.c' line='3699' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FSConverter'>
+ <parameter type-id='type-id-52' name='arg' filepath='../gpshead/Objects/unicodeobject.c' line='3699' column='1'/>
+ <parameter type-id='type-id-56' name='addr' filepath='../gpshead/Objects/unicodeobject.c' line='3699' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeFSDefaultAndSize' mangled-name='PyUnicode_DecodeFSDefaultAndSize' filepath='../gpshead/Objects/unicodeobject.c' line='3670' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeFSDefaultAndSize'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='3670' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='3670' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeFSDefault' mangled-name='PyUnicode_DecodeFSDefault' filepath='../gpshead/Objects/unicodeobject.c' line='3664' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeFSDefault'>
+ <parameter type-id='type-id-3' name='cp' filepath='../gpshead/Objects/unicodeobject.c' line='15324' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeLocale' mangled-name='PyUnicode_DecodeLocale' filepath='../gpshead/Objects/unicodeobject.c' line='3656' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLocale'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/typeobject.c' line='166' column='1'/>
+ <parameter type-id='type-id-3' name='internal_doc' filepath='../gpshead/Objects/typeobject.c' line='166' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_DecodeLocaleAndSize' mangled-name='PyUnicode_DecodeLocaleAndSize' filepath='../gpshead/Objects/unicodeobject.c' line='3649' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLocaleAndSize'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='6619' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='6620' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='6621' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsEncodedUnicode' mangled-name='PyUnicode_AsEncodedUnicode' filepath='../gpshead/Objects/unicodeobject.c' line='3568' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedUnicode'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3568' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Objects/unicodeobject.c' line='3569' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='3570' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsEncodedString' mangled-name='PyUnicode_AsEncodedString' filepath='../gpshead/Objects/unicodeobject.c' line='3472' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedString'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3472' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Objects/unicodeobject.c' line='3473' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='3474' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_EncodeFSDefault' mangled-name='PyUnicode_EncodeFSDefault' filepath='../gpshead/Objects/unicodeobject.c' line='3444' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeFSDefault'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='1434' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_EncodeLocale' mangled-name='PyUnicode_EncodeLocale' filepath='../gpshead/Objects/unicodeobject.c' line='3438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeLocale'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='7058' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='7058' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsEncodedObject' mangled-name='PyUnicode_AsEncodedObject' filepath='../gpshead/Objects/unicodeobject.c' line='3335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedObject'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3335' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Objects/unicodeobject.c' line='3336' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='3337' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Encode' mangled-name='PyUnicode_Encode' filepath='../gpshead/Objects/unicodeobject.c' line='3319' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Encode'>
+ <parameter type-id='type-id-291' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='3319' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='3320' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Objects/unicodeobject.c' line='3321' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='3322' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsDecodedUnicode' mangled-name='PyUnicode_AsDecodedUnicode' filepath='../gpshead/Objects/unicodeobject.c' line='3280' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsDecodedUnicode'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3568' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Objects/unicodeobject.c' line='3569' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='3570' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsDecodedObject' mangled-name='PyUnicode_AsDecodedObject' filepath='../gpshead/Objects/unicodeobject.c' line='3258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsDecodedObject'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3258' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Objects/unicodeobject.c' line='3259' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='3260' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Decode' mangled-name='PyUnicode_Decode' filepath='../gpshead/Objects/unicodeobject.c' line='3176' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Decode'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='3176' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='3177' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Objects/unicodeobject.c' line='3178' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='3179' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_normalize_encoding' mangled-name='_Py_normalize_encoding' filepath='../gpshead/Objects/unicodeobject.c' line='3130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_normalize_encoding'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Objects/unicodeobject.c' line='3130' column='1'/>
+ <parameter type-id='type-id-12' name='lower' filepath='../gpshead/Objects/unicodeobject.c' line='3131' column='1'/>
+ <parameter type-id='type-id-62' name='lower_len' filepath='../gpshead/Objects/unicodeobject.c' line='3132' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FromEncodedObject' mangled-name='PyUnicode_FromEncodedObject' filepath='../gpshead/Objects/unicodeobject.c' line='3080' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromEncodedObject'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/unicodeobject.c' line='3080' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Objects/unicodeobject.c' line='3081' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='3082' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FromObject' mangled-name='PyUnicode_FromObject' filepath='../gpshead/Objects/unicodeobject.c' line='3058' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromObject'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FromOrdinal' mangled-name='PyUnicode_FromOrdinal' filepath='../gpshead/Objects/unicodeobject.c' line='3046' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromOrdinal'>
+ <parameter type-id='type-id-7' name='ordinal' filepath='../gpshead/Objects/unicodeobject.c' line='3046' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsWideCharString' mangled-name='PyUnicode_AsWideCharString' filepath='../gpshead/Objects/unicodeobject.c' line='3010' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsWideCharString'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3010' column='1'/>
+ <parameter type-id='type-id-172' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='3011' column='1'/>
+ <return type-id='type-id-202'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsWideChar' mangled-name='PyUnicode_AsWideChar' filepath='../gpshead/Objects/unicodeobject.c' line='2982' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsWideChar'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='2982' column='1'/>
+ <parameter type-id='type-id-202' name='w' filepath='../gpshead/Objects/unicodeobject.c' line='2983' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='2984' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FromFormat' mangled-name='PyUnicode_FromFormat' filepath='../gpshead/Objects/unicodeobject.c' line='2956' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromFormat'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/bytesobject.c' line='370' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FromFormatV' mangled-name='PyUnicode_FromFormatV' filepath='../gpshead/Objects/unicodeobject.c' line='2899' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromFormatV'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/unicodeobject.c' line='2899' column='1'/>
+ <parameter type-id='type-id-261' name='vargs' filepath='../gpshead/Objects/unicodeobject.c' line='2899' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsUCS4Copy' mangled-name='PyUnicode_AsUCS4Copy' filepath='../gpshead/Objects/unicodeobject.c' line='2523' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUCS4Copy'>
+ <parameter type-id='type-id-52' name='string' filepath='../gpshead/Objects/unicodeobject.c' line='2523' column='1'/>
+ <return type-id='type-id-380'/>
+ </function-decl>
+ <function-decl name='PyUnicode_AsUCS4' mangled-name='PyUnicode_AsUCS4' filepath='../gpshead/Objects/unicodeobject.c' line='2512' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUCS4'>
+ <parameter type-id='type-id-52' name='string' filepath='../gpshead/Objects/unicodeobject.c' line='2512' column='1'/>
+ <parameter type-id='type-id-380' name='target' filepath='../gpshead/Objects/unicodeobject.c' line='2512' column='1'/>
+ <parameter type-id='type-id-34' name='targetsize' filepath='../gpshead/Objects/unicodeobject.c' line='2512' column='1'/>
+ <parameter type-id='type-id-7' name='copy_null' filepath='../gpshead/Objects/unicodeobject.c' line='2513' column='1'/>
+ <return type-id='type-id-380'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_AsKind' mangled-name='_PyUnicode_AsKind' filepath='../gpshead/Objects/unicodeobject.c' line='2409' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsKind'>
+ <parameter type-id='type-id-52' name='s' filepath='../gpshead/Objects/unicodeobject.c' line='2409' column='1'/>
+ <parameter type-id='type-id-101' name='kind' filepath='../gpshead/Objects/unicodeobject.c' line='2409' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_Copy' mangled-name='_PyUnicode_Copy' filepath='../gpshead/Objects/unicodeobject.c' line='2380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_Copy'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='2380' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_FindMaxChar' mangled-name='_PyUnicode_FindMaxChar' filepath='../gpshead/Objects/unicodeobject.c' line='2299' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FindMaxChar'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='2299' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Objects/unicodeobject.c' line='2299' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Objects/unicodeobject.c' line='2299' column='1'/>
+ <return type-id='type-id-317'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FromKindAndData' mangled-name='PyUnicode_FromKindAndData' filepath='../gpshead/Objects/unicodeobject.c' line='2279' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromKindAndData'>
+ <parameter type-id='type-id-7' name='kind' filepath='../gpshead/Objects/unicodeobject.c' line='2279' column='1'/>
+ <parameter type-id='type-id-56' name='buffer' filepath='../gpshead/Objects/unicodeobject.c' line='2279' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='2279' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_FromASCII' mangled-name='_PyUnicode_FromASCII' filepath='../gpshead/Objects/unicodeobject.c' line='2170' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FromASCII'>
+ <parameter type-id='type-id-3' name='cptr' filepath='../gpshead/Objects/bytes_methods.c' line='154' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Objects/bytes_methods.c' line='154' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_ClearStaticStrings' mangled-name='_PyUnicode_ClearStaticStrings' filepath='../gpshead/Objects/unicodeobject.c' line='2155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ClearStaticStrings'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_FromId' mangled-name='_PyUnicode_FromId' filepath='../gpshead/Objects/unicodeobject.c' line='2138' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FromId'>
+ <parameter type-id='type-id-330' name='id' filepath='../gpshead/Objects/unicodeobject.c' line='2138' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FromString' mangled-name='PyUnicode_FromString' filepath='../gpshead/Objects/unicodeobject.c' line='2127' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromString'>
+ <parameter type-id='type-id-3' name='cp' filepath='../gpshead/Objects/unicodeobject.c' line='15324' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FromStringAndSize' mangled-name='PyUnicode_FromStringAndSize' filepath='../gpshead/Objects/unicodeobject.c' line='2113' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromStringAndSize'>
+ <parameter type-id='type-id-3' name='u' filepath='../gpshead/Objects/unicodeobject.c' line='2113' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='2113' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FromWideChar' mangled-name='PyUnicode_FromWideChar' filepath='../gpshead/Objects/unicodeobject.c' line='2045' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromWideChar'>
+ <parameter type-id='type-id-344' name='u' filepath='../gpshead/Objects/unicodeobject.c' line='2045' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='2045' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_FromUnicode' mangled-name='PyUnicode_FromUnicode' filepath='../gpshead/Objects/unicodeobject.c' line='2031' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromUnicode'>
+ <parameter type-id='type-id-291' name='u' filepath='../gpshead/Objects/unicodeobject.c' line='2031' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='2031' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_Resize' mangled-name='PyUnicode_Resize' filepath='../gpshead/Objects/unicodeobject.c' line='1921' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Resize'>
+ <parameter type-id='type-id-259' name='p_unicode' filepath='../gpshead/Objects/unicodeobject.c' line='1921' column='1'/>
+ <parameter type-id='type-id-34' name='length' filepath='../gpshead/Objects/unicodeobject.c' line='1921' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_Ready' mangled-name='_PyUnicode_Ready' filepath='../gpshead/Objects/unicodeobject.c' line='1677' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_Ready'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='1677' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyUnicode_CopyCharacters' mangled-name='PyUnicode_CopyCharacters' filepath='../gpshead/Objects/unicodeobject.c' line='1576' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_CopyCharacters'>
+ <parameter type-id='type-id-52' name='to' filepath='../gpshead/Objects/unicodeobject.c' line='1576' column='1'/>
+ <parameter type-id='type-id-34' name='to_start' filepath='../gpshead/Objects/unicodeobject.c' line='1576' column='1'/>
+ <parameter type-id='type-id-52' name='from' filepath='../gpshead/Objects/unicodeobject.c' line='1577' column='1'/>
+ <parameter type-id='type-id-34' name='from_start' filepath='../gpshead/Objects/unicodeobject.c' line='1577' column='1'/>
+ <parameter type-id='type-id-34' name='how_many' filepath='../gpshead/Objects/unicodeobject.c' line='1578' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_FastCopyCharacters' mangled-name='_PyUnicode_FastCopyCharacters' filepath='../gpshead/Objects/unicodeobject.c' line='1568' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FastCopyCharacters'>
+ <parameter type-id='type-id-52' name='to' filepath='../gpshead/Objects/unicodeobject.c' line='1569' column='1'/>
+ <parameter type-id='type-id-34' name='to_start' filepath='../gpshead/Objects/unicodeobject.c' line='1569' column='1'/>
+ <parameter type-id='type-id-52' name='from' filepath='../gpshead/Objects/unicodeobject.c' line='1570' column='1'/>
+ <parameter type-id='type-id-34' name='from_start' filepath='../gpshead/Objects/unicodeobject.c' line='1570' column='1'/>
+ <parameter type-id='type-id-34' name='how_many' filepath='../gpshead/Objects/unicodeobject.c' line='1570' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyUnicode_New' mangled-name='PyUnicode_New' filepath='../gpshead/Objects/unicodeobject.c' line='1262' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_New'>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/unicodeobject.c' line='1262' column='1'/>
+ <parameter type-id='type-id-317' name='maxchar' filepath='../gpshead/Objects/unicodeobject.c' line='1262' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyUnicode_GetMax' mangled-name='PyUnicode_GetMax' filepath='../gpshead/Objects/unicodeobject.c' line='396' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetMax'>
+ <return type-id='type-id-289'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/unicodectype.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-382' visibility='default' filepath='../gpshead/Objects/unicodectype.c' line='29' column='1' id='type-id-383'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='upper' type-id='type-id-384' visibility='default' filepath='../gpshead/Objects/unicodectype.c' line='34' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='32'>
+ <var-decl name='lower' type-id='type-id-384' visibility='default' filepath='../gpshead/Objects/unicodectype.c' line='35' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='title' type-id='type-id-384' visibility='default' filepath='../gpshead/Objects/unicodectype.c' line='36' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='96'>
+ <var-decl name='decimal' type-id='type-id-302' visibility='default' filepath='../gpshead/Objects/unicodectype.c' line='38' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='104'>
+ <var-decl name='digit' type-id='type-id-302' visibility='default' filepath='../gpshead/Objects/unicodectype.c' line='39' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='112'>
+ <var-decl name='flags' type-id='type-id-385' visibility='default' filepath='../gpshead/Objects/unicodectype.c' line='40' column='1'/>
+ </data-member>
+ </class-decl>
+ <qualified-type-def type-id='type-id-7' const='yes' id='type-id-384'/>
+ <qualified-type-def type-id='type-id-109' const='yes' id='type-id-385'/>
+ <typedef-decl name='_PyUnicode_TypeRecord' type-id='type-id-383' filepath='../gpshead/Objects/unicodectype.c' line='41' column='1' id='type-id-382'/>
+ <qualified-type-def type-id='type-id-382' const='yes' id='type-id-386'/>
+
+ <array-type-def dimensions='1' type-id='type-id-386' size-in-bits='63616' id='type-id-387'>
+ <subrange length='497' type-id='type-id-38' id='type-id-388'/>
+
+ </array-type-def>
+ <qualified-type-def type-id='type-id-387' const='yes' id='type-id-389'/>
+ <var-decl name='_PyUnicode_TypeRecords' type-id='type-id-389' mangled-name='_PyUnicode_TypeRecords' visibility='default' filepath='../gpshead/Objects/unicodetype_db.h' line='4' column='1' elf-symbol-id='_PyUnicode_TypeRecords'/>
+ <qualified-type-def type-id='type-id-317' const='yes' id='type-id-390'/>
+
+ <array-type-def dimensions='1' type-id='type-id-390' size-in-bits='39552' id='type-id-391'>
+ <subrange length='1236' type-id='type-id-38' id='type-id-392'/>
+
+ </array-type-def>
+ <qualified-type-def type-id='type-id-391' const='yes' id='type-id-393'/>
+ <var-decl name='_PyUnicode_ExtendedCase' type-id='type-id-393' mangled-name='_PyUnicode_ExtendedCase' visibility='default' filepath='../gpshead/Objects/unicodetype_db.h' line='506' column='1' elf-symbol-id='_PyUnicode_ExtendedCase'/>
+ <function-decl name='_PyUnicode_IsAlpha' mangled-name='_PyUnicode_IsAlpha' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsAlpha'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsCaseIgnorable' mangled-name='_PyUnicode_IsCaseIgnorable' filepath='../gpshead/Objects/unicodectype.c' line='281' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsCaseIgnorable'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsCased' mangled-name='_PyUnicode_IsCased' filepath='../gpshead/Objects/unicodectype.c' line='274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsCased'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_ToFoldedFull' mangled-name='_PyUnicode_ToFoldedFull' filepath='../gpshead/Objects/unicodectype.c' line='259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToFoldedFull'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='259' column='1'/>
+ <parameter type-id='type-id-380' name='res' filepath='../gpshead/Objects/unicodectype.c' line='259' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_ToUpperFull' mangled-name='_PyUnicode_ToUpperFull' filepath='../gpshead/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-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='259' column='1'/>
+ <parameter type-id='type-id-380' name='res' filepath='../gpshead/Objects/unicodectype.c' line='259' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_ToTitleFull' mangled-name='_PyUnicode_ToTitleFull' filepath='../gpshead/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-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='259' column='1'/>
+ <parameter type-id='type-id-380' name='res' filepath='../gpshead/Objects/unicodectype.c' line='259' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_ToLowerFull' mangled-name='_PyUnicode_ToLowerFull' filepath='../gpshead/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-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='259' column='1'/>
+ <parameter type-id='type-id-380' name='res' filepath='../gpshead/Objects/unicodectype.c' line='259' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_ToLowercase' mangled-name='_PyUnicode_ToLowercase' filepath='../gpshead/Objects/unicodectype.c' line='202' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToLowercase'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='202' column='1'/>
+ <return type-id='type-id-317'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_ToUppercase' mangled-name='_PyUnicode_ToUppercase' filepath='../gpshead/Objects/unicodectype.c' line='190' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToUppercase'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='202' column='1'/>
+ <return type-id='type-id-317'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsUppercase' mangled-name='_PyUnicode_IsUppercase' filepath='../gpshead/Objects/unicodectype.c' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsUppercase'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsLowercase' mangled-name='_PyUnicode_IsLowercase' filepath='../gpshead/Objects/unicodectype.c' line='170' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsLowercase'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsPrintable' mangled-name='_PyUnicode_IsPrintable' filepath='../gpshead/Objects/unicodectype.c' line='160' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsPrintable'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsNumeric' mangled-name='_PyUnicode_IsNumeric' filepath='../gpshead/Objects/unicodectype.c' line='140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsNumeric'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsDigit' mangled-name='_PyUnicode_IsDigit' filepath='../gpshead/Objects/unicodectype.c' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsDigit'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='130' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_ToDigit' mangled-name='_PyUnicode_ToDigit' filepath='../gpshead/Objects/unicodectype.c' line='123' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToDigit'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsDecimalDigit' mangled-name='_PyUnicode_IsDecimalDigit' filepath='../gpshead/Objects/unicodectype.c' line='113' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsDecimalDigit'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='130' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_ToDecimalDigit' mangled-name='_PyUnicode_ToDecimalDigit' filepath='../gpshead/Objects/unicodectype.c' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToDecimalDigit'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsXidContinue' mangled-name='_PyUnicode_IsXidContinue' filepath='../gpshead/Objects/unicodectype.c' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsXidContinue'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsXidStart' mangled-name='_PyUnicode_IsXidStart' filepath='../gpshead/Objects/unicodectype.c' line='86' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsXidStart'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsTitlecase' mangled-name='_PyUnicode_IsTitlecase' filepath='../gpshead/Objects/unicodectype.c' line='76' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsTitlecase'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='291' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_ToTitlecase' mangled-name='_PyUnicode_ToTitlecase' filepath='../gpshead/Objects/unicodectype.c' line='64' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToTitlecase'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodectype.c' line='202' column='1'/>
+ <return type-id='type-id-317'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsLinebreak' mangled-name='_PyUnicode_IsLinebreak' filepath='../gpshead/Objects/unicodetype_db.h' line='6037' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsLinebreak'>
+ <parameter type-id='type-id-390' name='ch' filepath='../gpshead/Objects/unicodetype_db.h' line='6037' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_IsWhitespace' mangled-name='_PyUnicode_IsWhitespace' filepath='../gpshead/Objects/unicodetype_db.h' line='5996' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsWhitespace'>
+ <parameter type-id='type-id-390' name='ch' filepath='../gpshead/Objects/unicodetype_db.h' line='6037' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_ToNumeric' mangled-name='_PyUnicode_ToNumeric' filepath='../gpshead/Objects/unicodetype_db.h' line='4108' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToNumeric'>
+ <parameter type-id='type-id-317' name='ch' filepath='../gpshead/Objects/unicodetype_db.h' line='4108' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Objects/weakrefobject.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_PyWeakref_RefType' type-id='type-id-245' mangled-name='_PyWeakref_RefType' visibility='default' filepath='../gpshead/Include/weakrefobject.h' line='43' column='1' elf-symbol-id='_PyWeakref_RefType'/>
+ <var-decl name='_PyWeakref_ProxyType' type-id='type-id-245' mangled-name='_PyWeakref_ProxyType' visibility='default' filepath='../gpshead/Include/weakrefobject.h' line='44' column='1' elf-symbol-id='_PyWeakref_ProxyType'/>
+ <var-decl name='_PyWeakref_CallableProxyType' type-id='type-id-245' mangled-name='_PyWeakref_CallableProxyType' visibility='default' filepath='../gpshead/Include/weakrefobject.h' line='45' column='1' elf-symbol-id='_PyWeakref_CallableProxyType'/>
+ <function-decl name='PyObject_ClearWeakRefs' mangled-name='PyObject_ClearWeakRefs' filepath='../gpshead/Objects/weakrefobject.c' line='947' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ClearWeakRefs'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/object.c' line='2147' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyWeakref_GetObject' mangled-name='PyWeakref_GetObject' filepath='../gpshead/Objects/weakrefobject.c' line='917' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_GetObject'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyWeakref_NewProxy' mangled-name='PyWeakref_NewProxy' filepath='../gpshead/Objects/weakrefobject.c' line='853' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_NewProxy'>
+ <parameter type-id='type-id-52' name='ob' filepath='../gpshead/Objects/weakrefobject.c' line='853' column='1'/>
+ <parameter type-id='type-id-52' name='callback' filepath='../gpshead/Objects/weakrefobject.c' line='853' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyWeakref_NewRef' mangled-name='PyWeakref_NewRef' filepath='../gpshead/Objects/weakrefobject.c' line='794' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_NewRef'>
+ <parameter type-id='type-id-52' name='ob' filepath='../gpshead/Objects/weakrefobject.c' line='794' column='1'/>
+ <parameter type-id='type-id-52' name='callback' filepath='../gpshead/Objects/weakrefobject.c' line='794' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <class-decl name='_PyWeakReference' size-in-bits='448' is-struct='yes' visibility='default' filepath='../gpshead/Include/weakrefobject.h' line='16' column='1' id='type-id-394'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-103' visibility='default' filepath='../gpshead/Include/weakrefobject.h' line='17' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='wr_object' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/weakrefobject.h' line='23' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='wr_callback' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/weakrefobject.h' line='26' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='hash' type-id='type-id-164' visibility='default' filepath='../gpshead/Include/weakrefobject.h' line='31' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='wr_prev' type-id='type-id-395' visibility='default' filepath='../gpshead/Include/weakrefobject.h' line='38' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='wr_next' type-id='type-id-395' visibility='default' filepath='../gpshead/Include/weakrefobject.h' line='39' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyWeakReference' type-id='type-id-394' filepath='../gpshead/Include/weakrefobject.h' line='10' column='1' id='type-id-396'/>
+ <pointer-type-def type-id='type-id-396' size-in-bits='64' id='type-id-395'/>
+ <function-decl name='_PyWeakref_ClearRef' mangled-name='_PyWeakref_ClearRef' filepath='../gpshead/Objects/weakrefobject.c' line='91' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWeakref_ClearRef'>
+ <parameter type-id='type-id-395' name='self' filepath='../gpshead/Objects/weakrefobject.c' line='91' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyWeakref_GetWeakrefCount' mangled-name='_PyWeakref_GetWeakrefCount' filepath='../gpshead/Objects/weakrefobject.c' line='10' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWeakref_GetWeakrefCount'>
+ <parameter type-id='type-id-395' name='head' filepath='../gpshead/Objects/weakrefobject.c' line='10' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/_warnings.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_PyWarnings_Init' mangled-name='_PyWarnings_Init' filepath='../gpshead/Python/_warnings.c' line='1306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWarnings_Init'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyErr_WarnUnawaitedCoroutine' mangled-name='_PyErr_WarnUnawaitedCoroutine' filepath='../gpshead/Python/_warnings.c' line='1169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_WarnUnawaitedCoroutine'>
+ <parameter type-id='type-id-52' name='coro' filepath='../gpshead/Python/_warnings.c' line='1169' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_WarnExplicitFormat' mangled-name='PyErr_WarnExplicitFormat' filepath='../gpshead/Python/_warnings.c' line='1126' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WarnExplicitFormat'>
+ <parameter type-id='type-id-52' name='category' filepath='../gpshead/Python/_warnings.c' line='1126' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/_warnings.c' line='1127' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/_warnings.c' line='1127' column='1'/>
+ <parameter type-id='type-id-3' name='module_str' filepath='../gpshead/Python/_warnings.c' line='1128' column='1'/>
+ <parameter type-id='type-id-52' name='registry' filepath='../gpshead/Python/_warnings.c' line='1128' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/_warnings.c' line='1129' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyErr_WarnExplicit' mangled-name='PyErr_WarnExplicit' filepath='../gpshead/Python/_warnings.c' line='1098' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WarnExplicit'>
+ <parameter type-id='type-id-52' name='category' filepath='../gpshead/Python/_warnings.c' line='1098' column='1'/>
+ <parameter type-id='type-id-3' name='text' filepath='../gpshead/Python/_warnings.c' line='1098' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/_warnings.c' line='1099' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/_warnings.c' line='1099' column='1'/>
+ <parameter type-id='type-id-3' name='module_str' filepath='../gpshead/Python/_warnings.c' line='1100' column='1'/>
+ <parameter type-id='type-id-52' name='registry' filepath='../gpshead/Python/_warnings.c' line='1100' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyErr_WarnExplicitObject' mangled-name='PyErr_WarnExplicitObject' filepath='../gpshead/Python/_warnings.c' line='1082' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WarnExplicitObject'>
+ <parameter type-id='type-id-52' name='category' filepath='../gpshead/Python/_warnings.c' line='1082' column='1'/>
+ <parameter type-id='type-id-52' name='message' filepath='../gpshead/Python/_warnings.c' line='1082' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/_warnings.c' line='1083' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/_warnings.c' line='1083' column='1'/>
+ <parameter type-id='type-id-52' name='module' filepath='../gpshead/Python/_warnings.c' line='1084' column='1'/>
+ <parameter type-id='type-id-52' name='registry' filepath='../gpshead/Python/_warnings.c' line='1084' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyErr_Warn' mangled-name='PyErr_Warn' filepath='../gpshead/Python/_warnings.c' line='1075' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Warn'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Objects/exceptions.c' line='1812' column='1'/>
+ <parameter type-id='type-id-3' name='reason' filepath='../gpshead/Objects/exceptions.c' line='1812' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyErr_WarnEx' mangled-name='PyErr_WarnEx' filepath='../gpshead/Python/_warnings.c' line='1058' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WarnEx'>
+ <parameter type-id='type-id-52' name='category' filepath='../gpshead/Python/_warnings.c' line='1058' column='1'/>
+ <parameter type-id='type-id-3' name='text' filepath='../gpshead/Python/_warnings.c' line='1058' column='1'/>
+ <parameter type-id='type-id-34' name='stack_level' filepath='../gpshead/Python/_warnings.c' line='1058' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyErr_ResourceWarning' mangled-name='PyErr_ResourceWarning' filepath='../gpshead/Python/_warnings.c' line='1039' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ResourceWarning'>
+ <parameter type-id='type-id-52' name='source' filepath='../gpshead/Python/_warnings.c' line='1039' column='1'/>
+ <parameter type-id='type-id-34' name='stack_level' filepath='../gpshead/Python/_warnings.c' line='1039' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/_warnings.c' line='1040' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyErr_WarnFormat' mangled-name='PyErr_WarnFormat' filepath='../gpshead/Python/_warnings.c' line='1022' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WarnFormat'>
+ <parameter type-id='type-id-52' name='source' filepath='../gpshead/Python/_warnings.c' line='1039' column='1'/>
+ <parameter type-id='type-id-34' name='stack_level' filepath='../gpshead/Python/_warnings.c' line='1039' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/_warnings.c' line='1040' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/Python-ast.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyAST_Check' mangled-name='PyAST_Check' filepath='../gpshead/Python/Python-ast.c' line='8397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAST_Check'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/Python-ast.c' line='8397' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <class-decl name='_mod' size-in-bits='128' is-struct='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='44' column='1' id='type-id-397'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='kind' type-id='type-id-398' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='45' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='v' type-id='type-id-399' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='63' column='1'/>
+ </data-member>
+ </class-decl>
+ <enum-decl name='_mod_kind' filepath='../gpshead/Include/Python-ast.h' line='42' column='1' id='type-id-398'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='Module_kind' value='1'/>
+ <enumerator name='Interactive_kind' value='2'/>
+ <enumerator name='Expression_kind' value='3'/>
+ <enumerator name='Suite_kind' value='4'/>
+ </enum-decl>
+ <union-decl name='__anonymous_union__' size-in-bits='64' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='46' column='1' id='type-id-399'>
+ <data-member access='private'>
+ <var-decl name='Module' type-id='type-id-400' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='49' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Interactive' type-id='type-id-400' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='53' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Expression' type-id='type-id-401' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='57' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Suite' type-id='type-id-400' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='61' column='1'/>
+ </data-member>
+ </union-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='47' column='1' id='type-id-400'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='body' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='48' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-403' visibility='default' filepath='../gpshead/Include/asdl.h' line='19' column='1' id='type-id-404'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='size' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/asdl.h' line='20' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='elements' type-id='type-id-405' visibility='default' filepath='../gpshead/Include/asdl.h' line='21' column='1'/>
+ </data-member>
+ </class-decl>
+
+ <array-type-def dimensions='1' type-id='type-id-56' size-in-bits='64' id='type-id-405'>
+ <subrange length='1' type-id='type-id-38' id='type-id-118'/>
+
+ </array-type-def>
+ <typedef-decl name='asdl_seq' type-id='type-id-404' filepath='../gpshead/Include/asdl.h' line='22' column='1' id='type-id-403'/>
+ <pointer-type-def type-id='type-id-403' size-in-bits='64' id='type-id-402'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='55' column='1' id='type-id-401'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='body' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='56' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='_expr' size-in-bits='320' is-struct='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='216' column='1' id='type-id-407'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='kind' type-id='type-id-408' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='217' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='v' type-id='type-id-409' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='362' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='lineno' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='363' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288'>
+ <var-decl name='col_offset' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='364' column='1'/>
+ </data-member>
+ </class-decl>
+ <enum-decl name='_expr_kind' filepath='../gpshead/Include/Python-ast.h' line='207' column='1' id='type-id-408'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='BoolOp_kind' value='1'/>
+ <enumerator name='BinOp_kind' value='2'/>
+ <enumerator name='UnaryOp_kind' value='3'/>
+ <enumerator name='Lambda_kind' value='4'/>
+ <enumerator name='IfExp_kind' value='5'/>
+ <enumerator name='Dict_kind' value='6'/>
+ <enumerator name='Set_kind' value='7'/>
+ <enumerator name='ListComp_kind' value='8'/>
+ <enumerator name='SetComp_kind' value='9'/>
+ <enumerator name='DictComp_kind' value='10'/>
+ <enumerator name='GeneratorExp_kind' value='11'/>
+ <enumerator name='Await_kind' value='12'/>
+ <enumerator name='Yield_kind' value='13'/>
+ <enumerator name='YieldFrom_kind' value='14'/>
+ <enumerator name='Compare_kind' value='15'/>
+ <enumerator name='Call_kind' value='16'/>
+ <enumerator name='Num_kind' value='17'/>
+ <enumerator name='Str_kind' value='18'/>
+ <enumerator name='FormattedValue_kind' value='19'/>
+ <enumerator name='JoinedStr_kind' value='20'/>
+ <enumerator name='Bytes_kind' value='21'/>
+ <enumerator name='NameConstant_kind' value='22'/>
+ <enumerator name='Ellipsis_kind' value='23'/>
+ <enumerator name='Constant_kind' value='24'/>
+ <enumerator name='Attribute_kind' value='25'/>
+ <enumerator name='Subscript_kind' value='26'/>
+ <enumerator name='Starred_kind' value='27'/>
+ <enumerator name='Name_kind' value='28'/>
+ <enumerator name='List_kind' value='29'/>
+ <enumerator name='Tuple_kind' value='30'/>
+ </enum-decl>
+ <union-decl name='__anonymous_union__' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='218' column='1' id='type-id-409'>
+ <data-member access='private'>
+ <var-decl name='BoolOp' type-id='type-id-410' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='222' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='BinOp' type-id='type-id-411' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='228' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='UnaryOp' type-id='type-id-412' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='233' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Lambda' type-id='type-id-413' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='238' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='IfExp' type-id='type-id-414' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='244' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Dict' type-id='type-id-415' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='249' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Set' type-id='type-id-416' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='253' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='ListComp' type-id='type-id-417' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='258' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='SetComp' type-id='type-id-417' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='263' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='DictComp' type-id='type-id-418' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='269' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='GeneratorExp' type-id='type-id-417' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='274' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Await' type-id='type-id-419' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='278' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Yield' type-id='type-id-419' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='282' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='YieldFrom' type-id='type-id-419' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='286' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Compare' type-id='type-id-420' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='292' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Call' type-id='type-id-421' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='298' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Num' type-id='type-id-422' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='302' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Str' type-id='type-id-423' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='306' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='FormattedValue' type-id='type-id-424' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='312' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='JoinedStr' type-id='type-id-425' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='316' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Bytes' type-id='type-id-426' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='320' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='NameConstant' type-id='type-id-427' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='324' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Constant' type-id='type-id-428' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='328' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Attribute' type-id='type-id-429' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='334' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Subscript' type-id='type-id-430' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='340' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Starred' type-id='type-id-431' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='345' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Name' type-id='type-id-432' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='350' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='List' type-id='type-id-433' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='355' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Tuple' type-id='type-id-433' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='360' column='1'/>
+ </data-member>
+ </union-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='219' column='1' id='type-id-410'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='op' type-id='type-id-434' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='220' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='values' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='221' column='1'/>
+ </data-member>
+ </class-decl>
+ <enum-decl name='_boolop' filepath='../gpshead/Include/Python-ast.h' line='16' column='1' id='type-id-435'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='And' value='1'/>
+ <enumerator name='Or' value='2'/>
+ </enum-decl>
+ <typedef-decl name='boolop_ty' type-id='type-id-435' filepath='../gpshead/Include/Python-ast.h' line='16' column='1' id='type-id-434'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='224' column='1' id='type-id-411'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='left' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='225' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='op' type-id='type-id-436' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='226' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='right' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='227' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-407' size-in-bits='64' id='type-id-437'/>
+ <typedef-decl name='expr_ty' type-id='type-id-437' filepath='../gpshead/Include/Python-ast.h' line='9' column='1' id='type-id-406'/>
+ <enum-decl name='_operator' filepath='../gpshead/Include/Python-ast.h' line='18' column='1' id='type-id-438'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='Add' value='1'/>
+ <enumerator name='Sub' value='2'/>
+ <enumerator name='Mult' value='3'/>
+ <enumerator name='MatMult' value='4'/>
+ <enumerator name='Div' value='5'/>
+ <enumerator name='Mod' value='6'/>
+ <enumerator name='Pow' value='7'/>
+ <enumerator name='LShift' value='8'/>
+ <enumerator name='RShift' value='9'/>
+ <enumerator name='BitOr' value='10'/>
+ <enumerator name='BitXor' value='11'/>
+ <enumerator name='BitAnd' value='12'/>
+ <enumerator name='FloorDiv' value='13'/>
+ </enum-decl>
+ <typedef-decl name='operator_ty' type-id='type-id-438' filepath='../gpshead/Include/Python-ast.h' line='20' column='1' id='type-id-436'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='230' column='1' id='type-id-412'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='op' type-id='type-id-439' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='231' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='operand' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='232' column='1'/>
+ </data-member>
+ </class-decl>
+ <enum-decl name='_unaryop' filepath='../gpshead/Include/Python-ast.h' line='22' column='1' id='type-id-440'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='Invert' value='1'/>
+ <enumerator name='Not' value='2'/>
+ <enumerator name='UAdd' value='3'/>
+ <enumerator name='USub' value='4'/>
+ </enum-decl>
+ <typedef-decl name='unaryop_ty' type-id='type-id-440' filepath='../gpshead/Include/Python-ast.h' line='22' column='1' id='type-id-439'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='235' column='1' id='type-id-413'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='args' type-id='type-id-441' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='236' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='body' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='237' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='_arguments' size-in-bits='384' is-struct='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='410' column='1' id='type-id-442'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='args' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='411' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='vararg' type-id='type-id-443' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='412' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='kwonlyargs' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='413' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='kw_defaults' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='414' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='kwarg' type-id='type-id-443' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='415' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='defaults' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='416' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='_arg' size-in-bits='192' is-struct='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='419' column='1' id='type-id-444'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='arg' type-id='type-id-445' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='420' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='annotation' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='421' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='lineno' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='422' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='160'>
+ <var-decl name='col_offset' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='423' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='identifier' type-id='type-id-52' filepath='../gpshead/Include/asdl.h' line='4' column='1' id='type-id-445'/>
+ <pointer-type-def type-id='type-id-444' size-in-bits='64' id='type-id-446'/>
+ <typedef-decl name='arg_ty' type-id='type-id-446' filepath='../gpshead/Include/Python-ast.h' line='33' column='1' id='type-id-443'/>
+ <pointer-type-def type-id='type-id-442' size-in-bits='64' id='type-id-447'/>
+ <typedef-decl name='arguments_ty' type-id='type-id-447' filepath='../gpshead/Include/Python-ast.h' line='31' column='1' id='type-id-441'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='240' column='1' id='type-id-414'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='test' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='241' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='body' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='242' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='orelse' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='243' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='246' column='1' id='type-id-415'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='keys' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='247' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='values' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='248' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='251' column='1' id='type-id-416'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='elts' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='252' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='255' column='1' id='type-id-417'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='elt' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='256' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='generators' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='257' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='265' column='1' id='type-id-418'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='key' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='266' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='value' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='267' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='generators' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='268' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='276' column='1' id='type-id-419'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='value' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='277' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='288' column='1' id='type-id-420'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='left' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='289' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='ops' type-id='type-id-448' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='290' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='comparators' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='291' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-449' visibility='default' filepath='../gpshead/Include/asdl.h' line='24' column='1' id='type-id-450'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='size' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/asdl.h' line='25' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='elements' type-id='type-id-451' visibility='default' filepath='../gpshead/Include/asdl.h' line='26' column='1'/>
+ </data-member>
+ </class-decl>
+
+ <array-type-def dimensions='1' type-id='type-id-7' size-in-bits='32' id='type-id-451'>
+ <subrange length='1' type-id='type-id-38' id='type-id-118'/>
+
+ </array-type-def>
+ <typedef-decl name='asdl_int_seq' type-id='type-id-450' filepath='../gpshead/Include/asdl.h' line='27' column='1' id='type-id-449'/>
+ <pointer-type-def type-id='type-id-449' size-in-bits='64' id='type-id-448'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='294' column='1' id='type-id-421'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='func' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='295' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='args' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='296' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='keywords' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='297' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='300' column='1' id='type-id-422'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='n' type-id='type-id-452' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='301' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='object' type-id='type-id-52' filepath='../gpshead/Include/asdl.h' line='7' column='1' id='type-id-452'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='304' column='1' id='type-id-423'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='s' type-id='type-id-453' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='305' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='string' type-id='type-id-52' filepath='../gpshead/Include/asdl.h' line='5' column='1' id='type-id-453'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='308' column='1' id='type-id-424'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='value' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='309' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='conversion' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='310' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='format_spec' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='311' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='314' column='1' id='type-id-425'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='values' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='315' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='318' column='1' id='type-id-426'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='s' type-id='type-id-454' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='319' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='bytes' type-id='type-id-52' filepath='../gpshead/Include/asdl.h' line='6' column='1' id='type-id-454'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='322' column='1' id='type-id-427'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='value' type-id='type-id-455' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='323' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='singleton' type-id='type-id-52' filepath='../gpshead/Include/asdl.h' line='8' column='1' id='type-id-455'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='326' column='1' id='type-id-428'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='value' type-id='type-id-456' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='327' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='constant' type-id='type-id-52' filepath='../gpshead/Include/asdl.h' line='9' column='1' id='type-id-456'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='330' column='1' id='type-id-429'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='value' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='331' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='attr' type-id='type-id-445' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='332' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='ctx' type-id='type-id-457' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='333' column='1'/>
+ </data-member>
+ </class-decl>
+ <enum-decl name='_expr_context' filepath='../gpshead/Include/Python-ast.h' line='11' column='1' id='type-id-458'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='Load' value='1'/>
+ <enumerator name='Store' value='2'/>
+ <enumerator name='Del' value='3'/>
+ <enumerator name='AugLoad' value='4'/>
+ <enumerator name='AugStore' value='5'/>
+ <enumerator name='Param' value='6'/>
+ </enum-decl>
+ <typedef-decl name='expr_context_ty' type-id='type-id-458' filepath='../gpshead/Include/Python-ast.h' line='12' column='1' id='type-id-457'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='336' column='1' id='type-id-430'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='value' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='337' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='slice' type-id='type-id-459' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='338' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='ctx' type-id='type-id-457' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='339' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='_slice' size-in-bits='256' is-struct='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='368' column='1' id='type-id-460'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='kind' type-id='type-id-461' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='369' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='v' type-id='type-id-462' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='385' column='1'/>
+ </data-member>
+ </class-decl>
+ <enum-decl name='_slice_kind' filepath='../gpshead/Include/Python-ast.h' line='367' column='1' id='type-id-461'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='Slice_kind' value='1'/>
+ <enumerator name='ExtSlice_kind' value='2'/>
+ <enumerator name='Index_kind' value='3'/>
+ </enum-decl>
+ <union-decl name='__anonymous_union__' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='370' column='1' id='type-id-462'>
+ <data-member access='private'>
+ <var-decl name='Slice' type-id='type-id-463' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='375' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='ExtSlice' type-id='type-id-464' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='379' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Index' type-id='type-id-419' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='383' column='1'/>
+ </data-member>
+ </union-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='371' column='1' id='type-id-463'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='lower' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='372' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='upper' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='373' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='step' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='374' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='377' column='1' id='type-id-464'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='dims' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='378' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-460' size-in-bits='64' id='type-id-465'/>
+ <typedef-decl name='slice_ty' type-id='type-id-465' filepath='../gpshead/Include/Python-ast.h' line='14' column='1' id='type-id-459'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='342' column='1' id='type-id-431'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='value' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='343' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='ctx' type-id='type-id-457' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='344' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='347' column='1' id='type-id-432'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='id' type-id='type-id-445' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='348' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='ctx' type-id='type-id-457' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='349' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='352' column='1' id='type-id-433'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='elts' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='353' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='ctx' type-id='type-id-457' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='354' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-397' size-in-bits='64' id='type-id-466'/>
+ <typedef-decl name='mod_ty' type-id='type-id-466' filepath='../gpshead/Include/Python-ast.h' line='5' column='1' id='type-id-467'/>
+ <class-decl name='_arena' size-in-bits='192' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-468'/>
+ <typedef-decl name='PyArena' type-id='type-id-468' filepath='../gpshead/Include/pyarena.h' line='12' column='1' id='type-id-469'/>
+ <pointer-type-def type-id='type-id-469' size-in-bits='64' id='type-id-470'/>
+ <function-decl name='PyAST_obj2mod' mangled-name='PyAST_obj2mod' filepath='../gpshead/Python/Python-ast.c' line='8366' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAST_obj2mod'>
+ <parameter type-id='type-id-52' name='ast' filepath='../gpshead/Python/Python-ast.c' line='8366' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='8366' column='1'/>
+ <parameter type-id='type-id-7' name='mode' filepath='../gpshead/Python/Python-ast.c' line='8366' column='1'/>
+ <return type-id='type-id-467'/>
+ </function-decl>
+ <function-decl name='PyAST_mod2obj' mangled-name='PyAST_mod2obj' filepath='../gpshead/Python/Python-ast.c' line='8358' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAST_mod2obj'>
+ <parameter type-id='type-id-467' name='t' filepath='../gpshead/Python/Python-ast.c' line='8358' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyInit__ast' mangled-name='PyInit__ast' filepath='../gpshead/Python/Python-ast.c' line='8153' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__ast'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <class-decl name='_withitem' size-in-bits='128' is-struct='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='436' column='1' id='type-id-471'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='context_expr' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='437' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='optional_vars' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='438' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-471' size-in-bits='64' id='type-id-472'/>
+ <typedef-decl name='withitem_ty' type-id='type-id-472' filepath='../gpshead/Include/Python-ast.h' line='39' column='1' id='type-id-473'/>
+ <function-decl name='_Py_withitem' mangled-name='_Py_withitem' filepath='../gpshead/Python/Python-ast.c' line='2551' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_withitem'>
+ <parameter type-id='type-id-406' name='context_expr' filepath='../gpshead/Python/Python-ast.c' line='2551' column='1'/>
+ <parameter type-id='type-id-406' name='optional_vars' filepath='../gpshead/Python/Python-ast.c' line='2551' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2551' column='1'/>
+ <return type-id='type-id-473'/>
+ </function-decl>
+ <class-decl name='_alias' size-in-bits='128' is-struct='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='431' column='1' id='type-id-474'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='name' type-id='type-id-445' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='432' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='asname' type-id='type-id-445' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='433' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-474' size-in-bits='64' id='type-id-475'/>
+ <typedef-decl name='alias_ty' type-id='type-id-475' filepath='../gpshead/Include/Python-ast.h' line='37' column='1' id='type-id-476'/>
+ <function-decl name='_Py_alias' mangled-name='_Py_alias' filepath='../gpshead/Python/Python-ast.c' line='2534' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_alias'>
+ <parameter type-id='type-id-445' name='name' filepath='../gpshead/Python/Python-ast.c' line='2534' column='1'/>
+ <parameter type-id='type-id-445' name='asname' filepath='../gpshead/Python/Python-ast.c' line='2534' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2534' column='1'/>
+ <return type-id='type-id-476'/>
+ </function-decl>
+ <class-decl name='_keyword' size-in-bits='128' is-struct='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='426' column='1' id='type-id-477'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='arg' type-id='type-id-445' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='427' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='value' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='428' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-477' size-in-bits='64' id='type-id-478'/>
+ <typedef-decl name='keyword_ty' type-id='type-id-478' filepath='../gpshead/Include/Python-ast.h' line='35' column='1' id='type-id-479'/>
+ <function-decl name='_Py_keyword' mangled-name='_Py_keyword' filepath='../gpshead/Python/Python-ast.c' line='2517' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_keyword'>
+ <parameter type-id='type-id-445' name='arg' filepath='../gpshead/Python/Python-ast.c' line='2517' column='1'/>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='2517' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2517' column='1'/>
+ <return type-id='type-id-479'/>
+ </function-decl>
+ <function-decl name='_Py_arg' mangled-name='_Py_arg' filepath='../gpshead/Python/Python-ast.c' line='2497' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_arg'>
+ <parameter type-id='type-id-445' name='arg' filepath='../gpshead/Python/Python-ast.c' line='2497' column='1'/>
+ <parameter type-id='type-id-406' name='annotation' filepath='../gpshead/Python/Python-ast.c' line='2497' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2497' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2497' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2497' column='1'/>
+ <return type-id='type-id-443'/>
+ </function-decl>
+ <function-decl name='_Py_arguments' mangled-name='_Py_arguments' filepath='../gpshead/Python/Python-ast.c' line='2480' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_arguments'>
+ <parameter type-id='type-id-402' name='args' filepath='../gpshead/Python/Python-ast.c' line='2480' column='1'/>
+ <parameter type-id='type-id-443' name='vararg' filepath='../gpshead/Python/Python-ast.c' line='2480' column='1'/>
+ <parameter type-id='type-id-402' name='kwonlyargs' filepath='../gpshead/Python/Python-ast.c' line='2480' column='1'/>
+ <parameter type-id='type-id-402' name='kw_defaults' filepath='../gpshead/Python/Python-ast.c' line='2480' column='1'/>
+ <parameter type-id='type-id-443' name='kwarg' filepath='../gpshead/Python/Python-ast.c' line='2480' column='1'/>
+ <parameter type-id='type-id-402' name='defaults' filepath='../gpshead/Python/Python-ast.c' line='2480' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2480' column='1'/>
+ <return type-id='type-id-441'/>
+ </function-decl>
+ <class-decl name='_excepthandler' size-in-bits='320' is-struct='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='396' column='1' id='type-id-480'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='kind' type-id='type-id-481' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='397' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='v' type-id='type-id-482' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='405' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='lineno' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='406' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288'>
+ <var-decl name='col_offset' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='407' column='1'/>
+ </data-member>
+ </class-decl>
+ <enum-decl name='_excepthandler_kind' filepath='../gpshead/Include/Python-ast.h' line='395' column='1' id='type-id-481'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='ExceptHandler_kind' value='1'/>
+ </enum-decl>
+ <union-decl name='__anonymous_union__' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='398' column='1' id='type-id-482'>
+ <data-member access='private'>
+ <var-decl name='ExceptHandler' type-id='type-id-483' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='403' column='1'/>
+ </data-member>
+ </union-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='399' column='1' id='type-id-483'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='type' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='400' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='name' type-id='type-id-445' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='401' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='body' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='402' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-480' size-in-bits='64' id='type-id-484'/>
+ <typedef-decl name='excepthandler_ty' type-id='type-id-484' filepath='../gpshead/Include/Python-ast.h' line='29' column='1' id='type-id-485'/>
+ <function-decl name='_Py_ExceptHandler' mangled-name='_Py_ExceptHandler' filepath='../gpshead/Python/Python-ast.c' line='2463' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ExceptHandler'>
+ <parameter type-id='type-id-406' name='type' filepath='../gpshead/Python/Python-ast.c' line='2463' column='1'/>
+ <parameter type-id='type-id-445' name='name' filepath='../gpshead/Python/Python-ast.c' line='2463' column='1'/>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='2463' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2463' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2463' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2463' column='1'/>
+ <return type-id='type-id-485'/>
+ </function-decl>
+ <class-decl name='_comprehension' size-in-bits='256' is-struct='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='388' column='1' id='type-id-486'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='target' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='389' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='iter' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='390' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='ifs' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='391' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='is_async' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='392' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-486' size-in-bits='64' id='type-id-487'/>
+ <typedef-decl name='comprehension_ty' type-id='type-id-487' filepath='../gpshead/Include/Python-ast.h' line='27' column='1' id='type-id-488'/>
+ <function-decl name='_Py_comprehension' mangled-name='_Py_comprehension' filepath='../gpshead/Python/Python-ast.c' line='2438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_comprehension'>
+ <parameter type-id='type-id-406' name='target' filepath='../gpshead/Python/Python-ast.c' line='2438' column='1'/>
+ <parameter type-id='type-id-406' name='iter' filepath='../gpshead/Python/Python-ast.c' line='2438' column='1'/>
+ <parameter type-id='type-id-402' name='ifs' filepath='../gpshead/Python/Python-ast.c' line='2438' column='1'/>
+ <parameter type-id='type-id-7' name='is_async' filepath='../gpshead/Python/Python-ast.c' line='2438' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2438' column='1'/>
+ <return type-id='type-id-488'/>
+ </function-decl>
+ <function-decl name='_Py_Index' mangled-name='_Py_Index' filepath='../gpshead/Python/Python-ast.c' line='2421' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Index'>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='2421' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2421' column='1'/>
+ <return type-id='type-id-459'/>
+ </function-decl>
+ <function-decl name='_Py_ExtSlice' mangled-name='_Py_ExtSlice' filepath='../gpshead/Python/Python-ast.c' line='2409' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ExtSlice'>
+ <parameter type-id='type-id-402' name='dims' filepath='../gpshead/Python/Python-ast.c' line='2409' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2409' column='1'/>
+ <return type-id='type-id-459'/>
+ </function-decl>
+ <function-decl name='_Py_Slice' mangled-name='_Py_Slice' filepath='../gpshead/Python/Python-ast.c' line='2395' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Slice'>
+ <parameter type-id='type-id-406' name='lower' filepath='../gpshead/Python/Python-ast.c' line='2395' column='1'/>
+ <parameter type-id='type-id-406' name='upper' filepath='../gpshead/Python/Python-ast.c' line='2395' column='1'/>
+ <parameter type-id='type-id-406' name='step' filepath='../gpshead/Python/Python-ast.c' line='2395' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2395' column='1'/>
+ <return type-id='type-id-459'/>
+ </function-decl>
+ <function-decl name='_Py_Tuple' mangled-name='_Py_Tuple' filepath='../gpshead/Python/Python-ast.c' line='2374' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Tuple'>
+ <parameter type-id='type-id-402' name='elts' filepath='../gpshead/Python/Python-ast.c' line='2374' column='1'/>
+ <parameter type-id='type-id-457' name='ctx' filepath='../gpshead/Python/Python-ast.c' line='2374' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2374' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2374' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2374' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_List' mangled-name='_Py_List' filepath='../gpshead/Python/Python-ast.c' line='2353' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_List'>
+ <parameter type-id='type-id-402' name='elts' filepath='../gpshead/Python/Python-ast.c' line='2374' column='1'/>
+ <parameter type-id='type-id-457' name='ctx' filepath='../gpshead/Python/Python-ast.c' line='2374' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2374' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2374' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2374' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Name' mangled-name='_Py_Name' filepath='../gpshead/Python/Python-ast.c' line='2327' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Name'>
+ <parameter type-id='type-id-445' name='id' filepath='../gpshead/Python/Python-ast.c' line='2327' column='1'/>
+ <parameter type-id='type-id-457' name='ctx' filepath='../gpshead/Python/Python-ast.c' line='2327' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2327' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2327' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2327' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Starred' mangled-name='_Py_Starred' filepath='../gpshead/Python/Python-ast.c' line='2301' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Starred'>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='2301' column='1'/>
+ <parameter type-id='type-id-457' name='ctx' filepath='../gpshead/Python/Python-ast.c' line='2301' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2301' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2301' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2301' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Subscript' mangled-name='_Py_Subscript' filepath='../gpshead/Python/Python-ast.c' line='2269' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Subscript'>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='2269' column='1'/>
+ <parameter type-id='type-id-459' name='slice' filepath='../gpshead/Python/Python-ast.c' line='2269' column='1'/>
+ <parameter type-id='type-id-457' name='ctx' filepath='../gpshead/Python/Python-ast.c' line='2269' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2269' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2269' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2269' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Attribute' mangled-name='_Py_Attribute' filepath='../gpshead/Python/Python-ast.c' line='2237' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Attribute'>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='2237' column='1'/>
+ <parameter type-id='type-id-445' name='attr' filepath='../gpshead/Python/Python-ast.c' line='2237' column='1'/>
+ <parameter type-id='type-id-457' name='ctx' filepath='../gpshead/Python/Python-ast.c' line='2237' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2237' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2237' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2237' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Constant' mangled-name='_Py_Constant' filepath='../gpshead/Python/Python-ast.c' line='2218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Constant'>
+ <parameter type-id='type-id-456' name='value' filepath='../gpshead/Python/Python-ast.c' line='2218' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2218' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2218' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2218' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Ellipsis' mangled-name='_Py_Ellipsis' filepath='../gpshead/Python/Python-ast.c' line='2205' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Ellipsis'>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2205' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2205' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2205' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_NameConstant' mangled-name='_Py_NameConstant' filepath='../gpshead/Python/Python-ast.c' line='2186' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_NameConstant'>
+ <parameter type-id='type-id-455' name='value' filepath='../gpshead/Python/Python-ast.c' line='2186' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2186' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2186' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2186' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Bytes' mangled-name='_Py_Bytes' filepath='../gpshead/Python/Python-ast.c' line='2167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Bytes'>
+ <parameter type-id='type-id-454' name='s' filepath='../gpshead/Python/Python-ast.c' line='2167' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2167' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2167' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2167' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_JoinedStr' mangled-name='_Py_JoinedStr' filepath='../gpshead/Python/Python-ast.c' line='2153' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_JoinedStr'>
+ <parameter type-id='type-id-402' name='values' filepath='../gpshead/Python/Python-ast.c' line='2153' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2153' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2153' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2153' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_FormattedValue' mangled-name='_Py_FormattedValue' filepath='../gpshead/Python/Python-ast.c' line='2131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FormattedValue'>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='2131' column='1'/>
+ <parameter type-id='type-id-7' name='conversion' filepath='../gpshead/Python/Python-ast.c' line='2131' column='1'/>
+ <parameter type-id='type-id-406' name='format_spec' filepath='../gpshead/Python/Python-ast.c' line='2131' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2131' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2131' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2131' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Str' mangled-name='_Py_Str' filepath='../gpshead/Python/Python-ast.c' line='2112' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Str'>
+ <parameter type-id='type-id-453' name='s' filepath='../gpshead/Python/Python-ast.c' line='2112' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2112' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2112' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2112' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Num' mangled-name='_Py_Num' filepath='../gpshead/Python/Python-ast.c' line='2093' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Num'>
+ <parameter type-id='type-id-452' name='n' filepath='../gpshead/Python/Python-ast.c' line='2093' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2093' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2093' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2093' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Call' mangled-name='_Py_Call' filepath='../gpshead/Python/Python-ast.c' line='2071' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Call'>
+ <parameter type-id='type-id-406' name='func' filepath='../gpshead/Python/Python-ast.c' line='2071' column='1'/>
+ <parameter type-id='type-id-402' name='args' filepath='../gpshead/Python/Python-ast.c' line='2071' column='1'/>
+ <parameter type-id='type-id-402' name='keywords' filepath='../gpshead/Python/Python-ast.c' line='2071' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2071' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2071' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2071' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Compare' mangled-name='_Py_Compare' filepath='../gpshead/Python/Python-ast.c' line='2049' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Compare'>
+ <parameter type-id='type-id-406' name='left' filepath='../gpshead/Python/Python-ast.c' line='2049' column='1'/>
+ <parameter type-id='type-id-448' name='ops' filepath='../gpshead/Python/Python-ast.c' line='2049' column='1'/>
+ <parameter type-id='type-id-402' name='comparators' filepath='../gpshead/Python/Python-ast.c' line='2049' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2049' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2049' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2049' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_YieldFrom' mangled-name='_Py_YieldFrom' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_YieldFrom'>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Yield' mangled-name='_Py_Yield' filepath='../gpshead/Python/Python-ast.c' line='2016' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Yield'>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Await' mangled-name='_Py_Await' filepath='../gpshead/Python/Python-ast.c' line='1997' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Await'>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2030' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_GeneratorExp' mangled-name='_Py_GeneratorExp' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GeneratorExp'>
+ <parameter type-id='type-id-406' name='elt' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <parameter type-id='type-id-402' name='generators' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_DictComp' mangled-name='_Py_DictComp' filepath='../gpshead/Python/Python-ast.c' line='1949' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DictComp'>
+ <parameter type-id='type-id-406' name='key' filepath='../gpshead/Python/Python-ast.c' line='1949' column='1'/>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='1949' column='1'/>
+ <parameter type-id='type-id-402' name='generators' filepath='../gpshead/Python/Python-ast.c' line='1949' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1949' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1949' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1949' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_SetComp' mangled-name='_Py_SetComp' filepath='../gpshead/Python/Python-ast.c' line='1928' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SetComp'>
+ <parameter type-id='type-id-406' name='elt' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <parameter type-id='type-id-402' name='generators' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_ListComp' mangled-name='_Py_ListComp' filepath='../gpshead/Python/Python-ast.c' line='1907' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ListComp'>
+ <parameter type-id='type-id-406' name='elt' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <parameter type-id='type-id-402' name='generators' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1976' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Set' mangled-name='_Py_Set' filepath='../gpshead/Python/Python-ast.c' line='1893' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Set'>
+ <parameter type-id='type-id-402' name='values' filepath='../gpshead/Python/Python-ast.c' line='2153' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='2153' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='2153' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='2153' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Dict' mangled-name='_Py_Dict' filepath='../gpshead/Python/Python-ast.c' line='1877' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Dict'>
+ <parameter type-id='type-id-402' name='keys' filepath='../gpshead/Python/Python-ast.c' line='1877' column='1'/>
+ <parameter type-id='type-id-402' name='values' filepath='../gpshead/Python/Python-ast.c' line='1877' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1877' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1877' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1877' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_IfExp' mangled-name='_Py_IfExp' filepath='../gpshead/Python/Python-ast.c' line='1845' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_IfExp'>
+ <parameter type-id='type-id-406' name='test' filepath='../gpshead/Python/Python-ast.c' line='1845' column='1'/>
+ <parameter type-id='type-id-406' name='body' filepath='../gpshead/Python/Python-ast.c' line='1845' column='1'/>
+ <parameter type-id='type-id-406' name='orelse' filepath='../gpshead/Python/Python-ast.c' line='1845' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1845' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1845' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1845' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_Lambda' mangled-name='_Py_Lambda' filepath='../gpshead/Python/Python-ast.c' line='1819' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Lambda'>
+ <parameter type-id='type-id-441' name='args' filepath='../gpshead/Python/Python-ast.c' line='1819' column='1'/>
+ <parameter type-id='type-id-406' name='body' filepath='../gpshead/Python/Python-ast.c' line='1819' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1819' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1819' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1819' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_UnaryOp' mangled-name='_Py_UnaryOp' filepath='../gpshead/Python/Python-ast.c' line='1793' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_UnaryOp'>
+ <parameter type-id='type-id-439' name='op' filepath='../gpshead/Python/Python-ast.c' line='1793' column='1'/>
+ <parameter type-id='type-id-406' name='operand' filepath='../gpshead/Python/Python-ast.c' line='1793' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1793' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1793' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1793' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_BinOp' mangled-name='_Py_BinOp' filepath='../gpshead/Python/Python-ast.c' line='1761' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_BinOp'>
+ <parameter type-id='type-id-406' name='left' filepath='../gpshead/Python/Python-ast.c' line='1761' column='1'/>
+ <parameter type-id='type-id-436' name='op' filepath='../gpshead/Python/Python-ast.c' line='1761' column='1'/>
+ <parameter type-id='type-id-406' name='right' filepath='../gpshead/Python/Python-ast.c' line='1761' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1761' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1761' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1761' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <function-decl name='_Py_BoolOp' mangled-name='_Py_BoolOp' filepath='../gpshead/Python/Python-ast.c' line='1740' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_BoolOp'>
+ <parameter type-id='type-id-434' name='op' filepath='../gpshead/Python/Python-ast.c' line='1740' column='1'/>
+ <parameter type-id='type-id-402' name='values' filepath='../gpshead/Python/Python-ast.c' line='1740' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1740' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1740' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1740' column='1'/>
+ <return type-id='type-id-406'/>
+ </function-decl>
+ <class-decl name='_stmt' size-in-bits='448' is-struct='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='74' column='1' id='type-id-489'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='kind' type-id='type-id-490' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='75' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='v' type-id='type-id-491' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='202' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='lineno' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='203' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='416'>
+ <var-decl name='col_offset' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='204' column='1'/>
+ </data-member>
+ </class-decl>
+ <enum-decl name='_stmt_kind' filepath='../gpshead/Include/Python-ast.h' line='66' column='1' id='type-id-490'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='FunctionDef_kind' value='1'/>
+ <enumerator name='AsyncFunctionDef_kind' value='2'/>
+ <enumerator name='ClassDef_kind' value='3'/>
+ <enumerator name='Return_kind' value='4'/>
+ <enumerator name='Delete_kind' value='5'/>
+ <enumerator name='Assign_kind' value='6'/>
+ <enumerator name='AugAssign_kind' value='7'/>
+ <enumerator name='AnnAssign_kind' value='8'/>
+ <enumerator name='For_kind' value='9'/>
+ <enumerator name='AsyncFor_kind' value='10'/>
+ <enumerator name='While_kind' value='11'/>
+ <enumerator name='If_kind' value='12'/>
+ <enumerator name='With_kind' value='13'/>
+ <enumerator name='AsyncWith_kind' value='14'/>
+ <enumerator name='Raise_kind' value='15'/>
+ <enumerator name='Try_kind' value='16'/>
+ <enumerator name='Assert_kind' value='17'/>
+ <enumerator name='Import_kind' value='18'/>
+ <enumerator name='ImportFrom_kind' value='19'/>
+ <enumerator name='Global_kind' value='20'/>
+ <enumerator name='Nonlocal_kind' value='21'/>
+ <enumerator name='Expr_kind' value='22'/>
+ <enumerator name='Pass_kind' value='23'/>
+ <enumerator name='Break_kind' value='24'/>
+ <enumerator name='Continue_kind' value='25'/>
+ </enum-decl>
+ <union-decl name='__anonymous_union__' size-in-bits='320' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='76' column='1' id='type-id-491'>
+ <data-member access='private'>
+ <var-decl name='FunctionDef' type-id='type-id-492' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='83' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='AsyncFunctionDef' type-id='type-id-492' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='91' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='ClassDef' type-id='type-id-493' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='99' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Return' type-id='type-id-419' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='103' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Delete' type-id='type-id-494' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='107' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Assign' type-id='type-id-495' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='112' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='AugAssign' type-id='type-id-496' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='118' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='AnnAssign' type-id='type-id-497' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='125' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='For' type-id='type-id-498' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='132' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='AsyncFor' type-id='type-id-498' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='139' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='While' type-id='type-id-499' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='145' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='If' type-id='type-id-499' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='151' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='With' type-id='type-id-500' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='156' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='AsyncWith' type-id='type-id-500' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='161' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Raise' type-id='type-id-501' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='166' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Try' type-id='type-id-502' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='173' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Assert' type-id='type-id-503' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='178' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Import' type-id='type-id-504' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='182' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='ImportFrom' type-id='type-id-505' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='188' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Global' type-id='type-id-504' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='192' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Nonlocal' type-id='type-id-504' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='196' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='Expr' type-id='type-id-419' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='200' column='1'/>
+ </data-member>
+ </union-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='77' column='1' id='type-id-492'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='name' type-id='type-id-445' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='78' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='args' type-id='type-id-441' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='79' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='body' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='80' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='decorator_list' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='81' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='returns' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='82' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='93' column='1' id='type-id-493'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='name' type-id='type-id-445' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='94' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='bases' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='95' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='keywords' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='96' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='body' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='97' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='decorator_list' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='98' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='105' column='1' id='type-id-494'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='targets' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='106' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='109' column='1' id='type-id-495'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='targets' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='110' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='value' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='111' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='114' column='1' id='type-id-496'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='target' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='115' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='op' type-id='type-id-436' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='116' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='value' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='117' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='120' column='1' id='type-id-497'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='target' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='121' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='annotation' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='122' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='value' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='123' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='simple' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='124' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='127' column='1' id='type-id-498'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='target' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='128' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='iter' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='129' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='body' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='130' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='orelse' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='131' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='141' column='1' id='type-id-499'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='test' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='142' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='body' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='143' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='orelse' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='144' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='153' column='1' id='type-id-500'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='items' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='154' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='body' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='155' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='163' column='1' id='type-id-501'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='exc' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='164' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='cause' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='165' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='168' column='1' id='type-id-502'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='body' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='169' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='handlers' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='170' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='orelse' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='171' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='finalbody' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='172' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='175' column='1' id='type-id-503'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='test' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='176' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='msg' type-id='type-id-406' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='177' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='180' column='1' id='type-id-504'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='names' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='181' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='184' column='1' id='type-id-505'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='module' type-id='type-id-445' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='185' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='names' type-id='type-id-402' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='186' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='level' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/Python-ast.h' line='187' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-489' size-in-bits='64' id='type-id-506'/>
+ <typedef-decl name='stmt_ty' type-id='type-id-506' filepath='../gpshead/Include/Python-ast.h' line='7' column='1' id='type-id-507'/>
+ <function-decl name='_Py_Continue' mangled-name='_Py_Continue' filepath='../gpshead/Python/Python-ast.c' line='1727' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Continue'>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1727' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1727' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1727' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Break' mangled-name='_Py_Break' filepath='../gpshead/Python/Python-ast.c' line='1714' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Break'>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1727' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1727' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1727' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Pass' mangled-name='_Py_Pass' filepath='../gpshead/Python/Python-ast.c' line='1701' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Pass'>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1727' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1727' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1727' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Expr' mangled-name='_Py_Expr' filepath='../gpshead/Python/Python-ast.c' line='1682' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Expr'>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='1682' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1682' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1682' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1682' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Nonlocal' mangled-name='_Py_Nonlocal' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Nonlocal'>
+ <parameter type-id='type-id-402' name='names' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Global' mangled-name='_Py_Global' filepath='../gpshead/Python/Python-ast.c' line='1654' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Global'>
+ <parameter type-id='type-id-402' name='names' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_ImportFrom' mangled-name='_Py_ImportFrom' filepath='../gpshead/Python/Python-ast.c' line='1637' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ImportFrom'>
+ <parameter type-id='type-id-445' name='module' filepath='../gpshead/Python/Python-ast.c' line='1637' column='1'/>
+ <parameter type-id='type-id-402' name='names' filepath='../gpshead/Python/Python-ast.c' line='1637' column='1'/>
+ <parameter type-id='type-id-7' name='level' filepath='../gpshead/Python/Python-ast.c' line='1637' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1637' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1637' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1637' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Import' mangled-name='_Py_Import' filepath='../gpshead/Python/Python-ast.c' line='1623' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Import'>
+ <parameter type-id='type-id-402' name='names' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Assert' mangled-name='_Py_Assert' filepath='../gpshead/Python/Python-ast.c' line='1603' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Assert'>
+ <parameter type-id='type-id-406' name='test' filepath='../gpshead/Python/Python-ast.c' line='1603' column='1'/>
+ <parameter type-id='type-id-406' name='msg' filepath='../gpshead/Python/Python-ast.c' line='1603' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1603' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1603' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1603' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Try' mangled-name='_Py_Try' filepath='../gpshead/Python/Python-ast.c' line='1585' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Try'>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1585' column='1'/>
+ <parameter type-id='type-id-402' name='handlers' filepath='../gpshead/Python/Python-ast.c' line='1585' column='1'/>
+ <parameter type-id='type-id-402' name='orelse' filepath='../gpshead/Python/Python-ast.c' line='1585' column='1'/>
+ <parameter type-id='type-id-402' name='finalbody' filepath='../gpshead/Python/Python-ast.c' line='1585' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1585' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1585' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1585' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Raise' mangled-name='_Py_Raise' filepath='../gpshead/Python/Python-ast.c' line='1570' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Raise'>
+ <parameter type-id='type-id-406' name='test' filepath='../gpshead/Python/Python-ast.c' line='1603' column='1'/>
+ <parameter type-id='type-id-406' name='msg' filepath='../gpshead/Python/Python-ast.c' line='1603' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1603' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1603' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1603' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_AsyncWith' mangled-name='_Py_AsyncWith' filepath='../gpshead/Python/Python-ast.c' line='1554' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_AsyncWith'>
+ <parameter type-id='type-id-402' name='items' filepath='../gpshead/Python/Python-ast.c' line='1554' column='1'/>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1554' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1554' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1554' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1554' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_With' mangled-name='_Py_With' filepath='../gpshead/Python/Python-ast.c' line='1538' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_With'>
+ <parameter type-id='type-id-402' name='items' filepath='../gpshead/Python/Python-ast.c' line='1554' column='1'/>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1554' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1554' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1554' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1554' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_If' mangled-name='_Py_If' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_If'>
+ <parameter type-id='type-id-406' name='test' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1'/>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1'/>
+ <parameter type-id='type-id-402' name='orelse' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_While' mangled-name='_Py_While' filepath='../gpshead/Python/Python-ast.c' line='1494' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_While'>
+ <parameter type-id='type-id-406' name='test' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1'/>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1'/>
+ <parameter type-id='type-id-402' name='orelse' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1516' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_AsyncFor' mangled-name='_Py_AsyncFor' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_AsyncFor'>
+ <parameter type-id='type-id-406' name='target' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <parameter type-id='type-id-406' name='iter' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <parameter type-id='type-id-402' name='orelse' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_For' mangled-name='_Py_For' filepath='../gpshead/Python/Python-ast.c' line='1438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_For'>
+ <parameter type-id='type-id-406' name='target' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <parameter type-id='type-id-406' name='iter' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <parameter type-id='type-id-402' name='orelse' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1466' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_AnnAssign' mangled-name='_Py_AnnAssign' filepath='../gpshead/Python/Python-ast.c' line='1410' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_AnnAssign'>
+ <parameter type-id='type-id-406' name='target' filepath='../gpshead/Python/Python-ast.c' line='1410' column='1'/>
+ <parameter type-id='type-id-406' name='annotation' filepath='../gpshead/Python/Python-ast.c' line='1410' column='1'/>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='1410' column='1'/>
+ <parameter type-id='type-id-7' name='simple' filepath='../gpshead/Python/Python-ast.c' line='1410' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1410' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1410' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1410' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_AugAssign' mangled-name='_Py_AugAssign' filepath='../gpshead/Python/Python-ast.c' line='1378' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_AugAssign'>
+ <parameter type-id='type-id-406' name='target' filepath='../gpshead/Python/Python-ast.c' line='1378' column='1'/>
+ <parameter type-id='type-id-436' name='op' filepath='../gpshead/Python/Python-ast.c' line='1378' column='1'/>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='1378' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1378' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1378' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1378' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Assign' mangled-name='_Py_Assign' filepath='../gpshead/Python/Python-ast.c' line='1357' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Assign'>
+ <parameter type-id='type-id-402' name='targets' filepath='../gpshead/Python/Python-ast.c' line='1357' column='1'/>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='1357' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1357' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1357' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1357' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Delete' mangled-name='_Py_Delete' filepath='../gpshead/Python/Python-ast.c' line='1343' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Delete'>
+ <parameter type-id='type-id-402' name='names' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1668' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Return' mangled-name='_Py_Return' filepath='../gpshead/Python/Python-ast.c' line='1329' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Return'>
+ <parameter type-id='type-id-406' name='value' filepath='../gpshead/Python/Python-ast.c' line='1682' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1682' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1682' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1682' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_ClassDef' mangled-name='_Py_ClassDef' filepath='../gpshead/Python/Python-ast.c' line='1304' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ClassDef'>
+ <parameter type-id='type-id-445' name='name' filepath='../gpshead/Python/Python-ast.c' line='1304' column='1'/>
+ <parameter type-id='type-id-402' name='bases' filepath='../gpshead/Python/Python-ast.c' line='1304' column='1'/>
+ <parameter type-id='type-id-402' name='keywords' filepath='../gpshead/Python/Python-ast.c' line='1304' column='1'/>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1304' column='1'/>
+ <parameter type-id='type-id-402' name='decorator_list' filepath='../gpshead/Python/Python-ast.c' line='1304' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1304' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1304' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1304' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_AsyncFunctionDef' mangled-name='_Py_AsyncFunctionDef' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_AsyncFunctionDef'>
+ <parameter type-id='type-id-445' name='name' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-441' name='args' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-402' name='decorator_list' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-406' name='returns' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_FunctionDef' mangled-name='_Py_FunctionDef' filepath='../gpshead/Python/Python-ast.c' line='1244' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FunctionDef'>
+ <parameter type-id='type-id-445' name='name' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-441' name='args' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-402' name='decorator_list' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-406' name='returns' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1274' column='1'/>
+ <return type-id='type-id-507'/>
+ </function-decl>
+ <function-decl name='_Py_Suite' mangled-name='_Py_Suite' filepath='../gpshead/Python/Python-ast.c' line='1232' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Suite'>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1232' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1232' column='1'/>
+ <return type-id='type-id-467'/>
+ </function-decl>
+ <function-decl name='_Py_Expression' mangled-name='_Py_Expression' filepath='../gpshead/Python/Python-ast.c' line='1215' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Expression'>
+ <parameter type-id='type-id-406' name='body' filepath='../gpshead/Python/Python-ast.c' line='1215' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1215' column='1'/>
+ <return type-id='type-id-467'/>
+ </function-decl>
+ <function-decl name='_Py_Interactive' mangled-name='_Py_Interactive' filepath='../gpshead/Python/Python-ast.c' line='1203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Interactive'>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1232' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1232' column='1'/>
+ <return type-id='type-id-467'/>
+ </function-decl>
+ <function-decl name='_Py_Module' mangled-name='_Py_Module' filepath='../gpshead/Python/Python-ast.c' line='1191' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Module'>
+ <parameter type-id='type-id-402' name='body' filepath='../gpshead/Python/Python-ast.c' line='1232' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/Python-ast.c' line='1232' column='1'/>
+ <return type-id='type-id-467'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/asdl.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_Py_asdl_int_seq_new' mangled-name='_Py_asdl_int_seq_new' filepath='../gpshead/Python/asdl.c' line='36' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_asdl_int_seq_new'>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Python/asdl.c' line='36' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/asdl.c' line='36' column='1'/>
+ <return type-id='type-id-448'/>
+ </function-decl>
+ <function-decl name='_Py_asdl_seq_new' mangled-name='_Py_asdl_seq_new' filepath='../gpshead/Python/asdl.c' line='5' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_asdl_seq_new'>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Python/asdl.c' line='5' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/asdl.c' line='5' column='1'/>
+ <return type-id='type-id-402'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/ast.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <qualified-type-def type-id='type-id-29' const='yes' id='type-id-508'/>
+ <pointer-type-def type-id='type-id-508' size-in-bits='64' id='type-id-509'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='32' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-510' visibility='default' filepath='../gpshead/Include/compile.h' line='27' column='1' id='type-id-511'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='cf_flags' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/compile.h' line='28' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyCompilerFlags' type-id='type-id-511' filepath='../gpshead/Include/compile.h' line='29' column='1' id='type-id-510'/>
+ <pointer-type-def type-id='type-id-510' size-in-bits='64' id='type-id-512'/>
+ <function-decl name='PyAST_FromNode' mangled-name='PyAST_FromNode' filepath='../gpshead/Python/ast.c' line='879' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAST_FromNode'>
+ <parameter type-id='type-id-509' name='n' filepath='../gpshead/Python/ast.c' line='879' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/ast.c' line='879' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/ast.c' line='879' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/ast.c' line='880' column='1'/>
+ <return type-id='type-id-467'/>
+ </function-decl>
+ <function-decl name='PyAST_FromNodeObject' mangled-name='PyAST_FromNodeObject' filepath='../gpshead/Python/ast.c' line='768' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAST_FromNodeObject'>
+ <parameter type-id='type-id-509' name='n' filepath='../gpshead/Python/ast.c' line='768' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/ast.c' line='768' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/ast.c' line='769' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/ast.c' line='769' column='1'/>
+ <return type-id='type-id-467'/>
+ </function-decl>
+ <function-decl name='PyAST_Validate' mangled-name='PyAST_Validate' filepath='../gpshead/Python/ast.c' line='557' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAST_Validate'>
+ <parameter type-id='type-id-467' name='mod' filepath='../gpshead/Python/ast.c' line='557' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/ast_opt.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_PyAST_Optimize' mangled-name='_PyAST_Optimize' filepath='../gpshead/Python/ast_opt.c' line='802' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAST_Optimize'>
+ <parameter type-id='type-id-467' name='mod' filepath='../gpshead/Python/ast_opt.c' line='802' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/ast_opt.c' line='802' column='1'/>
+ <parameter type-id='type-id-7' name='optimize' filepath='../gpshead/Python/ast_opt.c' line='802' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/ast_unparse.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_PyAST_ExprAsUnicode' mangled-name='_PyAST_ExprAsUnicode' filepath='../gpshead/Python/ast_unparse.c' line='939' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAST_ExprAsUnicode'>
+ <parameter type-id='type-id-406' name='e' filepath='../gpshead/Python/ast_unparse.c' line='939' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/bltinmodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='Py_FileSystemDefaultEncoding' type-id='type-id-3' mangled-name='Py_FileSystemDefaultEncoding' visibility='default' filepath='../gpshead/Include/fileobject.h' line='25' column='1' elf-symbol-id='Py_FileSystemDefaultEncoding'/>
+ <var-decl name='Py_HasFileSystemDefaultEncoding' type-id='type-id-7' mangled-name='Py_HasFileSystemDefaultEncoding' visibility='default' filepath='../gpshead/Include/fileobject.h' line='29' column='1' elf-symbol-id='Py_HasFileSystemDefaultEncoding'/>
+ <var-decl name='Py_FileSystemDefaultEncodeErrors' type-id='type-id-3' mangled-name='Py_FileSystemDefaultEncodeErrors' visibility='default' filepath='../gpshead/Include/fileobject.h' line='27' column='1' elf-symbol-id='Py_FileSystemDefaultEncodeErrors'/>
+ <var-decl name='Py_UTF8Mode' type-id='type-id-7' mangled-name='Py_UTF8Mode' visibility='default' filepath='../gpshead/Include/fileobject.h' line='32' column='1' elf-symbol-id='Py_UTF8Mode'/>
+ <var-decl name='PyFilter_Type' type-id='type-id-245' mangled-name='PyFilter_Type' visibility='default' filepath='../gpshead/Include/bltinmodule.h' line='7' column='1' elf-symbol-id='PyFilter_Type'/>
+ <var-decl name='PyMap_Type' type-id='type-id-245' mangled-name='PyMap_Type' visibility='default' filepath='../gpshead/Include/bltinmodule.h' line='8' column='1' elf-symbol-id='PyMap_Type'/>
+ <var-decl name='PyZip_Type' type-id='type-id-245' mangled-name='PyZip_Type' visibility='default' filepath='../gpshead/Include/bltinmodule.h' line='9' column='1' elf-symbol-id='PyZip_Type'/>
+ <function-decl name='_PyBuiltin_Init' mangled-name='_PyBuiltin_Init' filepath='../gpshead/Python/bltinmodule.c' line='2796' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBuiltin_Init'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/ceval.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_Py_CheckRecursionLimit' type-id='type-id-7' mangled-name='_Py_CheckRecursionLimit' visibility='default' filepath='../gpshead/Include/ceval.h' line='104' column='1' elf-symbol-id='_Py_CheckRecursionLimit'/>
+ <function-decl name='_PyEval_RequestCodeExtraIndex' mangled-name='_PyEval_RequestCodeExtraIndex' filepath='../gpshead/Python/ceval.c' line='5104' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_RequestCodeExtraIndex'>
+ <parameter type-id='type-id-100' name='free' filepath='../gpshead/Python/ceval.c' line='5104' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_PyEval_SliceIndexNotNone' mangled-name='_PyEval_SliceIndexNotNone' filepath='../gpshead/Python/ceval.c' line='4677' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SliceIndexNotNone'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Python/ceval.c' line='4677' column='1'/>
+ <parameter type-id='type-id-172' name='pi' filepath='../gpshead/Python/ceval.c' line='4677' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyEval_SliceIndex' mangled-name='_PyEval_SliceIndex' filepath='../gpshead/Python/ceval.c' line='4656' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SliceIndex'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Python/ceval.c' line='4656' column='1'/>
+ <parameter type-id='type-id-172' name='pi' filepath='../gpshead/Python/ceval.c' line='4656' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyEval_GetFuncDesc' mangled-name='PyEval_GetFuncDesc' filepath='../gpshead/Python/ceval.c' line='4508' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFuncDesc'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3849' column='1'/>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='PyEval_GetFuncName' mangled-name='PyEval_GetFuncName' filepath='../gpshead/Python/ceval.c' line='4495' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFuncName'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='3849' column='1'/>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='PyEval_MergeCompilerFlags' mangled-name='PyEval_MergeCompilerFlags' filepath='../gpshead/Python/ceval.c' line='4471' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_MergeCompilerFlags'>
+ <parameter type-id='type-id-512' name='cf' filepath='../gpshead/Python/ceval.c' line='4471' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyEval_GetFrame' mangled-name='PyEval_GetFrame' filepath='../gpshead/Python/ceval.c' line='4464' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFrame'>
+ <return type-id='type-id-297'/>
+ </function-decl>
+ <function-decl name='PyEval_GetGlobals' mangled-name='PyEval_GetGlobals' filepath='../gpshead/Python/ceval.c' line='4453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetGlobals'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyEval_GetLocals' mangled-name='PyEval_GetLocals' filepath='../gpshead/Python/ceval.c' line='4437' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetLocals'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyEval_GetBuiltinId' mangled-name='_PyEval_GetBuiltinId' filepath='../gpshead/Python/ceval.c' line='4424' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetBuiltinId'>
+ <parameter type-id='type-id-330' name='name' filepath='../gpshead/Python/ceval.c' line='4424' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyEval_GetBuiltins' mangled-name='PyEval_GetBuiltins' filepath='../gpshead/Python/ceval.c' line='4413' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetBuiltins'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyEval_GetAsyncGenFinalizer' mangled-name='_PyEval_GetAsyncGenFinalizer' filepath='../gpshead/Python/ceval.c' line='4406' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetAsyncGenFinalizer'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyEval_SetAsyncGenFinalizer' mangled-name='_PyEval_SetAsyncGenFinalizer' filepath='../gpshead/Python/ceval.c' line='4397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetAsyncGenFinalizer'>
+ <parameter type-id='type-id-52' name='finalizer' filepath='../gpshead/Python/ceval.c' line='4397' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyEval_GetAsyncGenFirstiter' mangled-name='_PyEval_GetAsyncGenFirstiter' filepath='../gpshead/Python/ceval.c' line='4390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetAsyncGenFirstiter'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyEval_SetAsyncGenFirstiter' mangled-name='_PyEval_SetAsyncGenFirstiter' filepath='../gpshead/Python/ceval.c' line='4381' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetAsyncGenFirstiter'>
+ <parameter type-id='type-id-52' name='finalizer' filepath='../gpshead/Python/ceval.c' line='4397' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyEval_GetCoroutineWrapper' mangled-name='_PyEval_GetCoroutineWrapper' filepath='../gpshead/Python/ceval.c' line='4374' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetCoroutineWrapper'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyEval_SetCoroutineWrapper' mangled-name='_PyEval_SetCoroutineWrapper' filepath='../gpshead/Python/ceval.c' line='4365' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetCoroutineWrapper'>
+ <parameter type-id='type-id-52' name='finalizer' filepath='../gpshead/Python/ceval.c' line='4397' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyEval_GetCoroutineOriginTrackingDepth' mangled-name='_PyEval_GetCoroutineOriginTrackingDepth' filepath='../gpshead/Python/ceval.c' line='4358' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetCoroutineOriginTrackingDepth'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyEval_SetCoroutineOriginTrackingDepth' mangled-name='_PyEval_SetCoroutineOriginTrackingDepth' filepath='../gpshead/Python/ceval.c' line='4350' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetCoroutineOriginTrackingDepth'>
+ <parameter type-id='type-id-7' name='new_depth' filepath='../gpshead/Python/ceval.c' line='4350' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyEval_SetTrace' mangled-name='PyEval_SetTrace' filepath='../gpshead/Python/ceval.c' line='4331' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_SetTrace'>
+ <parameter type-id='type-id-51' name='func' filepath='../gpshead/Python/ceval.c' line='4331' column='1'/>
+ <parameter type-id='type-id-52' name='arg' filepath='../gpshead/Python/ceval.c' line='4331' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyEval_SetProfile' mangled-name='PyEval_SetProfile' filepath='../gpshead/Python/ceval.c' line='4314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_SetProfile'>
+ <parameter type-id='type-id-51' name='func' filepath='../gpshead/Python/ceval.c' line='4331' column='1'/>
+ <parameter type-id='type-id-52' name='arg' filepath='../gpshead/Python/ceval.c' line='4331' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyEval_CallTracing' mangled-name='_PyEval_CallTracing' filepath='../gpshead/Python/ceval.c' line='4260' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_CallTracing'>
+ <parameter type-id='type-id-52' name='separator' filepath='../gpshead/Objects/unicodeobject.c' line='9915' column='1'/>
+ <parameter type-id='type-id-52' name='seq' filepath='../gpshead/Objects/unicodeobject.c' line='9915' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyEval_EvalCodeEx' mangled-name='PyEval_EvalCodeEx' filepath='../gpshead/Python/ceval.c' line='3953' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_EvalCodeEx'>
+ <parameter type-id='type-id-52' name='_co' filepath='../gpshead/Python/ceval.c' line='3953' column='1'/>
+ <parameter type-id='type-id-52' name='globals' filepath='../gpshead/Python/ceval.c' line='3953' column='1'/>
+ <parameter type-id='type-id-52' name='locals' filepath='../gpshead/Python/ceval.c' line='3953' column='1'/>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Python/ceval.c' line='3954' column='1'/>
+ <parameter type-id='type-id-7' name='argcount' filepath='../gpshead/Python/ceval.c' line='3954' column='1'/>
+ <parameter type-id='type-id-263' name='kws' filepath='../gpshead/Python/ceval.c' line='3955' column='1'/>
+ <parameter type-id='type-id-7' name='kwcount' filepath='../gpshead/Python/ceval.c' line='3955' column='1'/>
+ <parameter type-id='type-id-263' name='defs' filepath='../gpshead/Python/ceval.c' line='3956' column='1'/>
+ <parameter type-id='type-id-7' name='defcount' filepath='../gpshead/Python/ceval.c' line='3956' column='1'/>
+ <parameter type-id='type-id-52' name='kwdefs' filepath='../gpshead/Python/ceval.c' line='3957' column='1'/>
+ <parameter type-id='type-id-52' name='closure' filepath='../gpshead/Python/ceval.c' line='3957' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyEval_EvalCodeWithName' mangled-name='_PyEval_EvalCodeWithName' filepath='../gpshead/Python/ceval.c' line='3664' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_EvalCodeWithName'>
+ <parameter type-id='type-id-52' name='_co' filepath='../gpshead/Python/ceval.c' line='3664' column='1'/>
+ <parameter type-id='type-id-52' name='globals' filepath='../gpshead/Python/ceval.c' line='3664' column='1'/>
+ <parameter type-id='type-id-52' name='locals' filepath='../gpshead/Python/ceval.c' line='3664' column='1'/>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Python/ceval.c' line='3665' column='1'/>
+ <parameter type-id='type-id-34' name='argcount' filepath='../gpshead/Python/ceval.c' line='3665' column='1'/>
+ <parameter type-id='type-id-263' name='kwnames' filepath='../gpshead/Python/ceval.c' line='3666' column='1'/>
+ <parameter type-id='type-id-263' name='kwargs' filepath='../gpshead/Python/ceval.c' line='3666' column='1'/>
+ <parameter type-id='type-id-34' name='kwcount' filepath='../gpshead/Python/ceval.c' line='3667' column='1'/>
+ <parameter type-id='type-id-7' name='kwstep' filepath='../gpshead/Python/ceval.c' line='3667' column='1'/>
+ <parameter type-id='type-id-263' name='defs' filepath='../gpshead/Python/ceval.c' line='3668' column='1'/>
+ <parameter type-id='type-id-34' name='defcount' filepath='../gpshead/Python/ceval.c' line='3668' column='1'/>
+ <parameter type-id='type-id-52' name='kwdefs' filepath='../gpshead/Python/ceval.c' line='3669' column='1'/>
+ <parameter type-id='type-id-52' name='closure' filepath='../gpshead/Python/ceval.c' line='3669' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Python/ceval.c' line='3670' column='1'/>
+ <parameter type-id='type-id-52' name='qualname' filepath='../gpshead/Python/ceval.c' line='3670' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyEval_EvalFrameDefault' mangled-name='_PyEval_EvalFrameDefault' filepath='../gpshead/Python/ceval.c' line='551' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_EvalFrameDefault'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Python/ceval.c' line='551' column='1'/>
+ <parameter type-id='type-id-7' name='throwflag' filepath='../gpshead/Python/ceval.c' line='551' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyEval_EvalFrameEx' mangled-name='PyEval_EvalFrameEx' filepath='../gpshead/Python/ceval.c' line='544' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_EvalFrameEx'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Python/ceval.c' line='544' column='1'/>
+ <parameter type-id='type-id-7' name='throwflag' filepath='../gpshead/Python/ceval.c' line='544' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyEval_EvalFrame' mangled-name='PyEval_EvalFrame' filepath='../gpshead/Python/ceval.c' line='536' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_EvalFrame'>
+ <parameter type-id='type-id-297' name='f' filepath='../gpshead/Objects/genobject.c' line='817' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyEval_EvalCode' mangled-name='PyEval_EvalCode' filepath='../gpshead/Python/ceval.c' line='522' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_EvalCode'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <parameter type-id='type-id-52' name='z' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_CheckRecursiveCall' mangled-name='_Py_CheckRecursiveCall' filepath='../gpshead/Python/ceval.c' line='468' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_CheckRecursiveCall'>
+ <parameter type-id='type-id-3' name='where' filepath='../gpshead/Python/ceval.c' line='468' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='Py_SetRecursionLimit' mangled-name='Py_SetRecursionLimit' filepath='../gpshead/Python/ceval.c' line='456' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetRecursionLimit'>
+ <parameter type-id='type-id-7' name='new_limit' filepath='../gpshead/Python/ceval.c' line='456' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_GetRecursionLimit' mangled-name='Py_GetRecursionLimit' filepath='../gpshead/Python/ceval.c' line='450' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetRecursionLimit'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <class-decl name='_ceval_runtime_state' size-in-bits='6144' is-struct='yes' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='30' column='1' id='type-id-513'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='recursion_limit' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='31' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='32'>
+ <var-decl name='tracing_possible' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='37' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='eval_breaker' type-id='type-id-514' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='40' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='96'>
+ <var-decl name='gil_drop_request' type-id='type-id-514' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='42' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='pending' type-id='type-id-515' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='43' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='4480'>
+ <var-decl name='gil' type-id='type-id-516' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='44' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='_Py_atomic_int' size-in-bits='32' is-struct='yes' visibility='default' filepath='../gpshead/Include/pyatomic.h' line='42' column='1' id='type-id-517'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='_value' type-id='type-id-518' visibility='default' filepath='../gpshead/Include/pyatomic.h' line='43' column='1'/>
+ </data-member>
+ </class-decl>
+ <type-decl name='atomic_int' size-in-bits='32' id='type-id-518'/>
+ <typedef-decl name='_Py_atomic_int' type-id='type-id-517' filepath='../gpshead/Include/pyatomic.h' line='44' column='1' id='type-id-514'/>
+ <class-decl name='_pending_calls' size-in-bits='4352' is-struct='yes' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='10' column='1' id='type-id-515'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='main_thread' type-id='type-id-38' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='11' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='lock' type-id='type-id-61' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='12' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='calls_to_do' type-id='type-id-514' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='14' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='160'>
+ <var-decl name='async_exc' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='18' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='calls' type-id='type-id-519' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='23' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='4288'>
+ <var-decl name='first' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='24' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='4320'>
+ <var-decl name='last' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='25' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='20' column='1' id='type-id-520'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='func' type-id='type-id-521' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='21' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='arg' type-id='type-id-56' visibility='default' filepath='../gpshead/Include/internal/ceval.h' line='22' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-522' size-in-bits='64' id='type-id-521'/>
+
+ <array-type-def dimensions='1' type-id='type-id-520' size-in-bits='4096' id='type-id-519'>
+ <subrange length='32' type-id='type-id-38' id='type-id-523'/>
+
+ </array-type-def>
+ <class-decl name='_gil_runtime_state' size-in-bits='1664' is-struct='yes' visibility='default' filepath='../gpshead/Include/internal/gil.h' line='19' column='1' id='type-id-516'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='interval' type-id='type-id-38' visibility='default' filepath='../gpshead/Include/internal/gil.h' line='21' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='last_holder' type-id='type-id-524' visibility='default' filepath='../gpshead/Include/internal/gil.h' line='24' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='locked' type-id='type-id-514' visibility='default' filepath='../gpshead/Include/internal/gil.h' line='27' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='switch_number' type-id='type-id-38' visibility='default' filepath='../gpshead/Include/internal/gil.h' line='29' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='cond' type-id='type-id-525' visibility='default' filepath='../gpshead/Include/internal/gil.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='640'>
+ <var-decl name='mutex' type-id='type-id-526' visibility='default' filepath='../gpshead/Include/internal/gil.h' line='34' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='960'>
+ <var-decl name='switch_cond' type-id='type-id-525' visibility='default' filepath='../gpshead/Include/internal/gil.h' line='38' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1344'>
+ <var-decl name='switch_mutex' type-id='type-id-526' visibility='default' filepath='../gpshead/Include/internal/gil.h' line='39' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='_Py_atomic_address' size-in-bits='64' is-struct='yes' visibility='default' filepath='../gpshead/Include/pyatomic.h' line='38' column='1' id='type-id-527'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='_value' type-id='type-id-528' visibility='default' filepath='../gpshead/Include/pyatomic.h' line='39' column='1'/>
+ </data-member>
+ </class-decl>
+ <type-decl name='atomic_uintptr_t' size-in-bits='64' id='type-id-528'/>
+ <typedef-decl name='_Py_atomic_address' type-id='type-id-527' filepath='../gpshead/Include/pyatomic.h' line='40' column='1' id='type-id-524'/>
+ <union-decl name='__anonymous_union__' size-in-bits='384' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='75' column='1' id='type-id-529'>
+ <data-member access='private'>
+ <var-decl name='__data' type-id='type-id-530' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='77' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='__size' type-id='type-id-531' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='78' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='__align' type-id='type-id-319' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='79' column='1'/>
+ </data-member>
+ </union-decl>
+ <class-decl name='__pthread_cond_s' size-in-bits='384' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='92' column='1' id='type-id-530'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='' type-id='type-id-532' visibility='default'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='__g_refs' type-id='type-id-533' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='112' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='__g_size' type-id='type-id-533' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='113' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='__g1_orig_size' type-id='type-id-101' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='114' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288'>
+ <var-decl name='__wrefs' type-id='type-id-101' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='115' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='__g_signals' type-id='type-id-533' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='116' column='1'/>
+ </data-member>
+ </class-decl>
+ <union-decl name='__anonymous_union__' size-in-bits='64' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='94' column='1' id='type-id-532'>
+ <data-member access='private'>
+ <var-decl name='__wseq' type-id='type-id-320' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='96' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='__wseq32' type-id='type-id-534' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='101' column='1'/>
+ </data-member>
+ </union-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='97' column='1' id='type-id-534'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='__low' type-id='type-id-101' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='99' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='32'>
+ <var-decl name='__high' type-id='type-id-101' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='100' column='1'/>
+ </data-member>
+ </class-decl>
+
+ <array-type-def dimensions='1' type-id='type-id-101' size-in-bits='64' id='type-id-533'>
+ <subrange length='2' type-id='type-id-38' id='type-id-535'/>
+
+ </array-type-def>
+
+ <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='384' id='type-id-531'>
+ <subrange length='48' type-id='type-id-38' id='type-id-536'/>
+
+ </array-type-def>
+ <typedef-decl name='pthread_cond_t' type-id='type-id-529' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='80' column='1' id='type-id-525'/>
+ <union-decl name='__anonymous_union__' size-in-bits='320' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='67' column='1' id='type-id-537'>
+ <data-member access='private'>
+ <var-decl name='__data' type-id='type-id-538' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='69' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='__size' type-id='type-id-539' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='70' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='__align' type-id='type-id-31' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='71' column='1'/>
+ </data-member>
+ </union-decl>
+ <class-decl name='__pthread_mutex_s' size-in-bits='320' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='22' column='1' id='type-id-538'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='__lock' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='24' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='32'>
+ <var-decl name='__count' type-id='type-id-101' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='25' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='__owner' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='26' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='96'>
+ <var-decl name='__nusers' type-id='type-id-101' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='28' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='__kind' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='32' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='160'>
+ <var-decl name='__spins' type-id='type-id-21' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='34' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='176'>
+ <var-decl name='__elision' type-id='type-id-21' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='35' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='__list' type-id='type-id-540' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='36' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__pthread_internal_list' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='49' column='1' id='type-id-541'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='__prev' type-id='type-id-542' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='51' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='__next' type-id='type-id-542' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='52' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-541' size-in-bits='64' id='type-id-542'/>
+ <typedef-decl name='__pthread_list_t' type-id='type-id-541' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='53' column='1' id='type-id-540'/>
+
+ <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='320' id='type-id-539'>
+ <subrange length='40' type-id='type-id-38' id='type-id-543'/>
+
+ </array-type-def>
+ <typedef-decl name='pthread_mutex_t' type-id='type-id-537' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='72' column='1' id='type-id-526'/>
+ <pointer-type-def type-id='type-id-513' size-in-bits='64' id='type-id-544'/>
+ <function-decl name='_PyEval_Initialize' mangled-name='_PyEval_Initialize' filepath='../gpshead/Python/ceval.c' line='442' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_Initialize'>
+ <parameter type-id='type-id-544' name='state' filepath='../gpshead/Python/ceval.c' line='442' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_MakePendingCalls' mangled-name='Py_MakePendingCalls' filepath='../gpshead/Python/ceval.c' line='363' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_MakePendingCalls'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='Py_AddPendingCall' mangled-name='Py_AddPendingCall' filepath='../gpshead/Python/ceval.c' line='321' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_AddPendingCall'>
+ <parameter type-id='type-id-521' name='func' filepath='../gpshead/Python/ceval.c' line='321' column='1'/>
+ <parameter type-id='type-id-56' name='arg' filepath='../gpshead/Python/ceval.c' line='321' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyEval_SignalReceived' mangled-name='_PyEval_SignalReceived' filepath='../gpshead/Python/ceval.c' line='307' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SignalReceived'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyEval_RestoreThread' mangled-name='PyEval_RestoreThread' filepath='../gpshead/Python/ceval.c' line='264' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_RestoreThread'>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Python/ceval.c' line='264' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyEval_SaveThread' mangled-name='PyEval_SaveThread' filepath='../gpshead/Python/ceval.c' line='253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_SaveThread'>
+ <return type-id='type-id-217'/>
+ </function-decl>
+ <function-decl name='_PyEval_SignalAsyncExc' mangled-name='_PyEval_SignalAsyncExc' filepath='../gpshead/Python/ceval.c' line='243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SignalAsyncExc'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyEval_ReInitThreads' mangled-name='PyEval_ReInitThreads' filepath='../gpshead/Python/ceval.c' line='224' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_ReInitThreads'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyEval_ReleaseThread' mangled-name='PyEval_ReleaseThread' filepath='../gpshead/Python/ceval.c' line='209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_ReleaseThread'>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Python/ceval.c' line='209' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyEval_AcquireThread' mangled-name='PyEval_AcquireThread' filepath='../gpshead/Python/ceval.c' line='196' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_AcquireThread'>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Python/ceval.c' line='209' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyEval_ReleaseLock' mangled-name='PyEval_ReleaseLock' filepath='../gpshead/Python/ceval.c' line='185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_ReleaseLock'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyEval_AcquireLock' mangled-name='PyEval_AcquireLock' filepath='../gpshead/Python/ceval.c' line='176' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_AcquireLock'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyEval_FiniThreads' mangled-name='_PyEval_FiniThreads' filepath='../gpshead/Python/ceval.c' line='167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_FiniThreads'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyEval_InitThreads' mangled-name='PyEval_InitThreads' filepath='../gpshead/Python/ceval.c' line='155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_InitThreads'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyEval_ThreadsInitialized' mangled-name='PyEval_ThreadsInitialized' filepath='../gpshead/Python/ceval.c' line='149' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_ThreadsInitialized'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyEval_GetSwitchInterval' mangled-name='_PyEval_GetSwitchInterval' filepath='../gpshead/Python/ceval_gil.h' line='256' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetSwitchInterval'>
+ <return type-id='type-id-38'/>
+ </function-decl>
+ <function-decl name='_PyEval_SetSwitchInterval' mangled-name='_PyEval_SetSwitchInterval' filepath='../gpshead/Python/ceval_gil.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetSwitchInterval'>
+ <parameter type-id='type-id-38' name='microseconds' filepath='../gpshead/Python/ceval_gil.h' line='251' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-522'>
+ <parameter type-id='type-id-56'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/compile.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyAST_Compile' mangled-name='PyAST_Compile' filepath='../gpshead/Python/compile.c' line='5542' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAST_Compile'>
+ <parameter type-id='type-id-467' name='mod' filepath='../gpshead/Python/compile.c' line='5542' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/compile.c' line='5542' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/compile.c' line='5542' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/compile.c' line='5543' column='1'/>
+ <return type-id='type-id-272'/>
+ </function-decl>
+ <function-decl name='PyCompile_OpcodeStackEffect' mangled-name='PyCompile_OpcodeStackEffect' filepath='../gpshead/Python/compile.c' line='1126' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCompile_OpcodeStackEffect'>
+ <parameter type-id='type-id-7' name='c1' filepath='../gpshead/Parser/tokenizer.c' line='1157' column='1'/>
+ <parameter type-id='type-id-7' name='c2' filepath='../gpshead/Parser/tokenizer.c' line='1157' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyNode_Compile' mangled-name='PyNode_Compile' filepath='../gpshead/Python/compile.c' line='373' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNode_Compile'>
+ <parameter type-id='type-id-28' name='n' filepath='../gpshead/Python/compile.c' line='373' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/compile.c' line='373' column='1'/>
+ <return type-id='type-id-272'/>
+ </function-decl>
+ <function-decl name='PyAST_CompileEx' mangled-name='PyAST_CompileEx' filepath='../gpshead/Python/compile.c' line='358' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAST_CompileEx'>
+ <parameter type-id='type-id-467' name='mod' filepath='../gpshead/Python/compile.c' line='358' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/compile.c' line='358' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/compile.c' line='358' column='1'/>
+ <parameter type-id='type-id-7' name='optimize' filepath='../gpshead/Python/compile.c' line='359' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/compile.c' line='359' column='1'/>
+ <return type-id='type-id-272'/>
+ </function-decl>
+ <function-decl name='PyAST_CompileObject' mangled-name='PyAST_CompileObject' filepath='../gpshead/Python/compile.c' line='301' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAST_CompileObject'>
+ <parameter type-id='type-id-467' name='mod' filepath='../gpshead/Python/compile.c' line='301' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/compile.c' line='301' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/compile.c' line='301' column='1'/>
+ <parameter type-id='type-id-7' name='optimize' filepath='../gpshead/Python/compile.c' line='302' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/compile.c' line='302' column='1'/>
+ <return type-id='type-id-272'/>
+ </function-decl>
+ <function-decl name='_Py_Mangle' mangled-name='_Py_Mangle' filepath='../gpshead/Python/compile.c' line='221' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Mangle'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1290' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='1290' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/codecs.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='Py_hexdigits' type-id='type-id-3' mangled-name='Py_hexdigits' visibility='default' filepath='../gpshead/Include/codecs.h' line='234' column='1' elf-symbol-id='Py_hexdigits'/>
+ <function-decl name='PyCodec_NameReplaceErrors' mangled-name='PyCodec_NameReplaceErrors' filepath='../gpshead/Python/codecs.c' line='964' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_NameReplaceErrors'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/cellobject.c' line='23' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_BackslashReplaceErrors' mangled-name='PyCodec_BackslashReplaceErrors' filepath='../gpshead/Python/codecs.c' line='855' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_BackslashReplaceErrors'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Python/codecs.c' line='855' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_XMLCharRefReplaceErrors' mangled-name='PyCodec_XMLCharRefReplaceErrors' filepath='../gpshead/Python/codecs.c' line='757' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_XMLCharRefReplaceErrors'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/cellobject.c' line='23' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_ReplaceErrors' mangled-name='PyCodec_ReplaceErrors' filepath='../gpshead/Python/codecs.c' line='702' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_ReplaceErrors'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/dictobject.c' line='2529' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_IgnoreErrors' mangled-name='PyCodec_IgnoreErrors' filepath='../gpshead/Python/codecs.c' line='678' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_IgnoreErrors'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_StrictErrors' mangled-name='PyCodec_StrictErrors' filepath='../gpshead/Python/codecs.c' line='668' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_StrictErrors'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_LookupError' mangled-name='PyCodec_LookupError' filepath='../gpshead/Python/codecs.c' line='643' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_LookupError'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/moduleobject.c' line='114' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_RegisterError' mangled-name='PyCodec_RegisterError' filepath='../gpshead/Python/codecs.c' line='627' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_RegisterError'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/codecs.c' line='627' column='1'/>
+ <parameter type-id='type-id-52' name='error' filepath='../gpshead/Python/codecs.c' line='627' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyCodec_DecodeText' mangled-name='_PyCodec_DecodeText' filepath='../gpshead/Python/codecs.c' line='608' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodec_DecodeText'>
+ <parameter type-id='type-id-52' name='object' filepath='../gpshead/Python/codecs.c' line='608' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='609' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Python/codecs.c' line='610' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyCodec_EncodeText' mangled-name='_PyCodec_EncodeText' filepath='../gpshead/Python/codecs.c' line='595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodec_EncodeText'>
+ <parameter type-id='type-id-52' name='object' filepath='../gpshead/Python/codecs.c' line='608' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='609' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Python/codecs.c' line='610' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyCodec_LookupTextEncoding' mangled-name='_PyCodec_LookupTextEncoding' filepath='../gpshead/Python/codecs.c' line='526' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodec_LookupTextEncoding'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='526' column='1'/>
+ <parameter type-id='type-id-3' name='alternate_command' filepath='../gpshead/Python/codecs.c' line='527' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_Decode' mangled-name='PyCodec_Decode' filepath='../gpshead/Python/codecs.c' line='512' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Decode'>
+ <parameter type-id='type-id-52' name='object' filepath='../gpshead/Python/codecs.c' line='608' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='609' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Python/codecs.c' line='610' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_Encode' mangled-name='PyCodec_Encode' filepath='../gpshead/Python/codecs.c' line='499' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Encode'>
+ <parameter type-id='type-id-52' name='object' filepath='../gpshead/Python/codecs.c' line='608' column='1'/>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='609' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Python/codecs.c' line='610' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_StreamWriter' mangled-name='PyCodec_StreamWriter' filepath='../gpshead/Python/codecs.c' line='384' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_StreamWriter'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='384' column='1'/>
+ <parameter type-id='type-id-52' name='stream' filepath='../gpshead/Python/codecs.c' line='385' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Python/codecs.c' line='386' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_StreamReader' mangled-name='PyCodec_StreamReader' filepath='../gpshead/Python/codecs.c' line='377' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_StreamReader'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='384' column='1'/>
+ <parameter type-id='type-id-52' name='stream' filepath='../gpshead/Python/codecs.c' line='385' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Python/codecs.c' line='386' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_IncrementalDecoder' mangled-name='PyCodec_IncrementalDecoder' filepath='../gpshead/Python/codecs.c' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_IncrementalDecoder'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='371' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Python/codecs.c' line='372' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_IncrementalEncoder' mangled-name='PyCodec_IncrementalEncoder' filepath='../gpshead/Python/codecs.c' line='365' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_IncrementalEncoder'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='371' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Python/codecs.c' line='372' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_Decoder' mangled-name='PyCodec_Decoder' filepath='../gpshead/Python/codecs.c' line='360' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Decoder'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='360' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_Encoder' mangled-name='PyCodec_Encoder' filepath='../gpshead/Python/codecs.c' line='355' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Encoder'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='360' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyCodecInfo_GetIncrementalEncoder' mangled-name='_PyCodecInfo_GetIncrementalEncoder' filepath='../gpshead/Python/codecs.c' line='341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodecInfo_GetIncrementalEncoder'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='7058' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='7058' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyCodecInfo_GetIncrementalDecoder' mangled-name='_PyCodecInfo_GetIncrementalDecoder' filepath='../gpshead/Python/codecs.c' line='334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodecInfo_GetIncrementalDecoder'>
+ <parameter type-id='type-id-52' name='unicode' filepath='../gpshead/Objects/unicodeobject.c' line='7058' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Objects/unicodeobject.c' line='7058' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_KnownEncoding' mangled-name='PyCodec_KnownEncoding' filepath='../gpshead/Python/codecs.c' line='218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_KnownEncoding'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='218' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyCodec_Forget' mangled-name='_PyCodec_Forget' filepath='../gpshead/Python/codecs.c' line='190' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodec_Forget'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='190' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyCodec_Lookup' mangled-name='_PyCodec_Lookup' filepath='../gpshead/Python/codecs.c' line='100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodec_Lookup'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyCodec_Register' mangled-name='PyCodec_Register' filepath='../gpshead/Python/codecs.c' line='33' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Register'>
+ <parameter type-id='type-id-52' name='search_function' filepath='../gpshead/Python/codecs.c' line='33' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/errors.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyErr_ProgramTextObject' mangled-name='PyErr_ProgramTextObject' filepath='../gpshead/Python/errors.c' line='1204' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ProgramTextObject'>
+ <parameter type-id='type-id-52' name='string' filepath='../gpshead/Objects/unicodeobject.c' line='10201' column='1'/>
+ <parameter type-id='type-id-7' name='keepends' filepath='../gpshead/Objects/unicodeobject.c' line='10201' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_ProgramText' mangled-name='PyErr_ProgramText' filepath='../gpshead/Python/errors.c' line='1194' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ProgramText'>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/errors.c' line='1194' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/errors.c' line='1194' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_SyntaxLocationEx' mangled-name='PyErr_SyntaxLocationEx' filepath='../gpshead/Python/errors.c' line='1140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SyntaxLocationEx'>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/errors.c' line='1140' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/errors.c' line='1140' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/errors.c' line='1140' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_SyntaxLocationObject' mangled-name='PyErr_SyntaxLocationObject' filepath='../gpshead/Python/errors.c' line='1076' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SyntaxLocationObject'>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/errors.c' line='1076' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/errors.c' line='1076' column='1'/>
+ <parameter type-id='type-id-7' name='col_offset' filepath='../gpshead/Python/errors.c' line='1076' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_SyntaxLocation' mangled-name='PyErr_SyntaxLocation' filepath='../gpshead/Python/errors.c' line='1065' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SyntaxLocation'>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/errors.c' line='1065' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/errors.c' line='1065' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_WriteUnraisable' mangled-name='PyErr_WriteUnraisable' filepath='../gpshead/Python/errors.c' line='1043' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WriteUnraisable'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/errors.c' line='1043' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_NewExceptionWithDoc' mangled-name='PyErr_NewExceptionWithDoc' filepath='../gpshead/Python/errors.c' line='911' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NewExceptionWithDoc'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/errors.c' line='911' column='1'/>
+ <parameter type-id='type-id-3' name='doc' filepath='../gpshead/Python/errors.c' line='911' column='1'/>
+ <parameter type-id='type-id-52' name='base' filepath='../gpshead/Python/errors.c' line='912' column='1'/>
+ <parameter type-id='type-id-52' name='dict' filepath='../gpshead/Python/errors.c' line='912' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_NewException' mangled-name='PyErr_NewException' filepath='../gpshead/Python/errors.c' line='859' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NewException'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/errors.c' line='859' column='1'/>
+ <parameter type-id='type-id-52' name='base' filepath='../gpshead/Python/errors.c' line='859' column='1'/>
+ <parameter type-id='type-id-52' name='dict' filepath='../gpshead/Python/errors.c' line='859' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_Format' mangled-name='PyErr_Format' filepath='../gpshead/Python/errors.c' line='844' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Format'>
+ <parameter type-id='type-id-52' name='exception' filepath='../gpshead/Python/errors.c' line='844' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/errors.c' line='844' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_FormatV' mangled-name='PyErr_FormatV' filepath='../gpshead/Python/errors.c' line='827' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_FormatV'>
+ <parameter type-id='type-id-52' name='exception' filepath='../gpshead/Python/errors.c' line='827' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/errors.c' line='827' column='1'/>
+ <parameter type-id='type-id-261' name='vargs' filepath='../gpshead/Python/errors.c' line='827' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_BadInternalCall' mangled-name='PyErr_BadInternalCall' filepath='../gpshead/Python/errors.c' line='817' 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='../gpshead/Python/errors.c' line='806' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_BadInternalCall'>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/errors.c' line='1065' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/errors.c' line='1065' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_SetImportError' mangled-name='PyErr_SetImportError' filepath='../gpshead/Python/errors.c' line='800' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetImportError'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <parameter type-id='type-id-52' name='z' filepath='../gpshead/Objects/abstract.c' line='1172' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_SetImportErrorSubclass' mangled-name='PyErr_SetImportErrorSubclass' filepath='../gpshead/Python/errors.c' line='750' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetImportErrorSubclass'>
+ <parameter type-id='type-id-52' name='exception' filepath='../gpshead/Python/errors.c' line='750' column='1'/>
+ <parameter type-id='type-id-52' name='msg' filepath='../gpshead/Python/errors.c' line='750' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Python/errors.c' line='751' column='1'/>
+ <parameter type-id='type-id-52' name='path' filepath='../gpshead/Python/errors.c' line='751' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_SetFromErrno' mangled-name='PyErr_SetFromErrno' filepath='../gpshead/Python/errors.c' line='605' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrno'>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Objects/bytearrayobject.c' line='100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_SetFromErrnoWithFilename' mangled-name='PyErr_SetFromErrnoWithFilename' filepath='../gpshead/Python/errors.c' line='585' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilename'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2100' column='1'/>
+ <parameter type-id='type-id-3' name='key' filepath='../gpshead/Objects/abstract.c' line='2100' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_SetFromErrnoWithFilenameObjects' mangled-name='PyErr_SetFromErrnoWithFilenameObjects' filepath='../gpshead/Python/errors.c' line='487' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilenameObjects'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Python/errors.c' line='487' column='1'/>
+ <parameter type-id='type-id-52' name='filenameObject' filepath='../gpshead/Python/errors.c' line='487' column='1'/>
+ <parameter type-id='type-id-52' name='filenameObject2' filepath='../gpshead/Python/errors.c' line='487' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_SetFromErrnoWithFilenameObject' mangled-name='PyErr_SetFromErrnoWithFilenameObject' filepath='../gpshead/Python/errors.c' line='481' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilenameObject'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_NoMemory' mangled-name='PyErr_NoMemory' filepath='../gpshead/Python/errors.c' line='468' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NoMemory'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_BadArgument' mangled-name='PyErr_BadArgument' filepath='../gpshead/Python/errors.c' line='460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_BadArgument'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyErr_FormatFromCause' mangled-name='_PyErr_FormatFromCause' filepath='../gpshead/Python/errors.c' line='444' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_FormatFromCause'>
+ <parameter type-id='type-id-52' name='exception' filepath='../gpshead/Python/errors.c' line='844' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/errors.c' line='844' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyErr_ChainExceptions' mangled-name='_PyErr_ChainExceptions' filepath='../gpshead/Python/errors.c' line='393' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ChainExceptions'>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Python/errors.c' line='393' column='1'/>
+ <parameter type-id='type-id-52' name='val' filepath='../gpshead/Python/errors.c' line='393' column='1'/>
+ <parameter type-id='type-id-52' name='tb' filepath='../gpshead/Python/errors.c' line='393' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_SetExcInfo' mangled-name='PyErr_SetExcInfo' filepath='../gpshead/Python/errors.c' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetExcInfo'>
+ <parameter type-id='type-id-52' name='p_type' filepath='../gpshead/Python/errors.c' line='371' column='1'/>
+ <parameter type-id='type-id-52' name='p_value' filepath='../gpshead/Python/errors.c' line='371' column='1'/>
+ <parameter type-id='type-id-52' name='p_traceback' filepath='../gpshead/Python/errors.c' line='371' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_GetExcInfo' mangled-name='PyErr_GetExcInfo' filepath='../gpshead/Python/errors.c' line='355' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_GetExcInfo'>
+ <parameter type-id='type-id-259' name='p_type' filepath='../gpshead/Python/errors.c' line='355' column='1'/>
+ <parameter type-id='type-id-259' name='p_value' filepath='../gpshead/Python/errors.c' line='355' column='1'/>
+ <parameter type-id='type-id-259' name='p_traceback' filepath='../gpshead/Python/errors.c' line='355' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_Clear' mangled-name='PyErr_Clear' filepath='../gpshead/Python/errors.c' line='349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Clear'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_Fetch' mangled-name='PyErr_Fetch' filepath='../gpshead/Python/errors.c' line='335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Fetch'>
+ <parameter type-id='type-id-259' name='p_type' filepath='../gpshead/Python/errors.c' line='335' column='1'/>
+ <parameter type-id='type-id-259' name='p_value' filepath='../gpshead/Python/errors.c' line='335' column='1'/>
+ <parameter type-id='type-id-259' name='p_traceback' filepath='../gpshead/Python/errors.c' line='335' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_NormalizeException' mangled-name='PyErr_NormalizeException' filepath='../gpshead/Python/errors.c' line='233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NormalizeException'>
+ <parameter type-id='type-id-259' name='exc' filepath='../gpshead/Python/errors.c' line='233' column='1'/>
+ <parameter type-id='type-id-259' name='val' filepath='../gpshead/Python/errors.c' line='233' column='1'/>
+ <parameter type-id='type-id-259' name='tb' filepath='../gpshead/Python/errors.c' line='233' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_ExceptionMatches' mangled-name='PyErr_ExceptionMatches' filepath='../gpshead/Python/errors.c' line='216' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ExceptionMatches'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2064' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyErr_GivenExceptionMatches' mangled-name='PyErr_GivenExceptionMatches' filepath='../gpshead/Python/errors.c' line='184' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_GivenExceptionMatches'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/funcobject.c' line='210' column='1'/>
+ <parameter type-id='type-id-52' name='annotations' filepath='../gpshead/Objects/funcobject.c' line='210' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyErr_Occurred' mangled-name='PyErr_Occurred' filepath='../gpshead/Python/errors.c' line='176' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Occurred'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_SetString' mangled-name='PyErr_SetString' filepath='../gpshead/Python/errors.c' line='167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetString'>
+ <parameter type-id='type-id-52' name='exception' filepath='../gpshead/Python/errors.c' line='167' column='1'/>
+ <parameter type-id='type-id-3' name='string' filepath='../gpshead/Python/errors.c' line='167' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_SetNone' mangled-name='PyErr_SetNone' filepath='../gpshead/Python/errors.c' line='161' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetNone'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/object.c' line='2227' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyErr_SetKeyError' mangled-name='_PyErr_SetKeyError' filepath='../gpshead/Python/errors.c' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetKeyError'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/object.c' line='2147' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_SetObject' mangled-name='PyErr_SetObject' filepath='../gpshead/Python/errors.c' line='83' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetObject'>
+ <parameter type-id='type-id-52' name='exception' filepath='../gpshead/Python/errors.c' line='83' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Python/errors.c' line='83' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyErr_GetTopmostException' mangled-name='_PyErr_GetTopmostException' filepath='../gpshead/Python/errors.c' line='57' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_GetTopmostException'>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Python/errors.c' line='57' column='1'/>
+ <return type-id='type-id-54'/>
+ </function-decl>
+ <function-decl name='PyErr_Restore' mangled-name='PyErr_Restore' filepath='../gpshead/Python/errors.c' line='29' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Restore'>
+ <parameter type-id='type-id-52' name='type' filepath='../gpshead/Python/errors.c' line='29' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Python/errors.c' line='29' column='1'/>
+ <parameter type-id='type-id-52' name='traceback' filepath='../gpshead/Python/errors.c' line='29' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/frozenmain.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='Py_FrozenMain' mangled-name='Py_FrozenMain' filepath='../gpshead/Python/frozenmain.c' line='17' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FrozenMain'>
+ <parameter type-id='type-id-7' name='argc' filepath='../gpshead/Python/frozenmain.c' line='17' column='1'/>
+ <parameter type-id='type-id-233' name='argv' filepath='../gpshead/Python/frozenmain.c' line='17' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/future.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-545' visibility='default' filepath='../gpshead/Include/compile.h' line='34' column='1' id='type-id-546'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ff_features' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/compile.h' line='35' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='32'>
+ <var-decl name='ff_lineno' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/compile.h' line='36' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyFutureFeatures' type-id='type-id-546' filepath='../gpshead/Include/compile.h' line='37' column='1' id='type-id-545'/>
+ <pointer-type-def type-id='type-id-545' size-in-bits='64' id='type-id-547'/>
+ <function-decl name='PyFuture_FromAST' mangled-name='PyFuture_FromAST' filepath='../gpshead/Python/future.c' line='151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFuture_FromAST'>
+ <parameter type-id='type-id-467' name='mod' filepath='../gpshead/Python/future.c' line='151' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/future.c' line='151' column='1'/>
+ <return type-id='type-id-547'/>
+ </function-decl>
+ <function-decl name='PyFuture_FromASTObject' mangled-name='PyFuture_FromASTObject' filepath='../gpshead/Python/future.c' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFuture_FromASTObject'>
+ <parameter type-id='type-id-467' name='mod' filepath='../gpshead/Python/future.c' line='130' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/future.c' line='130' column='1'/>
+ <return type-id='type-id-547'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/getargs.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_PyArg_Fini' mangled-name='_PyArg_Fini' filepath='../gpshead/Python/getargs.c' line='2553' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyArg_NoPositional' mangled-name='_PyArg_NoPositional' filepath='../gpshead/Python/getargs.c' line='2536' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_NoPositional'>
+ <parameter type-id='type-id-3' name='funcname' filepath='../gpshead/Python/getargs.c' line='2536' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='2536' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_NoKeywords' mangled-name='_PyArg_NoKeywords' filepath='../gpshead/Python/getargs.c' line='2516' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_NoKeywords'>
+ <parameter type-id='type-id-3' name='funcname' filepath='../gpshead/Python/getargs.c' line='2536' column='1'/>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='2536' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_UnpackStack' mangled-name='_PyArg_UnpackStack' filepath='../gpshead/Python/getargs.c' line='2490' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_UnpackStack'>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Python/getargs.c' line='2490' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Python/getargs.c' line='2490' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/getargs.c' line='2490' column='1'/>
+ <parameter type-id='type-id-34' name='min' filepath='../gpshead/Python/getargs.c' line='2491' column='1'/>
+ <parameter type-id='type-id-34' name='max' filepath='../gpshead/Python/getargs.c' line='2491' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyArg_UnpackTuple' mangled-name='PyArg_UnpackTuple' filepath='../gpshead/Python/getargs.c' line='2464' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_UnpackTuple'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='2464' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/getargs.c' line='2464' column='1'/>
+ <parameter type-id='type-id-34' name='min' filepath='../gpshead/Python/getargs.c' line='2464' column='1'/>
+ <parameter type-id='type-id-34' name='max' filepath='../gpshead/Python/getargs.c' line='2464' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyArg_ValidateKeywordArguments' mangled-name='PyArg_ValidateKeywordArguments' filepath='../gpshead/Python/getargs.c' line='1593' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_ValidateKeywordArguments'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2064' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <class-decl name='_PyArg_Parser' size-in-bits='512' is-struct='yes' visibility='default' filepath='../gpshead/Include/modsupport.h' line='82' column='1' id='type-id-548'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='format' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/modsupport.h' line='83' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='keywords' type-id='type-id-549' visibility='default' filepath='../gpshead/Include/modsupport.h' line='84' 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='../gpshead/Include/modsupport.h' line='85' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='custom_msg' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/modsupport.h' line='86' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='pos' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/modsupport.h' line='87' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288'>
+ <var-decl name='min' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/modsupport.h' line='88' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='max' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/modsupport.h' line='89' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='kwtuple' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/modsupport.h' line='90' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='next' type-id='type-id-550' visibility='default' filepath='../gpshead/Include/modsupport.h' line='91' column='1'/>
+ </data-member>
+ </class-decl>
+ <qualified-type-def type-id='type-id-3' const='yes' id='type-id-551'/>
+ <pointer-type-def type-id='type-id-551' size-in-bits='64' id='type-id-549'/>
+ <pointer-type-def type-id='type-id-548' size-in-bits='64' id='type-id-550'/>
+ <function-decl name='_PyArg_VaParseTupleAndKeywordsFast_SizeT' mangled-name='_PyArg_VaParseTupleAndKeywordsFast_SizeT' filepath='../gpshead/Python/getargs.c' line='1579' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParseTupleAndKeywordsFast_SizeT'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='1579' column='1'/>
+ <parameter type-id='type-id-52' name='keywords' filepath='../gpshead/Python/getargs.c' line='1579' column='1'/>
+ <parameter type-id='type-id-550' name='parser' filepath='../gpshead/Python/getargs.c' line='1580' column='1'/>
+ <parameter type-id='type-id-261' name='va' filepath='../gpshead/Python/getargs.c' line='1580' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_VaParseTupleAndKeywordsFast' mangled-name='_PyArg_VaParseTupleAndKeywordsFast' filepath='../gpshead/Python/getargs.c' line='1565' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParseTupleAndKeywordsFast'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='1579' column='1'/>
+ <parameter type-id='type-id-52' name='keywords' filepath='../gpshead/Python/getargs.c' line='1579' column='1'/>
+ <parameter type-id='type-id-550' name='parser' filepath='../gpshead/Python/getargs.c' line='1580' column='1'/>
+ <parameter type-id='type-id-261' name='va' filepath='../gpshead/Python/getargs.c' line='1580' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_ParseStackAndKeywords_SizeT' mangled-name='_PyArg_ParseStackAndKeywords_SizeT' filepath='../gpshead/Python/getargs.c' line='1551' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseStackAndKeywords_SizeT'>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Python/getargs.c' line='1551' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Python/getargs.c' line='1551' column='1'/>
+ <parameter type-id='type-id-52' name='kwnames' filepath='../gpshead/Python/getargs.c' line='1551' column='1'/>
+ <parameter type-id='type-id-550' name='parser' filepath='../gpshead/Python/getargs.c' line='1552' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_ParseStackAndKeywords' mangled-name='_PyArg_ParseStackAndKeywords' filepath='../gpshead/Python/getargs.c' line='1538' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseStackAndKeywords'>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Python/getargs.c' line='1551' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Python/getargs.c' line='1551' column='1'/>
+ <parameter type-id='type-id-52' name='kwnames' filepath='../gpshead/Python/getargs.c' line='1551' column='1'/>
+ <parameter type-id='type-id-550' name='parser' filepath='../gpshead/Python/getargs.c' line='1552' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_ParseTupleAndKeywordsFast_SizeT' mangled-name='_PyArg_ParseTupleAndKeywordsFast_SizeT' filepath='../gpshead/Python/getargs.c' line='1525' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTupleAndKeywordsFast_SizeT'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='1525' column='1'/>
+ <parameter type-id='type-id-52' name='keywords' filepath='../gpshead/Python/getargs.c' line='1525' column='1'/>
+ <parameter type-id='type-id-550' name='parser' filepath='../gpshead/Python/getargs.c' line='1526' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_ParseTupleAndKeywordsFast' mangled-name='_PyArg_ParseTupleAndKeywordsFast' filepath='../gpshead/Python/getargs.c' line='1512' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTupleAndKeywordsFast'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='1525' column='1'/>
+ <parameter type-id='type-id-52' name='keywords' filepath='../gpshead/Python/getargs.c' line='1525' column='1'/>
+ <parameter type-id='type-id-550' name='parser' filepath='../gpshead/Python/getargs.c' line='1526' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_VaParseTupleAndKeywords_SizeT' mangled-name='_PyArg_VaParseTupleAndKeywords_SizeT' filepath='../gpshead/Python/getargs.c' line='1486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParseTupleAndKeywords_SizeT'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='1486' column='1'/>
+ <parameter type-id='type-id-52' name='keywords' filepath='../gpshead/Python/getargs.c' line='1487' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/getargs.c' line='1488' column='1'/>
+ <parameter type-id='type-id-233' name='kwlist' filepath='../gpshead/Python/getargs.c' line='1489' column='1'/>
+ <parameter type-id='type-id-261' name='va' filepath='../gpshead/Python/getargs.c' line='1489' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyArg_VaParseTupleAndKeywords' mangled-name='PyArg_VaParseTupleAndKeywords' filepath='../gpshead/Python/getargs.c' line='1461' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_VaParseTupleAndKeywords'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='1486' column='1'/>
+ <parameter type-id='type-id-52' name='keywords' filepath='../gpshead/Python/getargs.c' line='1487' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/getargs.c' line='1488' column='1'/>
+ <parameter type-id='type-id-233' name='kwlist' filepath='../gpshead/Python/getargs.c' line='1489' column='1'/>
+ <parameter type-id='type-id-261' name='va' filepath='../gpshead/Python/getargs.c' line='1489' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_ParseTupleAndKeywords_SizeT' mangled-name='_PyArg_ParseTupleAndKeywords_SizeT' filepath='../gpshead/Python/getargs.c' line='1435' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTupleAndKeywords_SizeT'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='1435' column='1'/>
+ <parameter type-id='type-id-52' name='keywords' filepath='../gpshead/Python/getargs.c' line='1436' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/getargs.c' line='1437' column='1'/>
+ <parameter type-id='type-id-233' name='kwlist' filepath='../gpshead/Python/getargs.c' line='1438' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyArg_ParseTupleAndKeywords' mangled-name='PyArg_ParseTupleAndKeywords' filepath='../gpshead/Python/getargs.c' line='1411' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_ParseTupleAndKeywords'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='1435' column='1'/>
+ <parameter type-id='type-id-52' name='keywords' filepath='../gpshead/Python/getargs.c' line='1436' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/getargs.c' line='1437' column='1'/>
+ <parameter type-id='type-id-233' name='kwlist' filepath='../gpshead/Python/getargs.c' line='1438' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_VaParse_SizeT' mangled-name='_PyArg_VaParse_SizeT' filepath='../gpshead/Python/getargs.c' line='185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParse_SizeT'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='185' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/getargs.c' line='185' column='1'/>
+ <parameter type-id='type-id-261' name='va' filepath='../gpshead/Python/getargs.c' line='185' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyArg_VaParse' mangled-name='PyArg_VaParse' filepath='../gpshead/Python/getargs.c' line='172' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_VaParse'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='185' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/getargs.c' line='185' column='1'/>
+ <parameter type-id='type-id-261' name='va' filepath='../gpshead/Python/getargs.c' line='185' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_ParseStack_SizeT' mangled-name='_PyArg_ParseStack_SizeT' filepath='../gpshead/Python/getargs.c' line='159' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseStack_SizeT'>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Python/getargs.c' line='159' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Python/getargs.c' line='159' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/getargs.c' line='159' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_ParseStack' mangled-name='_PyArg_ParseStack' filepath='../gpshead/Python/getargs.c' line='147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseStack'>
+ <parameter type-id='type-id-263' name='args' filepath='../gpshead/Python/getargs.c' line='159' column='1'/>
+ <parameter type-id='type-id-34' name='nargs' filepath='../gpshead/Python/getargs.c' line='159' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/getargs.c' line='159' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_ParseTuple_SizeT' mangled-name='_PyArg_ParseTuple_SizeT' filepath='../gpshead/Python/getargs.c' line='134' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTuple_SizeT'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='134' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/getargs.c' line='134' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyArg_ParseTuple' mangled-name='PyArg_ParseTuple' filepath='../gpshead/Python/getargs.c' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_ParseTuple'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='134' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/getargs.c' line='134' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyArg_Parse_SizeT' mangled-name='_PyArg_Parse_SizeT' filepath='../gpshead/Python/getargs.c' line='109' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_Parse_SizeT'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='134' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/getargs.c' line='134' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyArg_Parse' mangled-name='PyArg_Parse' filepath='../gpshead/Python/getargs.c' line='97' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_Parse'>
+ <parameter type-id='type-id-52' name='args' filepath='../gpshead/Python/getargs.c' line='134' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/getargs.c' line='134' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/getcompiler.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='Py_GetCompiler' mangled-name='Py_GetCompiler' filepath='../gpshead/Python/getcompiler.c' line='24' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetCompiler'>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/getcopyright.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='Py_GetCopyright' mangled-name='Py_GetCopyright' filepath='../gpshead/Python/getcopyright.c' line='20' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetCopyright'>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/getplatform.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='Py_GetPlatform' mangled-name='Py_GetPlatform' filepath='../gpshead/Python/getplatform.c' line='9' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPlatform'>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/getversion.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='Py_GetVersion' mangled-name='Py_GetVersion' filepath='../gpshead/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>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/graminit.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_PyParser_Grammar' type-id='type-id-5' mangled-name='_PyParser_Grammar' visibility='default' filepath='../gpshead/Python/graminit.c' line='5' column='1' elf-symbol-id='_PyParser_Grammar'/>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/import.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='_inittab' size-in-bits='128' is-struct='yes' visibility='default' filepath='../gpshead/Include/import.h' line='120' column='1' id='type-id-552'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='name' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/import.h' line='121' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='initfunc' type-id='type-id-336' visibility='default' filepath='../gpshead/Include/import.h' line='122' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-552' size-in-bits='64' id='type-id-553'/>
+ <var-decl name='PyImport_Inittab' type-id='type-id-553' mangled-name='PyImport_Inittab' visibility='default' filepath='../gpshead/Include/import.h' line='124' column='1' elf-symbol-id='PyImport_Inittab'/>
+ <var-decl name='_Py_CheckHashBasedPycsMode' type-id='type-id-3' mangled-name='_Py_CheckHashBasedPycsMode' visibility='default' filepath='../gpshead/Include/internal/import.h' line='4' column='1' elf-symbol-id='_Py_CheckHashBasedPycsMode'/>
+ <function-decl name='PyImport_AppendInittab' mangled-name='PyImport_AppendInittab' filepath='../gpshead/Python/import.c' line='2366' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AppendInittab'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/import.c' line='2366' column='1'/>
+ <parameter type-id='type-id-336' name='initfunc' filepath='../gpshead/Python/import.c' line='2366' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyImport_ExtendInittab' mangled-name='PyImport_ExtendInittab' filepath='../gpshead/Python/import.c' line='2320' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExtendInittab'>
+ <parameter type-id='type-id-553' name='newtab' filepath='../gpshead/Python/import.c' line='2320' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyInit__imp' mangled-name='PyInit__imp' filepath='../gpshead/Python/import.c' line='2285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__imp'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_Import' mangled-name='PyImport_Import' filepath='../gpshead/Python/import.c' line='1896' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_Import'>
+ <parameter type-id='type-id-52' name='module_name' filepath='../gpshead/Python/import.c' line='1896' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_ReloadModule' mangled-name='PyImport_ReloadModule' filepath='../gpshead/Python/import.c' line='1863' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ReloadModule'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Python/import.c' line='1863' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_ImportModuleLevel' mangled-name='PyImport_ImportModuleLevel' filepath='../gpshead/Python/import.c' line='1845' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleLevel'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/import.c' line='1845' column='1'/>
+ <parameter type-id='type-id-52' name='globals' filepath='../gpshead/Python/import.c' line='1845' column='1'/>
+ <parameter type-id='type-id-52' name='locals' filepath='../gpshead/Python/import.c' line='1845' column='1'/>
+ <parameter type-id='type-id-52' name='fromlist' filepath='../gpshead/Python/import.c' line='1846' column='1'/>
+ <parameter type-id='type-id-7' name='level' filepath='../gpshead/Python/import.c' line='1846' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_ImportModuleLevelObject' mangled-name='PyImport_ImportModuleLevelObject' filepath='../gpshead/Python/import.c' line='1676' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleLevelObject'>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Python/import.c' line='1676' column='1'/>
+ <parameter type-id='type-id-52' name='globals' filepath='../gpshead/Python/import.c' line='1676' column='1'/>
+ <parameter type-id='type-id-52' name='locals' filepath='../gpshead/Python/import.c' line='1677' column='1'/>
+ <parameter type-id='type-id-52' name='fromlist' filepath='../gpshead/Python/import.c' line='1677' column='1'/>
+ <parameter type-id='type-id-7' name='level' filepath='../gpshead/Python/import.c' line='1678' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_ImportModuleNoBlock' mangled-name='PyImport_ImportModuleNoBlock' filepath='../gpshead/Python/import.c' line='1408' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleNoBlock'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='360' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_ImportModule' mangled-name='PyImport_ImportModule' filepath='../gpshead/Python/import.c' line='1385' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModule'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/moduleobject.c' line='114' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_ImportFrozenModule' mangled-name='PyImport_ImportFrozenModule' filepath='../gpshead/Python/import.c' line='1368' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportFrozenModule'>
+ <parameter type-id='type-id-3' name='where' filepath='../gpshead/Python/ceval.c' line='468' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyImport_ImportFrozenModuleObject' mangled-name='PyImport_ImportFrozenModuleObject' filepath='../gpshead/Python/import.c' line='1305' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportFrozenModuleObject'>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Python/import.c' line='1305' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyImport_GetImporter' mangled-name='PyImport_GetImporter' filepath='../gpshead/Python/import.c' line='1141' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetImporter'>
+ <parameter type-id='type-id-52' name='path' filepath='../gpshead/Python/import.c' line='1141' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_ExecCodeModuleObject' mangled-name='PyImport_ExecCodeModuleObject' filepath='../gpshead/Python/import.c' line='970' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleObject'>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Python/import.c' line='970' column='1'/>
+ <parameter type-id='type-id-52' name='co' filepath='../gpshead/Python/import.c' line='970' column='1'/>
+ <parameter type-id='type-id-52' name='pathname' filepath='../gpshead/Python/import.c' line='970' column='1'/>
+ <parameter type-id='type-id-52' name='cpathname' filepath='../gpshead/Python/import.c' line='971' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_ExecCodeModuleWithPathnames' mangled-name='PyImport_ExecCodeModuleWithPathnames' filepath='../gpshead/Python/import.c' line='870' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleWithPathnames'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/import.c' line='870' column='1'/>
+ <parameter type-id='type-id-52' name='co' filepath='../gpshead/Python/import.c' line='870' column='1'/>
+ <parameter type-id='type-id-3' name='pathname' filepath='../gpshead/Python/import.c' line='871' column='1'/>
+ <parameter type-id='type-id-3' name='cpathname' filepath='../gpshead/Python/import.c' line='872' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_ExecCodeModuleEx' mangled-name='PyImport_ExecCodeModuleEx' filepath='../gpshead/Python/import.c' line='863' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleEx'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/codecs.c' line='384' column='1'/>
+ <parameter type-id='type-id-52' name='stream' filepath='../gpshead/Python/codecs.c' line='385' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Python/codecs.c' line='386' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_ExecCodeModule' mangled-name='PyImport_ExecCodeModule' filepath='../gpshead/Python/import.c' line='856' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModule'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/import.c' line='856' column='1'/>
+ <parameter type-id='type-id-52' name='co' filepath='../gpshead/Python/import.c' line='856' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_AddModule' mangled-name='PyImport_AddModule' filepath='../gpshead/Python/import.c' line='814' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AddModule'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/moduleobject.c' line='114' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyImport_AddModuleObject' mangled-name='_PyImport_AddModuleObject' filepath='../gpshead/Python/import.c' line='781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_AddModuleObject'>
+ <parameter type-id='type-id-52' name='func' filepath='../gpshead/Objects/classobject.c' line='48' column='1'/>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/classobject.c' line='48' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyImport_AddModuleObject' mangled-name='PyImport_AddModuleObject' filepath='../gpshead/Python/import.c' line='774' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AddModuleObject'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyImport_FindBuiltin' mangled-name='_PyImport_FindBuiltin' filepath='../gpshead/Python/import.c' line='756' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FindBuiltin'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/import.c' line='756' column='1'/>
+ <parameter type-id='type-id-52' name='modules' filepath='../gpshead/Python/import.c' line='756' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyImport_FindExtensionObjectEx' mangled-name='_PyImport_FindExtensionObjectEx' filepath='../gpshead/Python/import.c' line='705' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FindExtensionObjectEx'>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Python/import.c' line='705' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/import.c' line='705' column='1'/>
+ <parameter type-id='type-id-52' name='modules' filepath='../gpshead/Python/import.c' line='706' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyImport_FindExtensionObject' mangled-name='_PyImport_FindExtensionObject' filepath='../gpshead/Python/import.c' line='698' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FindExtensionObject'>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Python/import.c' line='698' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/import.c' line='698' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyImport_FixupBuiltin' mangled-name='_PyImport_FixupBuiltin' filepath='../gpshead/Python/import.c' line='685' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FixupBuiltin'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2117' column='1'/>
+ <parameter type-id='type-id-3' name='key' filepath='../gpshead/Objects/abstract.c' line='2117' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Objects/abstract.c' line='2117' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyImport_FixupExtensionObject' mangled-name='_PyImport_FixupExtensionObject' filepath='../gpshead/Python/import.c' line='634' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FixupExtensionObject'>
+ <parameter type-id='type-id-52' name='mod' filepath='../gpshead/Python/import.c' line='634' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Python/import.c' line='634' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/import.c' line='635' column='1'/>
+ <parameter type-id='type-id-52' name='modules' filepath='../gpshead/Python/import.c' line='635' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyImport_GetMagicTag' mangled-name='PyImport_GetMagicTag' filepath='../gpshead/Python/import.c' line='611' 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='../gpshead/Python/import.c' line='589' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetMagicNumber'>
+ <return type-id='type-id-31'/>
+ </function-decl>
+ <function-decl name='PyImport_Cleanup' mangled-name='PyImport_Cleanup' filepath='../gpshead/Python/import.c' line='397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_Cleanup'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyImport_GetModule' mangled-name='PyImport_GetModule' filepath='../gpshead/Python/import.c' line='352' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetModule'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1889' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyImport_SetModuleString' mangled-name='_PyImport_SetModuleString' filepath='../gpshead/Python/import.c' line='345' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_SetModuleString'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/import.c' line='345' column='1'/>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Python/import.c' line='345' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyImport_SetModule' mangled-name='_PyImport_SetModule' filepath='../gpshead/Python/import.c' line='338' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_SetModule'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/dictobject.c' line='1511' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Objects/dictobject.c' line='1511' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyImport_GetModuleId' mangled-name='_PyImport_GetModuleId' filepath='../gpshead/Python/import.c' line='328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_GetModuleId'>
+ <parameter type-id='type-id-266' name='nameid' filepath='../gpshead/Python/import.c' line='328' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyImport_IsInitialized' mangled-name='_PyImport_IsInitialized' filepath='../gpshead/Python/import.c' line='320' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_IsInitialized'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/import.c' line='320' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyImport_GetModuleDict' mangled-name='PyImport_GetModuleDict' filepath='../gpshead/Python/import.c' line='306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetModuleDict'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyImport_Fini2' mangled-name='_PyImport_Fini2' filepath='../gpshead/Python/import.c' line='291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_Fini2'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyImport_Fini' mangled-name='_PyImport_Fini' filepath='../gpshead/Python/import.c' line='281' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyImport_ReInitLock' mangled-name='_PyImport_ReInitLock' filepath='../gpshead/Python/import.c' line='204' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_ReInitLock'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyImport_ReleaseLock' mangled-name='_PyImport_ReleaseLock' filepath='../gpshead/Python/import.c' line='182' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_ReleaseLock'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyImport_AcquireLock' mangled-name='_PyImport_AcquireLock' filepath='../gpshead/Python/import.c' line='155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_AcquireLock'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-554' visibility='default' filepath='../gpshead/Include/pylifecycle.h' line='11' column='1' id='type-id-555'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='prefix' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/pylifecycle.h' line='12' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='msg' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/pylifecycle.h' line='13' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='user_err' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pylifecycle.h' line='14' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='_PyInitError' type-id='type-id-555' filepath='../gpshead/Include/pylifecycle.h' line='15' column='1' id='type-id-554'/>
+ <function-decl name='_PyImportZip_Init' mangled-name='_PyImportZip_Init' filepath='../gpshead/Python/import.c' line='93' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImportZip_Init'>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <function-decl name='_PyImportHooks_Init' mangled-name='_PyImportHooks_Init' filepath='../gpshead/Python/import.c' line='56' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImportHooks_Init'>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <function-decl name='_PyImport_Init' mangled-name='_PyImport_Init' filepath='../gpshead/Python/import.c' line='46' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_Init'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/import.c' line='46' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/importdl.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_PyImport_LoadDynamicModuleWithSpec' mangled-name='_PyImport_LoadDynamicModuleWithSpec' filepath='../gpshead/Python/importdl.c' line='90' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_LoadDynamicModuleWithSpec'>
+ <parameter type-id='type-id-52' name='spec' filepath='../gpshead/Python/importdl.c' line='90' column='1'/>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/importdl.c' line='90' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/marshal.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyMarshal_Init' mangled-name='PyMarshal_Init' filepath='../gpshead/Python/marshal.c' line='1858' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_Init'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMarshal_WriteObjectToString' mangled-name='PyMarshal_WriteObjectToString' filepath='../gpshead/Python/marshal.c' line='1613' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_WriteObjectToString'>
+ <parameter type-id='type-id-52' name='x' filepath='../gpshead/Python/marshal.c' line='1613' column='1'/>
+ <parameter type-id='type-id-7' name='version' filepath='../gpshead/Python/marshal.c' line='1613' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMarshal_ReadObjectFromString' mangled-name='PyMarshal_ReadObjectFromString' filepath='../gpshead/Python/marshal.c' line='1592' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadObjectFromString'>
+ <parameter type-id='type-id-3' name='bytes' filepath='../gpshead/Objects/bytearrayobject.c' line='127' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Objects/bytearrayobject.c' line='127' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMarshal_ReadObjectFromFile' mangled-name='PyMarshal_ReadObjectFromFile' filepath='../gpshead/Python/marshal.c' line='1572' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadObjectFromFile'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/marshal.c' line='1572' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMarshal_ReadLastObjectFromFile' mangled-name='PyMarshal_ReadLastObjectFromFile' filepath='../gpshead/Python/marshal.c' line='1547' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadLastObjectFromFile'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/marshal.c' line='1547' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyMarshal_ReadLongFromFile' mangled-name='PyMarshal_ReadLongFromFile' filepath='../gpshead/Python/marshal.c' line='1511' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadLongFromFile'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/marshal.c' line='1511' column='1'/>
+ <return type-id='type-id-31'/>
+ </function-decl>
+ <function-decl name='PyMarshal_ReadShortFromFile' mangled-name='PyMarshal_ReadShortFromFile' filepath='../gpshead/Python/marshal.c' line='1495' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadShortFromFile'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/marshal.c' line='1495' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyMarshal_WriteObjectToFile' mangled-name='PyMarshal_WriteObjectToFile' filepath='../gpshead/Python/marshal.c' line='638' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_WriteObjectToFile'>
+ <parameter type-id='type-id-52' name='x' filepath='../gpshead/Python/marshal.c' line='638' column='1'/>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/marshal.c' line='638' column='1'/>
+ <parameter type-id='type-id-7' name='version' filepath='../gpshead/Python/marshal.c' line='638' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyMarshal_WriteLongToFile' mangled-name='PyMarshal_WriteLongToFile' filepath='../gpshead/Python/marshal.c' line='623' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_WriteLongToFile'>
+ <parameter type-id='type-id-31' name='x' filepath='../gpshead/Python/marshal.c' line='623' column='1'/>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/marshal.c' line='623' column='1'/>
+ <parameter type-id='type-id-7' name='version' filepath='../gpshead/Python/marshal.c' line='623' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/modsupport.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_Py_PackageContext' type-id='type-id-3' mangled-name='_Py_PackageContext' visibility='default' filepath='../gpshead/Include/modsupport.h' line='223' column='1' elf-symbol-id='_Py_PackageContext'/>
+ <function-decl name='PyModule_AddStringConstant' mangled-name='PyModule_AddStringConstant' filepath='../gpshead/Python/modsupport.c' line='656' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddStringConstant'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Python/modsupport.c' line='656' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/modsupport.c' line='656' column='1'/>
+ <parameter type-id='type-id-3' name='value' filepath='../gpshead/Python/modsupport.c' line='656' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyModule_AddIntConstant' mangled-name='PyModule_AddIntConstant' filepath='../gpshead/Python/modsupport.c' line='644' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddIntConstant'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Python/modsupport.c' line='644' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/modsupport.c' line='644' column='1'/>
+ <parameter type-id='type-id-31' name='value' filepath='../gpshead/Python/modsupport.c' line='644' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyModule_AddObject' mangled-name='PyModule_AddObject' filepath='../gpshead/Python/modsupport.c' line='615' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddObject'>
+ <parameter type-id='type-id-52' name='m' filepath='../gpshead/Python/modsupport.c' line='615' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/modsupport.c' line='615' column='1'/>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Python/modsupport.c' line='615' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_VaBuildStack_SizeT' mangled-name='_Py_VaBuildStack_SizeT' filepath='../gpshead/Python/modsupport.c' line='562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_VaBuildStack_SizeT'>
+ <parameter type-id='type-id-259' name='small_stack' filepath='../gpshead/Python/modsupport.c' line='562' column='1'/>
+ <parameter type-id='type-id-34' name='small_stack_len' filepath='../gpshead/Python/modsupport.c' line='562' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/modsupport.c' line='563' column='1'/>
+ <parameter type-id='type-id-261' name='va' filepath='../gpshead/Python/modsupport.c' line='563' column='1'/>
+ <parameter type-id='type-id-172' name='p_nargs' filepath='../gpshead/Python/modsupport.c' line='563' column='1'/>
+ <return type-id='type-id-259'/>
+ </function-decl>
+ <function-decl name='_Py_VaBuildStack' mangled-name='_Py_VaBuildStack' filepath='../gpshead/Python/modsupport.c' line='555' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_VaBuildStack'>
+ <parameter type-id='type-id-259' name='small_stack' filepath='../gpshead/Python/modsupport.c' line='562' column='1'/>
+ <parameter type-id='type-id-34' name='small_stack_len' filepath='../gpshead/Python/modsupport.c' line='562' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/modsupport.c' line='563' column='1'/>
+ <parameter type-id='type-id-261' name='va' filepath='../gpshead/Python/modsupport.c' line='563' column='1'/>
+ <parameter type-id='type-id-172' name='p_nargs' filepath='../gpshead/Python/modsupport.c' line='563' column='1'/>
+ <return type-id='type-id-259'/>
+ </function-decl>
+ <function-decl name='_Py_VaBuildValue_SizeT' mangled-name='_Py_VaBuildValue_SizeT' filepath='../gpshead/Python/modsupport.c' line='526' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_VaBuildValue_SizeT'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/modsupport.c' line='526' column='1'/>
+ <parameter type-id='type-id-261' name='va' filepath='../gpshead/Python/modsupport.c' line='526' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='Py_VaBuildValue' mangled-name='Py_VaBuildValue' filepath='../gpshead/Python/modsupport.c' line='520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_VaBuildValue'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/modsupport.c' line='526' column='1'/>
+ <parameter type-id='type-id-261' name='va' filepath='../gpshead/Python/modsupport.c' line='526' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_BuildValue_SizeT' mangled-name='_Py_BuildValue_SizeT' filepath='../gpshead/Python/modsupport.c' line='509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_BuildValue_SizeT'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/bytesobject.c' line='370' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='Py_BuildValue' mangled-name='Py_BuildValue' filepath='../gpshead/Python/modsupport.c' line='498' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_BuildValue'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Objects/bytesobject.c' line='370' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_convert_optional_to_ssize_t' mangled-name='_Py_convert_optional_to_ssize_t' filepath='../gpshead/Python/modsupport.c' line='17' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_convert_optional_to_ssize_t'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/capsule.c' line='181' column='1'/>
+ <parameter type-id='type-id-56' name='context' filepath='../gpshead/Objects/capsule.c' line='181' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/mysnprintf.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyOS_vsnprintf' mangled-name='PyOS_vsnprintf' filepath='../gpshead/Python/mysnprintf.c' line='53' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_vsnprintf'>
+ <parameter type-id='type-id-12' name='str' filepath='../gpshead/Python/mysnprintf.c' line='53' column='1'/>
+ <parameter type-id='type-id-62' name='size' filepath='../gpshead/Python/mysnprintf.c' line='53' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/mysnprintf.c' line='53' column='1'/>
+ <parameter type-id='type-id-261' name='va' filepath='../gpshead/Python/mysnprintf.c' line='53' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyOS_snprintf' mangled-name='PyOS_snprintf' filepath='../gpshead/Python/mysnprintf.c' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_snprintf'>
+ <parameter type-id='type-id-12' name='str' filepath='../gpshead/Python/mysnprintf.c' line='41' column='1'/>
+ <parameter type-id='type-id-62' name='size' filepath='../gpshead/Python/mysnprintf.c' line='41' column='1'/>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/mysnprintf.c' line='41' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/mystrtoul.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyOS_strtol' mangled-name='PyOS_strtol' filepath='../gpshead/Python/mystrtoul.c' line='263' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_strtol'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/mystrtoul.c' line='263' column='1'/>
+ <parameter type-id='type-id-233' name='ptr' filepath='../gpshead/Python/mystrtoul.c' line='263' column='1'/>
+ <parameter type-id='type-id-7' name='base' filepath='../gpshead/Python/mystrtoul.c' line='263' column='1'/>
+ <return type-id='type-id-31'/>
+ </function-decl>
+ <function-decl name='PyOS_strtoul' mangled-name='PyOS_strtoul' filepath='../gpshead/Python/mystrtoul.c' line='95' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_strtoul'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/mystrtoul.c' line='95' column='1'/>
+ <parameter type-id='type-id-233' name='ptr' filepath='../gpshead/Python/mystrtoul.c' line='95' column='1'/>
+ <parameter type-id='type-id-7' name='base' filepath='../gpshead/Python/mystrtoul.c' line='95' column='1'/>
+ <return type-id='type-id-38'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pathconfig.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='__anonymous_struct__' size-in-bits='384' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-556' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='40' column='1' id='type-id-557'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='program_full_path' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='42' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='prefix' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='43' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='exec_prefix' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='47' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='module_search_path' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='50' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='program_name' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='52' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='home' type-id='type-id-202' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='54' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='_PyPathConfig' type-id='type-id-557' filepath='../gpshead/Include/internal/pystate.h' line='55' column='1' id='type-id-556'/>
+ <var-decl name='_Py_path_config' type-id='type-id-556' mangled-name='_Py_path_config' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='60' column='1' elf-symbol-id='_Py_path_config'/>
+ <function-decl name='_Py_FindEnvConfigValue' mangled-name='_Py_FindEnvConfigValue' filepath='../gpshead/Python/pathconfig.c' line='399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FindEnvConfigValue'>
+ <parameter type-id='type-id-124' name='env_file' filepath='../gpshead/Python/pathconfig.c' line='399' column='1'/>
+ <parameter type-id='type-id-344' name='key' filepath='../gpshead/Python/pathconfig.c' line='399' column='1'/>
+ <parameter type-id='type-id-202' name='value' filepath='../gpshead/Python/pathconfig.c' line='400' column='1'/>
+ <parameter type-id='type-id-62' name='value_size' filepath='../gpshead/Python/pathconfig.c' line='400' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyPathConfig_ComputeArgv0' mangled-name='_PyPathConfig_ComputeArgv0' filepath='../gpshead/Python/pathconfig.c' line='282' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyPathConfig_ComputeArgv0'>
+ <parameter type-id='type-id-7' name='argc' filepath='../gpshead/Python/pathconfig.c' line='282' column='1'/>
+ <parameter type-id='type-id-203' name='argv' filepath='../gpshead/Python/pathconfig.c' line='282' column='1'/>
+ <parameter type-id='type-id-259' name='argv0_p' filepath='../gpshead/Python/pathconfig.c' line='282' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='Py_GetProgramName' mangled-name='Py_GetProgramName' filepath='../gpshead/Python/pathconfig.c' line='274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetProgramName'>
+ <return type-id='type-id-202'/>
+ </function-decl>
+ <function-decl name='Py_GetPythonHome' mangled-name='Py_GetPythonHome' filepath='../gpshead/Python/pathconfig.c' line='266' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPythonHome'>
+ <return type-id='type-id-202'/>
+ </function-decl>
+ <function-decl name='Py_GetProgramFullPath' mangled-name='Py_GetProgramFullPath' filepath='../gpshead/Python/pathconfig.c' line='258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetProgramFullPath'>
+ <return type-id='type-id-202'/>
+ </function-decl>
+ <function-decl name='Py_GetExecPrefix' mangled-name='Py_GetExecPrefix' filepath='../gpshead/Python/pathconfig.c' line='246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetExecPrefix'>
+ <return type-id='type-id-202'/>
+ </function-decl>
+ <function-decl name='Py_GetPrefix' mangled-name='Py_GetPrefix' filepath='../gpshead/Python/pathconfig.c' line='238' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPrefix'>
+ <return type-id='type-id-202'/>
+ </function-decl>
+ <function-decl name='Py_GetPath' mangled-name='Py_GetPath' filepath='../gpshead/Python/pathconfig.c' line='230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPath'>
+ <return type-id='type-id-202'/>
+ </function-decl>
+ <function-decl name='_Py_SetProgramFullPath' mangled-name='_Py_SetProgramFullPath' filepath='../gpshead/Python/pathconfig.c' line='209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SetProgramFullPath'>
+ <parameter type-id='type-id-344' name='program_full_path' filepath='../gpshead/Python/pathconfig.c' line='209' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_SetProgramName' mangled-name='Py_SetProgramName' filepath='../gpshead/Python/pathconfig.c' line='188' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetProgramName'>
+ <parameter type-id='type-id-344' name='program_full_path' filepath='../gpshead/Python/pathconfig.c' line='209' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_SetPythonHome' mangled-name='Py_SetPythonHome' filepath='../gpshead/Python/pathconfig.c' line='167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetPythonHome'>
+ <parameter type-id='type-id-344' name='program_full_path' filepath='../gpshead/Python/pathconfig.c' line='209' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_SetPath' mangled-name='Py_SetPath' filepath='../gpshead/Python/pathconfig.c' line='133' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetPath'>
+ <parameter type-id='type-id-344' name='path' filepath='../gpshead/Python/pathconfig.c' line='133' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <qualified-type-def type-id='type-id-63' const='yes' id='type-id-558'/>
+ <pointer-type-def type-id='type-id-558' size-in-bits='64' id='type-id-559'/>
+ <function-decl name='_PyPathConfig_Init' mangled-name='_PyPathConfig_Init' filepath='../gpshead/Python/pathconfig.c' line='50' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyPathConfig_Init'>
+ <parameter type-id='type-id-559' name='core_config' filepath='../gpshead/Python/pathconfig.c' line='50' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-556' size-in-bits='64' id='type-id-560'/>
+ <function-decl name='_PyPathConfig_Clear' mangled-name='_PyPathConfig_Clear' filepath='../gpshead/Python/pathconfig.c' line='17' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyPathConfig_Clear'>
+ <parameter type-id='type-id-560' name='config' filepath='../gpshead/Python/pathconfig.c' line='17' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/peephole.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyCode_Optimize' mangled-name='PyCode_Optimize' filepath='../gpshead/Python/peephole.c' line='232' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCode_Optimize'>
+ <parameter type-id='type-id-52' name='code' filepath='../gpshead/Python/peephole.c' line='232' column='1'/>
+ <parameter type-id='type-id-52' name='consts' filepath='../gpshead/Python/peephole.c' line='232' column='1'/>
+ <parameter type-id='type-id-52' name='names' filepath='../gpshead/Python/peephole.c' line='232' column='1'/>
+ <parameter type-id='type-id-52' name='lnotab_obj' filepath='../gpshead/Python/peephole.c' line='233' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pyarena.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='_arena' size-in-bits='192' is-struct='yes' visibility='default' filepath='../gpshead/Python/pyarena.c' line='45' column='1' id='type-id-468'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='a_head' type-id='type-id-561' visibility='default' filepath='../gpshead/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-561' visibility='default' filepath='../gpshead/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-52' visibility='default' filepath='../gpshead/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='../gpshead/Python/pyarena.c' line='16' column='1' id='type-id-562'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ab_size' type-id='type-id-62' visibility='default' filepath='../gpshead/Python/pyarena.c' line='21' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='ab_offset' type-id='type-id-62' visibility='default' filepath='../gpshead/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-563' visibility='default' filepath='../gpshead/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-56' visibility='default' filepath='../gpshead/Python/pyarena.c' line='37' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-562' size-in-bits='64' id='type-id-563'/>
+ <typedef-decl name='block' type-id='type-id-562' filepath='../gpshead/Python/pyarena.c' line='38' column='1' id='type-id-564'/>
+ <pointer-type-def type-id='type-id-564' size-in-bits='64' id='type-id-561'/>
+ <function-decl name='PyArena_AddPyObject' mangled-name='PyArena_AddPyObject' filepath='../gpshead/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-470' name='arena' filepath='../gpshead/Python/pyarena.c' line='203' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/pyarena.c' line='203' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyArena_Malloc' mangled-name='PyArena_Malloc' filepath='../gpshead/Python/pyarena.c' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArena_Malloc'>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/pyarena.c' line='180' column='1'/>
+ <parameter type-id='type-id-62' name='size' filepath='../gpshead/Python/pyarena.c' line='180' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyArena_Free' mangled-name='PyArena_Free' filepath='../gpshead/Python/pyarena.c' line='157' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArena_Free'>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/pyarena.c' line='157' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyArena_New' mangled-name='PyArena_New' filepath='../gpshead/Python/pyarena.c' line='128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArena_New'>
+ <return type-id='type-id-470'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pyctype.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <qualified-type-def type-id='type-id-101' const='yes' id='type-id-565'/>
+
+ <array-type-def dimensions='1' type-id='type-id-565' size-in-bits='8192' id='type-id-566'>
+ <subrange length='256' type-id='type-id-38' id='type-id-310'/>
+
+ </array-type-def>
+ <qualified-type-def type-id='type-id-566' const='yes' id='type-id-567'/>
+ <var-decl name='_Py_ctype_table' type-id='type-id-567' mangled-name='_Py_ctype_table' visibility='default' filepath='../gpshead/Include/pyctype.h' line='13' column='1' elf-symbol-id='_Py_ctype_table'/>
+
+ <array-type-def dimensions='1' type-id='type-id-302' size-in-bits='2048' id='type-id-568'>
+ <subrange length='256' type-id='type-id-38' id='type-id-310'/>
+
+ </array-type-def>
+ <qualified-type-def type-id='type-id-568' const='yes' id='type-id-569'/>
+ <var-decl name='_Py_ctype_tolower' type-id='type-id-569' mangled-name='_Py_ctype_tolower' visibility='default' filepath='../gpshead/Include/pyctype.h' line='26' column='1' elf-symbol-id='_Py_ctype_tolower'/>
+ <var-decl name='_Py_ctype_toupper' type-id='type-id-569' mangled-name='_Py_ctype_toupper' visibility='default' filepath='../gpshead/Include/pyctype.h' line='27' column='1' elf-symbol-id='_Py_ctype_toupper'/>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pyfpe.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='__jmp_buf_tag' size-in-bits='1600' is-struct='yes' visibility='default' filepath='/usr/include/setjmp.h' line='33' column='1' id='type-id-570'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='__jmpbuf' type-id='type-id-571' visibility='default' filepath='/usr/include/setjmp.h' line='39' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='__mask_was_saved' type-id='type-id-7' visibility='default' filepath='/usr/include/setjmp.h' line='40' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='__saved_mask' type-id='type-id-572' visibility='default' filepath='/usr/include/setjmp.h' line='41' column='1'/>
+ </data-member>
+ </class-decl>
+
+ <array-type-def dimensions='1' type-id='type-id-31' size-in-bits='512' id='type-id-573'>
+ <subrange length='8' type-id='type-id-38' id='type-id-574'/>
+
+ </array-type-def>
+ <typedef-decl name='__jmp_buf' type-id='type-id-573' filepath='/usr/include/x86_64-linux-gnu/bits/setjmp.h' line='31' column='1' id='type-id-571'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='1024' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-572' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h' line='5' column='1' id='type-id-575'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='__val' type-id='type-id-576' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h' line='7' column='1'/>
+ </data-member>
+ </class-decl>
+
+ <array-type-def dimensions='1' type-id='type-id-38' size-in-bits='1024' id='type-id-576'>
+ <subrange length='16' type-id='type-id-38' id='type-id-577'/>
+
+ </array-type-def>
+ <typedef-decl name='__sigset_t' type-id='type-id-575' filepath='/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h' line='8' column='1' id='type-id-572'/>
+
+ <array-type-def dimensions='1' type-id='type-id-570' size-in-bits='1600' id='type-id-578'>
+ <subrange length='1' type-id='type-id-38' id='type-id-118'/>
+
+ </array-type-def>
+ <typedef-decl name='jmp_buf' type-id='type-id-578' filepath='/usr/include/setjmp.h' line='45' column='1' id='type-id-579'/>
+ <var-decl name='PyFPE_jbuf' type-id='type-id-579' mangled-name='PyFPE_jbuf' visibility='default' filepath='../gpshead/Python/pyfpe.c' line='8' column='1' elf-symbol-id='PyFPE_jbuf'/>
+ <var-decl name='PyFPE_counter' type-id='type-id-7' mangled-name='PyFPE_counter' visibility='default' filepath='../gpshead/Python/pyfpe.c' line='9' column='1' elf-symbol-id='PyFPE_counter'/>
+ <function-decl name='PyFPE_dummy' mangled-name='PyFPE_dummy' filepath='../gpshead/Python/pyfpe.c' line='12' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFPE_dummy'>
+ <parameter type-id='type-id-56' name='dummy' filepath='../gpshead/Python/pyfpe.c' line='12' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pyhash.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <union-decl name='__anonymous_union__' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/pyhash.h' line='54' column='1' id='type-id-580'>
+ <data-member access='private'>
+ <var-decl name='uc' type-id='type-id-581' visibility='default' filepath='../gpshead/Include/pyhash.h' line='56' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='fnv' type-id='type-id-582' visibility='default' filepath='../gpshead/Include/pyhash.h' line='61' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='siphash' type-id='type-id-583' visibility='default' filepath='../gpshead/Include/pyhash.h' line='66' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='djbx33a' type-id='type-id-584' visibility='default' filepath='../gpshead/Include/pyhash.h' line='71' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='expat' type-id='type-id-585' visibility='default' filepath='../gpshead/Include/pyhash.h' line='75' column='1'/>
+ </data-member>
+ </union-decl>
+
+ <array-type-def dimensions='1' type-id='type-id-301' size-in-bits='192' id='type-id-581'>
+ <subrange length='24' type-id='type-id-38' id='type-id-586'/>
+
+ </array-type-def>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/pyhash.h' line='58' column='1' id='type-id-582'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='prefix' type-id='type-id-164' visibility='default' filepath='../gpshead/Include/pyhash.h' line='59' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='suffix' type-id='type-id-164' visibility='default' filepath='../gpshead/Include/pyhash.h' line='60' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/pyhash.h' line='63' column='1' id='type-id-583'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='k0' type-id='type-id-57' visibility='default' filepath='../gpshead/Include/pyhash.h' line='64' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='k1' type-id='type-id-57' visibility='default' filepath='../gpshead/Include/pyhash.h' line='65' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/pyhash.h' line='68' column='1' id='type-id-584'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='padding' type-id='type-id-587' visibility='default' filepath='../gpshead/Include/pyhash.h' line='69' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='suffix' type-id='type-id-164' visibility='default' filepath='../gpshead/Include/pyhash.h' line='70' column='1'/>
+ </data-member>
+ </class-decl>
+
+ <array-type-def dimensions='1' type-id='type-id-301' size-in-bits='128' id='type-id-587'>
+ <subrange length='16' type-id='type-id-38' id='type-id-577'/>
+
+ </array-type-def>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/pyhash.h' line='72' column='1' id='type-id-585'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='padding' type-id='type-id-587' visibility='default' filepath='../gpshead/Include/pyhash.h' line='73' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='hashsalt' type-id='type-id-164' visibility='default' filepath='../gpshead/Include/pyhash.h' line='74' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='_Py_HashSecret_t' type-id='type-id-580' filepath='../gpshead/Include/pyhash.h' line='76' column='1' id='type-id-588'/>
+ <var-decl name='_Py_HashSecret' type-id='type-id-588' mangled-name='_Py_HashSecret' visibility='default' filepath='../gpshead/Include/pyhash.h' line='77' column='1' elf-symbol-id='_Py_HashSecret'/>
+ <function-decl name='_Py_KeyedHash' mangled-name='_Py_KeyedHash' filepath='../gpshead/Python/pyhash.c' line='423' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_KeyedHash'>
+ <parameter type-id='type-id-57' name='key' filepath='../gpshead/Python/pyhash.c' line='423' column='1'/>
+ <parameter type-id='type-id-56' name='src' filepath='../gpshead/Python/pyhash.c' line='423' column='1'/>
+ <parameter type-id='type-id-34' name='src_sz' filepath='../gpshead/Python/pyhash.c' line='423' column='1'/>
+ <return type-id='type-id-57'/>
+ </function-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-589' visibility='default' filepath='../gpshead/Include/pyhash.h' line='87' column='1' id='type-id-590'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='hash' type-id='type-id-591' visibility='default' filepath='../gpshead/Include/pyhash.h' line='88' 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='../gpshead/Include/pyhash.h' line='89' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='hash_bits' type-id='type-id-384' visibility='default' filepath='../gpshead/Include/pyhash.h' line='90' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='160'>
+ <var-decl name='seed_bits' type-id='type-id-384' visibility='default' filepath='../gpshead/Include/pyhash.h' line='91' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-592' size-in-bits='64' id='type-id-593'/>
+ <qualified-type-def type-id='type-id-593' const='yes' id='type-id-591'/>
+ <typedef-decl name='PyHash_FuncDef' type-id='type-id-590' filepath='../gpshead/Include/pyhash.h' line='92' column='1' id='type-id-589'/>
+ <pointer-type-def type-id='type-id-589' size-in-bits='64' id='type-id-594'/>
+ <function-decl name='PyHash_GetFuncDef' mangled-name='PyHash_GetFuncDef' filepath='../gpshead/Python/pyhash.c' line='213' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyHash_GetFuncDef'>
+ <return type-id='type-id-594'/>
+ </function-decl>
+ <function-decl name='_PyHash_Fini' mangled-name='_PyHash_Fini' filepath='../gpshead/Python/pyhash.c' line='194' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyHash_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_HashBytes' mangled-name='_Py_HashBytes' filepath='../gpshead/Python/pyhash.c' line='146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashBytes'>
+ <parameter type-id='type-id-56' name='src' filepath='../gpshead/Python/pyhash.c' line='146' column='1'/>
+ <parameter type-id='type-id-34' name='len' filepath='../gpshead/Python/pyhash.c' line='146' column='1'/>
+ <return type-id='type-id-164'/>
+ </function-decl>
+ <function-decl name='_Py_HashPointer' mangled-name='_Py_HashPointer' filepath='../gpshead/Python/pyhash.c' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashPointer'>
+ <parameter type-id='type-id-56' name='p' filepath='../gpshead/Python/pyhash.c' line='132' column='1'/>
+ <return type-id='type-id-164'/>
+ </function-decl>
+ <function-decl name='_Py_HashDouble' mangled-name='_Py_HashDouble' filepath='../gpshead/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-278' name='v' filepath='../gpshead/Python/pyhash.c' line='86' column='1'/>
+ <return type-id='type-id-164'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-592'>
+ <parameter type-id='type-id-56'/>
+ <parameter type-id='type-id-34'/>
+ <return type-id='type-id-164'/>
+ </function-type>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pylifecycle.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='pyruntimestate' size-in-bits='12160' is-struct='yes' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='78' column='1' id='type-id-595'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='initialized' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='79' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='32'>
+ <var-decl name='core_initialized' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='80' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='finalizing' type-id='type-id-217' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='81' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='interpreters' type-id='type-id-596' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='96' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='exitfuncs' type-id='type-id-597' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='99' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2432'>
+ <var-decl name='nexitfuncs' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='100' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2560'>
+ <var-decl name='gc' type-id='type-id-598' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='102' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='5376'>
+ <var-decl name='warnings' type-id='type-id-599' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='103' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='5632'>
+ <var-decl name='ceval' type-id='type-id-513' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='104' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='11776'>
+ <var-decl name='gilstate' type-id='type-id-600' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='105' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='pyinterpreters' size-in-bits='256' is-struct='yes' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='83' column='1' id='type-id-596'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='mutex' type-id='type-id-61' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='84' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='head' type-id='type-id-49' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='85' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='main' type-id='type-id-49' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='86' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='next_id' type-id='type-id-60' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='95' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-601' size-in-bits='64' id='type-id-602'/>
+
+ <array-type-def dimensions='1' type-id='type-id-602' size-in-bits='2048' id='type-id-597'>
+ <subrange length='32' type-id='type-id-38' id='type-id-523'/>
+
+ </array-type-def>
+ <class-decl name='_gc_runtime_state' size-in-bits='2816' is-struct='yes' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='110' column='1' id='type-id-598'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='trash_delete_later' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='113' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='trash_delete_nesting' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='115' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='96'>
+ <var-decl name='enabled' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='117' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='debug' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='118' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='generations' type-id='type-id-603' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='120' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1408'>
+ <var-decl name='generation0' type-id='type-id-604' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='121' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1536'>
+ <var-decl name='permanent_generation' type-id='type-id-605' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='123' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='1920'>
+ <var-decl name='generation_stats' type-id='type-id-606' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='124' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2496'>
+ <var-decl name='collecting' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='126' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2560'>
+ <var-decl name='garbage' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='128' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2624'>
+ <var-decl name='callbacks' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='130' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2688'>
+ <var-decl name='long_lived_total' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='137' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='2752'>
+ <var-decl name='long_lived_pending' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='141' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='gc_generation' size-in-bits='384' is-struct='yes' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='93' column='1' id='type-id-605'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='head' type-id='type-id-607' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='94' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='threshold' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='95' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='288'>
+ <var-decl name='count' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='96' column='1'/>
+ </data-member>
+ </class-decl>
+ <union-decl name='_gc_head' size-in-bits='256' visibility='default' filepath='../gpshead/Include/objimpl.h' line='252' column='1' id='type-id-608'>
+ <data-member access='private'>
+ <var-decl name='gc' type-id='type-id-609' visibility='default' filepath='../gpshead/Include/objimpl.h' line='257' column='1'/>
+ </data-member>
+ <data-member access='private'>
+ <var-decl name='dummy' type-id='type-id-610' visibility='default' filepath='../gpshead/Include/objimpl.h' line='258' column='1'/>
+ </data-member>
+ </union-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='../gpshead/Include/objimpl.h' line='253' column='1' id='type-id-609'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='gc_next' type-id='type-id-611' visibility='default' filepath='../gpshead/Include/objimpl.h' line='254' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='gc_prev' type-id='type-id-611' visibility='default' filepath='../gpshead/Include/objimpl.h' line='255' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='gc_refs' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/objimpl.h' line='256' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-608' size-in-bits='64' id='type-id-611'/>
+ <type-decl name='long double' size-in-bits='128' id='type-id-610'/>
+ <typedef-decl name='PyGC_Head' type-id='type-id-608' filepath='../gpshead/Include/objimpl.h' line='263' column='1' id='type-id-607'/>
+
+ <array-type-def dimensions='1' type-id='type-id-605' size-in-bits='1152' id='type-id-603'>
+ <subrange length='3' type-id='type-id-38' id='type-id-612'/>
+
+ </array-type-def>
+ <pointer-type-def type-id='type-id-607' size-in-bits='64' id='type-id-604'/>
+ <class-decl name='gc_generation_stats' size-in-bits='192' is-struct='yes' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='101' column='1' id='type-id-613'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='collections' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='103' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='collected' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='105' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='uncollectable' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/internal/mem.h' line='107' column='1'/>
+ </data-member>
+ </class-decl>
+
+ <array-type-def dimensions='1' type-id='type-id-613' size-in-bits='576' id='type-id-606'>
+ <subrange length='3' type-id='type-id-38' id='type-id-612'/>
+
+ </array-type-def>
+ <class-decl name='_warnings_runtime_state' size-in-bits='256' is-struct='yes' visibility='default' filepath='../gpshead/Include/internal/warnings.h' line='9' column='1' id='type-id-599'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='filters' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/internal/warnings.h' line='12' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='once_registry' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/internal/warnings.h' line='13' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='default_action' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/internal/warnings.h' line='14' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='filters_version' type-id='type-id-31' visibility='default' filepath='../gpshead/Include/internal/warnings.h' line='15' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='_gilstate_runtime_state' size-in-bits='320' is-struct='yes' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='18' column='1' id='type-id-600'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='check_enabled' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='19' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='tstate_current' type-id='type-id-524' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='22' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='getframe' type-id='type-id-614' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='23' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='autoInterpreterState' type-id='type-id-49' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='28' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='autoTSSkey' type-id='type-id-615' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='29' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-616' size-in-bits='64' id='type-id-617'/>
+ <typedef-decl name='PyThreadFrameGetter' type-id='type-id-617' filepath='../gpshead/Include/pystate.h' line='450' column='1' id='type-id-614'/>
+ <class-decl name='_Py_tss_t' size-in-bits='64' is-struct='yes' visibility='default' filepath='../gpshead/Include/pythread.h' line='129' column='1' id='type-id-618'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='_is_initialized' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pythread.h' line='130' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='32'>
+ <var-decl name='_key' type-id='type-id-619' visibility='default' filepath='../gpshead/Include/pythread.h' line='131' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='pthread_key_t' type-id='type-id-101' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='49' column='1' id='type-id-619'/>
+ <typedef-decl name='Py_tss_t' type-id='type-id-618' filepath='../gpshead/Include/pythread.h' line='109' column='1' id='type-id-615'/>
+ <typedef-decl name='_PyRuntimeState' type-id='type-id-595' filepath='../gpshead/Include/internal/pystate.h' line='108' column='1' id='type-id-620'/>
+ <var-decl name='_PyRuntime' type-id='type-id-620' mangled-name='_PyRuntime' visibility='default' filepath='../gpshead/Include/internal/pystate.h' line='113' column='1' elf-symbol-id='_PyRuntime'/>
+ <var-decl name='Py_DebugFlag' type-id='type-id-7' mangled-name='Py_DebugFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='10' column='1' elf-symbol-id='Py_DebugFlag'/>
+ <var-decl name='Py_VerboseFlag' type-id='type-id-7' mangled-name='Py_VerboseFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='11' column='1' elf-symbol-id='Py_VerboseFlag'/>
+ <var-decl name='Py_QuietFlag' type-id='type-id-7' mangled-name='Py_QuietFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='12' column='1' elf-symbol-id='Py_QuietFlag'/>
+ <var-decl name='Py_InteractiveFlag' type-id='type-id-7' mangled-name='Py_InteractiveFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='13' column='1' elf-symbol-id='Py_InteractiveFlag'/>
+ <var-decl name='Py_InspectFlag' type-id='type-id-7' mangled-name='Py_InspectFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='14' column='1' elf-symbol-id='Py_InspectFlag'/>
+ <var-decl name='Py_OptimizeFlag' type-id='type-id-7' mangled-name='Py_OptimizeFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='15' column='1' elf-symbol-id='Py_OptimizeFlag'/>
+ <var-decl name='Py_NoSiteFlag' type-id='type-id-7' mangled-name='Py_NoSiteFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='16' column='1' elf-symbol-id='Py_NoSiteFlag'/>
+ <var-decl name='Py_BytesWarningFlag' type-id='type-id-7' mangled-name='Py_BytesWarningFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='17' column='1' elf-symbol-id='Py_BytesWarningFlag'/>
+ <var-decl name='Py_FrozenFlag' type-id='type-id-7' mangled-name='Py_FrozenFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='18' column='1' elf-symbol-id='Py_FrozenFlag'/>
+ <var-decl name='Py_IgnoreEnvironmentFlag' type-id='type-id-7' mangled-name='Py_IgnoreEnvironmentFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='19' column='1' elf-symbol-id='Py_IgnoreEnvironmentFlag'/>
+ <var-decl name='Py_DontWriteBytecodeFlag' type-id='type-id-7' mangled-name='Py_DontWriteBytecodeFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='20' column='1' elf-symbol-id='Py_DontWriteBytecodeFlag'/>
+ <var-decl name='Py_NoUserSiteDirectory' type-id='type-id-7' mangled-name='Py_NoUserSiteDirectory' visibility='default' filepath='../gpshead/Include/pydebug.h' line='21' column='1' elf-symbol-id='Py_NoUserSiteDirectory'/>
+ <var-decl name='Py_UnbufferedStdioFlag' type-id='type-id-7' mangled-name='Py_UnbufferedStdioFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='22' column='1' elf-symbol-id='Py_UnbufferedStdioFlag'/>
+ <var-decl name='Py_HashRandomizationFlag' type-id='type-id-7' mangled-name='Py_HashRandomizationFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='23' column='1' elf-symbol-id='Py_HashRandomizationFlag'/>
+ <var-decl name='Py_IsolatedFlag' type-id='type-id-7' mangled-name='Py_IsolatedFlag' visibility='default' filepath='../gpshead/Include/pydebug.h' line='24' column='1' elf-symbol-id='Py_IsolatedFlag'/>
+ <pointer-type-def type-id='type-id-621' size-in-bits='64' id='type-id-622'/>
+ <var-decl name='_PyOS_mystrnicmp_hack' type-id='type-id-622' mangled-name='_PyOS_mystrnicmp_hack' visibility='default' filepath='../gpshead/Python/pylifecycle.c' line='134' column='1' elf-symbol-id='_PyOS_mystrnicmp_hack'/>
+ <pointer-type-def type-id='type-id-623' size-in-bits='64' id='type-id-624'/>
+ <typedef-decl name='PyOS_sighandler_t' type-id='type-id-624' filepath='../gpshead/Include/pylifecycle.h' line='218' column='1' id='type-id-625'/>
+ <function-decl name='PyOS_setsig' mangled-name='PyOS_setsig' filepath='../gpshead/Python/pylifecycle.c' line='2397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_setsig'>
+ <parameter type-id='type-id-7' name='sig' filepath='../gpshead/Python/pylifecycle.c' line='2397' column='1'/>
+ <parameter type-id='type-id-625' name='handler' filepath='../gpshead/Python/pylifecycle.c' line='2397' column='1'/>
+ <return type-id='type-id-625'/>
+ </function-decl>
+ <function-decl name='PyOS_getsig' mangled-name='PyOS_getsig' filepath='../gpshead/Python/pylifecycle.c' line='2358' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_getsig'>
+ <parameter type-id='type-id-7' name='sig' filepath='../gpshead/Python/pylifecycle.c' line='2358' column='1'/>
+ <return type-id='type-id-625'/>
+ </function-decl>
+ <function-decl name='Py_FdIsInteractive' mangled-name='Py_FdIsInteractive' filepath='../gpshead/Python/pylifecycle.c' line='2343' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FdIsInteractive'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pylifecycle.c' line='2343' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/pylifecycle.c' line='2343' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_RestoreSignals' mangled-name='_Py_RestoreSignals' filepath='../gpshead/Python/pylifecycle.c' line='2322' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_RestoreSignals'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_Exit' mangled-name='Py_Exit' filepath='../gpshead/Python/pylifecycle.c' line='2286' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Exit'>
+ <parameter type-id='type-id-7' name='new_limit' filepath='../gpshead/Python/ceval.c' line='456' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_AtExit' mangled-name='Py_AtExit' filepath='../gpshead/Python/pylifecycle.c' line='2267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_AtExit'>
+ <parameter type-id='type-id-602' name='func' filepath='../gpshead/Python/pylifecycle.c' line='2267' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_PyAtExit' mangled-name='_Py_PyAtExit' filepath='../gpshead/Python/pylifecycle.c' line='2214' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_PyAtExit'>
+ <parameter type-id='type-id-67' name='func' filepath='../gpshead/Python/pylifecycle.c' line='2214' column='1'/>
+ <parameter type-id='type-id-52' name='module' filepath='../gpshead/Python/pylifecycle.c' line='2214' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_FatalInitError' mangled-name='_Py_FatalInitError' filepath='../gpshead/Python/pylifecycle.c' line='2201' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FatalInitError'>
+ <parameter type-id='type-id-554' name='err' filepath='../gpshead/Python/pylifecycle.c' line='2201' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_FatalError' mangled-name='Py_FatalError' filepath='../gpshead/Python/pylifecycle.c' line='2195' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FatalError'>
+ <parameter type-id='type-id-3' name='msg' filepath='../gpshead/Python/pylifecycle.c' line='2195' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_EndInterpreter' mangled-name='Py_EndInterpreter' filepath='../gpshead/Python/pylifecycle.c' line='1534' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_EndInterpreter'>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Python/pylifecycle.c' line='1534' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_NewInterpreter' mangled-name='Py_NewInterpreter' filepath='../gpshead/Python/pylifecycle.c' line='1510' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_NewInterpreter'>
+ <return type-id='type-id-217'/>
+ </function-decl>
+ <function-decl name='Py_Finalize' mangled-name='Py_Finalize' filepath='../gpshead/Python/pylifecycle.c' line='1335' 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='../gpshead/Python/pylifecycle.c' line='1120' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FinalizeEx'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='Py_Initialize' mangled-name='Py_Initialize' filepath='../gpshead/Python/pylifecycle.c' line='1046' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Initialize'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='Py_InitializeEx' mangled-name='Py_InitializeEx' filepath='../gpshead/Python/pylifecycle.c' line='1026' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_InitializeEx'>
+ <parameter type-id='type-id-7' name='install_sigs' filepath='../gpshead/Python/pylifecycle.c' line='1026' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_InitializeFromConfig' mangled-name='_Py_InitializeFromConfig' filepath='../gpshead/Python/pylifecycle.c' line='999' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_InitializeFromConfig'>
+ <parameter type-id='type-id-559' name='config' filepath='../gpshead/Python/pylifecycle.c' line='999' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <qualified-type-def type-id='type-id-64' const='yes' id='type-id-626'/>
+ <pointer-type-def type-id='type-id-626' size-in-bits='64' id='type-id-627'/>
+ <function-decl name='_Py_InitializeMainInterpreter' mangled-name='_Py_InitializeMainInterpreter' filepath='../gpshead/Python/pylifecycle.c' line='900' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_InitializeMainInterpreter'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/pylifecycle.c' line='900' column='1'/>
+ <parameter type-id='type-id-627' name='config' filepath='../gpshead/Python/pylifecycle.c' line='901' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-49' size-in-bits='64' id='type-id-628'/>
+ <function-decl name='_Py_InitializeCore' mangled-name='_Py_InitializeCore' filepath='../gpshead/Python/pylifecycle.c' line='831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_InitializeCore'>
+ <parameter type-id='type-id-628' name='interp_p' filepath='../gpshead/Python/pylifecycle.c' line='831' column='1'/>
+ <parameter type-id='type-id-559' name='src_config' filepath='../gpshead/Python/pylifecycle.c' line='832' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <function-decl name='_Py_InitializeCore_impl' mangled-name='_Py_InitializeCore_impl' filepath='../gpshead/Python/pylifecycle.c' line='634' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_InitializeCore_impl'>
+ <parameter type-id='type-id-628' name='interp_p' filepath='../gpshead/Python/pylifecycle.c' line='634' column='1'/>
+ <parameter type-id='type-id-559' name='core_config' filepath='../gpshead/Python/pylifecycle.c' line='635' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <function-decl name='_Py_SetLocaleFromEnv' mangled-name='_Py_SetLocaleFromEnv' filepath='../gpshead/Python/pylifecycle.c' line='524' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SetLocaleFromEnv'>
+ <parameter type-id='type-id-7' name='category' filepath='../gpshead/Python/pylifecycle.c' line='524' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <function-decl name='_Py_CoerceLegacyLocale' mangled-name='_Py_CoerceLegacyLocale' filepath='../gpshead/Python/pylifecycle.c' line='475' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_CoerceLegacyLocale'>
+ <parameter type-id='type-id-559' name='config' filepath='../gpshead/Python/pylifecycle.c' line='475' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_LegacyLocaleDetected' mangled-name='_Py_LegacyLocaleDetected' filepath='../gpshead/Python/pylifecycle.c' line='378' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_LegacyLocaleDetected'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='Py_SetStandardStreamEncoding' mangled-name='Py_SetStandardStreamEncoding' filepath='../gpshead/Python/pylifecycle.c' line='171' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetStandardStreamEncoding'>
+ <parameter type-id='type-id-3' name='encoding' filepath='../gpshead/Python/pylifecycle.c' line='171' column='1'/>
+ <parameter type-id='type-id-3' name='errors' filepath='../gpshead/Python/pylifecycle.c' line='171' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='Py_IsInitialized' mangled-name='Py_IsInitialized' filepath='../gpshead/Python/pylifecycle.c' line='158' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IsInitialized'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_IsCoreInitialized' mangled-name='_Py_IsCoreInitialized' filepath='../gpshead/Python/pylifecycle.c' line='152' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_IsCoreInitialized'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyModule_GetWarningsModule' mangled-name='PyModule_GetWarningsModule' filepath='../gpshead/Python/pylifecycle.c' line='140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetWarningsModule'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_IsFinalizing' mangled-name='_Py_IsFinalizing' filepath='../gpshead/Python/pylifecycle.c' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_IsFinalizing'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyRuntime_Finalize' mangled-name='_PyRuntime_Finalize' filepath='../gpshead/Python/pylifecycle.c' line='100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntime_Finalize'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyRuntime_Initialize' mangled-name='_PyRuntime_Initialize' filepath='../gpshead/Python/pylifecycle.c' line='82' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntime_Initialize'>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-616'>
+ <parameter type-id='type-id-217'/>
+ <return type-id='type-id-50'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-621'>
+ <parameter type-id='type-id-3'/>
+ <parameter type-id='type-id-3'/>
+ <parameter type-id='type-id-34'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-601'>
+ <return type-id='type-id-4'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-623'>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-4'/>
+ </function-type>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pymath.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_Py_set_387controlword' mangled-name='_Py_set_387controlword' filepath='../gpshead/Python/pymath.c' line='29' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_387controlword'>
+ <parameter type-id='type-id-109' name='cw' filepath='../gpshead/Python/pymath.c' line='29' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_get_387controlword' mangled-name='_Py_get_387controlword' filepath='../gpshead/Python/pymath.c' line='23' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_387controlword'>
+ <return type-id='type-id-109'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pystate.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../gpshead/Include/pystate.h' line='373' column='1' id='type-id-629'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='PyGILState_LOCKED' value='0'/>
+ <enumerator name='PyGILState_UNLOCKED' value='1'/>
+ </enum-decl>
+ <typedef-decl name='PyGILState_STATE' type-id='type-id-629' filepath='../gpshead/Include/pystate.h' line='374' column='1' id='type-id-630'/>
+ <function-decl name='PyGILState_Release' mangled-name='PyGILState_Release' filepath='../gpshead/Python/pystate.c' line='1098' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_Release'>
+ <parameter type-id='type-id-630' name='oldstate' filepath='../gpshead/Python/pystate.c' line='1098' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyGILState_Ensure' mangled-name='PyGILState_Ensure' filepath='../gpshead/Python/pystate.c' line='1045' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_Ensure'>
+ <return type-id='type-id-630'/>
+ </function-decl>
+ <function-decl name='PyGILState_Check' mangled-name='PyGILState_Check' filepath='../gpshead/Python/pystate.c' line='1026' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_Check'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyGILState_GetThisThreadState' mangled-name='PyGILState_GetThisThreadState' filepath='../gpshead/Python/pystate.c' line='1018' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_GetThisThreadState'>
+ <return type-id='type-id-217'/>
+ </function-decl>
+ <function-decl name='_PyGILState_Reinit' mangled-name='_PyGILState_Reinit' filepath='../gpshead/Python/pystate.c' line='948' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGILState_Reinit'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyGILState_Fini' mangled-name='_PyGILState_Fini' filepath='../gpshead/Python/pystate.c' line='937' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGILState_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyGILState_GetInterpreterStateUnsafe' mangled-name='_PyGILState_GetInterpreterStateUnsafe' filepath='../gpshead/Python/pystate.c' line='931' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGILState_GetInterpreterStateUnsafe'>
+ <return type-id='type-id-49'/>
+ </function-decl>
+ <function-decl name='_PyGILState_Init' mangled-name='_PyGILState_Init' filepath='../gpshead/Python/pystate.c' line='917' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGILState_Init'>
+ <parameter type-id='type-id-49' name='i' filepath='../gpshead/Python/pystate.c' line='917' column='1'/>
+ <parameter type-id='type-id-217' name='t' filepath='../gpshead/Python/pystate.c' line='917' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyThread_CurrentFrames' mangled-name='_PyThread_CurrentFrames' filepath='../gpshead/Python/pystate.c' line='853' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThread_CurrentFrames'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyThreadState_Next' mangled-name='PyThreadState_Next' filepath='../gpshead/Python/pystate.c' line='843' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Next'>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Python/pystate.c' line='843' column='1'/>
+ <return type-id='type-id-217'/>
+ </function-decl>
+ <function-decl name='PyInterpreterState_ThreadHead' mangled-name='PyInterpreterState_ThreadHead' filepath='../gpshead/Python/pystate.c' line='838' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_ThreadHead'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/pystate.c' line='838' column='1'/>
+ <return type-id='type-id-217'/>
+ </function-decl>
+ <function-decl name='PyInterpreterState_Next' mangled-name='PyInterpreterState_Next' filepath='../gpshead/Python/pystate.c' line='833' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Next'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/pystate.c' line='833' column='1'/>
+ <return type-id='type-id-49'/>
+ </function-decl>
+ <function-decl name='PyInterpreterState_Main' mangled-name='PyInterpreterState_Main' filepath='../gpshead/Python/pystate.c' line='827' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Main'>
+ <return type-id='type-id-49'/>
+ </function-decl>
+ <function-decl name='PyInterpreterState_Head' mangled-name='PyInterpreterState_Head' filepath='../gpshead/Python/pystate.c' line='821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Head'>
+ <return type-id='type-id-49'/>
+ </function-decl>
+ <function-decl name='PyThreadState_SetAsyncExc' mangled-name='PyThreadState_SetAsyncExc' filepath='../gpshead/Python/pystate.c' line='782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_SetAsyncExc'>
+ <parameter type-id='type-id-38' name='id' filepath='../gpshead/Python/pystate.c' line='782' column='1'/>
+ <parameter type-id='type-id-52' name='exc' filepath='../gpshead/Python/pystate.c' line='782' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyThreadState_GetDict' mangled-name='PyThreadState_GetDict' filepath='../gpshead/Python/pystate.c' line='757' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_GetDict'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyThreadState_Swap' mangled-name='PyThreadState_Swap' filepath='../gpshead/Python/pystate.c' line='726' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Swap'>
+ <parameter type-id='type-id-217' name='newts' filepath='../gpshead/Python/pystate.c' line='726' column='1'/>
+ <return type-id='type-id-217'/>
+ </function-decl>
+ <function-decl name='PyThreadState_Get' mangled-name='PyThreadState_Get' filepath='../gpshead/Python/pystate.c' line='715' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Get'>
+ <return type-id='type-id-217'/>
+ </function-decl>
+ <function-decl name='_PyThreadState_UncheckedGet' mangled-name='_PyThreadState_UncheckedGet' filepath='../gpshead/Python/pystate.c' line='708' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_UncheckedGet'>
+ <return type-id='type-id-217'/>
+ </function-decl>
+ <function-decl name='_PyThreadState_DeleteExcept' mangled-name='_PyThreadState_DeleteExcept' filepath='../gpshead/Python/pystate.c' line='678' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_DeleteExcept'>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Python/pystate.c' line='678' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyThreadState_DeleteCurrent' mangled-name='PyThreadState_DeleteCurrent' filepath='../gpshead/Python/pystate.c' line='653' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_DeleteCurrent'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyThreadState_Delete' mangled-name='PyThreadState_Delete' filepath='../gpshead/Python/pystate.c' line='639' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Delete'>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Python/pystate.c' line='639' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyThreadState_Clear' mangled-name='PyThreadState_Clear' filepath='../gpshead/Python/pystate.c' line='567' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Clear'>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Python/pystate.c' line='567' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyState_ClearModules' mangled-name='_PyState_ClearModules' filepath='../gpshead/Python/pystate.c' line='543' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyState_ClearModules'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-332' size-in-bits='64' id='type-id-631'/>
+ <function-decl name='PyState_RemoveModule' mangled-name='PyState_RemoveModule' filepath='../gpshead/Python/pystate.c' line='515' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyState_RemoveModule'>
+ <parameter type-id='type-id-631' name='def' filepath='../gpshead/Python/pystate.c' line='515' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyState_AddModule' mangled-name='PyState_AddModule' filepath='../gpshead/Python/pystate.c' line='496' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyState_AddModule'>
+ <parameter type-id='type-id-52' name='module' filepath='../gpshead/Python/pystate.c' line='496' column='1'/>
+ <parameter type-id='type-id-631' name='def' filepath='../gpshead/Python/pystate.c' line='496' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyState_AddModule' mangled-name='_PyState_AddModule' filepath='../gpshead/Python/pystate.c' line='469' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyState_AddModule'>
+ <parameter type-id='type-id-52' name='module' filepath='../gpshead/Python/pystate.c' line='469' column='1'/>
+ <parameter type-id='type-id-631' name='def' filepath='../gpshead/Python/pystate.c' line='469' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyState_FindModule' mangled-name='PyState_FindModule' filepath='../gpshead/Python/pystate.c' line='450' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyState_FindModule'>
+ <parameter type-id='type-id-631' name='module' filepath='../gpshead/Python/pystate.c' line='450' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyThreadState_Init' mangled-name='_PyThreadState_Init' filepath='../gpshead/Python/pystate.c' line='444' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_Init'>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Python/ceval.c' line='209' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyThreadState_Prealloc' mangled-name='_PyThreadState_Prealloc' filepath='../gpshead/Python/pystate.c' line='438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_Prealloc'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/pystate.c' line='838' column='1'/>
+ <return type-id='type-id-217'/>
+ </function-decl>
+ <function-decl name='PyThreadState_New' mangled-name='PyThreadState_New' filepath='../gpshead/Python/pystate.c' line='432' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_New'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/pystate.c' line='838' column='1'/>
+ <return type-id='type-id-217'/>
+ </function-decl>
+ <function-decl name='_PyInterpreterState_IDDecref' mangled-name='_PyInterpreterState_IDDecref' filepath='../gpshead/Python/pystate.c' line='330' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_IDDecref'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/pystate.c' line='330' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyInterpreterState_IDIncref' mangled-name='_PyInterpreterState_IDIncref' filepath='../gpshead/Python/pystate.c' line='318' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_IDIncref'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/pystate.c' line='318' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyInterpreterState_IDInitref' mangled-name='_PyInterpreterState_IDInitref' filepath='../gpshead/Python/pystate.c' line='301' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_IDInitref'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/import.c' line='320' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyInterpreterState_LookUpID' mangled-name='_PyInterpreterState_LookUpID' filepath='../gpshead/Python/pystate.c' line='278' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_LookUpID'>
+ <parameter type-id='type-id-60' name='requested_id' filepath='../gpshead/Python/pystate.c' line='278' column='1'/>
+ <return type-id='type-id-49'/>
+ </function-decl>
+ <function-decl name='PyInterpreterState_GetID' mangled-name='PyInterpreterState_GetID' filepath='../gpshead/Python/pystate.c' line='267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_GetID'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/pystate.c' line='267' column='1'/>
+ <return type-id='type-id-60'/>
+ </function-decl>
+ <function-decl name='PyInterpreterState_Delete' mangled-name='PyInterpreterState_Delete' filepath='../gpshead/Python/pystate.c' line='238' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Delete'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/pystate.c' line='238' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyInterpreterState_Clear' mangled-name='PyInterpreterState_Clear' filepath='../gpshead/Python/pystate.c' line='198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Clear'>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/pystate.c' line='198' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyInterpreterState_New' mangled-name='PyInterpreterState_New' filepath='../gpshead/Python/pystate.c' line='123' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_New'>
+ <return type-id='type-id-49'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-620' size-in-bits='64' id='type-id-632'/>
+ <function-decl name='_PyInterpreterState_Enable' mangled-name='_PyInterpreterState_Enable' filepath='../gpshead/Python/pystate.c' line='98' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_Enable'>
+ <parameter type-id='type-id-632' name='runtime' filepath='../gpshead/Python/pystate.c' line='98' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <function-decl name='_PyRuntimeState_Fini' mangled-name='_PyRuntimeState_Fini' filepath='../gpshead/Python/pystate.c' line='77' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntimeState_Fini'>
+ <parameter type-id='type-id-632' name='runtime' filepath='../gpshead/Python/pystate.c' line='77' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyRuntimeState_Init' mangled-name='_PyRuntimeState_Init' filepath='../gpshead/Python/pystate.c' line='63' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntimeState_Init'>
+ <parameter type-id='type-id-632' name='runtime' filepath='../gpshead/Python/pystate.c' line='63' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/context.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyContext_Type' type-id='type-id-245' mangled-name='PyContext_Type' visibility='default' filepath='../gpshead/Include/context.h' line='10' column='1' elf-symbol-id='PyContext_Type'/>
+ <var-decl name='PyContextVar_Type' type-id='type-id-245' mangled-name='PyContextVar_Type' visibility='default' filepath='../gpshead/Include/context.h' line='13' column='1' elf-symbol-id='PyContextVar_Type'/>
+ <var-decl name='PyContextToken_Type' type-id='type-id-245' mangled-name='PyContextToken_Type' visibility='default' filepath='../gpshead/Include/context.h' line='16' column='1' elf-symbol-id='PyContextToken_Type'/>
+ <var-decl name='PyContextTokenMissing_Type' type-id='type-id-245' mangled-name='PyContextTokenMissing_Type' visibility='default' filepath='../gpshead/Python/context.c' line='1190' column='1' elf-symbol-id='PyContextTokenMissing_Type'/>
+ <function-decl name='_PyContext_Init' mangled-name='_PyContext_Init' filepath='../gpshead/Python/context.c' line='1247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyContext_Init'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyContext_Fini' mangled-name='_PyContext_Fini' filepath='../gpshead/Python/context.c' line='1238' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyContext_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyContext_ClearFreeList' mangled-name='PyContext_ClearFreeList' filepath='../gpshead/Python/context.c' line='1223' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_ClearFreeList'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyContextVar_Reset' mangled-name='PyContextVar_Reset' filepath='../gpshead/Python/context.c' line='275' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContextVar_Reset'>
+ <parameter type-id='type-id-52' name='ovar' filepath='../gpshead/Python/context.c' line='275' column='1'/>
+ <parameter type-id='type-id-52' name='otok' filepath='../gpshead/Python/context.c' line='275' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyContextVar_Set' mangled-name='PyContextVar_Set' filepath='../gpshead/Python/context.c' line='239' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContextVar_Set'>
+ <parameter type-id='type-id-52' name='ovar' filepath='../gpshead/Python/context.c' line='239' column='1'/>
+ <parameter type-id='type-id-52' name='val' filepath='../gpshead/Python/context.c' line='239' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyContextVar_Get' mangled-name='PyContextVar_Get' filepath='../gpshead/Python/context.c' line='176' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContextVar_Get'>
+ <parameter type-id='type-id-52' name='ovar' filepath='../gpshead/Python/context.c' line='176' column='1'/>
+ <parameter type-id='type-id-52' name='def' filepath='../gpshead/Python/context.c' line='176' column='1'/>
+ <parameter type-id='type-id-259' name='val' filepath='../gpshead/Python/context.c' line='176' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyContextVar_New' mangled-name='PyContextVar_New' filepath='../gpshead/Python/context.c' line='163' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContextVar_New'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/import.c' line='756' column='1'/>
+ <parameter type-id='type-id-52' name='modules' filepath='../gpshead/Python/import.c' line='756' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyContext_Exit' mangled-name='PyContext_Exit' filepath='../gpshead/Python/context.c' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_Exit'>
+ <parameter type-id='type-id-52' name='octx' filepath='../gpshead/Python/context.c' line='130' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyContext_Enter' mangled-name='PyContext_Enter' filepath='../gpshead/Python/context.c' line='104' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_Enter'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Objects/object.c' line='852' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyContext_CopyCurrent' mangled-name='PyContext_CopyCurrent' filepath='../gpshead/Python/context.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_CopyCurrent'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyContext_Copy' mangled-name='PyContext_Copy' filepath='../gpshead/Python/context.c' line='83' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_Copy'>
+ <parameter type-id='type-id-52' name='iter' filepath='../gpshead/Objects/abstract.c' line='2552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyContext_New' mangled-name='PyContext_New' filepath='../gpshead/Python/context.c' line='76' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_New'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyContext_NewHamtForTests' mangled-name='_PyContext_NewHamtForTests' filepath='../gpshead/Python/context.c' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyContext_NewHamtForTests'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/hamt.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_PyHamtItems_Type' type-id='type-id-245' mangled-name='_PyHamtItems_Type' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='79' column='1' elf-symbol-id='_PyHamtItems_Type'/>
+ <var-decl name='_PyHamtKeys_Type' type-id='type-id-245' mangled-name='_PyHamtKeys_Type' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='77' column='1' elf-symbol-id='_PyHamtKeys_Type'/>
+ <var-decl name='_PyHamtValues_Type' type-id='type-id-245' mangled-name='_PyHamtValues_Type' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='78' column='1' elf-symbol-id='_PyHamtValues_Type'/>
+ <var-decl name='_PyHamt_Type' type-id='type-id-245' mangled-name='_PyHamt_Type' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='73' column='1' elf-symbol-id='_PyHamt_Type'/>
+ <var-decl name='_PyHamt_ArrayNode_Type' type-id='type-id-245' mangled-name='_PyHamt_ArrayNode_Type' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='74' column='1' elf-symbol-id='_PyHamt_ArrayNode_Type'/>
+ <var-decl name='_PyHamt_BitmapNode_Type' type-id='type-id-245' mangled-name='_PyHamt_BitmapNode_Type' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='75' column='1' elf-symbol-id='_PyHamt_BitmapNode_Type'/>
+ <var-decl name='_PyHamt_CollisionNode_Type' type-id='type-id-245' mangled-name='_PyHamt_CollisionNode_Type' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='76' column='1' elf-symbol-id='_PyHamt_CollisionNode_Type'/>
+ <function-decl name='_PyHamt_Fini' mangled-name='_PyHamt_Fini' filepath='../gpshead/Python/hamt.c' line='2999' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyHamt_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyHamt_Init' mangled-name='_PyHamt_Init' filepath='../gpshead/Python/hamt.c' line='2982' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyHamt_Init'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-633' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='30' column='1' id='type-id-634'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-103' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='31' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='h_root' type-id='type-id-635' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='32' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='h_weakreflist' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='h_count' type-id='type-id-34' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='34' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-636' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='24' column='1' id='type-id-637'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-103' visibility='default' filepath='../gpshead/Include/internal/hamt.h' line='25' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='PyHamtNode' type-id='type-id-637' filepath='../gpshead/Include/internal/hamt.h' line='26' column='1' id='type-id-636'/>
+ <pointer-type-def type-id='type-id-636' size-in-bits='64' id='type-id-635'/>
+ <typedef-decl name='PyHamtObject' type-id='type-id-634' filepath='../gpshead/Include/internal/hamt.h' line='35' column='1' id='type-id-633'/>
+ <pointer-type-def type-id='type-id-633' size-in-bits='64' id='type-id-638'/>
+ <function-decl name='_PyHamt_NewIterValues' mangled-name='_PyHamt_NewIterValues' filepath='../gpshead/Python/hamt.c' line='2701' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyHamt_NewIterValues'>
+ <parameter type-id='type-id-638' name='o' filepath='../gpshead/Python/hamt.c' line='2701' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyHamt_NewIterKeys' mangled-name='_PyHamt_NewIterKeys' filepath='../gpshead/Python/hamt.c' line='2677' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyHamt_NewIterKeys'>
+ <parameter type-id='type-id-638' name='o' filepath='../gpshead/Python/hamt.c' line='2701' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyHamt_NewIterItems' mangled-name='_PyHamt_NewIterItems' filepath='../gpshead/Python/hamt.c' line='2653' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyHamt_NewIterItems'>
+ <parameter type-id='type-id-638' name='o' filepath='../gpshead/Python/hamt.c' line='2701' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyHamt_New' mangled-name='_PyHamt_New' filepath='../gpshead/Python/hamt.c' line='2495' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyHamt_New'>
+ <return type-id='type-id-638'/>
+ </function-decl>
+ <function-decl name='_PyHamt_Len' mangled-name='_PyHamt_Len' filepath='../gpshead/Python/hamt.c' line='2474' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyHamt_Len'>
+ <parameter type-id='type-id-638' name='o' filepath='../gpshead/Python/hamt.c' line='2474' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_PyHamt_Eq' mangled-name='_PyHamt_Eq' filepath='../gpshead/Python/hamt.c' line='2427' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyHamt_Eq'>
+ <parameter type-id='type-id-638' name='v' filepath='../gpshead/Python/hamt.c' line='2427' column='1'/>
+ <parameter type-id='type-id-638' name='w' filepath='../gpshead/Python/hamt.c' line='2427' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyHamt_Find' mangled-name='_PyHamt_Find' filepath='../gpshead/Python/hamt.c' line='2410' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyHamt_Find'>
+ <parameter type-id='type-id-638' name='o' filepath='../gpshead/Python/hamt.c' line='2410' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Python/hamt.c' line='2410' column='1'/>
+ <parameter type-id='type-id-259' name='val' filepath='../gpshead/Python/hamt.c' line='2410' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyHamt_Without' mangled-name='_PyHamt_Without' filepath='../gpshead/Python/hamt.c' line='2352' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyHamt_Without'>
+ <parameter type-id='type-id-638' name='o' filepath='../gpshead/Python/hamt.c' line='2352' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Python/hamt.c' line='2352' column='1'/>
+ <return type-id='type-id-638'/>
+ </function-decl>
+ <function-decl name='_PyHamt_Assoc' mangled-name='_PyHamt_Assoc' filepath='../gpshead/Python/hamt.c' line='2314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyHamt_Assoc'>
+ <parameter type-id='type-id-638' name='o' filepath='../gpshead/Python/hamt.c' line='2314' column='1'/>
+ <parameter type-id='type-id-52' name='key' filepath='../gpshead/Python/hamt.c' line='2314' column='1'/>
+ <parameter type-id='type-id-52' name='val' filepath='../gpshead/Python/hamt.c' line='2314' column='1'/>
+ <return type-id='type-id-638'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pythonrun.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyRun_InteractiveLoop' mangled-name='PyRun_InteractiveLoop' filepath='../gpshead/Python/pythonrun.c' line='1610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveLoop'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pylifecycle.c' line='2343' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/pylifecycle.c' line='2343' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyRun_InteractiveOne' mangled-name='PyRun_InteractiveOne' filepath='../gpshead/Python/pythonrun.c' line='1603' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOne'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pylifecycle.c' line='2343' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/pylifecycle.c' line='2343' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='Py_CompileStringFlags' mangled-name='Py_CompileStringFlags' filepath='../gpshead/Python/pythonrun.c' line='1595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringFlags'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='1595' column='1'/>
+ <parameter type-id='type-id-3' name='p' filepath='../gpshead/Python/pythonrun.c' line='1595' column='1'/>
+ <parameter type-id='type-id-7' name='s' filepath='../gpshead/Python/pythonrun.c' line='1595' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='1596' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='Py_CompileString' mangled-name='Py_CompileString' filepath='../gpshead/Python/pythonrun.c' line='1588' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileString'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='1588' column='1'/>
+ <parameter type-id='type-id-3' name='p' filepath='../gpshead/Python/pythonrun.c' line='1588' column='1'/>
+ <parameter type-id='type-id-7' name='s' filepath='../gpshead/Python/pythonrun.c' line='1588' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyRun_SimpleString' mangled-name='PyRun_SimpleString' filepath='../gpshead/Python/pythonrun.c' line='1581' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleString'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Python/pythonrun.c' line='1581' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyRun_String' mangled-name='PyRun_String' filepath='../gpshead/Python/pythonrun.c' line='1574' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_String'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='1574' column='1'/>
+ <parameter type-id='type-id-7' name='s' filepath='../gpshead/Python/pythonrun.c' line='1574' column='1'/>
+ <parameter type-id='type-id-52' name='g' filepath='../gpshead/Python/pythonrun.c' line='1574' column='1'/>
+ <parameter type-id='type-id-52' name='l' filepath='../gpshead/Python/pythonrun.c' line='1574' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyRun_SimpleFileEx' mangled-name='PyRun_SimpleFileEx' filepath='../gpshead/Python/pythonrun.c' line='1566' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFileEx'>
+ <parameter type-id='type-id-124' name='f' filepath='../gpshead/Python/pythonrun.c' line='1566' column='1'/>
+ <parameter type-id='type-id-3' name='p' filepath='../gpshead/Python/pythonrun.c' line='1566' column='1'/>
+ <parameter type-id='type-id-7' name='c' filepath='../gpshead/Python/pythonrun.c' line='1566' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyRun_SimpleFile' mangled-name='PyRun_SimpleFile' filepath='../gpshead/Python/pythonrun.c' line='1559' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFile'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pylifecycle.c' line='2343' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/pylifecycle.c' line='2343' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyRun_FileFlags' mangled-name='PyRun_FileFlags' filepath='../gpshead/Python/pythonrun.c' line='1551' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileFlags'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='1551' column='1'/>
+ <parameter type-id='type-id-3' name='p' filepath='../gpshead/Python/pythonrun.c' line='1551' column='1'/>
+ <parameter type-id='type-id-7' name='s' filepath='../gpshead/Python/pythonrun.c' line='1551' column='1'/>
+ <parameter type-id='type-id-52' name='g' filepath='../gpshead/Python/pythonrun.c' line='1551' column='1'/>
+ <parameter type-id='type-id-52' name='l' filepath='../gpshead/Python/pythonrun.c' line='1551' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='1552' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyRun_FileEx' mangled-name='PyRun_FileEx' filepath='../gpshead/Python/pythonrun.c' line='1544' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileEx'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='1544' column='1'/>
+ <parameter type-id='type-id-3' name='p' filepath='../gpshead/Python/pythonrun.c' line='1544' column='1'/>
+ <parameter type-id='type-id-7' name='s' filepath='../gpshead/Python/pythonrun.c' line='1544' column='1'/>
+ <parameter type-id='type-id-52' name='g' filepath='../gpshead/Python/pythonrun.c' line='1544' column='1'/>
+ <parameter type-id='type-id-52' name='l' filepath='../gpshead/Python/pythonrun.c' line='1544' column='1'/>
+ <parameter type-id='type-id-7' name='c' filepath='../gpshead/Python/pythonrun.c' line='1544' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyRun_File' mangled-name='PyRun_File' filepath='../gpshead/Python/pythonrun.c' line='1537' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_File'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='1537' column='1'/>
+ <parameter type-id='type-id-3' name='p' filepath='../gpshead/Python/pythonrun.c' line='1537' column='1'/>
+ <parameter type-id='type-id-7' name='s' filepath='../gpshead/Python/pythonrun.c' line='1537' column='1'/>
+ <parameter type-id='type-id-52' name='g' filepath='../gpshead/Python/pythonrun.c' line='1537' column='1'/>
+ <parameter type-id='type-id-52' name='l' filepath='../gpshead/Python/pythonrun.c' line='1537' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyRun_AnyFileFlags' mangled-name='PyRun_AnyFileFlags' filepath='../gpshead/Python/pythonrun.c' line='1530' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileFlags'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='1530' column='1'/>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/pythonrun.c' line='1530' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='1530' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyRun_AnyFileEx' mangled-name='PyRun_AnyFileEx' filepath='../gpshead/Python/pythonrun.c' line='1523' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileEx'>
+ <parameter type-id='type-id-124' name='f' filepath='../gpshead/Python/pythonrun.c' line='1566' column='1'/>
+ <parameter type-id='type-id-3' name='p' filepath='../gpshead/Python/pythonrun.c' line='1566' column='1'/>
+ <parameter type-id='type-id-7' name='c' filepath='../gpshead/Python/pythonrun.c' line='1566' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyRun_AnyFile' mangled-name='PyRun_AnyFile' filepath='../gpshead/Python/pythonrun.c' line='1516' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFile'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pylifecycle.c' line='2343' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/pylifecycle.c' line='2343' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyParser_SimpleParseString' mangled-name='PyParser_SimpleParseString' filepath='../gpshead/Python/pythonrun.c' line='1509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseString'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='1509' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1509' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_SimpleParseFile' mangled-name='PyParser_SimpleParseFile' filepath='../gpshead/Python/pythonrun.c' line='1502' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseFile'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='1502' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/pythonrun.c' line='1502' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1502' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_SetError' mangled-name='PyParser_SetError' filepath='../gpshead/Python/pythonrun.c' line='1320' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SetError'>
+ <parameter type-id='type-id-224' name='err' filepath='../gpshead/Python/pythonrun.c' line='1320' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyParser_ClearError' mangled-name='PyParser_ClearError' filepath='../gpshead/Python/pythonrun.c' line='1314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ClearError'>
+ <parameter type-id='type-id-224' name='err' filepath='../gpshead/Python/pythonrun.c' line='1320' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyParser_SimpleParseStringFilename' mangled-name='PyParser_SimpleParseStringFilename' filepath='../gpshead/Python/pythonrun.c' line='1305' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseStringFilename'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='1305' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/pythonrun.c' line='1305' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1305' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_SimpleParseStringFlagsFilename' mangled-name='PyParser_SimpleParseStringFlagsFilename' filepath='../gpshead/Python/pythonrun.c' line='1292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseStringFlagsFilename'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='1292' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/pythonrun.c' line='1292' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1293' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Python/pythonrun.c' line='1293' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_SimpleParseStringFlags' mangled-name='PyParser_SimpleParseStringFlags' filepath='../gpshead/Python/pythonrun.c' line='1280' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseStringFlags'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='1280' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1280' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Python/pythonrun.c' line='1280' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_SimpleParseFileFlags' mangled-name='PyParser_SimpleParseFileFlags' filepath='../gpshead/Python/pythonrun.c' line='1264' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_SimpleParseFileFlags'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='1264' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/pythonrun.c' line='1264' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1264' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Python/pythonrun.c' line='1264' column='1'/>
+ <return type-id='type-id-30'/>
+ </function-decl>
+ <function-decl name='PyParser_ASTFromFile' mangled-name='PyParser_ASTFromFile' filepath='../gpshead/Python/pythonrun.c' line='1245' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ASTFromFile'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='1245' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/pythonrun.c' line='1245' column='1'/>
+ <parameter type-id='type-id-3' name='enc' filepath='../gpshead/Python/pythonrun.c' line='1245' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1246' column='1'/>
+ <parameter type-id='type-id-3' name='ps1' filepath='../gpshead/Python/pythonrun.c' line='1246' column='1'/>
+ <parameter type-id='type-id-3' name='ps2' filepath='../gpshead/Python/pythonrun.c' line='1247' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='1247' column='1'/>
+ <parameter type-id='type-id-18' name='errcode' filepath='../gpshead/Python/pythonrun.c' line='1247' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/pythonrun.c' line='1248' column='1'/>
+ <return type-id='type-id-466'/>
+ </function-decl>
+ <function-decl name='PyParser_ASTFromFileObject' mangled-name='PyParser_ASTFromFileObject' filepath='../gpshead/Python/pythonrun.c' line='1212' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ASTFromFileObject'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='1212' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/pythonrun.c' line='1212' column='1'/>
+ <parameter type-id='type-id-3' name='enc' filepath='../gpshead/Python/pythonrun.c' line='1212' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1213' column='1'/>
+ <parameter type-id='type-id-3' name='ps1' filepath='../gpshead/Python/pythonrun.c' line='1213' column='1'/>
+ <parameter type-id='type-id-3' name='ps2' filepath='../gpshead/Python/pythonrun.c' line='1214' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='1214' column='1'/>
+ <parameter type-id='type-id-18' name='errcode' filepath='../gpshead/Python/pythonrun.c' line='1214' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/pythonrun.c' line='1215' column='1'/>
+ <return type-id='type-id-466'/>
+ </function-decl>
+ <function-decl name='PyParser_ASTFromString' mangled-name='PyParser_ASTFromString' filepath='../gpshead/Python/pythonrun.c' line='1198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ASTFromString'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Python/pythonrun.c' line='1198' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/pythonrun.c' line='1198' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1198' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='1199' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/pythonrun.c' line='1199' column='1'/>
+ <return type-id='type-id-466'/>
+ </function-decl>
+ <function-decl name='PyParser_ASTFromStringObject' mangled-name='PyParser_ASTFromStringObject' filepath='../gpshead/Python/pythonrun.c' line='1169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyParser_ASTFromStringObject'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Python/pythonrun.c' line='1169' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/pythonrun.c' line='1169' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1169' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='1170' column='1'/>
+ <parameter type-id='type-id-470' name='arena' filepath='../gpshead/Python/pythonrun.c' line='1170' column='1'/>
+ <return type-id='type-id-466'/>
+ </function-decl>
+ <class-decl name='symtable' size-in-bits='640' is-struct='yes' visibility='default' filepath='../gpshead/Include/symtable.h' line='18' column='1' id='type-id-639'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='st_filename' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/symtable.h' line='19' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='st_cur' type-id='type-id-640' visibility='default' filepath='../gpshead/Include/symtable.h' line='21' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='st_top' type-id='type-id-640' visibility='default' filepath='../gpshead/Include/symtable.h' line='22' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='st_blocks' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/symtable.h' line='23' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='st_stack' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/symtable.h' line='25' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='st_global' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/symtable.h' line='26' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='st_nblocks' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/symtable.h' line='27' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='st_private' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/symtable.h' line='30' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='st_future' type-id='type-id-547' visibility='default' filepath='../gpshead/Include/symtable.h' line='31' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='576'>
+ <var-decl name='recursion_depth' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/symtable.h' line='33' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='608'>
+ <var-decl name='recursion_limit' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/symtable.h' line='34' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='_symtable_entry' size-in-bits='832' is-struct='yes' visibility='default' filepath='../gpshead/Include/symtable.h' line='37' column='1' id='type-id-641'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='ob_base' type-id='type-id-103' visibility='default' filepath='../gpshead/Include/symtable.h' line='38' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='ste_id' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/symtable.h' line='39' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='ste_symbols' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/symtable.h' line='40' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='ste_name' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/symtable.h' line='41' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='ste_varnames' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/symtable.h' line='42' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='ste_children' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/symtable.h' line='43' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='ste_directives' type-id='type-id-52' visibility='default' filepath='../gpshead/Include/symtable.h' line='44' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='512'>
+ <var-decl name='ste_type' type-id='type-id-642' visibility='default' filepath='../gpshead/Include/symtable.h' line='45' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='544'>
+ <var-decl name='ste_nested' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/symtable.h' line='46' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='31'>
+ <var-decl name='ste_free' type-id='type-id-101' visibility='default' filepath='../gpshead/Include/symtable.h' line='47' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='30'>
+ <var-decl name='ste_child_free' type-id='type-id-101' visibility='default' filepath='../gpshead/Include/symtable.h' line='48' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='29'>
+ <var-decl name='ste_generator' type-id='type-id-101' visibility='default' filepath='../gpshead/Include/symtable.h' line='50' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='28'>
+ <var-decl name='ste_coroutine' type-id='type-id-101' visibility='default' filepath='../gpshead/Include/symtable.h' line='51' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='27'>
+ <var-decl name='ste_varargs' type-id='type-id-101' visibility='default' filepath='../gpshead/Include/symtable.h' line='52' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='26'>
+ <var-decl name='ste_varkeywords' type-id='type-id-101' visibility='default' filepath='../gpshead/Include/symtable.h' line='53' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='25'>
+ <var-decl name='ste_returns_value' type-id='type-id-101' visibility='default' filepath='../gpshead/Include/symtable.h' line='54' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='24'>
+ <var-decl name='ste_needs_class_closure' type-id='type-id-101' visibility='default' filepath='../gpshead/Include/symtable.h' line='56' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='608'>
+ <var-decl name='ste_lineno' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/symtable.h' line='59' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='640'>
+ <var-decl name='ste_col_offset' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/symtable.h' line='60' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='672'>
+ <var-decl name='ste_opt_lineno' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/symtable.h' line='61' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='704'>
+ <var-decl name='ste_opt_col_offset' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/symtable.h' line='62' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='768'>
+ <var-decl name='ste_table' type-id='type-id-643' visibility='default' filepath='../gpshead/Include/symtable.h' line='63' column='1'/>
+ </data-member>
+ </class-decl>
+ <enum-decl name='_block_type' filepath='../gpshead/Include/symtable.h' line='13' column='1' id='type-id-644'>
+ <underlying-type type-id='type-id-231'/>
+ <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-644' filepath='../gpshead/Include/symtable.h' line='14' column='1' id='type-id-642'/>
+ <pointer-type-def type-id='type-id-639' size-in-bits='64' id='type-id-643'/>
+ <pointer-type-def type-id='type-id-641' size-in-bits='64' id='type-id-640'/>
+ <function-decl name='Py_SymtableString' mangled-name='Py_SymtableString' filepath='../gpshead/Python/pythonrun.c' line='1154' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SymtableString'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='1154' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/pythonrun.c' line='1154' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1154' column='1'/>
+ <return type-id='type-id-643'/>
+ </function-decl>
+ <function-decl name='Py_SymtableStringObject' mangled-name='Py_SymtableStringObject' filepath='../gpshead/Python/pythonrun.c' line='1131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SymtableStringObject'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='1131' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/pythonrun.c' line='1131' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1131' column='1'/>
+ <return type-id='type-id-643'/>
+ </function-decl>
+ <function-decl name='PyCompileString' mangled-name='PyCompileString' filepath='../gpshead/Python/pythonrun.c' line='1125' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCompileString'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='1588' column='1'/>
+ <parameter type-id='type-id-3' name='p' filepath='../gpshead/Python/pythonrun.c' line='1588' column='1'/>
+ <parameter type-id='type-id-7' name='s' filepath='../gpshead/Python/pythonrun.c' line='1588' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='Py_CompileStringExFlags' mangled-name='Py_CompileStringExFlags' filepath='../gpshead/Python/pythonrun.c' line='1110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringExFlags'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='1110' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/pythonrun.c' line='1110' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1110' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='1111' column='1'/>
+ <parameter type-id='type-id-7' name='optimize' filepath='../gpshead/Python/pythonrun.c' line='1111' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='Py_CompileStringObject' mangled-name='Py_CompileStringObject' filepath='../gpshead/Python/pythonrun.c' line='1085' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringObject'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='1085' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/pythonrun.c' line='1085' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='1085' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='1086' column='1'/>
+ <parameter type-id='type-id-7' name='optimize' filepath='../gpshead/Python/pythonrun.c' line='1086' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyRun_FileExFlags' mangled-name='PyRun_FileExFlags' filepath='../gpshead/Python/pythonrun.c' line='967' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileExFlags'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='967' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/pythonrun.c' line='967' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='967' column='1'/>
+ <parameter type-id='type-id-52' name='globals' filepath='../gpshead/Python/pythonrun.c' line='967' column='1'/>
+ <parameter type-id='type-id-52' name='locals' filepath='../gpshead/Python/pythonrun.c' line='968' column='1'/>
+ <parameter type-id='type-id-7' name='closeit' filepath='../gpshead/Python/pythonrun.c' line='968' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='968' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyRun_StringFlags' mangled-name='PyRun_StringFlags' filepath='../gpshead/Python/pythonrun.c' line='943' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_StringFlags'>
+ <parameter type-id='type-id-3' name='str' filepath='../gpshead/Python/pythonrun.c' line='943' column='1'/>
+ <parameter type-id='type-id-7' name='start' filepath='../gpshead/Python/pythonrun.c' line='943' column='1'/>
+ <parameter type-id='type-id-52' name='globals' filepath='../gpshead/Python/pythonrun.c' line='943' column='1'/>
+ <parameter type-id='type-id-52' name='locals' filepath='../gpshead/Python/pythonrun.c' line='944' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='944' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyErr_Display' mangled-name='PyErr_Display' filepath='../gpshead/Python/pythonrun.c' line='907' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Display'>
+ <parameter type-id='type-id-52' name='exception' filepath='../gpshead/Python/pythonrun.c' line='907' column='1'/>
+ <parameter type-id='type-id-52' name='value' filepath='../gpshead/Python/pythonrun.c' line='907' column='1'/>
+ <parameter type-id='type-id-52' name='tb' filepath='../gpshead/Python/pythonrun.c' line='907' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_PrintEx' mangled-name='PyErr_PrintEx' filepath='../gpshead/Python/pythonrun.c' line='641' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_PrintEx'>
+ <parameter type-id='type-id-7' name='set_sys_last_vars' filepath='../gpshead/Python/pythonrun.c' line='641' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_Print' mangled-name='PyErr_Print' filepath='../gpshead/Python/pythonrun.c' line='540' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Print'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyRun_SimpleStringFlags' mangled-name='PyRun_SimpleStringFlags' filepath='../gpshead/Python/pythonrun.c' line='448' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleStringFlags'>
+ <parameter type-id='type-id-3' name='command' filepath='../gpshead/Python/pythonrun.c' line='448' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='448' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyRun_SimpleFileExFlags' mangled-name='PyRun_SimpleFileExFlags' filepath='../gpshead/Python/pythonrun.c' line='373' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFileExFlags'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='373' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/pythonrun.c' line='373' column='1'/>
+ <parameter type-id='type-id-7' name='closeit' filepath='../gpshead/Python/pythonrun.c' line='373' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='374' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyRun_InteractiveOneFlags' mangled-name='PyRun_InteractiveOneFlags' filepath='../gpshead/Python/pythonrun.c' line='280' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOneFlags'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='280' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/pythonrun.c' line='280' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='280' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyRun_InteractiveOneObject' mangled-name='PyRun_InteractiveOneObject' filepath='../gpshead/Python/pythonrun.c' line='267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOneObject'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='267' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/pythonrun.c' line='267' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='267' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyRun_InteractiveLoopFlags' mangled-name='PyRun_InteractiveLoopFlags' filepath='../gpshead/Python/pythonrun.c' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveLoopFlags'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='88' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/pythonrun.c' line='88' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='88' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyRun_AnyFileExFlags' mangled-name='PyRun_AnyFileExFlags' filepath='../gpshead/Python/pythonrun.c' line='72' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileExFlags'>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/pythonrun.c' line='72' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/pythonrun.c' line='72' column='1'/>
+ <parameter type-id='type-id-7' name='closeit' filepath='../gpshead/Python/pythonrun.c' line='72' column='1'/>
+ <parameter type-id='type-id-512' name='flags' filepath='../gpshead/Python/pythonrun.c' line='73' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pytime.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <typedef-decl name='__time_t' type-id='type-id-31' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='160' column='1' id='type-id-645'/>
+ <typedef-decl name='time_t' type-id='type-id-645' filepath='/usr/include/x86_64-linux-gnu/bits/types/time_t.h' line='7' column='1' id='type-id-646'/>
+ <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-647'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='tm_sec' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='9' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='32'>
+ <var-decl name='tm_min' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='10' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='tm_hour' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='11' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='96'>
+ <var-decl name='tm_mday' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='12' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='tm_mon' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='13' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='160'>
+ <var-decl name='tm_year' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='14' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='tm_wday' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='15' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='224'>
+ <var-decl name='tm_yday' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='16' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='tm_isdst' type-id='type-id-7' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='17' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='tm_gmtoff' type-id='type-id-31' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='20' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <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-647' size-in-bits='64' id='type-id-648'/>
+ <function-decl name='_PyTime_gmtime' mangled-name='_PyTime_gmtime' filepath='../gpshead/Python/pytime.c' line='1079' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_gmtime'>
+ <parameter type-id='type-id-646' name='t' filepath='../gpshead/Python/pytime.c' line='1079' column='1'/>
+ <parameter type-id='type-id-648' name='tm' filepath='../gpshead/Python/pytime.c' line='1079' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_localtime' mangled-name='_PyTime_localtime' filepath='../gpshead/Python/pytime.c' line='1052' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_localtime'>
+ <parameter type-id='type-id-646' name='t' filepath='../gpshead/Python/pytime.c' line='1079' column='1'/>
+ <parameter type-id='type-id-648' name='tm' filepath='../gpshead/Python/pytime.c' line='1079' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_Init' mangled-name='_PyTime_Init' filepath='../gpshead/Python/pytime.c' line='1033' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_Init'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <typedef-decl name='_PyTime_t' type-id='type-id-60' filepath='../gpshead/Include/pytime.h' line='19' column='1' id='type-id-649'/>
+ <function-decl name='_PyTime_GetPerfCounter' mangled-name='_PyTime_GetPerfCounter' filepath='../gpshead/Python/pytime.c' line='1022' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetPerfCounter'>
+ <return type-id='type-id-649'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-649' size-in-bits='64' id='type-id-650'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-651' visibility='default' filepath='../gpshead/Include/pytime.h' line='184' column='1' id='type-id-652'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='implementation' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/pytime.h' line='185' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='monotonic' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pytime.h' line='186' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='96'>
+ <var-decl name='adjustable' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/pytime.h' line='187' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='resolution' type-id='type-id-278' visibility='default' filepath='../gpshead/Include/pytime.h' line='188' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='_Py_clock_info_t' type-id='type-id-652' filepath='../gpshead/Include/pytime.h' line='189' column='1' id='type-id-651'/>
+ <pointer-type-def type-id='type-id-651' size-in-bits='64' id='type-id-653'/>
+ <function-decl name='_PyTime_GetPerfCounterWithInfo' mangled-name='_PyTime_GetPerfCounterWithInfo' filepath='../gpshead/Python/pytime.c' line='1011' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetPerfCounterWithInfo'>
+ <parameter type-id='type-id-650' name='t' filepath='../gpshead/Python/pytime.c' line='1011' column='1'/>
+ <parameter type-id='type-id-653' name='info' filepath='../gpshead/Python/pytime.c' line='1011' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_GetMonotonicClockWithInfo' mangled-name='_PyTime_GetMonotonicClockWithInfo' filepath='../gpshead/Python/pytime.c' line='931' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetMonotonicClockWithInfo'>
+ <parameter type-id='type-id-650' name='t' filepath='../gpshead/Python/pytime.c' line='1011' column='1'/>
+ <parameter type-id='type-id-653' name='info' filepath='../gpshead/Python/pytime.c' line='1011' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_GetMonotonicClock' mangled-name='_PyTime_GetMonotonicClock' filepath='../gpshead/Python/pytime.c' line='919' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetMonotonicClock'>
+ <return type-id='type-id-649'/>
+ </function-decl>
+ <function-decl name='_PyTime_GetSystemClockWithInfo' mangled-name='_PyTime_GetSystemClockWithInfo' filepath='../gpshead/Python/pytime.c' line='759' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetSystemClockWithInfo'>
+ <parameter type-id='type-id-650' name='t' filepath='../gpshead/Python/pytime.c' line='1011' column='1'/>
+ <parameter type-id='type-id-653' name='info' filepath='../gpshead/Python/pytime.c' line='1011' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_GetSystemClock' mangled-name='_PyTime_GetSystemClock' filepath='../gpshead/Python/pytime.c' line='748' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetSystemClock'>
+ <return type-id='type-id-649'/>
+ </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-654'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='tv_sec' type-id='type-id-645' 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-655' 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-31' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='196' column='1' id='type-id-655'/>
+ <pointer-type-def type-id='type-id-654' size-in-bits='64' id='type-id-656'/>
+ <function-decl name='_PyTime_AsTimespec' mangled-name='_PyTime_AsTimespec' filepath='../gpshead/Python/pytime.c' line='630' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimespec'>
+ <parameter type-id='type-id-649' name='t' filepath='../gpshead/Python/pytime.c' line='630' column='1'/>
+ <parameter type-id='type-id-656' name='ts' filepath='../gpshead/Python/pytime.c' line='630' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-646' size-in-bits='64' id='type-id-657'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../gpshead/Include/pytime.h' line='23' column='1' id='type-id-658'>
+ <underlying-type type-id='type-id-231'/>
+ <enumerator name='_PyTime_ROUND_FLOOR' value='0'/>
+ <enumerator name='_PyTime_ROUND_CEILING' value='1'/>
+ <enumerator name='_PyTime_ROUND_HALF_EVEN' value='2'/>
+ <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-658' filepath='../gpshead/Include/pytime.h' line='43' column='1' id='type-id-659'/>
+ <function-decl name='_PyTime_AsTimevalTime_t' mangled-name='_PyTime_AsTimevalTime_t' filepath='../gpshead/Python/pytime.c' line='610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimevalTime_t'>
+ <parameter type-id='type-id-649' name='t' filepath='../gpshead/Python/pytime.c' line='610' column='1'/>
+ <parameter type-id='type-id-657' name='p_secs' filepath='../gpshead/Python/pytime.c' line='610' column='1'/>
+ <parameter type-id='type-id-18' name='us' filepath='../gpshead/Python/pytime.c' line='610' column='1'/>
+ <parameter type-id='type-id-659' name='round' filepath='../gpshead/Python/pytime.c' line='611' column='1'/>
+ <return type-id='type-id-7'/>
+ </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-660'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='tv_sec' type-id='type-id-645' 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-661' 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-31' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='162' column='1' id='type-id-661'/>
+ <pointer-type-def type-id='type-id-660' size-in-bits='64' id='type-id-662'/>
+ <function-decl name='_PyTime_AsTimeval_noraise' mangled-name='_PyTime_AsTimeval_noraise' filepath='../gpshead/Python/pytime.c' line='604' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimeval_noraise'>
+ <parameter type-id='type-id-649' name='t' filepath='../gpshead/Python/pytime.c' line='604' column='1'/>
+ <parameter type-id='type-id-662' name='tv' filepath='../gpshead/Python/pytime.c' line='604' column='1'/>
+ <parameter type-id='type-id-659' name='round' filepath='../gpshead/Python/pytime.c' line='604' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_AsTimeval' mangled-name='_PyTime_AsTimeval' filepath='../gpshead/Python/pytime.c' line='598' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimeval'>
+ <parameter type-id='type-id-649' name='t' filepath='../gpshead/Python/pytime.c' line='604' column='1'/>
+ <parameter type-id='type-id-662' name='tv' filepath='../gpshead/Python/pytime.c' line='604' column='1'/>
+ <parameter type-id='type-id-659' name='round' filepath='../gpshead/Python/pytime.c' line='604' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_AsMicroseconds' mangled-name='_PyTime_AsMicroseconds' filepath='../gpshead/Python/pytime.c' line='527' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsMicroseconds'>
+ <parameter type-id='type-id-649' name='t' filepath='../gpshead/Python/pytime.c' line='527' column='1'/>
+ <parameter type-id='type-id-659' name='round' filepath='../gpshead/Python/pytime.c' line='527' column='1'/>
+ <return type-id='type-id-649'/>
+ </function-decl>
+ <function-decl name='_PyTime_AsMilliseconds' mangled-name='_PyTime_AsMilliseconds' filepath='../gpshead/Python/pytime.c' line='521' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsMilliseconds'>
+ <parameter type-id='type-id-649' name='t' filepath='../gpshead/Python/pytime.c' line='527' column='1'/>
+ <parameter type-id='type-id-659' name='round' filepath='../gpshead/Python/pytime.c' line='527' column='1'/>
+ <return type-id='type-id-649'/>
+ </function-decl>
+ <function-decl name='_PyTime_AsNanosecondsObject' mangled-name='_PyTime_AsNanosecondsObject' filepath='../gpshead/Python/pytime.c' line='467' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsNanosecondsObject'>
+ <parameter type-id='type-id-649' name='t' filepath='../gpshead/Python/pytime.c' line='467' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyTime_AsSecondsDouble' mangled-name='_PyTime_AsSecondsDouble' filepath='../gpshead/Python/pytime.c' line='447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsSecondsDouble'>
+ <parameter type-id='type-id-649' name='t' filepath='../gpshead/Python/pytime.c' line='447' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-decl name='_PyTime_FromMillisecondsObject' mangled-name='_PyTime_FromMillisecondsObject' filepath='../gpshead/Python/pytime.c' line='441' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromMillisecondsObject'>
+ <parameter type-id='type-id-650' name='t' filepath='../gpshead/Python/pytime.c' line='441' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/pytime.c' line='441' column='1'/>
+ <parameter type-id='type-id-659' name='round' filepath='../gpshead/Python/pytime.c' line='441' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_FromSecondsObject' mangled-name='_PyTime_FromSecondsObject' filepath='../gpshead/Python/pytime.c' line='435' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromSecondsObject'>
+ <parameter type-id='type-id-650' name='t' filepath='../gpshead/Python/pytime.c' line='441' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/pytime.c' line='441' column='1'/>
+ <parameter type-id='type-id-659' name='round' filepath='../gpshead/Python/pytime.c' line='441' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_FromTimeval' mangled-name='_PyTime_FromTimeval' filepath='../gpshead/Python/pytime.c' line='374' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromTimeval'>
+ <parameter type-id='type-id-650' name='tp' filepath='../gpshead/Python/pytime.c' line='374' column='1'/>
+ <parameter type-id='type-id-662' name='tv' filepath='../gpshead/Python/pytime.c' line='374' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_FromTimespec' mangled-name='_PyTime_FromTimespec' filepath='../gpshead/Python/pytime.c' line='328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromTimespec'>
+ <parameter type-id='type-id-650' name='tp' filepath='../gpshead/Python/pytime.c' line='328' column='1'/>
+ <parameter type-id='type-id-656' name='ts' filepath='../gpshead/Python/pytime.c' line='328' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_FromNanosecondsObject' mangled-name='_PyTime_FromNanosecondsObject' filepath='../gpshead/Python/pytime.c' line='262' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromNanosecondsObject'>
+ <parameter type-id='type-id-650' name='tp' filepath='../gpshead/Python/pytime.c' line='262' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/pytime.c' line='262' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_FromNanoseconds' mangled-name='_PyTime_FromNanoseconds' filepath='../gpshead/Python/pytime.c' line='255' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromNanoseconds'>
+ <parameter type-id='type-id-649' name='ns' filepath='../gpshead/Python/pytime.c' line='255' column='1'/>
+ <return type-id='type-id-649'/>
+ </function-decl>
+ <function-decl name='_PyTime_FromSeconds' mangled-name='_PyTime_FromSeconds' filepath='../gpshead/Python/pytime.c' line='238' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromSeconds'>
+ <parameter type-id='type-id-7' name='seconds' filepath='../gpshead/Python/pytime.c' line='238' column='1'/>
+ <return type-id='type-id-649'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-31' size-in-bits='64' id='type-id-663'/>
+ <function-decl name='_PyTime_ObjectToTimeval' mangled-name='_PyTime_ObjectToTimeval' filepath='../gpshead/Python/pytime.c' line='231' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_ObjectToTimeval'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/pytime.c' line='231' column='1'/>
+ <parameter type-id='type-id-657' name='sec' filepath='../gpshead/Python/pytime.c' line='231' column='1'/>
+ <parameter type-id='type-id-663' name='usec' filepath='../gpshead/Python/pytime.c' line='231' column='1'/>
+ <parameter type-id='type-id-659' name='round' filepath='../gpshead/Python/pytime.c' line='232' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_ObjectToTimespec' mangled-name='_PyTime_ObjectToTimespec' filepath='../gpshead/Python/pytime.c' line='224' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_ObjectToTimespec'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/pytime.c' line='231' column='1'/>
+ <parameter type-id='type-id-657' name='sec' filepath='../gpshead/Python/pytime.c' line='231' column='1'/>
+ <parameter type-id='type-id-663' name='usec' filepath='../gpshead/Python/pytime.c' line='231' column='1'/>
+ <parameter type-id='type-id-659' name='round' filepath='../gpshead/Python/pytime.c' line='232' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTime_ObjectToTime_t' mangled-name='_PyTime_ObjectToTime_t' filepath='../gpshead/Python/pytime.c' line='191' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_ObjectToTime_t'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/pytime.c' line='191' column='1'/>
+ <parameter type-id='type-id-657' name='sec' filepath='../gpshead/Python/pytime.c' line='191' column='1'/>
+ <parameter type-id='type-id-659' name='round' filepath='../gpshead/Python/pytime.c' line='191' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyLong_FromTime_t' mangled-name='_PyLong_FromTime_t' filepath='../gpshead/Python/pytime.c' line='85' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromTime_t'>
+ <parameter type-id='type-id-646' name='t' filepath='../gpshead/Python/pytime.c' line='85' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyLong_AsTime_t' mangled-name='_PyLong_AsTime_t' filepath='../gpshead/Python/pytime.c' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_AsTime_t'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/pytime.c' line='65' column='1'/>
+ <return type-id='type-id-646'/>
+ </function-decl>
+ <function-decl name='_PyTime_MulDiv' mangled-name='_PyTime_MulDiv' filepath='../gpshead/Python/pytime.c' line='47' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_MulDiv'>
+ <parameter type-id='type-id-649' name='ticks' filepath='../gpshead/Python/pytime.c' line='47' column='1'/>
+ <parameter type-id='type-id-649' name='mul' filepath='../gpshead/Python/pytime.c' line='47' column='1'/>
+ <parameter type-id='type-id-649' name='div' filepath='../gpshead/Python/pytime.c' line='47' column='1'/>
+ <return type-id='type-id-649'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/bootstrap_hash.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_Py_HashRandomization_Fini' mangled-name='_Py_HashRandomization_Fini' filepath='../gpshead/Python/bootstrap_hash.c' line='621' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashRandomization_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_HashRandomization_Init' mangled-name='_Py_HashRandomization_Init' filepath='../gpshead/Python/bootstrap_hash.c' line='581' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashRandomization_Init'>
+ <parameter type-id='type-id-559' name='config' filepath='../gpshead/Python/bootstrap_hash.c' line='581' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-38' size-in-bits='64' id='type-id-664'/>
+ <function-decl name='_Py_ReadHashSeed' mangled-name='_Py_ReadHashSeed' filepath='../gpshead/Python/bootstrap_hash.c' line='551' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ReadHashSeed'>
+ <parameter type-id='type-id-3' name='seed_text' filepath='../gpshead/Python/bootstrap_hash.c' line='551' column='1'/>
+ <parameter type-id='type-id-18' name='use_hash_seed' filepath='../gpshead/Python/bootstrap_hash.c' line='552' column='1'/>
+ <parameter type-id='type-id-664' name='hash_seed' filepath='../gpshead/Python/bootstrap_hash.c' line='553' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyOS_URandomNonblock' mangled-name='_PyOS_URandomNonblock' filepath='../gpshead/Python/bootstrap_hash.c' line='545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_URandomNonblock'>
+ <parameter type-id='type-id-56' name='buffer' filepath='../gpshead/Python/bootstrap_hash.c' line='545' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Python/bootstrap_hash.c' line='545' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyOS_URandom' mangled-name='_PyOS_URandom' filepath='../gpshead/Python/bootstrap_hash.c' line='531' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_URandom'>
+ <parameter type-id='type-id-56' name='buffer' filepath='../gpshead/Python/bootstrap_hash.c' line='545' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Python/bootstrap_hash.c' line='545' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/structmember.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyMember_SetOne' mangled-name='PyMember_SetOne' filepath='../gpshead/Python/structmember.c' line='101' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMember_SetOne'>
+ <parameter type-id='type-id-12' name='addr' filepath='../gpshead/Python/structmember.c' line='101' column='1'/>
+ <parameter type-id='type-id-288' name='l' filepath='../gpshead/Python/structmember.c' line='101' column='1'/>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Python/structmember.c' line='101' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyMember_GetOne' mangled-name='PyMember_GetOne' filepath='../gpshead/Python/structmember.c' line='9' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMember_GetOne'>
+ <parameter type-id='type-id-3' name='addr' filepath='../gpshead/Python/structmember.c' line='9' column='1'/>
+ <parameter type-id='type-id-288' name='l' filepath='../gpshead/Python/structmember.c' line='9' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/symtable.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PySTEntry_Type' type-id='type-id-245' mangled-name='PySTEntry_Type' visibility='default' filepath='../gpshead/Include/symtable.h' line='66' column='1' elf-symbol-id='PySTEntry_Type'/>
+ <typedef-decl name='PySTEntryObject' type-id='type-id-641' filepath='../gpshead/Include/symtable.h' line='64' column='1' id='type-id-665'/>
+ <pointer-type-def type-id='type-id-665' size-in-bits='64' id='type-id-666'/>
+ <function-decl name='PyST_GetScope' mangled-name='PyST_GetScope' filepath='../gpshead/Python/symtable.c' line='373' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyST_GetScope'>
+ <parameter type-id='type-id-666' name='ste' filepath='../gpshead/Python/symtable.c' line='373' column='1'/>
+ <parameter type-id='type-id-52' name='name' filepath='../gpshead/Python/symtable.c' line='373' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySymtable_Lookup' mangled-name='PySymtable_Lookup' filepath='../gpshead/Python/symtable.c' line='351' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySymtable_Lookup'>
+ <parameter type-id='type-id-643' name='st' filepath='../gpshead/Python/symtable.c' line='351' column='1'/>
+ <parameter type-id='type-id-56' name='key' filepath='../gpshead/Python/symtable.c' line='351' column='1'/>
+ <return type-id='type-id-666'/>
+ </function-decl>
+ <function-decl name='PySymtable_Free' mangled-name='PySymtable_Free' filepath='../gpshead/Python/symtable.c' line='342' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySymtable_Free'>
+ <parameter type-id='type-id-643' name='st' filepath='../gpshead/Python/symtable.c' line='342' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PySymtable_Build' mangled-name='PySymtable_Build' filepath='../gpshead/Python/symtable.c' line='329' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySymtable_Build'>
+ <parameter type-id='type-id-467' name='mod' filepath='../gpshead/Python/symtable.c' line='329' column='1'/>
+ <parameter type-id='type-id-3' name='filename_str' filepath='../gpshead/Python/symtable.c' line='329' column='1'/>
+ <parameter type-id='type-id-547' name='future' filepath='../gpshead/Python/symtable.c' line='329' column='1'/>
+ <return type-id='type-id-643'/>
+ </function-decl>
+ <function-decl name='PySymtable_BuildObject' mangled-name='PySymtable_BuildObject' filepath='../gpshead/Python/symtable.c' line='251' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySymtable_BuildObject'>
+ <parameter type-id='type-id-467' name='mod' filepath='../gpshead/Python/symtable.c' line='251' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/symtable.c' line='251' column='1'/>
+ <parameter type-id='type-id-547' name='future' filepath='../gpshead/Python/symtable.c' line='251' column='1'/>
+ <return type-id='type-id-643'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/sysmodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_PySys_ImplName' type-id='type-id-3' mangled-name='_PySys_ImplName' visibility='default' filepath='../gpshead/Python/sysmodule.c' line='2175' column='1' elf-symbol-id='_PySys_ImplName'/>
+ <var-decl name='_PySys_ImplCacheTag' type-id='type-id-3' mangled-name='_PySys_ImplCacheTag' visibility='default' filepath='../gpshead/Python/sysmodule.c' line='2179' column='1' elf-symbol-id='_PySys_ImplCacheTag'/>
+ <function-decl name='PySys_FormatStderr' mangled-name='PySys_FormatStderr' filepath='../gpshead/Python/sysmodule.c' line='2809' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_FormatStderr'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/sysmodule.c' line='2809' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PySys_FormatStdout' mangled-name='PySys_FormatStdout' filepath='../gpshead/Python/sysmodule.c' line='2799' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_FormatStdout'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/sysmodule.c' line='2809' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PySys_WriteStderr' mangled-name='PySys_WriteStderr' filepath='../gpshead/Python/sysmodule.c' line='2767' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_WriteStderr'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/sysmodule.c' line='2809' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PySys_WriteStdout' mangled-name='PySys_WriteStdout' filepath='../gpshead/Python/sysmodule.c' line='2757' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_WriteStdout'>
+ <parameter type-id='type-id-3' name='format' filepath='../gpshead/Python/sysmodule.c' line='2809' column='1'/>
+ <parameter is-variadic='yes'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PySys_SetArgv' mangled-name='PySys_SetArgv' filepath='../gpshead/Python/sysmodule.c' line='2650' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetArgv'>
+ <parameter type-id='type-id-7' name='argc' filepath='../gpshead/Python/sysmodule.c' line='2650' column='1'/>
+ <parameter type-id='type-id-203' name='argv' filepath='../gpshead/Python/sysmodule.c' line='2650' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PySys_SetArgvEx' mangled-name='PySys_SetArgvEx' filepath='../gpshead/Python/sysmodule.c' line='2615' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetArgvEx'>
+ <parameter type-id='type-id-7' name='argc' filepath='../gpshead/Python/sysmodule.c' line='2615' column='1'/>
+ <parameter type-id='type-id-203' name='argv' filepath='../gpshead/Python/sysmodule.c' line='2615' column='1'/>
+ <parameter type-id='type-id-7' name='updatepath' filepath='../gpshead/Python/sysmodule.c' line='2615' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PySys_SetPath' mangled-name='PySys_SetPath' filepath='../gpshead/Python/sysmodule.c' line='2578' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetPath'>
+ <parameter type-id='type-id-344' name='path' filepath='../gpshead/Python/sysmodule.c' line='2578' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-64' size-in-bits='64' id='type-id-667'/>
+ <function-decl name='_PySys_EndInit' mangled-name='_PySys_EndInit' filepath='../gpshead/Python/sysmodule.c' line='2465' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_EndInit'>
+ <parameter type-id='type-id-52' name='sysdict' filepath='../gpshead/Python/sysmodule.c' line='2465' column='1'/>
+ <parameter type-id='type-id-667' name='config' filepath='../gpshead/Python/sysmodule.c' line='2465' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PySys_BeginInit' mangled-name='_PySys_BeginInit' filepath='../gpshead/Python/sysmodule.c' line='2285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_BeginInit'>
+ <parameter type-id='type-id-259' name='sysmod' filepath='../gpshead/Python/sysmodule.c' line='2285' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <function-decl name='PySys_GetXOptions' mangled-name='PySys_GetXOptions' filepath='../gpshead/Python/sysmodule.c' line='1923' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_GetXOptions'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySys_AddXOption' mangled-name='PySys_AddXOption' filepath='../gpshead/Python/sysmodule.c' line='1907' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddXOption'>
+ <parameter type-id='type-id-344' name='path' filepath='../gpshead/Python/sysmodule.c' line='2578' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PySys_AddXOptionWithError' mangled-name='_PySys_AddXOptionWithError' filepath='../gpshead/Python/sysmodule.c' line='1871' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_AddXOptionWithError'>
+ <parameter type-id='type-id-344' name='s' filepath='../gpshead/Python/sysmodule.c' line='1871' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySys_HasWarnOptions' mangled-name='PySys_HasWarnOptions' filepath='../gpshead/Python/sysmodule.c' line='1836' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_HasWarnOptions'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySys_AddWarnOption' mangled-name='PySys_AddWarnOption' filepath='../gpshead/Python/sysmodule.c' line='1820' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddWarnOption'>
+ <parameter type-id='type-id-344' name='s' filepath='../gpshead/Python/sysmodule.c' line='1820' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PySys_AddWarnOptionUnicode' mangled-name='PySys_AddWarnOptionUnicode' filepath='../gpshead/Python/sysmodule.c' line='1814' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddWarnOptionUnicode'>
+ <parameter type-id='type-id-52' name='op' filepath='../gpshead/Objects/object.c' line='2227' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PySys_AddWarnOptionWithError' mangled-name='_PySys_AddWarnOptionWithError' filepath='../gpshead/Python/sysmodule.c' line='1801' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_AddWarnOptionWithError'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/listobject.c' line='2444' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySys_ResetWarnOptions' mangled-name='PySys_ResetWarnOptions' filepath='../gpshead/Python/sysmodule.c' line='1786' 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='../gpshead/Python/sysmodule.c' line='1222' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_GetSizeOf'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Python/sysmodule.c' line='1222' column='1'/>
+ <return type-id='type-id-62'/>
+ </function-decl>
+ <function-decl name='PySys_SetObject' mangled-name='PySys_SetObject' filepath='../gpshead/Python/sysmodule.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetObject'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Python/sysmodule.c' line='92' column='1'/>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Python/sysmodule.c' line='92' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PySys_SetObjectId' mangled-name='_PySys_SetObjectId' filepath='../gpshead/Python/sysmodule.c' line='77' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_SetObjectId'>
+ <parameter type-id='type-id-330' name='key' filepath='../gpshead/Python/sysmodule.c' line='77' column='1'/>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Python/sysmodule.c' line='77' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PySys_GetObject' mangled-name='PySys_GetObject' filepath='../gpshead/Python/sysmodule.c' line='67' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_GetObject'>
+ <parameter type-id='type-id-3' name='name' filepath='../gpshead/Objects/moduleobject.c' line='114' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PySys_GetObjectId' mangled-name='_PySys_GetObjectId' filepath='../gpshead/Python/sysmodule.c' line='57' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_GetObjectId'>
+ <parameter type-id='type-id-330' name='key' filepath='../gpshead/Python/sysmodule.c' line='57' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/thread.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyThread_GetInfo' mangled-name='PyThread_GetInfo' filepath='../gpshead/Python/thread.c' line='169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_GetInfo'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-615' size-in-bits='64' id='type-id-668'/>
+ <function-decl name='PyThread_tss_is_created' mangled-name='PyThread_tss_is_created' filepath='../gpshead/Python/thread.c' line='140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_is_created'>
+ <parameter type-id='type-id-668' name='key' filepath='../gpshead/Python/thread.c' line='140' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyThread_tss_free' mangled-name='PyThread_tss_free' filepath='../gpshead/Python/thread.c' line='131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_free'>
+ <parameter type-id='type-id-668' name='key' filepath='../gpshead/Python/thread.c' line='131' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyThread_tss_alloc' mangled-name='PyThread_tss_alloc' filepath='../gpshead/Python/thread.c' line='120' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_alloc'>
+ <return type-id='type-id-668'/>
+ </function-decl>
+ <function-decl name='PyThread_set_stacksize' mangled-name='PyThread_set_stacksize' filepath='../gpshead/Python/thread.c' line='104' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_set_stacksize'>
+ <parameter type-id='type-id-62' name='size' filepath='../gpshead/Python/thread.c' line='104' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyThread_get_stacksize' mangled-name='PyThread_get_stacksize' filepath='../gpshead/Python/thread.c' line='93' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_stacksize'>
+ <return type-id='type-id-62'/>
+ </function-decl>
+ <function-decl name='PyThread_tss_get' mangled-name='PyThread_tss_get' filepath='../gpshead/Python/thread_pthread.h' line='781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_get'>
+ <parameter type-id='type-id-668' name='key' filepath='../gpshead/Python/thread_pthread.h' line='781' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyThread_tss_set' mangled-name='PyThread_tss_set' filepath='../gpshead/Python/thread_pthread.h' line='773' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_set'>
+ <parameter type-id='type-id-668' name='key' filepath='../gpshead/Python/thread_pthread.h' line='773' column='1'/>
+ <parameter type-id='type-id-56' name='value' filepath='../gpshead/Python/thread_pthread.h' line='773' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyThread_tss_delete' mangled-name='PyThread_tss_delete' filepath='../gpshead/Python/thread_pthread.h' line='759' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_delete'>
+ <parameter type-id='type-id-668' name='key' filepath='../gpshead/Python/thread.c' line='131' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyThread_tss_create' mangled-name='PyThread_tss_create' filepath='../gpshead/Python/thread_pthread.h' line='742' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_create'>
+ <parameter type-id='type-id-668' name='key' filepath='../gpshead/Python/thread_pthread.h' line='742' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyThread_ReInitTLS' mangled-name='PyThread_ReInitTLS' filepath='../gpshead/Python/thread_pthread.h' line='731' 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='../gpshead/Python/thread_pthread.h' line='720' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_key_value'>
+ <parameter type-id='type-id-7' name='key' filepath='../gpshead/Python/thread_pthread.h' line='720' column='1'/>
+ <return type-id='type-id-56'/>
+ </function-decl>
+ <function-decl name='PyThread_set_key_value' mangled-name='PyThread_set_key_value' filepath='../gpshead/Python/thread_pthread.h' line='709' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_set_key_value'>
+ <parameter type-id='type-id-7' name='key' filepath='../gpshead/Python/thread_pthread.h' line='709' column='1'/>
+ <parameter type-id='type-id-56' name='value' filepath='../gpshead/Python/thread_pthread.h' line='709' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyThread_delete_key_value' mangled-name='PyThread_delete_key_value' filepath='../gpshead/Python/thread_pthread.h' line='701' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_delete_key_value'>
+ <parameter type-id='type-id-7' name='new_limit' filepath='../gpshead/Python/ceval.c' line='456' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyThread_delete_key' mangled-name='PyThread_delete_key' filepath='../gpshead/Python/thread_pthread.h' line='693' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_delete_key'>
+ <parameter type-id='type-id-7' name='new_limit' filepath='../gpshead/Python/ceval.c' line='456' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyThread_create_key' mangled-name='PyThread_create_key' filepath='../gpshead/Python/thread_pthread.h' line='673' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_create_key'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyThread_acquire_lock' mangled-name='PyThread_acquire_lock' filepath='../gpshead/Python/thread_pthread.h' line='606' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_acquire_lock'>
+ <parameter type-id='type-id-61' name='lock' filepath='../gpshead/Python/thread_pthread.h' line='606' column='1'/>
+ <parameter type-id='type-id-7' name='waitflag' filepath='../gpshead/Python/thread_pthread.h' line='606' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyThread_release_lock' mangled-name='PyThread_release_lock' filepath='../gpshead/Python/thread_pthread.h' line='433' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_release_lock'>
+ <parameter type-id='type-id-61' name='lock' filepath='../gpshead/Python/thread_pthread.h' line='433' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <enum-decl name='PyLockStatus' filepath='../gpshead/Include/pythread.h' line='14' column='1' id='type-id-669'>
+ <underlying-type type-id='type-id-231'/>
+ <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-669' filepath='../gpshead/Include/pythread.h' line='18' column='1' id='type-id-670'/>
+ <function-decl name='PyThread_acquire_lock_timed' mangled-name='PyThread_acquire_lock_timed' filepath='../gpshead/Python/thread_pthread.h' line='336' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_acquire_lock_timed'>
+ <parameter type-id='type-id-61' name='lock' filepath='../gpshead/Python/thread_pthread.h' line='336' column='1'/>
+ <parameter type-id='type-id-319' name='microseconds' filepath='../gpshead/Python/thread_pthread.h' line='336' column='1'/>
+ <parameter type-id='type-id-7' name='intr_flag' filepath='../gpshead/Python/thread_pthread.h' line='337' column='1'/>
+ <return type-id='type-id-670'/>
+ </function-decl>
+ <function-decl name='PyThread_free_lock' mangled-name='PyThread_free_lock' filepath='../gpshead/Python/thread_pthread.h' line='306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_free_lock'>
+ <parameter type-id='type-id-61' name='lock' filepath='../gpshead/Python/thread_pthread.h' line='433' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyThread_allocate_lock' mangled-name='PyThread_allocate_lock' filepath='../gpshead/Python/thread_pthread.h' line='280' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_allocate_lock'>
+ <return type-id='type-id-61'/>
+ </function-decl>
+ <function-decl name='PyThread_exit_thread' mangled-name='PyThread_exit_thread' filepath='../gpshead/Python/thread_pthread.h' line='265' 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_ident' mangled-name='PyThread_get_thread_ident' filepath='../gpshead/Python/thread_pthread.h' line='255' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_thread_ident'>
+ <return type-id='type-id-38'/>
+ </function-decl>
+ <function-decl name='PyThread_start_new_thread' mangled-name='PyThread_start_new_thread' filepath='../gpshead/Python/thread_pthread.h' line='179' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_start_new_thread'>
+ <parameter type-id='type-id-55' name='func' filepath='../gpshead/Python/thread_pthread.h' line='179' column='1'/>
+ <parameter type-id='type-id-56' name='arg' filepath='../gpshead/Python/thread_pthread.h' line='179' column='1'/>
+ <return type-id='type-id-38'/>
+ </function-decl>
+ <function-decl name='PyThread_init_thread' mangled-name='PyThread_init_thread' filepath='../gpshead/Python/thread.c' line='61' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_init_thread'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/traceback.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyTraceBack_Type' type-id='type-id-245' mangled-name='PyTraceBack_Type' visibility='default' filepath='../gpshead/Include/traceback.h' line='31' column='1' elf-symbol-id='PyTraceBack_Type'/>
+ <function-decl name='_Py_DumpTracebackThreads' mangled-name='_Py_DumpTracebackThreads' filepath='../gpshead/Python/traceback.c' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DumpTracebackThreads'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/traceback.c' line='847' column='1'/>
+ <parameter type-id='type-id-49' name='interp' filepath='../gpshead/Python/traceback.c' line='847' column='1'/>
+ <parameter type-id='type-id-217' name='current_tstate' filepath='../gpshead/Python/traceback.c' line='848' column='1'/>
+ <return type-id='type-id-3'/>
+ </function-decl>
+ <function-decl name='_Py_DumpTraceback' mangled-name='_Py_DumpTraceback' filepath='../gpshead/Python/traceback.c' line='817' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DumpTraceback'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/traceback.c' line='817' column='1'/>
+ <parameter type-id='type-id-217' name='tstate' filepath='../gpshead/Python/traceback.c' line='817' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_DumpASCII' mangled-name='_Py_DumpASCII' filepath='../gpshead/Python/traceback.c' line='670' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DumpASCII'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/traceback.c' line='670' column='1'/>
+ <parameter type-id='type-id-52' name='text' filepath='../gpshead/Python/traceback.c' line='670' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_DumpHexadecimal' mangled-name='_Py_DumpHexadecimal' filepath='../gpshead/Python/traceback.c' line='647' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DumpHexadecimal'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/traceback.c' line='647' column='1'/>
+ <parameter type-id='type-id-38' name='value' filepath='../gpshead/Python/traceback.c' line='647' column='1'/>
+ <parameter type-id='type-id-34' name='width' filepath='../gpshead/Python/traceback.c' line='647' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_DumpDecimal' mangled-name='_Py_DumpDecimal' filepath='../gpshead/Python/traceback.c' line='620' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DumpDecimal'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/traceback.c' line='620' column='1'/>
+ <parameter type-id='type-id-38' name='value' filepath='../gpshead/Python/traceback.c' line='620' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyTraceBack_Print' mangled-name='PyTraceBack_Print' filepath='../gpshead/Python/traceback.c' line='586' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTraceBack_Print'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Python/traceback.c' line='586' column='1'/>
+ <parameter type-id='type-id-52' name='f' filepath='../gpshead/Python/traceback.c' line='586' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_DisplaySourceLine' mangled-name='_Py_DisplaySourceLine' filepath='../gpshead/Python/traceback.c' line='362' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DisplaySourceLine'>
+ <parameter type-id='type-id-52' name='f' filepath='../gpshead/Python/traceback.c' line='362' column='1'/>
+ <parameter type-id='type-id-52' name='filename' filepath='../gpshead/Python/traceback.c' line='362' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/traceback.c' line='362' column='1'/>
+ <parameter type-id='type-id-7' name='indent' filepath='../gpshead/Python/traceback.c' line='362' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTraceback_Add' mangled-name='_PyTraceback_Add' filepath='../gpshead/Python/traceback.c' line='247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTraceback_Add'>
+ <parameter type-id='type-id-3' name='funcname' filepath='../gpshead/Python/traceback.c' line='247' column='1'/>
+ <parameter type-id='type-id-3' name='filename' filepath='../gpshead/Python/traceback.c' line='247' column='1'/>
+ <parameter type-id='type-id-7' name='lineno' filepath='../gpshead/Python/traceback.c' line='247' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyTraceBack_Here' mangled-name='PyTraceBack_Here' filepath='../gpshead/Python/traceback.c' line='231' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTraceBack_Here'>
+ <parameter type-id='type-id-297' name='frame' filepath='../gpshead/Python/traceback.c' line='231' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/getopt.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_PyOS_opterr' type-id='type-id-7' mangled-name='_PyOS_opterr' visibility='default' filepath='../gpshead/Include/internal/pygetopt.h' line='4' column='1' elf-symbol-id='_PyOS_opterr'/>
+ <var-decl name='_PyOS_optind' type-id='type-id-7' mangled-name='_PyOS_optind' visibility='default' filepath='../gpshead/Include/internal/pygetopt.h' line='5' column='1' elf-symbol-id='_PyOS_optind'/>
+ <var-decl name='_PyOS_optarg' type-id='type-id-202' mangled-name='_PyOS_optarg' visibility='default' filepath='../gpshead/Include/internal/pygetopt.h' line='6' column='1' elf-symbol-id='_PyOS_optarg'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-671' visibility='default' filepath='../gpshead/Include/internal/pygetopt.h' line='10' column='1' id='type-id-672'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='name' type-id='type-id-344' visibility='default' filepath='../gpshead/Include/internal/pygetopt.h' line='11' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='has_arg' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/pygetopt.h' line='12' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='96'>
+ <var-decl name='val' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/internal/pygetopt.h' line='13' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='_PyOS_LongOption' type-id='type-id-672' filepath='../gpshead/Include/internal/pygetopt.h' line='14' column='1' id='type-id-671'/>
+ <qualified-type-def type-id='type-id-671' const='yes' id='type-id-673'/>
+ <pointer-type-def type-id='type-id-673' size-in-bits='64' id='type-id-674'/>
+ <function-decl name='_PyOS_GetOpt' mangled-name='_PyOS_GetOpt' filepath='../gpshead/Python/getopt.c' line='54' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_GetOpt'>
+ <parameter type-id='type-id-7' name='argc' filepath='../gpshead/Python/getopt.c' line='54' column='1'/>
+ <parameter type-id='type-id-203' name='argv' filepath='../gpshead/Python/getopt.c' line='54' column='1'/>
+ <parameter type-id='type-id-202' name='optstring' filepath='../gpshead/Python/getopt.c' line='54' column='1'/>
+ <parameter type-id='type-id-674' name='longopts' filepath='../gpshead/Python/getopt.c' line='55' column='1'/>
+ <parameter type-id='type-id-18' name='longindex' filepath='../gpshead/Python/getopt.c' line='55' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyOS_ResetGetOpt' mangled-name='_PyOS_ResetGetOpt' filepath='../gpshead/Python/getopt.c' line='46' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_ResetGetOpt'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pystrcmp.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyOS_mystricmp' mangled-name='PyOS_mystricmp' filepath='../gpshead/Python/pystrcmp.c' line='20' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_mystricmp'>
+ <parameter type-id='type-id-3' name='s1' filepath='../gpshead/Python/pystrcmp.c' line='20' column='1'/>
+ <parameter type-id='type-id-3' name='s2' filepath='../gpshead/Python/pystrcmp.c' line='20' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyOS_mystrnicmp' mangled-name='PyOS_mystrnicmp' filepath='../gpshead/Python/pystrcmp.c' line='7' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_mystrnicmp'>
+ <parameter type-id='type-id-3' name='s1' filepath='../gpshead/Python/pystrcmp.c' line='7' column='1'/>
+ <parameter type-id='type-id-3' name='s2' filepath='../gpshead/Python/pystrcmp.c' line='7' column='1'/>
+ <parameter type-id='type-id-34' name='size' filepath='../gpshead/Python/pystrcmp.c' line='7' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pystrtod.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyOS_double_to_string' mangled-name='PyOS_double_to_string' filepath='../gpshead/Python/pystrtod.c' line='1244' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_double_to_string'>
+ <parameter type-id='type-id-278' name='val' filepath='../gpshead/Python/pystrtod.c' line='1244' column='1'/>
+ <parameter type-id='type-id-1' name='format_code' filepath='../gpshead/Python/pystrtod.c' line='1245' column='1'/>
+ <parameter type-id='type-id-7' name='precision' filepath='../gpshead/Python/pystrtod.c' line='1246' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Python/pystrtod.c' line='1247' column='1'/>
+ <parameter type-id='type-id-18' name='type' filepath='../gpshead/Python/pystrtod.c' line='1248' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-675' size-in-bits='64' id='type-id-676'/>
+ <function-decl name='_Py_string_to_number_with_underscores' mangled-name='_Py_string_to_number_with_underscores' filepath='../gpshead/Python/pystrtod.c' line='385' 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='../gpshead/Python/pystrtod.c' line='386' column='1'/>
+ <parameter type-id='type-id-34' name='orig_len' filepath='../gpshead/Python/pystrtod.c' line='386' column='1'/>
+ <parameter type-id='type-id-3' name='what' filepath='../gpshead/Python/pystrtod.c' line='386' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/pystrtod.c' line='386' column='1'/>
+ <parameter type-id='type-id-56' name='arg' filepath='../gpshead/Python/pystrtod.c' line='386' column='1'/>
+ <parameter type-id='type-id-676' name='innerfunc' filepath='../gpshead/Python/pystrtod.c' line='387' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyOS_string_to_double' mangled-name='PyOS_string_to_double' filepath='../gpshead/Python/pystrtod.c' line='337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_string_to_double'>
+ <parameter type-id='type-id-3' name='s' filepath='../gpshead/Python/pystrtod.c' line='337' column='1'/>
+ <parameter type-id='type-id-233' name='endptr' filepath='../gpshead/Python/pystrtod.c' line='338' column='1'/>
+ <parameter type-id='type-id-52' name='overflow_exception' filepath='../gpshead/Python/pystrtod.c' line='339' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-decl name='_Py_parse_inf_or_nan' mangled-name='_Py_parse_inf_or_nan' filepath='../gpshead/Python/pystrtod.c' line='28' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_parse_inf_or_nan'>
+ <parameter type-id='type-id-3' name='p' filepath='../gpshead/Python/pystrtod.c' line='28' column='1'/>
+ <parameter type-id='type-id-233' name='endptr' filepath='../gpshead/Python/pystrtod.c' line='28' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-675'>
+ <parameter type-id='type-id-3'/>
+ <parameter type-id='type-id-34'/>
+ <parameter type-id='type-id-56'/>
+ <return type-id='type-id-52'/>
+ </function-type>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/pystrhex.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_Py_strhex_bytes' mangled-name='_Py_strhex_bytes' filepath='../gpshead/Python/pystrhex.c' line='58' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex_bytes'>
+ <parameter type-id='type-id-3' name='argbuf' filepath='../gpshead/Python/pystrhex.c' line='58' column='1'/>
+ <parameter type-id='type-id-236' name='arglen' filepath='../gpshead/Python/pystrhex.c' line='58' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_strhex' mangled-name='_Py_strhex' filepath='../gpshead/Python/pystrhex.c' line='51' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex'>
+ <parameter type-id='type-id-3' name='argbuf' filepath='../gpshead/Python/pystrhex.c' line='58' column='1'/>
+ <parameter type-id='type-id-236' name='arglen' filepath='../gpshead/Python/pystrhex.c' line='58' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/dtoa.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_Py_dg_dtoa' mangled-name='_Py_dg_dtoa' filepath='../gpshead/Python/dtoa.c' line='2243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_dtoa'>
+ <parameter type-id='type-id-278' name='dd' filepath='../gpshead/Python/dtoa.c' line='2243' column='1'/>
+ <parameter type-id='type-id-7' name='mode' filepath='../gpshead/Python/dtoa.c' line='2243' column='1'/>
+ <parameter type-id='type-id-7' name='ndigits' filepath='../gpshead/Python/dtoa.c' line='2243' column='1'/>
+ <parameter type-id='type-id-18' name='decpt' filepath='../gpshead/Python/dtoa.c' line='2244' column='1'/>
+ <parameter type-id='type-id-18' name='sign' filepath='../gpshead/Python/dtoa.c' line='2244' column='1'/>
+ <parameter type-id='type-id-233' name='rve' filepath='../gpshead/Python/dtoa.c' line='2244' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <function-decl name='_Py_dg_freedtoa' mangled-name='_Py_dg_freedtoa' filepath='../gpshead/Python/dtoa.c' line='2197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_freedtoa'>
+ <parameter type-id='type-id-12' name='s' filepath='../gpshead/Python/dtoa.c' line='2197' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_dg_strtod' mangled-name='_Py_dg_strtod' filepath='../gpshead/Python/dtoa.c' line='1434' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_strtod'>
+ <parameter type-id='type-id-3' name='s00' filepath='../gpshead/Python/dtoa.c' line='1434' column='1'/>
+ <parameter type-id='type-id-233' name='se' filepath='../gpshead/Python/dtoa.c' line='1434' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-decl name='_Py_dg_infinity' mangled-name='_Py_dg_infinity' filepath='../gpshead/Python/dtoa.c' line='1425' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_infinity'>
+ <parameter type-id='type-id-7' name='sign' filepath='../gpshead/Python/dtoa.c' line='1425' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ <function-decl name='_Py_dg_stdnan' mangled-name='_Py_dg_stdnan' filepath='../gpshead/Python/dtoa.c' line='1411' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_stdnan'>
+ <parameter type-id='type-id-7' name='sign' filepath='../gpshead/Python/dtoa.c' line='1425' column='1'/>
+ <return type-id='type-id-278'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/formatter_unicode.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_PyComplex_FormatAdvancedWriter' mangled-name='_PyComplex_FormatAdvancedWriter' filepath='../gpshead/Python/formatter_unicode.c' line='1557' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyComplex_FormatAdvancedWriter'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Python/formatter_unicode.c' line='1557' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/formatter_unicode.c' line='1558' column='1'/>
+ <parameter type-id='type-id-52' name='format_spec' filepath='../gpshead/Python/formatter_unicode.c' line='1559' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Python/formatter_unicode.c' line='1560' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Python/formatter_unicode.c' line='1560' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyFloat_FormatAdvancedWriter' mangled-name='_PyFloat_FormatAdvancedWriter' filepath='../gpshead/Python/formatter_unicode.c' line='1518' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_FormatAdvancedWriter'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Python/formatter_unicode.c' line='1557' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/formatter_unicode.c' line='1558' column='1'/>
+ <parameter type-id='type-id-52' name='format_spec' filepath='../gpshead/Python/formatter_unicode.c' line='1559' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Python/formatter_unicode.c' line='1560' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Python/formatter_unicode.c' line='1560' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyLong_FormatAdvancedWriter' mangled-name='_PyLong_FormatAdvancedWriter' filepath='../gpshead/Python/formatter_unicode.c' line='1455' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FormatAdvancedWriter'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Python/formatter_unicode.c' line='1455' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/formatter_unicode.c' line='1456' column='1'/>
+ <parameter type-id='type-id-52' name='format_spec' filepath='../gpshead/Python/formatter_unicode.c' line='1457' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Python/formatter_unicode.c' line='1458' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Python/formatter_unicode.c' line='1458' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyUnicode_FormatAdvancedWriter' mangled-name='_PyUnicode_FormatAdvancedWriter' filepath='../gpshead/Python/formatter_unicode.c' line='1419' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FormatAdvancedWriter'>
+ <parameter type-id='type-id-318' name='writer' filepath='../gpshead/Python/formatter_unicode.c' line='1557' column='1'/>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Python/formatter_unicode.c' line='1558' column='1'/>
+ <parameter type-id='type-id-52' name='format_spec' filepath='../gpshead/Python/formatter_unicode.c' line='1559' column='1'/>
+ <parameter type-id='type-id-34' name='start' filepath='../gpshead/Python/formatter_unicode.c' line='1560' column='1'/>
+ <parameter type-id='type-id-34' name='end' filepath='../gpshead/Python/formatter_unicode.c' line='1560' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/fileutils.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_Py_open_cloexec_works' type-id='type-id-7' mangled-name='_Py_open_cloexec_works' visibility='default' filepath='../gpshead/Python/fileutils.c' line='32' column='1' elf-symbol-id='_Py_open_cloexec_works'/>
+ <function-decl name='_Py_GetLocaleconvNumeric' mangled-name='_Py_GetLocaleconvNumeric' filepath='../gpshead/Python/fileutils.c' line='1792' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetLocaleconvNumeric'>
+ <parameter type-id='type-id-259' name='decimal_point' filepath='../gpshead/Python/fileutils.c' line='1792' column='1'/>
+ <parameter type-id='type-id-259' name='thousands_sep' filepath='../gpshead/Python/fileutils.c' line='1792' column='1'/>
+ <parameter type-id='type-id-241' name='grouping' filepath='../gpshead/Python/fileutils.c' line='1793' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_set_blocking' mangled-name='_Py_set_blocking' filepath='../gpshead/Python/fileutils.c' line='1756' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_blocking'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/fileutils.c' line='1756' column='1'/>
+ <parameter type-id='type-id-7' name='blocking' filepath='../gpshead/Python/fileutils.c' line='1756' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_get_blocking' mangled-name='_Py_get_blocking' filepath='../gpshead/Python/fileutils.c' line='1735' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_blocking'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/fileutils.c' line='1735' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_dup' mangled-name='_Py_dup' filepath='../gpshead/Python/fileutils.c' line='1665' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dup'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/fileutils.c' line='1665' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_wgetcwd' mangled-name='_Py_wgetcwd' filepath='../gpshead/Python/fileutils.c' line='1634' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wgetcwd'>
+ <parameter type-id='type-id-202' name='buf' filepath='../gpshead/Python/fileutils.c' line='1634' column='1'/>
+ <parameter type-id='type-id-62' name='size' filepath='../gpshead/Python/fileutils.c' line='1634' column='1'/>
+ <return type-id='type-id-202'/>
+ </function-decl>
+ <function-decl name='_Py_wrealpath' mangled-name='_Py_wrealpath' filepath='../gpshead/Python/fileutils.c' line='1595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wrealpath'>
+ <parameter type-id='type-id-344' name='path' filepath='../gpshead/Python/fileutils.c' line='1595' column='1'/>
+ <parameter type-id='type-id-202' name='resolved_path' filepath='../gpshead/Python/fileutils.c' line='1596' column='1'/>
+ <parameter type-id='type-id-62' name='resolved_path_size' filepath='../gpshead/Python/fileutils.c' line='1596' column='1'/>
+ <return type-id='type-id-202'/>
+ </function-decl>
+ <function-decl name='_Py_wreadlink' mangled-name='_Py_wreadlink' filepath='../gpshead/Python/fileutils.c' line='1550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wreadlink'>
+ <parameter type-id='type-id-344' name='path' filepath='../gpshead/Python/fileutils.c' line='1550' column='1'/>
+ <parameter type-id='type-id-202' name='buf' filepath='../gpshead/Python/fileutils.c' line='1550' column='1'/>
+ <parameter type-id='type-id-62' name='bufsiz' filepath='../gpshead/Python/fileutils.c' line='1550' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_write_noraise' mangled-name='_Py_write_noraise' filepath='../gpshead/Python/fileutils.c' line='1539' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_write_noraise'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/fileutils.c' line='1539' column='1'/>
+ <parameter type-id='type-id-56' name='buf' filepath='../gpshead/Python/fileutils.c' line='1539' column='1'/>
+ <parameter type-id='type-id-62' name='count' filepath='../gpshead/Python/fileutils.c' line='1539' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_Py_write' mangled-name='_Py_write' filepath='../gpshead/Python/fileutils.c' line='1519' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_write'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/fileutils.c' line='1539' column='1'/>
+ <parameter type-id='type-id-56' name='buf' filepath='../gpshead/Python/fileutils.c' line='1539' column='1'/>
+ <parameter type-id='type-id-62' name='count' filepath='../gpshead/Python/fileutils.c' line='1539' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_Py_read' mangled-name='_Py_read' filepath='../gpshead/Python/fileutils.c' line='1390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_read'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/fileutils.c' line='1390' column='1'/>
+ <parameter type-id='type-id-56' name='buf' filepath='../gpshead/Python/fileutils.c' line='1390' column='1'/>
+ <parameter type-id='type-id-62' name='count' filepath='../gpshead/Python/fileutils.c' line='1390' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_Py_fopen_obj' mangled-name='_Py_fopen_obj' filepath='../gpshead/Python/fileutils.c' line='1308' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fopen_obj'>
+ <parameter type-id='type-id-52' name='path' filepath='../gpshead/Python/fileutils.c' line='1308' column='1'/>
+ <parameter type-id='type-id-3' name='mode' filepath='../gpshead/Python/fileutils.c' line='1308' column='1'/>
+ <return type-id='type-id-124'/>
+ </function-decl>
+ <function-decl name='_Py_fopen' mangled-name='_Py_fopen' filepath='../gpshead/Python/fileutils.c' line='1282' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fopen'>
+ <parameter type-id='type-id-3' name='pathname' filepath='../gpshead/Python/fileutils.c' line='1282' column='1'/>
+ <parameter type-id='type-id-3' name='mode' filepath='../gpshead/Python/fileutils.c' line='1282' column='1'/>
+ <return type-id='type-id-124'/>
+ </function-decl>
+ <function-decl name='_Py_wfopen' mangled-name='_Py_wfopen' filepath='../gpshead/Python/fileutils.c' line='1246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wfopen'>
+ <parameter type-id='type-id-344' name='path' filepath='../gpshead/Python/fileutils.c' line='1246' column='1'/>
+ <parameter type-id='type-id-344' name='mode' filepath='../gpshead/Python/fileutils.c' line='1246' column='1'/>
+ <return type-id='type-id-124'/>
+ </function-decl>
+ <function-decl name='_Py_open_noraise' mangled-name='_Py_open_noraise' filepath='../gpshead/Python/fileutils.c' line='1234' 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='../gpshead/Python/fileutils.c' line='1234' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Python/fileutils.c' line='1234' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_open' mangled-name='_Py_open' filepath='../gpshead/Python/fileutils.c' line='1220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_open'>
+ <parameter type-id='type-id-3' name='pathname' filepath='../gpshead/Python/fileutils.c' line='1234' column='1'/>
+ <parameter type-id='type-id-7' name='flags' filepath='../gpshead/Python/fileutils.c' line='1234' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_set_inheritable_async_safe' mangled-name='_Py_set_inheritable_async_safe' filepath='../gpshead/Python/fileutils.c' line='1156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_inheritable_async_safe'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/fileutils.c' line='1156' column='1'/>
+ <parameter type-id='type-id-7' name='inheritable' filepath='../gpshead/Python/fileutils.c' line='1156' column='1'/>
+ <parameter type-id='type-id-18' name='atomic_flag_works' filepath='../gpshead/Python/fileutils.c' line='1156' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_set_inheritable' mangled-name='_Py_set_inheritable' filepath='../gpshead/Python/fileutils.c' line='1147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_inheritable'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/fileutils.c' line='1156' column='1'/>
+ <parameter type-id='type-id-7' name='inheritable' filepath='../gpshead/Python/fileutils.c' line='1156' column='1'/>
+ <parameter type-id='type-id-18' name='atomic_flag_works' filepath='../gpshead/Python/fileutils.c' line='1156' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_get_inheritable' mangled-name='_Py_get_inheritable' filepath='../gpshead/Python/fileutils.c' line='987' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_inheritable'>
+ <parameter type-id='type-id-7' name='c' filepath='../gpshead/Parser/tokenizer.c' line='1125' column='1'/>
+ <return type-id='type-id-7'/>
+ </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-677'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='st_dev' type-id='type-id-678' 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-679' 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-680' 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-681' 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-682' 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-683' 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-7' 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-678' 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-108' 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-684' 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-685' 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-654' 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-654' 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-654' 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-686' 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-38' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='145' column='1' id='type-id-678'/>
+ <typedef-decl name='__ino_t' type-id='type-id-38' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='148' column='1' id='type-id-679'/>
+ <typedef-decl name='__nlink_t' type-id='type-id-38' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='151' column='1' id='type-id-680'/>
+ <typedef-decl name='__mode_t' type-id='type-id-101' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='150' column='1' id='type-id-681'/>
+ <typedef-decl name='__uid_t' type-id='type-id-101' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='146' column='1' id='type-id-682'/>
+ <typedef-decl name='__gid_t' type-id='type-id-101' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='147' column='1' id='type-id-683'/>
+ <typedef-decl name='__blksize_t' type-id='type-id-31' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='174' column='1' id='type-id-684'/>
+ <typedef-decl name='__blkcnt_t' type-id='type-id-31' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='179' column='1' id='type-id-685'/>
+
+ <array-type-def dimensions='1' type-id='type-id-655' size-in-bits='192' id='type-id-686'>
+ <subrange length='3' type-id='type-id-38' id='type-id-612'/>
+
+ </array-type-def>
+ <pointer-type-def type-id='type-id-677' size-in-bits='64' id='type-id-687'/>
+ <function-decl name='_Py_stat' mangled-name='_Py_stat' filepath='../gpshead/Python/fileutils.c' line='909' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_stat'>
+ <parameter type-id='type-id-52' name='path' filepath='../gpshead/Python/fileutils.c' line='909' column='1'/>
+ <parameter type-id='type-id-687' name='statbuf' filepath='../gpshead/Python/fileutils.c' line='909' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_fstat' mangled-name='_Py_fstat' filepath='../gpshead/Python/fileutils.c' line='881' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fstat'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/fileutils.c' line='881' column='1'/>
+ <parameter type-id='type-id-687' name='status' filepath='../gpshead/Python/fileutils.c' line='881' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_fstat_noraise' mangled-name='_Py_fstat_noraise' filepath='../gpshead/Python/fileutils.c' line='812' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fstat_noraise'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/fileutils.c' line='812' column='1'/>
+ <parameter type-id='type-id-687' name='status' filepath='../gpshead/Python/fileutils.c' line='812' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_EncodeLocaleEx' mangled-name='_Py_EncodeLocaleEx' filepath='../gpshead/Python/fileutils.c' line='722' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeLocaleEx'>
+ <parameter type-id='type-id-344' name='text' filepath='../gpshead/Python/fileutils.c' line='722' column='1'/>
+ <parameter type-id='type-id-233' name='str' filepath='../gpshead/Python/fileutils.c' line='722' column='1'/>
+ <parameter type-id='type-id-381' name='error_pos' filepath='../gpshead/Python/fileutils.c' line='723' column='1'/>
+ <parameter type-id='type-id-241' name='reason' filepath='../gpshead/Python/fileutils.c' line='723' column='1'/>
+ <parameter type-id='type-id-7' name='current_locale' filepath='../gpshead/Python/fileutils.c' line='724' column='1'/>
+ <parameter type-id='type-id-7' name='surrogateescape' filepath='../gpshead/Python/fileutils.c' line='724' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_EncodeLocaleRaw' mangled-name='_Py_EncodeLocaleRaw' filepath='../gpshead/Python/fileutils.c' line='715' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeLocaleRaw'>
+ <parameter type-id='type-id-344' name='text' filepath='../gpshead/Python/fileutils.c' line='715' column='1'/>
+ <parameter type-id='type-id-381' name='error_pos' filepath='../gpshead/Python/fileutils.c' line='715' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <function-decl name='Py_EncodeLocale' mangled-name='Py_EncodeLocale' filepath='../gpshead/Python/fileutils.c' line='706' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_EncodeLocale'>
+ <parameter type-id='type-id-344' name='text' filepath='../gpshead/Python/fileutils.c' line='715' column='1'/>
+ <parameter type-id='type-id-381' name='error_pos' filepath='../gpshead/Python/fileutils.c' line='715' column='1'/>
+ <return type-id='type-id-12'/>
+ </function-decl>
+ <function-decl name='Py_DecodeLocale' mangled-name='Py_DecodeLocale' filepath='../gpshead/Python/fileutils.c' line='535' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_DecodeLocale'>
+ <parameter type-id='type-id-3' name='arg' filepath='../gpshead/Python/fileutils.c' line='535' column='1'/>
+ <parameter type-id='type-id-381' name='wlen' filepath='../gpshead/Python/fileutils.c' line='535' column='1'/>
+ <return type-id='type-id-202'/>
+ </function-decl>
+ <function-decl name='_Py_DecodeLocaleEx' mangled-name='_Py_DecodeLocaleEx' filepath='../gpshead/Python/fileutils.c' line='477' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DecodeLocaleEx'>
+ <parameter type-id='type-id-3' name='arg' filepath='../gpshead/Python/fileutils.c' line='477' column='1'/>
+ <parameter type-id='type-id-203' name='wstr' filepath='../gpshead/Python/fileutils.c' line='477' column='1'/>
+ <parameter type-id='type-id-381' name='wlen' filepath='../gpshead/Python/fileutils.c' line='477' column='1'/>
+ <parameter type-id='type-id-241' name='reason' filepath='../gpshead/Python/fileutils.c' line='478' column='1'/>
+ <parameter type-id='type-id-7' name='current_locale' filepath='../gpshead/Python/fileutils.c' line='479' column='1'/>
+ <parameter type-id='type-id-7' name='surrogateescape' filepath='../gpshead/Python/fileutils.c' line='479' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_ResetForceASCII' mangled-name='_Py_ResetForceASCII' filepath='../gpshead/Python/fileutils.c' line='195' 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='../gpshead/Python/fileutils.c' line='185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetForceASCII'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_device_encoding' mangled-name='_Py_device_encoding' filepath='../gpshead/Python/fileutils.c' line='36' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_device_encoding'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/fileutils.c' line='36' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/dynload_shlib.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_PyImport_DynLoadFiletab' type-id='type-id-225' mangled-name='_PyImport_DynLoadFiletab' visibility='default' filepath='../gpshead/Python/importdl.h' line='9' column='1' elf-symbol-id='_PyImport_DynLoadFiletab'/>
+ <typedef-decl name='dl_funcptr' type-id='type-id-602' filepath='../gpshead/Python/importdl.h' line='20' column='1' id='type-id-688'/>
+ <function-decl name='_PyImport_FindSharedFuncptr' mangled-name='_PyImport_FindSharedFuncptr' filepath='../gpshead/Python/dynload_shlib.c' line='56' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FindSharedFuncptr'>
+ <parameter type-id='type-id-3' name='prefix' filepath='../gpshead/Python/dynload_shlib.c' line='56' column='1'/>
+ <parameter type-id='type-id-3' name='shortname' filepath='../gpshead/Python/dynload_shlib.c' line='57' column='1'/>
+ <parameter type-id='type-id-3' name='pathname' filepath='../gpshead/Python/dynload_shlib.c' line='58' column='1'/>
+ <parameter type-id='type-id-124' name='fp' filepath='../gpshead/Python/dynload_shlib.c' line='58' column='1'/>
+ <return type-id='type-id-688'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='Modules/config.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+
+ <array-type-def dimensions='1' type-id='type-id-552' size-in-bits='4096' id='type-id-689'>
+ <subrange length='32' type-id='type-id-38' id='type-id-523'/>
+
+ </array-type-def>
+ <var-decl name='_PyImport_Inittab' type-id='type-id-689' mangled-name='_PyImport_Inittab' visibility='default' filepath='Modules/config.c' line='59' column='1' elf-symbol-id='_PyImport_Inittab'/>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/getpath.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_PyPathConfig_Calculate' mangled-name='_PyPathConfig_Calculate' filepath='../gpshead/Modules/getpath.c' line='990' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyPathConfig_Calculate'>
+ <parameter type-id='type-id-560' name='config' filepath='../gpshead/Modules/getpath.c' line='990' column='1'/>
+ <parameter type-id='type-id-559' name='core_config' filepath='../gpshead/Modules/getpath.c' line='990' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/main.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <pointer-type-def type-id='type-id-203' size-in-bits='64' id='type-id-690'/>
+ <function-decl name='Py_GetArgcArgv' mangled-name='Py_GetArgcArgv' filepath='../gpshead/Modules/main.c' line='3115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetArgcArgv'>
+ <parameter type-id='type-id-18' name='argc' filepath='../gpshead/Modules/main.c' line='3115' column='1'/>
+ <parameter type-id='type-id-690' name='argv' filepath='../gpshead/Modules/main.c' line='3115' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_UnixMain' mangled-name='_Py_UnixMain' filepath='../gpshead/Modules/main.c' line='3096' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_UnixMain'>
+ <parameter type-id='type-id-7' name='argc' filepath='../gpshead/Modules/main.c' line='3096' column='1'/>
+ <parameter type-id='type-id-233' name='argv' filepath='../gpshead/Modules/main.c' line='3096' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='Py_Main' mangled-name='Py_Main' filepath='../gpshead/Modules/main.c' line='3084' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Main'>
+ <parameter type-id='type-id-7' name='argc' filepath='../gpshead/Modules/main.c' line='3084' column='1'/>
+ <parameter type-id='type-id-203' name='argv' filepath='../gpshead/Modules/main.c' line='3084' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyMainInterpreterConfig_Read' mangled-name='_PyMainInterpreterConfig_Read' filepath='../gpshead/Modules/main.c' line='2777' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMainInterpreterConfig_Read'>
+ <parameter type-id='type-id-667' name='main_config' filepath='../gpshead/Modules/main.c' line='2777' column='1'/>
+ <parameter type-id='type-id-559' name='config' filepath='../gpshead/Modules/main.c' line='2778' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <function-decl name='_PyMainInterpreterConfig_AsDict' mangled-name='_PyMainInterpreterConfig_AsDict' filepath='../gpshead/Modules/main.c' line='2720' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMainInterpreterConfig_AsDict'>
+ <parameter type-id='type-id-627' name='config' filepath='../gpshead/Modules/main.c' line='2720' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyMainInterpreterConfig_Copy' mangled-name='_PyMainInterpreterConfig_Copy' filepath='../gpshead/Modules/main.c' line='2687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMainInterpreterConfig_Copy'>
+ <parameter type-id='type-id-667' name='config' filepath='../gpshead/Modules/main.c' line='2687' column='1'/>
+ <parameter type-id='type-id-627' name='config2' filepath='../gpshead/Modules/main.c' line='2688' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyMainInterpreterConfig_Clear' mangled-name='_PyMainInterpreterConfig_Clear' filepath='../gpshead/Modules/main.c' line='2648' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMainInterpreterConfig_Clear'>
+ <parameter type-id='type-id-667' name='config' filepath='../gpshead/Modules/main.c' line='2648' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyCoreConfig_AsDict' mangled-name='_PyCoreConfig_AsDict' filepath='../gpshead/Modules/main.c' line='2559' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCoreConfig_AsDict'>
+ <parameter type-id='type-id-559' name='config' filepath='../gpshead/Modules/main.c' line='2559' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-63' size-in-bits='64' id='type-id-691'/>
+ <function-decl name='_PyCoreConfig_Copy' mangled-name='_PyCoreConfig_Copy' filepath='../gpshead/Modules/main.c' line='2491' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCoreConfig_Copy'>
+ <parameter type-id='type-id-691' name='config' filepath='../gpshead/Modules/main.c' line='2491' column='1'/>
+ <parameter type-id='type-id-559' name='config2' filepath='../gpshead/Modules/main.c' line='2491' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyCoreConfig_Clear' mangled-name='_PyCoreConfig_Clear' filepath='../gpshead/Modules/main.c' line='2453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCoreConfig_Clear'>
+ <parameter type-id='type-id-691' name='config' filepath='../gpshead/Modules/main.c' line='2453' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyCoreConfig_Read' mangled-name='_PyCoreConfig_Read' filepath='../gpshead/Modules/main.c' line='2350' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCoreConfig_Read'>
+ <parameter type-id='type-id-691' name='config' filepath='../gpshead/Modules/main.c' line='2350' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <function-decl name='_Py_Initialize_ReadEnvVarsNoAlloc' mangled-name='_Py_Initialize_ReadEnvVarsNoAlloc' filepath='../gpshead/Modules/main.c' line='1844' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Initialize_ReadEnvVarsNoAlloc'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyCoreConfig_SetGlobalConfig' mangled-name='_PyCoreConfig_SetGlobalConfig' filepath='../gpshead/Modules/main.c' line='1513' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCoreConfig_SetGlobalConfig'>
+ <parameter type-id='type-id-559' name='config' filepath='../gpshead/Modules/main.c' line='1513' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyCoreConfig_GetGlobalConfig' mangled-name='_PyCoreConfig_GetGlobalConfig' filepath='../gpshead/Modules/main.c' line='1474' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCoreConfig_GetGlobalConfig'>
+ <parameter type-id='type-id-691' name='config' filepath='../gpshead/Modules/main.c' line='2453' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_GetGlobalVariablesAsDict' mangled-name='_Py_GetGlobalVariablesAsDict' filepath='../gpshead/Modules/main.c' line='1403' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetGlobalVariablesAsDict'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/gcmodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyObject_GC_Del' mangled-name='PyObject_GC_Del' filepath='../gpshead/Modules/gcmodule.c' line='1767' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_Del'>
+ <parameter type-id='type-id-56' name='op' filepath='../gpshead/Modules/gcmodule.c' line='1767' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyObject_GC_Resize' mangled-name='_PyObject_GC_Resize' filepath='../gpshead/Modules/gcmodule.c' line='1751' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_Resize'>
+ <parameter type-id='type-id-342' name='op' filepath='../gpshead/Modules/gcmodule.c' line='1751' column='1'/>
+ <parameter type-id='type-id-34' name='nitems' filepath='../gpshead/Modules/gcmodule.c' line='1751' column='1'/>
+ <return type-id='type-id-342'/>
+ </function-decl>
+ <function-decl name='_PyObject_GC_NewVar' mangled-name='_PyObject_GC_NewVar' filepath='../gpshead/Modules/gcmodule.c' line='1734' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_NewVar'>
+ <parameter type-id='type-id-279' name='tp' filepath='../gpshead/Objects/object.c' line='262' column='1'/>
+ <parameter type-id='type-id-34' name='nitems' filepath='../gpshead/Objects/object.c' line='262' column='1'/>
+ <return type-id='type-id-342'/>
+ </function-decl>
+ <function-decl name='_PyObject_GC_New' mangled-name='_PyObject_GC_New' filepath='../gpshead/Modules/gcmodule.c' line='1725' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_New'>
+ <parameter type-id='type-id-279' name='tp' filepath='../gpshead/Objects/object.c' line='252' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_GC_Calloc' mangled-name='_PyObject_GC_Calloc' filepath='../gpshead/Modules/gcmodule.c' line='1719' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_Calloc'>
+ <parameter type-id='type-id-62' name='basicsize' filepath='../gpshead/Modules/gcmodule.c' line='1719' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyObject_GC_Malloc' mangled-name='_PyObject_GC_Malloc' filepath='../gpshead/Modules/gcmodule.c' line='1713' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_Malloc'>
+ <parameter type-id='type-id-62' name='basicsize' filepath='../gpshead/Modules/gcmodule.c' line='1719' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyObject_GC_UnTrack' mangled-name='PyObject_GC_UnTrack' filepath='../gpshead/Modules/gcmodule.c' line='1672' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_UnTrack'>
+ <parameter type-id='type-id-56' name='op' filepath='../gpshead/Modules/gcmodule.c' line='1672' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyObject_GC_Track' mangled-name='PyObject_GC_Track' filepath='../gpshead/Modules/gcmodule.c' line='1666' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_Track'>
+ <parameter type-id='type-id-56' name='op' filepath='../gpshead/Modules/gcmodule.c' line='1672' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyGC_Dump' mangled-name='_PyGC_Dump' filepath='../gpshead/Modules/gcmodule.c' line='1652' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGC_Dump'>
+ <parameter type-id='type-id-604' name='g' filepath='../gpshead/Modules/gcmodule.c' line='1652' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyGC_Fini' mangled-name='_PyGC_Fini' filepath='../gpshead/Modules/gcmodule.c' line='1645' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGC_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyGC_DumpShutdownStats' mangled-name='_PyGC_DumpShutdownStats' filepath='../gpshead/Modules/gcmodule.c' line='1609' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGC_DumpShutdownStats'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyGC_CollectNoFail' mangled-name='_PyGC_CollectNoFail' filepath='../gpshead/Modules/gcmodule.c' line='1588' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGC_CollectNoFail'>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_PyGC_CollectIfEnabled' mangled-name='_PyGC_CollectIfEnabled' filepath='../gpshead/Modules/gcmodule.c' line='1579' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGC_CollectIfEnabled'>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyGC_Collect' mangled-name='PyGC_Collect' filepath='../gpshead/Modules/gcmodule.c' line='1560' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGC_Collect'>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='PyInit_gc' mangled-name='PyInit_gc' filepath='../gpshead/Modules/gcmodule.c' line='1521' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_gc'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-598' size-in-bits='64' id='type-id-692'/>
+ <function-decl name='_PyGC_Initialize' mangled-name='_PyGC_Initialize' filepath='../gpshead/Modules/gcmodule.c' line='60' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGC_Initialize'>
+ <parameter type-id='type-id-692' name='state' filepath='../gpshead/Modules/gcmodule.c' line='60' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/posixmodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit_posix' mangled-name='PyInit_posix' filepath='../gpshead/Modules/posixmodule.c' line='13472' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_posix'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyOS_FSPath' mangled-name='PyOS_FSPath' filepath='../gpshead/Modules/posixmodule.c' line='12545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_FSPath'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/object.c' line='585' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_Py_Gid_Converter' mangled-name='_Py_Gid_Converter' filepath='../gpshead/Modules/posixmodule.c' line='628' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Gid_Converter'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Modules/posixmodule.c' line='628' column='1'/>
+ <parameter type-id='type-id-56' name='p' filepath='../gpshead/Modules/posixmodule.c' line='628' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_Uid_Converter' mangled-name='_Py_Uid_Converter' filepath='../gpshead/Modules/posixmodule.c' line='522' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Uid_Converter'>
+ <parameter type-id='type-id-52' name='obj' filepath='../gpshead/Modules/posixmodule.c' line='628' column='1'/>
+ <parameter type-id='type-id-56' name='p' filepath='../gpshead/Modules/posixmodule.c' line='628' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <typedef-decl name='gid_t' type-id='type-id-683' filepath='/usr/include/x86_64-linux-gnu/sys/types.h' line='64' column='1' id='type-id-693'/>
+ <function-decl name='_PyLong_FromGid' mangled-name='_PyLong_FromGid' filepath='../gpshead/Modules/posixmodule.c' line='514' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromGid'>
+ <parameter type-id='type-id-693' name='gid' filepath='../gpshead/Modules/posixmodule.c' line='514' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <typedef-decl name='uid_t' type-id='type-id-682' filepath='/usr/include/x86_64-linux-gnu/sys/types.h' line='79' column='1' id='type-id-694'/>
+ <function-decl name='_PyLong_FromUid' mangled-name='_PyLong_FromUid' filepath='../gpshead/Modules/posixmodule.c' line='506' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromUid'>
+ <parameter type-id='type-id-694' name='uid' filepath='../gpshead/Modules/posixmodule.c' line='506' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyOS_AfterFork' mangled-name='PyOS_AfterFork' filepath='../gpshead/Modules/posixmodule.c' line='477' 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='../gpshead/Modules/posixmodule.c' line='451' 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_AfterFork_Parent' mangled-name='PyOS_AfterFork_Parent' filepath='../gpshead/Modules/posixmodule.c' line='442' 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='PyOS_BeforeFork' mangled-name='PyOS_BeforeFork' filepath='../gpshead/Modules/posixmodule.c' line='434' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_BeforeFork'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/errnomodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit_errno' mangled-name='PyInit_errno' filepath='../gpshead/Modules/errnomodule.c' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_errno'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/pwdmodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit_pwd' mangled-name='PyInit_pwd' filepath='../gpshead/Modules/pwdmodule.c' line='231' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_pwd'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_sre.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit__sre' mangled-name='PyInit__sre' filepath='../gpshead/Modules/_sre.c' line='2781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__sre'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_codecsmodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit__codecs' mangled-name='PyInit__codecs' filepath='../gpshead/Modules/_codecsmodule.c' line='1135' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__codecs'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_weakref.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit__weakref' mangled-name='PyInit__weakref' filepath='../gpshead/Modules/_weakref.c' line='153' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__weakref'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_functoolsmodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit__functools' mangled-name='PyInit__functools' filepath='../gpshead/Modules/_functoolsmodule.c' line='1389' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__functools'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_operator.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit__operator' mangled-name='PyInit__operator' filepath='../gpshead/Modules/_operator.c' line='1734' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__operator'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_collectionsmodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit__collections' mangled-name='PyInit__collections' filepath='../gpshead/Modules/_collectionsmodule.c' line='2391' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__collections'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_abc.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit__abc' mangled-name='PyInit__abc' filepath='../gpshead/Modules/_abc.c' line='824' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__abc'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/itertoolsmodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit_itertools' mangled-name='PyInit_itertools' filepath='../gpshead/Modules/itertoolsmodule.c' line='4666' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_itertools'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/atexitmodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit_atexit' mangled-name='PyInit_atexit' filepath='../gpshead/Modules/atexitmodule.c' line='351' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_atexit'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/signalmodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_PyOS_IsMainThread' mangled-name='_PyOS_IsMainThread' filepath='../gpshead/Modules/signalmodule.c' line='1630' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_IsMainThread'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PySignal_AfterFork' mangled-name='_PySignal_AfterFork' filepath='../gpshead/Modules/signalmodule.c' line='1619' 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='../gpshead/Modules/signalmodule.c' line='1595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_InterruptOccurred'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyOS_FiniInterrupts' mangled-name='PyOS_FiniInterrupts' filepath='../gpshead/Modules/signalmodule.c' line='1589' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_FiniInterrupts'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyOS_InitInterrupts' mangled-name='PyOS_InitInterrupts' filepath='../gpshead/Modules/signalmodule.c' line='1580' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_InitInterrupts'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_SetInterrupt' mangled-name='PyErr_SetInterrupt' filepath='../gpshead/Modules/signalmodule.c' line='1571' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetInterrupt'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='PyErr_CheckSignals' mangled-name='PyErr_CheckSignals' filepath='../gpshead/Modules/signalmodule.c' line='1511' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_CheckSignals'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyInit__signal' mangled-name='PyInit__signal' filepath='../gpshead/Modules/signalmodule.c' line='1213' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__signal'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PySignal_SetWakeupFd' mangled-name='PySignal_SetWakeupFd' filepath='../gpshead/Modules/signalmodule.c' line='656' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySignal_SetWakeupFd'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Python/fileutils.c' line='1735' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_stat.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit__stat' mangled-name='PyInit__stat' filepath='../gpshead/Modules/_stat.c' line='508' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__stat'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/timemodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit_time' mangled-name='PyInit_time' filepath='../gpshead/Modules/timemodule.c' line='1757' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_time'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_threadmodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit__thread' mangled-name='PyInit__thread' filepath='../gpshead/Modules/_threadmodule.c' line='1348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__thread'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_localemodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit__locale' mangled-name='PyInit__locale' filepath='../gpshead/Modules/_localemodule.c' line='730' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__locale'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_io/_iomodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='_PyIO_str_close' type-id='type-id-52' mangled-name='_PyIO_str_close' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='157' column='1' elf-symbol-id='_PyIO_str_close'/>
+ <var-decl name='_PyIO_str_closed' type-id='type-id-52' mangled-name='_PyIO_str_closed' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='158' column='1' elf-symbol-id='_PyIO_str_closed'/>
+ <var-decl name='_PyIO_str_decode' type-id='type-id-52' mangled-name='_PyIO_str_decode' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='159' column='1' elf-symbol-id='_PyIO_str_decode'/>
+ <var-decl name='_PyIO_str_encode' type-id='type-id-52' mangled-name='_PyIO_str_encode' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='160' column='1' elf-symbol-id='_PyIO_str_encode'/>
+ <var-decl name='_PyIO_str_fileno' type-id='type-id-52' mangled-name='_PyIO_str_fileno' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='161' column='1' elf-symbol-id='_PyIO_str_fileno'/>
+ <var-decl name='_PyIO_str_flush' type-id='type-id-52' mangled-name='_PyIO_str_flush' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='162' column='1' elf-symbol-id='_PyIO_str_flush'/>
+ <var-decl name='_PyIO_str_getstate' type-id='type-id-52' mangled-name='_PyIO_str_getstate' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='163' column='1' elf-symbol-id='_PyIO_str_getstate'/>
+ <var-decl name='_PyIO_str_isatty' type-id='type-id-52' mangled-name='_PyIO_str_isatty' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='164' column='1' elf-symbol-id='_PyIO_str_isatty'/>
+ <var-decl name='_PyIO_str_newlines' type-id='type-id-52' mangled-name='_PyIO_str_newlines' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='165' column='1' elf-symbol-id='_PyIO_str_newlines'/>
+ <var-decl name='_PyIO_str_nl' type-id='type-id-52' mangled-name='_PyIO_str_nl' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='166' column='1' elf-symbol-id='_PyIO_str_nl'/>
+ <var-decl name='_PyIO_str_peek' type-id='type-id-52' mangled-name='_PyIO_str_peek' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='167' column='1' elf-symbol-id='_PyIO_str_peek'/>
+ <var-decl name='_PyIO_str_read' type-id='type-id-52' mangled-name='_PyIO_str_read' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='168' column='1' elf-symbol-id='_PyIO_str_read'/>
+ <var-decl name='_PyIO_str_read1' type-id='type-id-52' mangled-name='_PyIO_str_read1' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='169' column='1' elf-symbol-id='_PyIO_str_read1'/>
+ <var-decl name='_PyIO_str_readable' type-id='type-id-52' mangled-name='_PyIO_str_readable' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='170' column='1' elf-symbol-id='_PyIO_str_readable'/>
+ <var-decl name='_PyIO_str_readall' type-id='type-id-52' mangled-name='_PyIO_str_readall' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='171' column='1' elf-symbol-id='_PyIO_str_readall'/>
+ <var-decl name='_PyIO_str_readinto' type-id='type-id-52' mangled-name='_PyIO_str_readinto' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='172' column='1' elf-symbol-id='_PyIO_str_readinto'/>
+ <var-decl name='_PyIO_str_readline' type-id='type-id-52' mangled-name='_PyIO_str_readline' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='173' column='1' elf-symbol-id='_PyIO_str_readline'/>
+ <var-decl name='_PyIO_str_reset' type-id='type-id-52' mangled-name='_PyIO_str_reset' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='174' column='1' elf-symbol-id='_PyIO_str_reset'/>
+ <var-decl name='_PyIO_str_seek' type-id='type-id-52' mangled-name='_PyIO_str_seek' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='175' column='1' elf-symbol-id='_PyIO_str_seek'/>
+ <var-decl name='_PyIO_str_seekable' type-id='type-id-52' mangled-name='_PyIO_str_seekable' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='176' column='1' elf-symbol-id='_PyIO_str_seekable'/>
+ <var-decl name='_PyIO_str_setstate' type-id='type-id-52' mangled-name='_PyIO_str_setstate' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='177' column='1' elf-symbol-id='_PyIO_str_setstate'/>
+ <var-decl name='_PyIO_str_tell' type-id='type-id-52' mangled-name='_PyIO_str_tell' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='178' column='1' elf-symbol-id='_PyIO_str_tell'/>
+ <var-decl name='_PyIO_str_truncate' type-id='type-id-52' mangled-name='_PyIO_str_truncate' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='179' column='1' elf-symbol-id='_PyIO_str_truncate'/>
+ <var-decl name='_PyIO_str_writable' type-id='type-id-52' mangled-name='_PyIO_str_writable' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='180' column='1' elf-symbol-id='_PyIO_str_writable'/>
+ <var-decl name='_PyIO_str_write' type-id='type-id-52' mangled-name='_PyIO_str_write' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='181' column='1' elf-symbol-id='_PyIO_str_write'/>
+ <var-decl name='_PyIO_empty_str' type-id='type-id-52' mangled-name='_PyIO_empty_str' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='183' column='1' elf-symbol-id='_PyIO_empty_str'/>
+ <var-decl name='_PyIO_empty_bytes' type-id='type-id-52' mangled-name='_PyIO_empty_bytes' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='184' column='1' elf-symbol-id='_PyIO_empty_bytes'/>
+ <var-decl name='_PyIO_Module' type-id='type-id-339' mangled-name='_PyIO_Module' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='138' column='1' elf-symbol-id='_PyIO_Module'/>
+ <function-decl name='PyInit__io' mangled-name='PyInit__io' filepath='../gpshead/Modules/_io/_iomodule.c' line='638' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__io'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-695' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='140' column='1' id='type-id-696'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='initialized' type-id='type-id-7' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='141' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='locale_module' type-id='type-id-52' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='142' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='unsupported_operation' type-id='type-id-52' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='144' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='_PyIO_State' type-id='type-id-696' filepath='../gpshead/Modules/_io/_iomodule.h' line='145' column='1' id='type-id-695'/>
+ <pointer-type-def type-id='type-id-695' size-in-bits='64' id='type-id-697'/>
+ <function-decl name='_PyIO_get_locale_module' mangled-name='_PyIO_get_locale_module' filepath='../gpshead/Modules/_io/_iomodule.c' line='560' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyIO_get_locale_module'>
+ <parameter type-id='type-id-697' name='state' filepath='../gpshead/Modules/_io/_iomodule.c' line='560' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyIO_get_module_state' mangled-name='_PyIO_get_module_state' filepath='../gpshead/Modules/_io/_iomodule.c' line='546' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyIO_get_module_state'>
+ <return type-id='type-id-697'/>
+ </function-decl>
+ <typedef-decl name='off_t' type-id='type-id-113' filepath='/usr/include/stdio.h' line='65' column='1' id='type-id-698'/>
+ <typedef-decl name='Py_off_t' type-id='type-id-698' filepath='../gpshead/Modules/_io/_iomodule.h' line='104' column='1' id='type-id-699'/>
+ <function-decl name='PyNumber_AsOff_t' mangled-name='PyNumber_AsOff_t' filepath='../gpshead/Modules/_io/_iomodule.c' line='501' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_AsOff_t'>
+ <parameter type-id='type-id-52' name='item' filepath='../gpshead/Modules/_io/_iomodule.c' line='501' column='1'/>
+ <parameter type-id='type-id-52' name='err' filepath='../gpshead/Modules/_io/_iomodule.c' line='501' column='1'/>
+ <return type-id='type-id-699'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_io/iobase.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyIOBase_Type' type-id='type-id-245' mangled-name='PyIOBase_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='6' column='1' elf-symbol-id='PyIOBase_Type'/>
+ <var-decl name='PyRawIOBase_Type' type-id='type-id-245' mangled-name='PyRawIOBase_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='7' column='1' elf-symbol-id='PyRawIOBase_Type'/>
+ <function-decl name='_PyIOBase_check_writable' mangled-name='_PyIOBase_check_writable' filepath='../gpshead/Modules/_io/iobase.c' line='437' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyIOBase_check_writable'>
+ <parameter type-id='type-id-52' name='func' filepath='../gpshead/Objects/classobject.c' line='48' column='1'/>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/classobject.c' line='48' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyIOBase_check_readable' mangled-name='_PyIOBase_check_readable' filepath='../gpshead/Modules/_io/iobase.c' line='404' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyIOBase_check_readable'>
+ <parameter type-id='type-id-52' name='func' filepath='../gpshead/Objects/classobject.c' line='48' column='1'/>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/classobject.c' line='48' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyIOBase_check_seekable' mangled-name='_PyIOBase_check_seekable' filepath='../gpshead/Modules/_io/iobase.c' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyIOBase_check_seekable'>
+ <parameter type-id='type-id-52' name='func' filepath='../gpshead/Objects/classobject.c' line='48' column='1'/>
+ <parameter type-id='type-id-52' name='self' filepath='../gpshead/Objects/classobject.c' line='48' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyIOBase_finalize' mangled-name='_PyIOBase_finalize' filepath='../gpshead/Modules/_io/iobase.c' line='299' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyIOBase_finalize'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/listobject.c' line='2444' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyIOBase_check_closed' mangled-name='_PyIOBase_check_closed' filepath='../gpshead/Modules/_io/iobase.c' line='200' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyIOBase_check_closed'>
+ <parameter type-id='type-id-52' name='v' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <parameter type-id='type-id-52' name='w' filepath='../gpshead/Objects/abstract.c' line='1165' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_io/fileio.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyFileIO_Type' type-id='type-id-245' mangled-name='PyFileIO_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='12' column='1' elf-symbol-id='PyFileIO_Type'/>
+ <function-decl name='_PyFileIO_closed' mangled-name='_PyFileIO_closed' filepath='../gpshead/Modules/_io/fileio.c' line='81' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFileIO_closed'>
+ <parameter type-id='type-id-52' name='o' filepath='../gpshead/Objects/abstract.c' line='2064' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_io/bytesio.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyBytesIO_Type' type-id='type-id-245' mangled-name='PyBytesIO_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='13' column='1' elf-symbol-id='PyBytesIO_Type'/>
+ <var-decl name='_PyBytesIOBuffer_Type' type-id='type-id-245' mangled-name='_PyBytesIOBuffer_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='186' column='1' elf-symbol-id='_PyBytesIOBuffer_Type'/>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_io/bufferedio.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyBufferedIOBase_Type' type-id='type-id-245' mangled-name='PyBufferedIOBase_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='8' column='1' elf-symbol-id='PyBufferedIOBase_Type'/>
+ <var-decl name='PyBufferedReader_Type' type-id='type-id-245' mangled-name='PyBufferedReader_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='15' column='1' elf-symbol-id='PyBufferedReader_Type'/>
+ <var-decl name='PyBufferedWriter_Type' type-id='type-id-245' mangled-name='PyBufferedWriter_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='16' column='1' elf-symbol-id='PyBufferedWriter_Type'/>
+ <var-decl name='PyBufferedRWPair_Type' type-id='type-id-245' mangled-name='PyBufferedRWPair_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='17' column='1' elf-symbol-id='PyBufferedRWPair_Type'/>
+ <var-decl name='PyBufferedRandom_Type' type-id='type-id-245' mangled-name='PyBufferedRandom_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='18' column='1' elf-symbol-id='PyBufferedRandom_Type'/>
+ <function-decl name='_PyIO_trap_eintr' mangled-name='_PyIO_trap_eintr' filepath='../gpshead/Modules/_io/bufferedio.c' line='773' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyIO_trap_eintr'>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_io/textio.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyTextIOBase_Type' type-id='type-id-245' mangled-name='PyTextIOBase_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='9' column='1' elf-symbol-id='PyTextIOBase_Type'/>
+ <var-decl name='PyIncrementalNewlineDecoder_Type' type-id='type-id-245' mangled-name='PyIncrementalNewlineDecoder_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='20' column='1' elf-symbol-id='PyIncrementalNewlineDecoder_Type'/>
+ <var-decl name='PyTextIOWrapper_Type' type-id='type-id-245' mangled-name='PyTextIOWrapper_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='19' column='1' elf-symbol-id='PyTextIOWrapper_Type'/>
+ <function-decl name='_PyIO_find_line_ending' mangled-name='_PyIO_find_line_ending' filepath='../gpshead/Modules/_io/textio.c' line='1928' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyIO_find_line_ending'>
+ <parameter type-id='type-id-7' name='translated' filepath='../gpshead/Modules/_io/textio.c' line='1929' column='1'/>
+ <parameter type-id='type-id-7' name='universal' filepath='../gpshead/Modules/_io/textio.c' line='1929' column='1'/>
+ <parameter type-id='type-id-52' name='readnl' filepath='../gpshead/Modules/_io/textio.c' line='1929' column='1'/>
+ <parameter type-id='type-id-7' name='kind' filepath='../gpshead/Modules/_io/textio.c' line='1930' column='1'/>
+ <parameter type-id='type-id-3' name='start' filepath='../gpshead/Modules/_io/textio.c' line='1930' column='1'/>
+ <parameter type-id='type-id-3' name='end' filepath='../gpshead/Modules/_io/textio.c' line='1930' column='1'/>
+ <parameter type-id='type-id-172' name='consumed' filepath='../gpshead/Modules/_io/textio.c' line='1930' column='1'/>
+ <return type-id='type-id-34'/>
+ </function-decl>
+ <function-decl name='_PyIncrementalNewlineDecoder_decode' mangled-name='_PyIncrementalNewlineDecoder_decode' filepath='../gpshead/Modules/_io/textio.c' line='304' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyIncrementalNewlineDecoder_decode'>
+ <parameter type-id='type-id-52' name='myself' filepath='../gpshead/Modules/_io/textio.c' line='304' column='1'/>
+ <parameter type-id='type-id-52' name='input' filepath='../gpshead/Modules/_io/textio.c' line='305' column='1'/>
+ <parameter type-id='type-id-7' name='final' filepath='../gpshead/Modules/_io/textio.c' line='305' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_io/stringio.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <var-decl name='PyStringIO_Type' type-id='type-id-245' mangled-name='PyStringIO_Type' visibility='default' filepath='../gpshead/Modules/_io/_iomodule.h' line='14' column='1' elf-symbol-id='PyStringIO_Type'/>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/zipimport.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit_zipimport' mangled-name='PyInit_zipimport' filepath='../gpshead/Modules/zipimport.c' line='1626' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_zipimport'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/faulthandler.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='_PyFaulthandler_Fini' mangled-name='_PyFaulthandler_Fini' filepath='../gpshead/Modules/faulthandler.c' line='1364' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFaulthandler_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyFaulthandler_Init' mangled-name='_PyFaulthandler_Init' filepath='../gpshead/Modules/faulthandler.c' line='1323' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFaulthandler_Init'>
+ <parameter type-id='type-id-7' name='enable' filepath='../gpshead/Modules/faulthandler.c' line='1323' column='1'/>
+ <return type-id='type-id-554'/>
+ </function-decl>
+ <function-decl name='PyInit_faulthandler' mangled-name='PyInit_faulthandler' filepath='../gpshead/Modules/faulthandler.c' line='1262' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_faulthandler'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/_tracemalloc.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <typedef-decl name='uintptr_t' type-id='type-id-38' filepath='/usr/include/stdint.h' line='90' column='1' id='type-id-700'/>
+ <function-decl name='_PyTraceMalloc_GetTraceback' mangled-name='_PyTraceMalloc_GetTraceback' filepath='../gpshead/Modules/_tracemalloc.c' line='1725' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTraceMalloc_GetTraceback'>
+ <parameter type-id='type-id-101' name='domain' filepath='../gpshead/Modules/_tracemalloc.c' line='1725' column='1'/>
+ <parameter type-id='type-id-700' name='ptr' filepath='../gpshead/Modules/_tracemalloc.c' line='1725' column='1'/>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='PyTraceMalloc_Untrack' mangled-name='PyTraceMalloc_Untrack' filepath='../gpshead/Modules/_tracemalloc.c' line='1709' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTraceMalloc_Untrack'>
+ <parameter type-id='type-id-101' name='domain' filepath='../gpshead/Modules/_tracemalloc.c' line='1709' column='1'/>
+ <parameter type-id='type-id-700' name='ptr' filepath='../gpshead/Modules/_tracemalloc.c' line='1709' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyTraceMalloc_Track' mangled-name='PyTraceMalloc_Track' filepath='../gpshead/Modules/_tracemalloc.c' line='1686' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTraceMalloc_Track'>
+ <parameter type-id='type-id-101' name='domain' filepath='../gpshead/Modules/_tracemalloc.c' line='1686' column='1'/>
+ <parameter type-id='type-id-700' name='ptr' filepath='../gpshead/Modules/_tracemalloc.c' line='1686' column='1'/>
+ <parameter type-id='type-id-62' name='size' filepath='../gpshead/Modules/_tracemalloc.c' line='1687' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_PyTraceMalloc_Fini' mangled-name='_PyTraceMalloc_Fini' filepath='../gpshead/Modules/_tracemalloc.c' line='1679' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTraceMalloc_Fini'>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_PyTraceMalloc_Init' mangled-name='_PyTraceMalloc_Init' filepath='../gpshead/Modules/_tracemalloc.c' line='1668' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTraceMalloc_Init'>
+ <parameter type-id='type-id-7' name='c' filepath='../gpshead/Parser/tokenizer.c' line='1125' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='PyInit__tracemalloc' mangled-name='PyInit__tracemalloc' filepath='../gpshead/Modules/_tracemalloc.c' line='1651' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__tracemalloc'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ <function-decl name='_PyMem_DumpTraceback' mangled-name='_PyMem_DumpTraceback' filepath='../gpshead/Modules/_tracemalloc.c' line='1488' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_DumpTraceback'>
+ <parameter type-id='type-id-7' name='fd' filepath='../gpshead/Modules/_tracemalloc.c' line='1488' column='1'/>
+ <parameter type-id='type-id-56' name='ptr' filepath='../gpshead/Modules/_tracemalloc.c' line='1488' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/hashtable.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <class-decl name='_Py_hashtable_t' size-in-bits='576' is-struct='yes' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='92' column='1' id='type-id-701'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='num_buckets' type-id='type-id-62' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='93' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='entries' type-id='type-id-62' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='94' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='buckets' type-id='type-id-702' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='95' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='192'>
+ <var-decl name='key_size' type-id='type-id-62' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='96' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='256'>
+ <var-decl name='data_size' type-id='type-id-62' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='97' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='320'>
+ <var-decl name='hash_func' type-id='type-id-703' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='99' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='384'>
+ <var-decl name='compare_func' type-id='type-id-704' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='100' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='448'>
+ <var-decl name='alloc' type-id='type-id-705' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='101' 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-706' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='12' column='1' id='type-id-707'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='head' type-id='type-id-708' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='13' column='1'/>
+ </data-member>
+ </class-decl>
+ <class-decl name='_Py_slist_item_s' size-in-bits='64' is-struct='yes' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='8' column='1' id='type-id-709'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='next' type-id='type-id-710' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='9' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-709' size-in-bits='64' id='type-id-710'/>
+ <typedef-decl name='_Py_slist_item_t' type-id='type-id-709' filepath='../gpshead/Modules/hashtable.h' line='10' column='1' id='type-id-711'/>
+ <pointer-type-def type-id='type-id-711' size-in-bits='64' id='type-id-708'/>
+ <typedef-decl name='_Py_slist_t' type-id='type-id-707' filepath='../gpshead/Modules/hashtable.h' line='14' column='1' id='type-id-706'/>
+ <pointer-type-def type-id='type-id-706' size-in-bits='64' id='type-id-702'/>
+ <typedef-decl name='Py_uhash_t' type-id='type-id-62' filepath='../gpshead/Include/pyport.h' line='96' column='1' id='type-id-712'/>
+ <pointer-type-def type-id='type-id-701' size-in-bits='64' id='type-id-713'/>
+ <pointer-type-def type-id='type-id-714' size-in-bits='64' id='type-id-715'/>
+ <typedef-decl name='_Py_hashtable_hash_func' type-id='type-id-715' filepath='../gpshead/Modules/hashtable.h' line='75' column='1' id='type-id-703'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-716' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='23' column='1' id='type-id-717'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='_Py_slist_item' type-id='type-id-711' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='25' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='key_hash' type-id='type-id-712' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='27' column='1'/>
+ </data-member>
+ </class-decl>
+ <typedef-decl name='_Py_hashtable_entry_t' type-id='type-id-717' filepath='../gpshead/Modules/hashtable.h' line='30' column='1' id='type-id-716'/>
+ <qualified-type-def type-id='type-id-716' const='yes' id='type-id-718'/>
+ <pointer-type-def type-id='type-id-718' size-in-bits='64' id='type-id-719'/>
+ <pointer-type-def type-id='type-id-720' size-in-bits='64' id='type-id-721'/>
+ <typedef-decl name='_Py_hashtable_compare_func' type-id='type-id-721' filepath='../gpshead/Modules/hashtable.h' line='77' column='1' id='type-id-704'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-705' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='81' column='1' id='type-id-722'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='malloc' type-id='type-id-723' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='83' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='free' type-id='type-id-55' visibility='default' filepath='../gpshead/Modules/hashtable.h' line='86' column='1'/>
+ </data-member>
+ </class-decl>
+ <pointer-type-def type-id='type-id-724' size-in-bits='64' id='type-id-723'/>
+ <typedef-decl name='_Py_hashtable_allocator_t' type-id='type-id-722' filepath='../gpshead/Modules/hashtable.h' line='87' column='1' id='type-id-705'/>
+ <typedef-decl name='_Py_hashtable_t' type-id='type-id-701' filepath='../gpshead/Modules/hashtable.h' line='102' column='1' id='type-id-725'/>
+ <function-decl name='_Py_hashtable_copy' mangled-name='_Py_hashtable_copy' filepath='../gpshead/Modules/hashtable.c' line='494' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_copy'>
+ <parameter type-id='type-id-713' name='src' filepath='../gpshead/Modules/hashtable.c' line='494' column='1'/>
+ <return type-id='type-id-713'/>
+ </function-decl>
+ <function-decl name='_Py_hashtable_destroy' mangled-name='_Py_hashtable_destroy' filepath='../gpshead/Modules/hashtable.c' line='475' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_destroy'>
+ <parameter type-id='type-id-713' name='ht' filepath='../gpshead/Modules/hashtable.c' line='475' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <function-decl name='_Py_hashtable_clear' mangled-name='_Py_hashtable_clear' filepath='../gpshead/Modules/hashtable.c' line='457' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_clear'>
+ <parameter type-id='type-id-713' name='ht' filepath='../gpshead/Modules/hashtable.c' line='457' column='1'/>
+ <return type-id='type-id-4'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-716' size-in-bits='64' id='type-id-726'/>
+ <pointer-type-def type-id='type-id-727' size-in-bits='64' id='type-id-728'/>
+ <typedef-decl name='_Py_hashtable_foreach_func' type-id='type-id-728' filepath='../gpshead/Modules/hashtable.h' line='136' column='1' id='type-id-729'/>
+ <function-decl name='_Py_hashtable_foreach' mangled-name='_Py_hashtable_foreach' filepath='../gpshead/Modules/hashtable.c' line='394' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_foreach'>
+ <parameter type-id='type-id-713' name='ht' filepath='../gpshead/Modules/hashtable.c' line='394' column='1'/>
+ <parameter type-id='type-id-729' name='func' filepath='../gpshead/Modules/hashtable.c' line='395' column='1'/>
+ <parameter type-id='type-id-56' name='arg' filepath='../gpshead/Modules/hashtable.c' line='396' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_hashtable_pop' mangled-name='_Py_hashtable_pop' filepath='../gpshead/Modules/hashtable.c' line='370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_pop'>
+ <parameter type-id='type-id-713' name='ht' filepath='../gpshead/Modules/hashtable.c' line='370' column='1'/>
+ <parameter type-id='type-id-62' name='key_size' filepath='../gpshead/Modules/hashtable.c' line='370' column='1'/>
+ <parameter type-id='type-id-56' name='pkey' filepath='../gpshead/Modules/hashtable.c' line='370' column='1'/>
+ <parameter type-id='type-id-62' name='data_size' filepath='../gpshead/Modules/hashtable.c' line='371' column='1'/>
+ <parameter type-id='type-id-56' name='data' filepath='../gpshead/Modules/hashtable.c' line='371' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_hashtable_get' mangled-name='_Py_hashtable_get' filepath='../gpshead/Modules/hashtable.c' line='354' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_get'>
+ <parameter type-id='type-id-713' name='ht' filepath='../gpshead/Modules/hashtable.c' line='354' column='1'/>
+ <parameter type-id='type-id-62' name='key_size' filepath='../gpshead/Modules/hashtable.c' line='354' column='1'/>
+ <parameter type-id='type-id-56' name='pkey' filepath='../gpshead/Modules/hashtable.c' line='354' column='1'/>
+ <parameter type-id='type-id-62' name='data_size' filepath='../gpshead/Modules/hashtable.c' line='355' column='1'/>
+ <parameter type-id='type-id-56' name='data' filepath='../gpshead/Modules/hashtable.c' line='355' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_hashtable_set' mangled-name='_Py_hashtable_set' filepath='../gpshead/Modules/hashtable.c' line='312' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_set'>
+ <parameter type-id='type-id-713' name='ht' filepath='../gpshead/Modules/hashtable.c' line='312' column='1'/>
+ <parameter type-id='type-id-62' name='key_size' filepath='../gpshead/Modules/hashtable.c' line='312' column='1'/>
+ <parameter type-id='type-id-56' name='pkey' filepath='../gpshead/Modules/hashtable.c' line='312' column='1'/>
+ <parameter type-id='type-id-62' name='data_size' filepath='../gpshead/Modules/hashtable.c' line='313' column='1'/>
+ <parameter type-id='type-id-56' name='data' filepath='../gpshead/Modules/hashtable.c' line='313' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_hashtable_get_entry' mangled-name='_Py_hashtable_get_entry' filepath='../gpshead/Modules/hashtable.c' line='253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_get_entry'>
+ <parameter type-id='type-id-713' name='ht' filepath='../gpshead/Modules/hashtable.c' line='253' column='1'/>
+ <parameter type-id='type-id-62' name='key_size' filepath='../gpshead/Modules/hashtable.c' line='254' column='1'/>
+ <parameter type-id='type-id-56' name='pkey' filepath='../gpshead/Modules/hashtable.c' line='254' column='1'/>
+ <return type-id='type-id-726'/>
+ </function-decl>
+ <function-decl name='_Py_hashtable_size' mangled-name='_Py_hashtable_size' filepath='../gpshead/Modules/hashtable.c' line='195' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_size'>
+ <parameter type-id='type-id-713' name='ht' filepath='../gpshead/Modules/hashtable.c' line='195' column='1'/>
+ <return type-id='type-id-62'/>
+ </function-decl>
+ <function-decl name='_Py_hashtable_new' mangled-name='_Py_hashtable_new' filepath='../gpshead/Modules/hashtable.c' line='183' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_new'>
+ <parameter type-id='type-id-62' name='key_size' filepath='../gpshead/Modules/hashtable.c' line='183' column='1'/>
+ <parameter type-id='type-id-62' name='data_size' filepath='../gpshead/Modules/hashtable.c' line='183' column='1'/>
+ <parameter type-id='type-id-703' name='hash_func' filepath='../gpshead/Modules/hashtable.c' line='184' column='1'/>
+ <parameter type-id='type-id-704' name='compare_func' filepath='../gpshead/Modules/hashtable.c' line='185' column='1'/>
+ <return type-id='type-id-713'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-705' size-in-bits='64' id='type-id-730'/>
+ <function-decl name='_Py_hashtable_new_full' mangled-name='_Py_hashtable_new_full' filepath='../gpshead/Modules/hashtable.c' line='141' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_new_full'>
+ <parameter type-id='type-id-62' name='key_size' filepath='../gpshead/Modules/hashtable.c' line='141' column='1'/>
+ <parameter type-id='type-id-62' name='data_size' filepath='../gpshead/Modules/hashtable.c' line='141' column='1'/>
+ <parameter type-id='type-id-62' name='init_size' filepath='../gpshead/Modules/hashtable.c' line='142' column='1'/>
+ <parameter type-id='type-id-703' name='hash_func' filepath='../gpshead/Modules/hashtable.c' line='143' column='1'/>
+ <parameter type-id='type-id-704' name='compare_func' filepath='../gpshead/Modules/hashtable.c' line='144' column='1'/>
+ <parameter type-id='type-id-730' name='allocator' filepath='../gpshead/Modules/hashtable.c' line='145' column='1'/>
+ <return type-id='type-id-713'/>
+ </function-decl>
+ <function-decl name='_Py_hashtable_compare_direct' mangled-name='_Py_hashtable_compare_direct' filepath='../gpshead/Modules/hashtable.c' line='118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_compare_direct'>
+ <parameter type-id='type-id-713' name='ht' filepath='../gpshead/Modules/hashtable.c' line='118' column='1'/>
+ <parameter type-id='type-id-56' name='pkey' filepath='../gpshead/Modules/hashtable.c' line='118' column='1'/>
+ <parameter type-id='type-id-719' name='entry' filepath='../gpshead/Modules/hashtable.c' line='119' column='1'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='_Py_hashtable_hash_ptr' mangled-name='_Py_hashtable_hash_ptr' filepath='../gpshead/Modules/hashtable.c' line='108' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_hash_ptr'>
+ <parameter type-id='type-id-713' name='ht' filepath='../gpshead/Modules/hashtable.c' line='108' column='1'/>
+ <parameter type-id='type-id-56' name='pkey' filepath='../gpshead/Modules/hashtable.c' line='108' column='1'/>
+ <return type-id='type-id-712'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-727'>
+ <parameter type-id='type-id-713'/>
+ <parameter type-id='type-id-726'/>
+ <parameter type-id='type-id-56'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-720'>
+ <parameter type-id='type-id-713'/>
+ <parameter type-id='type-id-56'/>
+ <parameter type-id='type-id-719'/>
+ <return type-id='type-id-7'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-714'>
+ <parameter type-id='type-id-713'/>
+ <parameter type-id='type-id-56'/>
+ <return type-id='type-id-712'/>
+ </function-type>
+ <function-type size-in-bits='64' id='type-id-724'>
+ <parameter type-id='type-id-62'/>
+ <return type-id='type-id-56'/>
+ </function-type>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/symtablemodule.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit__symtable' mangled-name='PyInit__symtable' filepath='../gpshead/Modules/symtablemodule.c' line='75' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__symtable'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Modules/xxsubtype.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+ <function-decl name='PyInit_xxsubtype' mangled-name='PyInit_xxsubtype' filepath='../gpshead/Modules/xxsubtype.c' line='311' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_xxsubtype'>
+ <return type-id='type-id-52'/>
+ </function-decl>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../gpshead/Python/frozen.c' comp-dir-path='/home/greg/oss/python/cpython/fresh37' language='LANG_C99'>
+
+ <array-type-def dimensions='1' type-id='type-id-302' size-in-bits='233048' id='type-id-731'>
+ <subrange length='29131' type-id='type-id-38' id='type-id-732'/>
+
+ </array-type-def>
+ <qualified-type-def type-id='type-id-731' const='yes' id='type-id-733'/>
+ <var-decl name='_Py_M__importlib' type-id='type-id-733' mangled-name='_Py_M__importlib' visibility='default' filepath='../gpshead/Python/importlib.h' line='2' column='1' elf-symbol-id='_Py_M__importlib'/>
+
+ <array-type-def dimensions='1' type-id='type-id-302' size-in-bits='334168' id='type-id-734'>
+ <subrange length='41771' type-id='type-id-38' id='type-id-735'/>
+
+ </array-type-def>
+ <qualified-type-def type-id='type-id-734' const='yes' id='type-id-736'/>
+ <var-decl name='_Py_M__importlib_external' type-id='type-id-736' mangled-name='_Py_M__importlib_external' visibility='default' filepath='../gpshead/Python/importlib_external.h' line='2' column='1' elf-symbol-id='_Py_M__importlib_external'/>
+ <class-decl name='_frozen' size-in-bits='192' is-struct='yes' visibility='default' filepath='../gpshead/Include/import.h' line='136' column='1' id='type-id-737'>
+ <data-member access='public' layout-offset-in-bits='0'>
+ <var-decl name='name' type-id='type-id-3' visibility='default' filepath='../gpshead/Include/import.h' line='137' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='64'>
+ <var-decl name='code' type-id='type-id-303' visibility='default' filepath='../gpshead/Include/import.h' line='138' column='1'/>
+ </data-member>
+ <data-member access='public' layout-offset-in-bits='128'>
+ <var-decl name='size' type-id='type-id-7' visibility='default' filepath='../gpshead/Include/import.h' line='139' column='1'/>
+ </data-member>
+ </class-decl>
+ <qualified-type-def type-id='type-id-737' const='yes' id='type-id-738'/>
+ <pointer-type-def type-id='type-id-738' size-in-bits='64' id='type-id-739'/>
+ <var-decl name='PyImport_FrozenModules' type-id='type-id-739' mangled-name='PyImport_FrozenModules' visibility='default' filepath='../gpshead/Include/import.h' line='145' column='1' elf-symbol-id='PyImport_FrozenModules'/>
+ </abi-instr>
+</abi-corpus>
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 35ca1a8684..ef2bfb1cd2 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -744,6 +744,13 @@ regen-importlib: Programs/_freeze_importlib
$(srcdir)/Python/importlib.h.new
$(UPDATE_FILE) $(srcdir)/Python/importlib.h $(srcdir)/Python/importlib.h.new
+regen-abidump: all
+ @$(MKDIR_P) $(srcdir)/Doc/data/
+ abidw "libpython$(LDVERSION).so" --no-architecture --out-file $(srcdir)/Doc/data/python$(LDVERSION).abi.new
+ @$(UPDATE_FILE) $(srcdir)/Doc/data/python$(LDVERSION).abi $(srcdir)/Doc/data/python$(LDVERSION).abi.new
+
+check-abidump: all
+ abidiff "libpython$(LDVERSION).so" $(srcdir)/Doc/data/python$(LDVERSION).abi --drop-private-types --no-architecture --no-added-syms
############################################################################
# Regenerate all generated files