/**************************************************************************** * binfmt/binfmt_dumpmodule.c * * SPDX-License-Identifier: Apache-2.0 * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The * ASF licenses this file to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. * ****************************************************************************/ /**************************************************************************** * Included Files ****************************************************************************/ #include #include #include #include #include #include "binfmt.h" #if defined(CONFIG_DEBUG_FEATURES) && defined(CONFIG_DEBUG_BINFMT) && !defined(CONFIG_BINFMT_DISABLE) /**************************************************************************** * Public Functions ****************************************************************************/ /**************************************************************************** * Name: binfmt_dumpmodule * * Description: * Dump the contents of struct binary_s. * * Input Parameters: * bin - Load structure * * Returned Value: * Zero (OK) on success; a negated errno value on failure * ****************************************************************************/ int binfmt_dumpmodule(FAR const struct binary_s *bin) { if (bin) { binfo("Module:\n"); binfo(" entrypt: %p\n", bin->entrypt); binfo(" mapped: %p size=%zd\n", bin->mapped, bin->mapsize); binfo(" alloc: %p %p %p\n", bin->alloc[0], bin->alloc[1], bin->alloc[2]); #ifdef CONFIG_BINFMT_CONSTRUCTORS binfo(" ctors: %p nctors=%d\n", bin->ctors, bin->nctors); binfo(" dtors: %p ndtors=%d\n", bin->dtors, bin->ndtors); #endif #ifdef CONFIG_ARCH_ADDRENV binfo(" addrenv: %p\n", bin->addrenv); #endif binfo(" stacksize: %zd\n", bin->stacksize); #ifndef CONFIG_BUILD_KERNEL binfo(" stackaddr: %p\n", bin->stackaddr); #endif binfo(" unload: %p\n", bin->unload); } return OK; } #endif