ver 26.3.3.2

- Drive_Mode.c 수정
  : bool 변수 삭제
- Drive_Mode.c/RcRequestCheck 함수 수정
  : RC ACU 동시 요청 시 비상정지
  : 마지막 요청을 RC_ModeReq에 저장하도록 수정
- Drive_Mode.c/ExecuteEmergencyMode 함수 수정
  : VCU_Emergency_Flag 조건 추가
- VSCode에서 빌드 가능하도록 수정
  : GW/Debug_STANDALONE 생성
This commit is contained in:
3minbe 2026-03-03 20:24:50 +09:00
parent 3031743220
commit 85257c3f29
3487 changed files with 3477316 additions and 101985 deletions

View File

@ -1,5 +1,5 @@
{
"cmake.sourceDirectory": "C:/Users/SUPYO/Documents/Workspace/git/ADM/c-coderdbc/src",
"cmake.sourceDirectory": "C:/Users/MSI/Documents/WorkSpace/git/ADM/GW",
"files.associations": {
"algorithm": "cpp",
"any": "cpp",

74
.vscode/tasks.json vendored
View File

@ -1,6 +1,76 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "GW Configure (Standalone)",
"type": "process",
"command": "powershell.exe",
"args": [
"-NoProfile",
"-ExecutionPolicy",
"Bypass",
"-Command",
"if (-not $env:ARM_GCC_BIN_DIR) { Write-Error 'ARM_GCC_BIN_DIR is not set'; exit 1 }; if (-not $env:S32_SDK_PATH) { Write-Error 'S32_SDK_PATH is not set'; exit 1 }; $toolchain = (Resolve-Path 'GW/cmake/toolchain-arm-none-eabi.cmake').Path.Replace('\\','/'); $cmakeArgs = @('-S', 'GW', '-B', 'GW/Debug_STANDALONE', \"-DCMAKE_TOOLCHAIN_FILE=$toolchain\"); $ninja = Get-Command ninja -ErrorAction SilentlyContinue; $mingw = Get-Command mingw32-make -ErrorAction SilentlyContinue; if ($ninja) { $cmakeArgs += @('-G', 'Ninja') } elseif ($mingw) { $cmakeArgs += @('-G', 'MinGW Makefiles', \"-DCMAKE_MAKE_PROGRAM=$($mingw.Source.Replace('\\','/'))\") } else { Write-Error 'Neither ninja nor mingw32-make is available'; exit 1 }; & cmake @cmakeArgs"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"detail": "Required env vars: ARM_GCC_BIN_DIR, S32_SDK_PATH"
},
{
"label": "GW Build (Standalone)",
"type": "process",
"command": "powershell.exe",
"args": [
"-NoProfile",
"-ExecutionPolicy",
"Bypass",
"-Command",
"if (-not (Test-Path 'GW/Debug_STANDALONE/CMakeCache.txt')) { Write-Error 'Standalone build is not configured. Run GW Configure (Standalone) first.'; exit 1 }; & cmake --build GW/Debug_STANDALONE -- -j4"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"detail": "Builds the standalone CMake target"
},
{
"label": "GW Clean (Standalone)",
"type": "process",
"command": "powershell.exe",
"args": [
"-NoProfile",
"-ExecutionPolicy",
"Bypass",
"-Command",
"if (Test-Path 'GW/Debug_STANDALONE/CMakeCache.txt') { & cmake --build GW/Debug_STANDALONE --target clean } else { Write-Output 'Standalone build directory does not exist.' }"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"detail": "Cleans the standalone CMake target"
},
{
"label": "GW Rebuild (Standalone)",
"dependsOrder": "sequence",
"dependsOn": [
"GW Configure (Standalone)",
"GW Clean (Standalone)",
"GW Build (Standalone)"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "GW Build (Debug_FLASH)",
"type": "process",
@ -15,10 +85,6 @@
"options": {
"cwd": "${workspaceFolder}/GW"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
],

View File

@ -5,7 +5,7 @@
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
<provider class="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" console="false" env-hash="-1601693726144086940" id="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" keep-relative-paths="false" name="CDT S32DS Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<provider class="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" console="false" env-hash="1760926136319153276" id="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" keep-relative-paths="false" name="CDT S32DS Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<language-scope id="org.eclipse.cdt.core.gcc"/>
<language-scope id="org.eclipse.cdt.core.g++"/>
</provider>
@ -16,7 +16,7 @@
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
<provider class="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" console="false" env-hash="-1544191841399254396" id="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" keep-relative-paths="false" name="CDT S32DS Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<provider class="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" console="false" env-hash="1818428021063985820" id="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" keep-relative-paths="false" name="CDT S32DS Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<language-scope id="org.eclipse.cdt.core.gcc"/>
<language-scope id="org.eclipse.cdt.core.g++"/>
</provider>
@ -27,7 +27,7 @@
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
<provider class="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" console="false" env-hash="-1544191841399254396" id="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" keep-relative-paths="false" name="CDT S32DS Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<provider class="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" console="false" env-hash="1818428021063985820" id="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" keep-relative-paths="false" name="CDT S32DS Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<language-scope id="org.eclipse.cdt.core.gcc"/>
<language-scope id="org.eclipse.cdt.core.g++"/>
</provider>
@ -38,7 +38,7 @@
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
<provider class="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" console="false" env-hash="-1544191841399254396" id="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" keep-relative-paths="false" name="CDT S32DS Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<provider class="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" console="false" env-hash="1818428021063985820" id="com.freescale.s32ds.cross.gnu.CrossGCCBuiltinSpecsDetector" keep-relative-paths="false" name="CDT S32DS Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<language-scope id="org.eclipse.cdt.core.gcc"/>
<language-scope id="org.eclipse.cdt.core.g++"/>
</provider>

181
GW/CMakeLists.txt Normal file
View File

@ -0,0 +1,181 @@
cmake_minimum_required(VERSION 3.20)
project(GW LANGUAGES C ASM)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_STANDARD_REQUIRED ON)
set(CMAKE_C_EXTENSIONS OFF)
set(GW_TARGET GW.elf)
set(GW_LINKER_SCRIPT "${CMAKE_CURRENT_SOURCE_DIR}/Project_Settings/Linker_Files/linker_flash.ld")
if(NOT EXISTS "${GW_LINKER_SCRIPT}")
message(FATAL_ERROR "Linker script not found: ${GW_LINKER_SCRIPT}")
endif()
if(NOT DEFINED ENV{S32_SDK_PATH})
message(FATAL_ERROR "S32_SDK_PATH is not set. It must point to the PlatformSDK_S32K3_2021_03 directory.")
endif()
file(TO_CMAKE_PATH "$ENV{S32_SDK_PATH}" S32_SDK_PATH)
set(S32_RTD_ROOT "${S32_SDK_PATH}/SW32K3_RTD_4_4_0_9_0_D2103")
if(CMAKE_SYSROOT)
set(GW_SYSROOT_FLAG "--sysroot=${CMAKE_SYSROOT}")
else()
set(GW_SYSROOT_FLAG "")
endif()
foreach(required_sdk_dir
"${S32_RTD_ROOT}/Base_TS_T40D34M9I0R0/header"
"${S32_RTD_ROOT}/Base_TS_T40D34M9I0R0/include"
"${S32_RTD_ROOT}/Platform_TS_T40D34M9I0R0/include"
"${S32_RTD_ROOT}/Platform_TS_T40D34M9I0R0/startup/include")
if(NOT EXISTS "${required_sdk_dir}")
message(FATAL_ERROR "Required SDK include directory not found: ${required_sdk_dir}")
endif()
endforeach()
set(GW_SOURCE_ROOTS
"${CMAKE_CURRENT_SOURCE_DIR}/Project_Settings/Startup_Code"
"${CMAKE_CURRENT_SOURCE_DIR}/RTD/src"
"${CMAKE_CURRENT_SOURCE_DIR}/board"
"${CMAKE_CURRENT_SOURCE_DIR}/generate/include"
"${CMAKE_CURRENT_SOURCE_DIR}/generate/src"
"${CMAKE_CURRENT_SOURCE_DIR}/src"
)
set(GW_DIRECT_INCLUDE_DIRS
"${CMAKE_CURRENT_SOURCE_DIR}"
)
set(GW_RECURSIVE_INCLUDE_ROOTS
"${CMAKE_CURRENT_SOURCE_DIR}/RTD/include"
"${CMAKE_CURRENT_SOURCE_DIR}/board"
"${CMAKE_CURRENT_SOURCE_DIR}/generate/include"
"${CMAKE_CURRENT_SOURCE_DIR}/generate/src"
"${CMAKE_CURRENT_SOURCE_DIR}/src"
"${CMAKE_CURRENT_SOURCE_DIR}/src/HAL/watchdog_hal/inc"
"${CMAKE_CURRENT_SOURCE_DIR}/src/uds"
"${S32_RTD_ROOT}/Base_TS_T40D34M9I0R0/header"
"${S32_RTD_ROOT}/Base_TS_T40D34M9I0R0/include"
"${S32_RTD_ROOT}/Platform_TS_T40D34M9I0R0/include"
"${S32_RTD_ROOT}/Platform_TS_T40D34M9I0R0/startup/include"
)
function(gw_collect_directories out_var)
set(result "")
foreach(root IN LISTS ARGN)
if(EXISTS "${root}")
list(APPEND result "${root}")
file(GLOB_RECURSE children LIST_DIRECTORIES true CONFIGURE_DEPENDS "${root}/*")
foreach(child IN LISTS children)
if(IS_DIRECTORY "${child}")
list(APPEND result "${child}")
endif()
endforeach()
endif()
endforeach()
list(REMOVE_DUPLICATES result)
set(${out_var} "${result}" PARENT_SCOPE)
endfunction()
gw_collect_directories(GW_INCLUDE_DIRS ${GW_RECURSIVE_INCLUDE_ROOTS})
list(APPEND GW_INCLUDE_DIRS ${GW_DIRECT_INCLUDE_DIRS})
list(REMOVE_DUPLICATES GW_INCLUDE_DIRS)
set(GW_SOURCES "")
foreach(root IN LISTS GW_SOURCE_ROOTS)
file(GLOB_RECURSE root_sources CONFIGURE_DEPENDS
"${root}/*.c"
"${root}/*.s"
"${root}/*.S")
list(APPEND GW_SOURCES ${root_sources})
endforeach()
list(REMOVE_DUPLICATES GW_SOURCES)
add_executable(${GW_TARGET} ${GW_SOURCES})
target_include_directories(${GW_TARGET} PRIVATE ${GW_INCLUDE_DIRS})
target_compile_definitions(${GW_TARGET} PRIVATE
D_CACHE_ENABLE
I_CACHE_ENABLE
GCC
S32K3XX
CPU_S32K344
)
target_compile_options(${GW_TARGET} PRIVATE
$<$<COMPILE_LANGUAGE:ASM>:-x$<SEMICOLON>assembler-with-cpp>
$<$<COMPILE_LANGUAGE:C>:-std=c99>
-Os
-fshort-enums
-funsigned-char
-fstack-usage
-fdump-ipa-all
-fomit-frame-pointer
-fno-zero-initialized-in-bss
-ggdb3
-pedantic
-Wall
-Wextra
-fmessage-length=0
-funsigned-bitfields
-fno-common
-Wunused
-Wstrict-prototypes
-Wsign-compare
-Werror=implicit-function-declaration
-Wundef
-mcpu=cortex-m7
-mthumb
-mlittle-endian
-mfloat-abi=soft
-specs=nano.specs
-specs=nosys.specs
${GW_SYSROOT_FLAG}
)
target_link_options(${GW_TARGET} PRIVATE
-nostartfiles
--entry=Reset_Handler
-Wl,-Map,${CMAKE_CURRENT_BINARY_DIR}/GW.map
-Wl,--gc-sections
-Wl,-u,_printf_float
-Wl,-u,_scanf_float
-n
-mcpu=cortex-m7
-mthumb
-mlittle-endian
-mfloat-abi=soft
-specs=nano.specs
-specs=nosys.specs
${GW_SYSROOT_FLAG}
-T${GW_LINKER_SCRIPT}
)
target_link_libraries(${GW_TARGET} PRIVATE c m gcc)
set_property(TARGET ${GW_TARGET} PROPERTY LINK_DEPENDS "${GW_LINKER_SCRIPT}")
if(CMAKE_OBJCOPY)
set(ARM_OBJCOPY "${CMAKE_OBJCOPY}")
else()
find_program(ARM_OBJCOPY arm-none-eabi-objcopy REQUIRED)
endif()
if(CMAKE_SIZE)
set(ARM_SIZE "${CMAKE_SIZE}")
else()
find_program(ARM_SIZE arm-none-eabi-size REQUIRED)
endif()
add_custom_command(
TARGET ${GW_TARGET}
POST_BUILD
COMMAND ${ARM_OBJCOPY} -O srec $<TARGET_FILE:${GW_TARGET}> "${CMAKE_CURRENT_BINARY_DIR}/GW.srec"
COMMAND ${ARM_SIZE} --format=berkeley $<TARGET_FILE:${GW_TARGET}>
BYPRODUCTS "${CMAKE_CURRENT_BINARY_DIR}/GW.srec"
COMMENT "Generating SREC and size report"
)

View File

@ -1,9 +1,7 @@
/src/
/GW.args
/sources.mk
/Project_Settings/
/RTD/
/board/
/generate/
/makefile
/objects.mk
/sources.mk
/src/

View File

@ -112,8 +112,8 @@
"./src/Safety_Layer/BMS/BMS_SOC.o"
"./src/Safety_Layer/CRC/CRC_UDM.o"
"./src/Safety_Layer/CRC/CRC_UDM_4BIT.o"
"./src/Safety_Layer/ECU_Check/ECU_Check.o"
"./src/Safety_Layer/EMERGENCY/Emergency.o"
"./src/Safety_Layer/System_Check/System_Check.o"
"./src/System_Layer/CheckTime/CheckTime.o"
"./src/System_Layer/Drive_Mode.o"
"./src/System_Layer/SW_Version/SW_VER.o"

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@ Trivially needed symbols: undefined_handler SysTick_Handler PendSV_Handler Debug
Initial Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: public
Aux: @01733ea0
@ -12,91 +12,91 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: body optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: public weak
Aux: @06aeab60
Aux: @06b5ab60
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: public weak
Aux: @06aea620
Aux: @06b5a620
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: public weak
Aux: @06aea000
Aux: @06b5a000
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: public
Aux: @06aead20
Aux: @06b5ad20
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: public weak
Aux: @06aeaa80
Aux: @06b5aa80
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: public weak
Aux: @06aea7e0
Aux: @06b5a7e0
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: public weak
Aux: @06aea460
Aux: @06b5a460
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: public weak
Aux: @06aea1c0
Aux: @06b5a1c0
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: public weak
Aux: @06ae3d20
Aux: @06b53d20
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: public weak
Aux: @06ae3ee0
Aux: @06b53ee0
References:
Referring:
Function flags: body optimize_size
@ -107,7 +107,7 @@ Removing unused symbols:
Reclaimed Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: public
References:
@ -115,7 +115,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: body optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: public weak
References:
@ -123,7 +123,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: public weak
References:
@ -131,7 +131,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: public weak
References:
@ -139,7 +139,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: public
References:
@ -147,7 +147,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: public weak
References:
@ -155,7 +155,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: public weak
References:
@ -163,7 +163,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: public weak
References:
@ -171,7 +171,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: public weak
References:
@ -179,7 +179,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: public weak
References:
@ -187,7 +187,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: public weak
References:
@ -199,7 +199,7 @@ NMI_Handler/0 (NMI_Handler) @06ae3c40
Initial Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: public
References:
@ -207,7 +207,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: body optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: public weak
References:
@ -215,7 +215,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: public weak
References:
@ -223,7 +223,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: public weak
References:
@ -231,7 +231,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: public
References:
@ -239,7 +239,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: public weak
References:
@ -247,7 +247,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: public weak
References:
@ -255,7 +255,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: public weak
References:
@ -263,7 +263,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: public weak
References:
@ -271,7 +271,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: public weak
References:
@ -279,7 +279,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: public weak
References:
@ -292,7 +292,7 @@ Removing unused symbols:
Reclaimed Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: public
References:
@ -300,7 +300,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: body optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: public weak
References:
@ -308,7 +308,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: public weak
References:
@ -316,7 +316,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: public weak
References:
@ -324,7 +324,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: public
References:
@ -332,7 +332,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: public weak
References:
@ -340,7 +340,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: public weak
References:
@ -348,7 +348,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: public weak
References:
@ -356,7 +356,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: public weak
References:
@ -364,7 +364,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: public weak
References:
@ -372,7 +372,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: public weak
References:
@ -386,7 +386,7 @@ Reclaiming variables:
Clearing address taken flags:
Optimized Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -395,7 +395,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: count:107374 (estimated locally) body nonfreeing_fn executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -404,7 +404,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -413,7 +413,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -422,7 +422,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -431,7 +431,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -440,7 +440,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -449,7 +449,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -458,7 +458,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -467,7 +467,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -476,7 +476,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -507,7 +507,7 @@ Removing variables:
Final Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:
@ -516,7 +516,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: count:107374 (estimated locally) nonfreeing_fn executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible asm_written public weak
References:
@ -525,7 +525,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: count:107374 (estimated locally) optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible asm_written public weak
References:
@ -534,7 +534,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: count:107374 (estimated locally) optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible asm_written public weak
References:
@ -543,7 +543,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: count:107374 (estimated locally) optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:
@ -552,7 +552,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: count:1073741823 (estimated locally) optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible asm_written public weak
References:
@ -561,7 +561,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: count:107374 (estimated locally) optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible asm_written public weak
References:
@ -570,7 +570,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: count:107374 (estimated locally) optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible asm_written public weak
References:
@ -579,7 +579,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: count:107374 (estimated locally) optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible asm_written public weak
References:
@ -588,7 +588,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: count:107374 (estimated locally) optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible asm_written public weak
References:
@ -597,7 +597,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: count:107374 (estimated locally) optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible asm_written public weak
References:

View File

@ -13,7 +13,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -22,7 +22,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: body optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -31,7 +31,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -40,7 +40,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -49,7 +49,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -58,7 +58,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -67,7 +67,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -76,7 +76,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -85,7 +85,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -94,7 +94,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -103,7 +103,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
References:

View File

@ -4,7 +4,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -13,7 +13,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -22,7 +22,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -31,7 +31,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -40,7 +40,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -49,7 +49,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -58,7 +58,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -67,7 +67,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -76,7 +76,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -85,7 +85,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -94,7 +94,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
References:

View File

@ -14,7 +14,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -23,7 +23,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -32,7 +32,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -41,7 +41,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -50,7 +50,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -59,7 +59,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -68,7 +68,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -77,7 +77,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -86,7 +86,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -95,7 +95,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -104,7 +104,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
References:

View File

@ -1,6 +1,6 @@
Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -9,7 +9,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -18,7 +18,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -27,7 +27,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -36,7 +36,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -45,7 +45,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -54,7 +54,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -63,7 +63,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -72,7 +72,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -81,7 +81,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -90,7 +90,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
References:

View File

@ -62,7 +62,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -71,7 +71,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -80,7 +80,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -89,7 +89,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -98,7 +98,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -107,7 +107,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -116,7 +116,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -125,7 +125,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -134,7 +134,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -143,7 +143,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -152,7 +152,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
References:

View File

@ -328,7 +328,7 @@ IPA function summary for NMI_Handler/0 inlinable
Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -337,7 +337,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -346,7 +346,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -355,7 +355,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -364,7 +364,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -373,7 +373,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -382,7 +382,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -391,7 +391,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -400,7 +400,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -409,7 +409,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -418,7 +418,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
References:

View File

@ -267,7 +267,7 @@ IPA function summary for NMI_Handler/0 inlinable
Symbol table:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -276,7 +276,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -285,7 +285,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -294,7 +294,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -303,7 +303,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -312,7 +312,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -321,7 +321,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -330,7 +330,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -339,7 +339,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -348,7 +348,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -357,7 +357,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
References:

View File

@ -242,110 +242,110 @@ Function is locally looping.
Function is locally const.
callgraph:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06814ac8
Aux: @06884c68
References:
Referring:
Availability: available
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814c68
Aux: @068849e8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @068149c8
Aux: @06884bc8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814aa8
Aux: @06884928
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06814b68
Aux: @06884908
References:
Referring:
Availability: available
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814b08
Aux: @06884a68
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814ae8
Aux: @06884948
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @068149e8
Aux: @06884a88
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814a88
Aux: @06884a48
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814be8
Aux: @06884ac8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814b28
Aux: @06884968
References:
Referring:
Availability: overwritable
@ -355,110 +355,110 @@ NMI_Handler/0 (NMI_Handler) @06ae3c40
ordered call graph: reduced for nothrow
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06814ac8
Aux: @06884c68
References:
Referring:
Availability: available
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814c68
Aux: @068849e8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @068149c8
Aux: @06884bc8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814aa8
Aux: @06884928
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06814b68
Aux: @06884908
References:
Referring:
Availability: available
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814b08
Aux: @06884a68
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814ae8
Aux: @06884948
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @068149e8
Aux: @06884a88
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814a88
Aux: @06884a48
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814be8
Aux: @06884ac8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814b28
Aux: @06884968
References:
Referring:
Availability: overwritable
@ -496,110 +496,110 @@ HardFault_Handler: malloc_bottom
NMI_Handler: malloc_bottom
callgraph:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06814d48
Aux: @06884c68
References:
Referring:
Availability: available
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814be8
Aux: @06884bc8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @068149c8
Aux: @06884908
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814a48
Aux: @06884b28
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06814d08
Aux: @06884928
References:
Referring:
Availability: available
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814c08
Aux: @06884aa8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814c28
Aux: @06884948
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814aa8
Aux: @06884be8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814a88
Aux: @06884a48
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @068149e8
Aux: @06884968
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814c68
Aux: @068849a8
References:
Referring:
Availability: overwritable
@ -609,110 +609,110 @@ NMI_Handler/0 (NMI_Handler) @06ae3c40
ordered call graph: reduced
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06814d48
Aux: @06884c68
References:
Referring:
Availability: available
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814be8
Aux: @06884bc8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @068149c8
Aux: @06884908
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814a48
Aux: @06884b28
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06814d08
Aux: @06884928
References:
Referring:
Availability: available
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814c08
Aux: @06884aa8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814c28
Aux: @06884948
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814aa8
Aux: @06884be8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814a88
Aux: @06884a48
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @068149e8
Aux: @06884968
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814c68
Aux: @068849a8
References:
Referring:
Availability: overwritable

View File

@ -1,6 +1,6 @@
callgraph:
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -9,7 +9,7 @@ undefined_handler/10 (undefined_handler) @06aeab60
Function flags: count:107374 (estimated locally) body nonfreeing_fn executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -18,7 +18,7 @@ SysTick_Handler/9 (SysTick_Handler) @06aea620
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -27,7 +27,7 @@ PendSV_Handler/8 (PendSV_Handler) @06aea000
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -36,7 +36,7 @@ DebugMon_Handler/7 (DebugMon_Handler) @06aead20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -45,7 +45,7 @@ SVCHandler_main/6 (SVCHandler_main) @06aeaa80
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -54,7 +54,7 @@ SVC_Handler/5 (SVC_Handler) @06aea7e0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -63,7 +63,7 @@ UsageFault_Handler/4 (UsageFault_Handler) @06aea460
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -72,7 +72,7 @@ BusFault_Handler/3 (BusFault_Handler) @06aea1c0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -81,7 +81,7 @@ MemManage_Handler/2 (MemManage_Handler) @06ae3d20
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -90,7 +90,7 @@ HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
References:
@ -136,110 +136,110 @@ Function name:NMI_Handler/0:
locals written:
ordered call graph: reduced
undefined_handler/10 (undefined_handler) @06aeab60
undefined_handler/10 (undefined_handler) @06b5ab60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06814a88
Aux: @06884bc8
References:
Referring:
Availability: available
Function flags: count:107374 (estimated locally) body nonfreeing_fn executed_once optimize_size
Called by:
Calls:
SysTick_Handler/9 (SysTick_Handler) @06aea620
SysTick_Handler/9 (SysTick_Handler) @06b5a620
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814c08
Aux: @06884a68
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
PendSV_Handler/8 (PendSV_Handler) @06aea000
PendSV_Handler/8 (PendSV_Handler) @06b5a000
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814aa8
Aux: @06884a88
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
DebugMon_Handler/7 (DebugMon_Handler) @06aead20
DebugMon_Handler/7 (DebugMon_Handler) @06b5ad20
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814a48
Aux: @06884908
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
SVCHandler_main/6 (SVCHandler_main) @06aeaa80
SVCHandler_main/6 (SVCHandler_main) @06b5aa80
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06814be8
Aux: @06884aa8
References:
Referring:
Availability: available
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls:
SVC_Handler/5 (SVC_Handler) @06aea7e0
SVC_Handler/5 (SVC_Handler) @06b5a7e0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814ae8
Aux: @06884928
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
UsageFault_Handler/4 (UsageFault_Handler) @06aea460
UsageFault_Handler/4 (UsageFault_Handler) @06b5a460
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814b68
Aux: @06884ac8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
BusFault_Handler/3 (BusFault_Handler) @06aea1c0
BusFault_Handler/3 (BusFault_Handler) @06b5a1c0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814c88
Aux: @06884b08
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
MemManage_Handler/2 (MemManage_Handler) @06ae3d20
MemManage_Handler/2 (MemManage_Handler) @06b53d20
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814ca8
Aux: @068849a8
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
HardFault_Handler/1 (HardFault_Handler) @06ae3ee0
HardFault_Handler/1 (HardFault_Handler) @06b53ee0
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @068149c8
Aux: @06884988
References:
Referring:
Availability: overwritable
Function flags: count:107374 (estimated locally) body optimize_size
Called by:
Calls:
NMI_Handler/0 (NMI_Handler) @06ae3c40
NMI_Handler/0 (NMI_Handler) @06b53c40
Type: function definition analyzed
Visibility: externally_visible public weak
Aux: @06814c28
Aux: @06884b28
References:
Referring:
Availability: overwritable

View File

@ -3,7 +3,7 @@ Trivially needed symbols: NVIC_SetPriority NVIC_DisableIRQ NVIC_EnableIRQ NVIC_S
Initial Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: public
Aux: @01733ea0
@ -12,28 +12,28 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: public
Aux: @06b49ee0
Aux: @06b29ee0
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: public
Aux: @06b49c40
Aux: @06b29c40
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: public
Aux: @06b499a0
Aux: @06b299a0
References:
Referring:
Function flags: body optimize_size
@ -44,7 +44,7 @@ Removing unused symbols:
Reclaimed Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: public
References:
@ -52,7 +52,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: public
References:
@ -60,7 +60,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: public
References:
@ -68,7 +68,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: public
References:
@ -80,7 +80,7 @@ NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
Initial Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: public
References:
@ -88,7 +88,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: public
References:
@ -96,7 +96,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: public
References:
@ -104,7 +104,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: public
References:
@ -117,7 +117,7 @@ Removing unused symbols:
Reclaimed Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: public
References:
@ -125,7 +125,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: public
References:
@ -133,7 +133,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: public
References:
@ -141,7 +141,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: public
References:
@ -155,7 +155,7 @@ Reclaiming variables:
Clearing address taken flags:
Optimized Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -164,7 +164,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -173,7 +173,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -182,7 +182,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -206,7 +206,7 @@ Removing variables:
Final Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:
@ -215,7 +215,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: count:1073741824 (estimated locally) nonfreeing_fn optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:
@ -224,7 +224,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: count:1073741824 (estimated locally) nonfreeing_fn optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:
@ -233,7 +233,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: count:1073741824 (estimated locally) nonfreeing_fn optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:

View File

@ -13,7 +13,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -22,7 +22,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -31,7 +31,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -40,7 +40,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -4,7 +4,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -13,7 +13,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -22,7 +22,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -31,7 +31,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -14,7 +14,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -23,7 +23,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -32,7 +32,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -41,7 +41,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -1,6 +1,6 @@
Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -9,7 +9,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -18,7 +18,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -27,7 +27,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -61,7 +61,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -70,7 +70,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -79,7 +79,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -88,7 +88,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -98,7 +98,7 @@ IPA function summary for NVIC_SetPriorityGrouping/0 inlinable
Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -107,7 +107,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -116,7 +116,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -125,7 +125,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -118,7 +118,7 @@ IPA function summary for NVIC_SetPriorityGrouping/0 inlinable
Symbol table:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -127,7 +127,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -136,7 +136,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -145,7 +145,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -47,40 +47,40 @@
scanning: return;
callgraph:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94f38
Aux: @04c24f88
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94cb8
Aux: @04c24f28
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94cd8
Aux: @04c24ee8
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94d58
Aux: @04c24fe8
References:
Referring:
Availability: available
@ -90,40 +90,40 @@ NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
ordered call graph: reduced for nothrow
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94f38
Aux: @04c24f88
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94cb8
Aux: @04c24f28
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94cd8
Aux: @04c24ee8
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94d58
Aux: @04c24fe8
References:
Referring:
Availability: available
@ -147,40 +147,40 @@ NVIC_EnableIRQ: malloc_bottom
NVIC_SetPriorityGrouping: malloc_bottom
callgraph:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94d18
Aux: @04c24fa8
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94f38
Aux: @04c24e28
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94cb8
Aux: @04c24f28
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94cd8
Aux: @04c24f48
References:
Referring:
Availability: available
@ -190,40 +190,40 @@ NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
ordered call graph: reduced
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94d18
Aux: @04c24fa8
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94f38
Aux: @04c24e28
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94cb8
Aux: @04c24f28
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94cd8
Aux: @04c24f48
References:
Referring:
Availability: available

View File

@ -1,6 +1,6 @@
callgraph:
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -9,7 +9,7 @@ NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -18,7 +18,7 @@ NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -27,7 +27,7 @@ NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -52,40 +52,40 @@ Function name:NVIC_SetPriorityGrouping/0:
locals written:
ordered call graph: reduced
NVIC_SetPriority/3 (NVIC_SetPriority) @06b49ee0
NVIC_SetPriority/3 (NVIC_SetPriority) @06b29ee0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94cb8
Aux: @04c24fc8
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b49c40
NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06b29c40
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94cd8
Aux: @04c24f88
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b499a0
NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06b299a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94d58
Aux: @04c24f28
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b49700
NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @06b29700
Type: function definition analyzed
Visibility: externally_visible public
Aux: @04e94d18
Aux: @04c24e28
References:
Referring:
Availability: available

View File

@ -3,21 +3,21 @@ Trivially needed symbols: init_data_bss
Initial Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Visibility: external public
References:
Referring: init_data_bss/0 (addr)
Availability: not-ready
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Visibility: external public
References:
Referring: init_data_bss/0 (addr)
Availability: not-ready
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: public
Aux: @01733ea0
@ -31,21 +31,21 @@ Removing unused symbols:
Reclaimed Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Visibility: external public
References:
Referring: init_data_bss/0 (addr)
Availability: not-ready
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Visibility: external public
References:
Referring: init_data_bss/0 (addr)
Availability: not-ready
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: public
References: __INIT_TABLE/1 (addr)__ZERO_TABLE/2 (addr)
@ -57,21 +57,21 @@ init_data_bss/0 (init_data_bss) @06ad92a0
Initial Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Visibility: external public
References:
Referring: init_data_bss/0 (addr)
Availability: not-ready
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Visibility: external public
References:
Referring: init_data_bss/0 (addr)
Availability: not-ready
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: public
References: __INIT_TABLE/1 (addr)__ZERO_TABLE/2 (addr)
@ -84,21 +84,21 @@ Removing unused symbols:
Reclaimed Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Visibility: external public
References:
Referring: init_data_bss/0 (addr)
Availability: not-ready
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Visibility: external public
References:
Referring: init_data_bss/0 (addr)
Availability: not-ready
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: public
References: __INIT_TABLE/1 (addr)__ZERO_TABLE/2 (addr)
@ -112,7 +112,7 @@ Reclaiming variables:
Clearing address taken flags:
Optimized Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -120,7 +120,7 @@ __ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -128,7 +128,7 @@ __INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)
@ -149,7 +149,7 @@ Removing variables:
Final Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -157,7 +157,7 @@ __ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
Referring:
Availability: not_available
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -165,7 +165,7 @@ __INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
Referring:
Availability: not_available
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:

View File

@ -13,7 +13,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -21,7 +21,7 @@ __ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
Referring: init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -29,7 +29,7 @@ __INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
Referring: init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
References: __INIT_TABLE/1 (addr)__ZERO_TABLE/2 (addr)

View File

@ -4,7 +4,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -12,7 +12,7 @@ __ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -20,7 +20,7 @@ __INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)

View File

@ -14,7 +14,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -22,7 +22,7 @@ __ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -30,7 +30,7 @@ __INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)

View File

@ -1,6 +1,6 @@
Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -8,7 +8,7 @@ __ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -16,7 +16,7 @@ __INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)

View File

@ -27,7 +27,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -35,7 +35,7 @@ __ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -43,7 +43,7 @@ __INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)

View File

@ -55,7 +55,7 @@ IPA function summary for init_data_bss/0 inlinable
Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -63,7 +63,7 @@ __ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -71,7 +71,7 @@ __INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)

View File

@ -37,7 +37,7 @@ IPA function summary for init_data_bss/0 inlinable
Symbol table:
__ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
__ZERO_TABLE/2 (__ZERO_TABLE) @06a08b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -45,7 +45,7 @@ __ZERO_TABLE/2 (__ZERO_TABLE) @06ad8b88
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
__INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
__INIT_TABLE/1 (__INIT_TABLE) @06a08b40
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -53,7 +53,7 @@ __INIT_TABLE/1 (__INIT_TABLE) @06ad8b40
Referring: init_data_bss/0 (read)init_data_bss/0 (addr)
Availability: not_available
Varpool flags:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)

View File

@ -45,10 +45,10 @@
scanning: return;
callgraph:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06804da8
Aux: @06734f70
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)
Referring:
Availability: available
@ -58,10 +58,10 @@ init_data_bss/0 (init_data_bss) @06ad92a0
ordered call graph: reduced for nothrow
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06804da8
Aux: @06734f70
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)
Referring:
Availability: available
@ -79,10 +79,10 @@ MALLOC LATTICE after propagation:
init_data_bss: malloc_bottom
callgraph:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06804d48
Aux: @06734f10
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)
Referring:
Availability: available
@ -92,10 +92,10 @@ init_data_bss/0 (init_data_bss) @06ad92a0
ordered call graph: reduced
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06804d48
Aux: @06734f10
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)
Referring:
Availability: available

View File

@ -1,6 +1,6 @@
callgraph:
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)
@ -16,10 +16,10 @@ Function name:init_data_bss/0:
locals written:
ordered call graph: reduced
init_data_bss/0 (init_data_bss) @06ad92a0
init_data_bss/0 (init_data_bss) @06a092a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06804da8
Aux: @06734c90
References: __INIT_TABLE/1 (read)__INIT_TABLE/1 (addr)__ZERO_TABLE/2 (read)__ZERO_TABLE/2 (addr)
Referring:
Availability: available

View File

@ -3,7 +3,7 @@ Trivially needed symbols: SystemInit Sys_GetCoreID default_interrupt_routine sta
Initial Symbol table:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility:
Aux: @01733ea0
@ -12,7 +12,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: body optimize_size
Called by: SystemInit/6
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: public
Aux: @01733ea0
@ -21,53 +21,53 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: body optimize_size
Called by:
Calls: sys_m7_cache_init/7 Sys_GetCoreID/5
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: public
Aux: @06bdfe00
Aux: @06bb9e00
References:
Referring:
Function flags: body optimize_size
Called by: SystemInit/6
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: public
Aux: @06bdfb60
Aux: @06bb9b60
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: public
Aux: @06bdf8c0
Aux: @06bb98c0
References:
Referring:
Function flags: body optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: public
Aux: @06bdf620
Aux: @06bb9620
References:
Referring:
Availability: not-ready
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility:
Aux: @06b5c2d0
Aux: @06b2e2d0
References:
Referring: SystemInit/6 (read)
Availability: not-ready
Varpool flags: initialized read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility:
Aux: @06bdf700
Aux: @06bb9700
References:
Referring: SystemInit/6 (read)
Availability: not-ready
@ -77,7 +77,7 @@ Removing unused symbols:
Reclaimed Symbol table:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility:
References:
@ -85,7 +85,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: body optimize_size
Called by: SystemInit/6
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: public
References: rbar/0 (read)rasr/1 (read)
@ -93,7 +93,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: body optimize_size
Called by:
Calls: sys_m7_cache_init/7 Sys_GetCoreID/5
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: public
References:
@ -101,7 +101,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: body optimize_size
Called by: SystemInit/6
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: public
References:
@ -109,7 +109,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: body optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: public
References:
@ -117,21 +117,21 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
Function flags: body optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: public
References:
Referring:
Availability: not-ready
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility:
References:
Referring: SystemInit/6 (read)
Availability: not-ready
Varpool flags: initialized read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility:
References:
@ -142,7 +142,7 @@ rbar/0 (rbar) @06b5c2d0
Initial Symbol table:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility:
References:
@ -150,7 +150,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: body optimize_size
Called by: SystemInit/6
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: public
References: rbar/0 (read)rasr/1 (read)
@ -158,7 +158,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: body optimize_size
Called by:
Calls: sys_m7_cache_init/7 Sys_GetCoreID/5
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: public
References:
@ -166,7 +166,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: body optimize_size
Called by: SystemInit/6
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: public
References:
@ -174,7 +174,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: body optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: public
References:
@ -182,21 +182,21 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
Function flags: body optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: public
References:
Referring:
Availability: not-ready
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility:
References:
Referring: SystemInit/6 (read)
Availability: not-ready
Varpool flags: initialized read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility:
References:
@ -208,7 +208,7 @@ Removing unused symbols:
Reclaimed Symbol table:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility:
References:
@ -216,7 +216,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: body optimize_size
Called by: SystemInit/6
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: public
References: rbar/0 (read)rasr/1 (read)
@ -224,7 +224,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: body optimize_size
Called by:
Calls: sys_m7_cache_init/7 Sys_GetCoreID/5
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: public
References:
@ -232,7 +232,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: body optimize_size
Called by: SystemInit/6
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: public
References:
@ -240,7 +240,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: body optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: public
References:
@ -248,21 +248,21 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
Function flags: body optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: public
References:
Referring:
Availability: not-ready
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility:
References:
Referring: SystemInit/6 (read)
Availability: not-ready
Varpool flags: initialized read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility:
References:
@ -275,7 +275,7 @@ Reclaiming variables:
Clearing address taken flags:
Optimized Symbol table:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
References:
@ -285,7 +285,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:10737418 (estimated locally) body local optimize_size
Called by: SystemInit/6 (inlined) (10737418 (estimated locally),1.00 per call)
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
References: rbar/0 (read)rasr/1 (read)
@ -294,7 +294,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (inlined) (10737418 (estimated locally),1.00 per call)
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -303,7 +303,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -312,7 +312,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: count:107374 (estimated locally) body nonfreeing_fn executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -321,21 +321,21 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring:
Availability: available
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: SystemInit/6 (read)
Availability: available
Varpool flags: initialized used-by-single-function read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
@ -357,7 +357,7 @@ Removing variables:
Final Symbol table:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:
@ -366,7 +366,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: count:10738492 (estimated locally) optimize_size
Called by:
Calls:
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:
@ -375,7 +375,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: count:1073741824 (estimated locally) nonfreeing_fn optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:
@ -384,7 +384,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: count:107374 (estimated locally) nonfreeing_fn executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:
@ -393,7 +393,7 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
Function flags: count:1073741824 (estimated locally) nonfreeing_fn optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: externally_visible asm_written public
Aux: @00000001
@ -401,18 +401,18 @@ RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
Referring:
Availability: available
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility: prevailing_def_ironly asm_written
Aux: @06bda900
Aux: @06bb4900
References:
Referring:
Availability: available
Varpool flags: initialized used-by-single-function read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility: prevailing_def_ironly asm_written
Aux: @06b5c3a8
Aux: @06b2e3a8
References:
Referring:
Availability: available

View File

@ -13,7 +13,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
References:
@ -22,7 +22,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: body local optimize_size
Called by: SystemInit/6
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
References: rbar/0 (read)rasr/1 (read)
@ -31,7 +31,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: body optimize_size
Called by:
Calls: sys_m7_cache_init/7 Sys_GetCoreID/5
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -40,7 +40,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: body optimize_size
Called by: SystemInit/6
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -49,7 +49,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: body optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -58,21 +58,21 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
Function flags: body optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring:
Availability: available
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: SystemInit/6 (read)
Availability: available
Varpool flags: initialized read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -4,7 +4,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
References:
@ -13,7 +13,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:12992276 (estimated locally) body local optimize_size
Called by: SystemInit/6 (10737418 (estimated locally),1.00 per call)
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
References: rbar/0 (read)rasr/1 (read)
@ -22,7 +22,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (10737418 (estimated locally),1.00 per call)
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -31,7 +31,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -40,7 +40,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -49,21 +49,21 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring:
Availability: available
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: SystemInit/6 (read)
Availability: available
Varpool flags: initialized read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -14,7 +14,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
References:
@ -23,7 +23,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:12992276 (estimated locally) body local optimize_size
Called by: SystemInit/6 (10737418 (estimated locally),1.00 per call)
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
References: rbar/0 (read)rasr/1 (read)
@ -32,7 +32,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (10737418 (estimated locally),1.00 per call)
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -41,7 +41,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -50,7 +50,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -59,21 +59,21 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring:
Availability: available
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: SystemInit/6 (read)
Availability: available
Varpool flags: initialized read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -1,6 +1,6 @@
Symbol table:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
References:
@ -9,7 +9,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:12992276 (estimated locally) body local optimize_size
Called by: SystemInit/6 (10737418 (estimated locally),1.00 per call)
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
References: rbar/0 (read)rasr/1 (read)
@ -18,7 +18,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (10737418 (estimated locally),1.00 per call)
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -27,7 +27,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -36,7 +36,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -45,21 +45,21 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring:
Availability: available
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: SystemInit/6 (read)
Availability: available
Varpool flags: initialized read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -39,7 +39,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
References:
@ -48,7 +48,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:12992276 (estimated locally) body local optimize_size
Called by: SystemInit/6 (10737418 (estimated locally),1.00 per call)
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
References: rbar/0 (read)rasr/1 (read)
@ -57,7 +57,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (10737418 (estimated locally),1.00 per call)
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -66,7 +66,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -75,7 +75,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -84,21 +84,21 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring:
Availability: available
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: SystemInit/6 (read)
Availability: available
Varpool flags: initialized read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -159,7 +159,7 @@ IPA function summary for startup_go_to_user_mode/3 inlinable
Symbol table:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
References:
@ -168,7 +168,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:12992276 (estimated locally) body local optimize_size
Called by: SystemInit/6 (10737418 (estimated locally),1.00 per call)
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
References: rbar/0 (read)rasr/1 (read)
@ -177,7 +177,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (10737418 (estimated locally),1.00 per call)
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -186,7 +186,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -195,7 +195,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -204,21 +204,21 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring:
Availability: available
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: SystemInit/6 (read)
Availability: available
Varpool flags: initialized read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -127,7 +127,7 @@ IPA function summary for startup_go_to_user_mode/3 inlinable
Symbol table:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
References:
@ -137,7 +137,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:10737418 (estimated locally) body local optimize_size
Called by: SystemInit/6 (inlined) (10737418 (estimated locally),1.00 per call)
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
References: rbar/0 (read)rasr/1 (read)
@ -146,7 +146,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (inlined) (10737418 (estimated locally),1.00 per call)
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -155,7 +155,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -164,7 +164,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -173,21 +173,21 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bda900
RESET_CATCH_CORE/2 (RESET_CATCH_CORE) @06bb4900
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring:
Availability: available
Varpool flags: initialized
rasr/1 (rasr) @06b5c3a8
rasr/1 (rasr) @06b2e3a8
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: SystemInit/6 (read)
Availability: available
Varpool flags: initialized read-only const-value-known
rbar/0 (rbar) @06b5c2d0
rbar/0 (rbar) @06b2e2d0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -171,10 +171,10 @@ Function is locally const.
Function is locally const.
callgraph:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
Aux: @067e5268
Aux: @04c14840
References:
Referring:
Function sys_m7_cache_init/7 is inline copy in SystemInit/6
@ -182,40 +182,40 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:10737418 (estimated locally) body local optimize_size
Called by: SystemInit/6 (inlined) (10737418 (estimated locally),1.00 per call)
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e53c8
Aux: @04c14860
References: rbar/0 (read)rasr/1 (read)
Referring:
Availability: available
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (inlined) (10737418 (estimated locally),1.00 per call)
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e52e8
Aux: @04c14ba0
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e5088
Aux: @04c14940
References:
Referring:
Availability: available
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e5408
Aux: @04c14aa0
References:
Referring:
Availability: available
@ -225,10 +225,10 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
ordered call graph: reduced for nothrow
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
Aux: @067e5268
Aux: @04c14840
References:
Referring:
Function sys_m7_cache_init/7 is inline copy in SystemInit/6
@ -236,40 +236,40 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:10737418 (estimated locally) body local optimize_size
Called by: SystemInit/6 (inlined) (10737418 (estimated locally),1.00 per call)
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e53c8
Aux: @04c14860
References: rbar/0 (read)rasr/1 (read)
Referring:
Availability: available
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (inlined) (10737418 (estimated locally),1.00 per call)
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e52e8
Aux: @04c14ba0
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e5088
Aux: @04c14940
References:
Referring:
Availability: available
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e5408
Aux: @04c14aa0
References:
Referring:
Availability: available
@ -295,10 +295,10 @@ default_interrupt_routine: malloc_bottom
startup_go_to_user_mode: malloc_bottom
callgraph:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
Aux: @067e5408
Aux: @04c14ba0
References:
Referring:
Function sys_m7_cache_init/7 is inline copy in SystemInit/6
@ -306,40 +306,40 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:10737418 (estimated locally) body local optimize_size
Called by: SystemInit/6 (inlined) (10737418 (estimated locally),1.00 per call)
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e52e8
Aux: @04c14960
References: rbar/0 (read)rasr/1 (read)
Referring:
Availability: available
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (inlined) (10737418 (estimated locally),1.00 per call)
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e5268
Aux: @04c14b80
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e5328
Aux: @04c148a0
References:
Referring:
Availability: available
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e5288
Aux: @04c14be0
References:
Referring:
Availability: available
@ -349,20 +349,20 @@ startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
ordered call graph: reduced
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e52e8
Aux: @04c14960
References: rbar/0 (read)rasr/1 (read)
Referring:
Availability: available
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (inlined) (10737418 (estimated locally),1.00 per call)
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
Aux: @067e5408
Aux: @04c14ba0
References:
Referring:
Function sys_m7_cache_init/7 is inline copy in SystemInit/6
@ -370,30 +370,30 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:10737418 (estimated locally) body local optimize_size
Called by: SystemInit/6 (inlined) (10737418 (estimated locally),1.00 per call)
Calls:
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e5268
Aux: @04c14b80
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e5328
Aux: @04c148a0
References:
Referring:
Availability: available
Function flags: count:107374 (estimated locally) body executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e5288
Aux: @04c14be0
References:
Referring:
Availability: available

View File

@ -1,6 +1,6 @@
callgraph:
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
References:
@ -10,7 +10,7 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:10737418 (estimated locally) body local optimize_size
Called by: SystemInit/6 (inlined) (10737418 (estimated locally),1.00 per call)
Calls:
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
References: rbar/0 (read)rasr/1 (read)
@ -19,7 +19,7 @@ SystemInit/6 (SystemInit) @06bdfe00
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (inlined) (10737418 (estimated locally),1.00 per call)
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -28,7 +28,7 @@ Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -37,7 +37,7 @@ default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
Function flags: count:107374 (estimated locally) body nonfreeing_fn executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -65,20 +65,20 @@ Function name:startup_go_to_user_mode/3:
locals written:
ordered call graph: reduced
SystemInit/6 (SystemInit) @06bdfe00
SystemInit/6 (SystemInit) @06bb9e00
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e5168
Aux: @04c149e0
References: rbar/0 (read)rasr/1 (read)
Referring:
Availability: available
Function flags: count:10738492 (estimated locally) body optimize_size
Called by:
Calls: sys_m7_cache_init/7 (inlined) (10737418 (estimated locally),1.00 per call)
sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
sys_m7_cache_init/7 (sys_m7_cache_init) @06bb9700
Type: function definition analyzed
Visibility: prevailing_def_ironly
Aux: @067e52c8
Aux: @04c14be0
References:
Referring:
Function sys_m7_cache_init/7 is inline copy in SystemInit/6
@ -86,30 +86,30 @@ sys_m7_cache_init/7 (sys_m7_cache_init) @06bdf700
Function flags: count:10737418 (estimated locally) body local optimize_size
Called by: SystemInit/6 (inlined) (10737418 (estimated locally),1.00 per call)
Calls:
Sys_GetCoreID/5 (Sys_GetCoreID) @06bdfb60
Sys_GetCoreID/5 (Sys_GetCoreID) @06bb9b60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e50c8
Aux: @04c14860
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
default_interrupt_routine/4 (default_interrupt_routine) @06bdf8c0
default_interrupt_routine/4 (default_interrupt_routine) @06bb98c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e51a8
Aux: @04c148a0
References:
Referring:
Availability: available
Function flags: count:107374 (estimated locally) body nonfreeing_fn executed_once optimize_size
Called by:
Calls:
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bdf620
startup_go_to_user_mode/3 (startup_go_to_user_mode) @06bb9620
Type: function definition analyzed
Visibility: externally_visible public
Aux: @067e52a8
Aux: @04c14ae0
References:
Referring:
Availability: available

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@ Trivially needed symbols: Adc_Sar_2_Isr Adc_Sar_1_Isr Adc_Sar_0_Isr
Initial Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -11,7 +11,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 Adc_Sar_1_Isr/2 Adc_Sar_0_Isr/1
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: public
Aux: @01733ea0
@ -20,25 +20,25 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: public
Aux: @06ce2b60
Aux: @06d78b60
References:
Referring:
Function flags: body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: public
Aux: @06ce2d20
Aux: @06d78d20
References:
Referring:
Function flags: body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4
DevAssert/0 (DevAssert) @06b7c540
DevAssert/0 (DevAssert) @06c18540
Type: function definition
Visibility:
References:
@ -51,7 +51,7 @@ Removing unused symbols: DevAssert
Reclaimed Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -59,7 +59,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 Adc_Sar_1_Isr/2 Adc_Sar_0_Isr/1
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: public
References:
@ -67,7 +67,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: public
References:
@ -75,7 +75,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: public
References:
@ -87,7 +87,7 @@ Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Initial Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -95,7 +95,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 Adc_Sar_1_Isr/2 Adc_Sar_0_Isr/1
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: public
References:
@ -103,7 +103,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: public
References:
@ -111,7 +111,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: public
References:
@ -124,7 +124,7 @@ Removing unused symbols:
Reclaimed Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -132,7 +132,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 Adc_Sar_1_Isr/2 Adc_Sar_0_Isr/1
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: public
References:
@ -140,7 +140,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: public
References:
@ -148,7 +148,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: public
References:
@ -162,7 +162,7 @@ Reclaiming variables:
Clearing address taken flags:
Optimized Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -171,7 +171,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 (1073741824 (estimated locally),1.00 per call) Adc_Sar_1_Isr/2 (1073741824 (estimated locally),1.00 per call) Adc_Sar_0_Isr/1 (1073741824 (estimated locally),1.00 per call)
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -180,7 +180,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -189,7 +189,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -212,7 +212,7 @@ Removing variables:
Final Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -221,7 +221,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by:
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:
@ -230,7 +230,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: count:1073741824 (estimated locally) optimize_size
Called by:
Calls:
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:
@ -239,7 +239,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: count:1073741824 (estimated locally) optimize_size
Called by:
Calls:
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible asm_written public
References:

View File

@ -13,7 +13,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -22,7 +22,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 Adc_Sar_1_Isr/2 Adc_Sar_0_Isr/1
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -31,7 +31,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -40,7 +40,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -4,7 +4,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -13,7 +13,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 (1073741824 (estimated locally),1.00 per call) Adc_Sar_1_Isr/2 (1073741824 (estimated locally),1.00 per call) Adc_Sar_0_Isr/1 (1073741824 (estimated locally),1.00 per call)
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -22,7 +22,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -31,7 +31,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -14,7 +14,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -23,7 +23,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 (1073741824 (estimated locally),1.00 per call) Adc_Sar_1_Isr/2 (1073741824 (estimated locally),1.00 per call) Adc_Sar_0_Isr/1 (1073741824 (estimated locally),1.00 per call)
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -32,7 +32,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -41,7 +41,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -1,6 +1,6 @@
Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -9,7 +9,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 (1073741824 (estimated locally),1.00 per call) Adc_Sar_1_Isr/2 (1073741824 (estimated locally),1.00 per call) Adc_Sar_0_Isr/1 (1073741824 (estimated locally),1.00 per call)
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -18,7 +18,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -27,7 +27,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -34,7 +34,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -43,7 +43,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 (1073741824 (estimated locally),1.00 per call) Adc_Sar_1_Isr/2 (1073741824 (estimated locally),1.00 per call) Adc_Sar_0_Isr/1 (1073741824 (estimated locally),1.00 per call)
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -52,7 +52,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -61,7 +61,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -78,7 +78,7 @@ IPA function summary for Adc_Sar_0_Isr/1 inlinable
Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -87,7 +87,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 (1073741824 (estimated locally),1.00 per call) Adc_Sar_1_Isr/2 (1073741824 (estimated locally),1.00 per call) Adc_Sar_0_Isr/1 (1073741824 (estimated locally),1.00 per call)
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -96,7 +96,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -105,7 +105,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -102,7 +102,7 @@ IPA function summary for Adc_Sar_0_Isr/1 inlinable
Symbol table:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -111,7 +111,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 (1073741824 (estimated locally),1.00 per call) Adc_Sar_1_Isr/2 (1073741824 (estimated locally),1.00 per call) Adc_Sar_0_Isr/1 (1073741824 (estimated locally),1.00 per call)
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -120,7 +120,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -129,7 +129,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
References:

View File

@ -18,7 +18,7 @@ Function is locally const.
Function is locally const.
callgraph:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -27,30 +27,30 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 (1073741824 (estimated locally),1.00 per call) Adc_Sar_1_Isr/2 (1073741824 (estimated locally),1.00 per call) Adc_Sar_0_Isr/1 (1073741824 (estimated locally),1.00 per call)
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835410
Aux: @050a5860
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835330
Aux: @050a58a0
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835490
Aux: @050a5540
References:
Referring:
Availability: available
@ -60,30 +60,30 @@ Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
ordered call graph: reduced for nothrow
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835410
Aux: @050a5860
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835330
Aux: @050a58a0
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835490
Aux: @050a5540
References:
Referring:
Availability: available
@ -105,7 +105,7 @@ Adc_Sar_1_Isr: malloc_bottom
Adc_Sar_0_Isr: malloc_bottom
callgraph:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -114,30 +114,30 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 (1073741824 (estimated locally),1.00 per call) Adc_Sar_1_Isr/2 (1073741824 (estimated locally),1.00 per call) Adc_Sar_0_Isr/1 (1073741824 (estimated locally),1.00 per call)
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835330
Aux: @050a58a0
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835410
Aux: @050a5860
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835490
Aux: @050a5540
References:
Referring:
Availability: available
@ -147,30 +147,30 @@ Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
ordered call graph: reduced
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835330
Aux: @050a58a0
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835410
Aux: @050a5860
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835490
Aux: @050a5540
References:
Referring:
Availability: available

View File

@ -1,6 +1,6 @@
callgraph:
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06bcf2a0
Type: function
Visibility: external public
References:
@ -9,7 +9,7 @@ Adc_Sar_Ip_IRQHandler/4 (Adc_Sar_Ip_IRQHandler) @06b342a0
Function flags: optimize_size
Called by: Adc_Sar_2_Isr/3 (1073741824 (estimated locally),1.00 per call) Adc_Sar_1_Isr/2 (1073741824 (estimated locally),1.00 per call) Adc_Sar_0_Isr/1 (1073741824 (estimated locally),1.00 per call)
Calls:
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -18,7 +18,7 @@ Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -27,7 +27,7 @@ Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -49,30 +49,30 @@ Function name:Adc_Sar_0_Isr/1:
locals written:
ordered call graph: reduced
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06ce2b60
Adc_Sar_2_Isr/3 (Adc_Sar_2_Isr) @06d78b60
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835330
Aux: @050a5100
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06ce2d20
Adc_Sar_1_Isr/2 (Adc_Sar_1_Isr) @06d78d20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835490
Aux: @050a5300
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Adc_Sar_Ip_IRQHandler/4 (1073741824 (estimated locally),1.00 per call)
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06ce29a0
Adc_Sar_0_Isr/1 (Adc_Sar_0_Isr) @06d789a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06835410
Aux: @050a51e0
References:
Referring:
Availability: available

File diff suppressed because it is too large Load Diff

View File

@ -13,7 +13,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06f51a80
Type: function
Visibility: external public
References:
@ -22,7 +22,7 @@ OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
Function flags: optimize_size
Called by: ClockTimeoutExpired/21
Calls:
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06f518c0
Type: function
Visibility: external public
References:
@ -31,7 +31,7 @@ OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
Function flags: optimize_size
Called by: ClockStartTimeout/20
Calls:
OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
OsIf_GetCounter/51 (OsIf_GetCounter) @06f517e0
Type: function
Visibility: external public
References:
@ -40,7 +40,7 @@ OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
Function flags: optimize_size
Called by: ClockStartTimeout/20
Calls:
GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
GetProducerClockFreq/50 (GetProducerClockFreq) @06f51460
Type: function
Visibility: external public
References:
@ -49,7 +49,7 @@ GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
Function flags: optimize_size
Called by: Clock_Ip_GetClockFrequency/15
Calls:
consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
consumerClockCallbacks/49 (consumerClockCallbacks) @06f553a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -57,7 +57,7 @@ consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
Referring: Clock_Ip_GetClockFrequency/15 (read)
Availability: not_available
Varpool flags: read-only
HwPllName/48 (HwPllName) @06fccdc8
HwPllName/48 (HwPllName) @06f47dc8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -65,7 +65,7 @@ HwPllName/48 (HwPllName) @06fccdc8
Referring: Clock_Ip_GetPllStatus/6 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
calcFreqCallbacks/47 (calcFreqCallbacks) @06f479d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -73,7 +73,7 @@ calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
Referring: Clock_Ip_Sleep/16 (read)Clock_Ip_TimeDelay/17 (read)
Availability: not_available
Varpool flags: read-only
UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
UpdateFrequencies/46 (UpdateFrequencies) @06d14e00
Type: function
Visibility: external public
References:
@ -82,7 +82,7 @@ UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
Function flags: optimize_size
Called by: Clock_Ip_PowerModeChangeNotification/11 Clock_Ip_DistributePll/7 Clock_Ip_InitClock/5
Calls:
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06f43d20
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06d14d20
Type: function
Visibility: external public
References:
@ -91,7 +91,7 @@ SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization)
Function flags: optimize_size
Called by: Clock_Ip_DistributePll/7 Clock_Ip_InitClock/5
Calls:
gateCallbacks/44 (gateCallbacks) @06fcc4c8
gateCallbacks/44 (gateCallbacks) @06f474c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -99,7 +99,7 @@ gateCallbacks/44 (gateCallbacks) @06fcc4c8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
gateCallbackIndex/43 (gateCallbackIndex) @06f47480
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -107,7 +107,7 @@ gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
clockName_sourceType/42 (clockName_sourceType) @06f473a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -115,7 +115,7 @@ clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbacks/41 (dividerCallbacks) @06fcc120
dividerCallbacks/41 (dividerCallbacks) @06f47120
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -123,7 +123,7 @@ dividerCallbacks/41 (dividerCallbacks) @06fcc120
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
dividerCallbackIndex/40 (dividerCallbackIndex) @06f470d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -131,7 +131,7 @@ dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06f47000
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -139,7 +139,7 @@ dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06d21630
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -147,7 +147,7 @@ dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
pcfsCallbacks/37 (pcfsCallbacks) @06d21ee8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -155,7 +155,7 @@ pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06d21ea0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -163,7 +163,7 @@ pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
intOscCallbacks/35 (intOscCallbacks) @06f50cf0
intOscCallbacks/35 (intOscCallbacks) @06d21cf0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -171,7 +171,7 @@ intOscCallbacks/35 (intOscCallbacks) @06f50cf0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06d21ca8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -179,7 +179,7 @@ ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
extOscCallbacks/33 (extOscCallbacks) @06f50bd0
extOscCallbacks/33 (extOscCallbacks) @06d21bd0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -187,7 +187,7 @@ extOscCallbacks/33 (extOscCallbacks) @06f50bd0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
xoscCallbackIndex/32 (xoscCallbackIndex) @06d21b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -195,7 +195,7 @@ xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pllCallbacks/31 (pllCallbacks) @06f50ab0
pllCallbacks/31 (pllCallbacks) @06d21ab0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -203,7 +203,7 @@ pllCallbacks/31 (pllCallbacks) @06f50ab0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
pllCallbackIndex/30 (pllCallbackIndex) @06d21a68
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -211,7 +211,7 @@ pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
fracDivCallbacks/29 (fracDivCallbacks) @06f50990
fracDivCallbacks/29 (fracDivCallbacks) @06d21990
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -219,7 +219,7 @@ fracDivCallbacks/29 (fracDivCallbacks) @06f50990
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06d21948
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -227,7 +227,7 @@ fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbacks/27 (selectorCallbacks) @06f50870
selectorCallbacks/27 (selectorCallbacks) @06d21870
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -235,7 +235,7 @@ selectorCallbacks/27 (selectorCallbacks) @06f50870
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
selectorCallbackIndex/26 (selectorCallbackIndex) @06d21828
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -243,7 +243,7 @@ selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06d14c40
Type: function
Visibility: external public
References:
@ -252,7 +252,7 @@ SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
Function flags: optimize_size
Called by: Clock_Ip_InitClock/5
Calls:
cmuCallbacks/24 (cmuCallbacks) @06f50708
cmuCallbacks/24 (cmuCallbacks) @06d21708
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -260,7 +260,7 @@ cmuCallbacks/24 (cmuCallbacks) @06f50708
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
cmuCallbackIndex/23 (cmuCallbackIndex) @06d216c0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -268,7 +268,7 @@ cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/22 (clockFeatures) @06f50678
clockFeatures/22 (clockFeatures) @06d21678
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -276,7 +276,7 @@ clockFeatures/22 (clockFeatures) @06f50678
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -285,7 +285,7 @@ ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
Function flags: body optimize_size
Called by:
Calls: OsIf_GetElapsed/53
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -294,7 +294,7 @@ ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
Function flags: body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 OsIf_GetCounter/51
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (read)
@ -304,7 +304,7 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -314,7 +314,7 @@ ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
Function flags: body optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
@ -324,7 +324,7 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
@ -334,7 +334,7 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5
Calls:
Indirect call
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
References: consumerClockCallbacks/49 (read)
@ -344,7 +344,7 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50
Indirect call
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -354,7 +354,7 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -364,7 +364,7 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (write)
@ -373,7 +373,7 @@ Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback)
Function flags: body optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -382,7 +382,7 @@ Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @
Function flags: body optimize_size
Called by:
Calls: UpdateFrequencies/46
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -392,7 +392,7 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -402,7 +402,7 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -412,7 +412,7 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
References: clockConfig/2 (read)clockConfig/2 (read)clockName_sourceType/42 (read)clockConfig/2 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockConfig/2 (read)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)clockConfig/2 (read)
@ -423,7 +423,7 @@ Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Calls: UpdateFrequencies/46 SpecificPeripheralClockInitialization/45
Indirect call
Indirect call
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)HwPllName/48 (read)
@ -433,7 +433,7 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4
Calls:
Indirect call
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -458,7 +458,7 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call
Indirect call
Indirect call
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
References: clockTreeIsConsumingPll/0 (read)
@ -467,28 +467,28 @@ Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Function flags: body optimize_size
Called by:
Calls: Clock_Ip_DistributePll/7 Clock_Ip_GetPllStatus/6 Clock_Ip_InitClock/5
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06e9b678
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06d75678
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: Clock_Ip_InitClock/5 (write)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (write)Clock_Ip_Sleep/16 (read)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (write)
Availability: available
Varpool flags:
clockConfig/2 (clockConfig) @06e9b5e8
clockConfig/2 (clockConfig) @06d755e8
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (write)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)
Availability: available
Varpool flags: initialized
clockNotificationsCallback/1 (clockNotificationsCallback) @06e9b5a0
clockNotificationsCallback/1 (clockNotificationsCallback) @06d755a0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References: ClockNotificatonsEmptyCallback/18 (addr)
Referring: Clock_Ip_InstallNotificationsCallback/12 (write)ReportClockErrors/19 (read)
Availability: available
Varpool flags: initialized
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06e9b510
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06d75510
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -4,7 +4,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06f51a80
Type: function
Visibility: external public
References:
@ -13,7 +13,7 @@ OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
Function flags: optimize_size
Called by: ClockTimeoutExpired/21 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06f518c0
Type: function
Visibility: external public
References:
@ -22,7 +22,7 @@ OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
OsIf_GetCounter/51 (OsIf_GetCounter) @06f517e0
Type: function
Visibility: external public
References:
@ -31,7 +31,7 @@ OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
GetProducerClockFreq/50 (GetProducerClockFreq) @06f51460
Type: function
Visibility: external public
References:
@ -40,7 +40,7 @@ GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
Function flags: optimize_size
Called by: Clock_Ip_GetClockFrequency/15 (354334802 (estimated locally),0.33 per call)
Calls:
consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
consumerClockCallbacks/49 (consumerClockCallbacks) @06f553a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -48,7 +48,7 @@ consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
Referring: Clock_Ip_GetClockFrequency/15 (read)
Availability: not_available
Varpool flags: read-only
HwPllName/48 (HwPllName) @06fccdc8
HwPllName/48 (HwPllName) @06f47dc8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -56,7 +56,7 @@ HwPllName/48 (HwPllName) @06fccdc8
Referring: Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
calcFreqCallbacks/47 (calcFreqCallbacks) @06f479d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -64,7 +64,7 @@ calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
Referring: Clock_Ip_Sleep/16 (read)Clock_Ip_TimeDelay/17 (read)
Availability: not_available
Varpool flags: read-only
UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
UpdateFrequencies/46 (UpdateFrequencies) @06d14e00
Type: function
Visibility: external public
References:
@ -73,7 +73,7 @@ UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
Function flags: optimize_size
Called by: Clock_Ip_PowerModeChangeNotification/11 (1073741824 (estimated locally),1.00 per call) Clock_Ip_DistributePll/7 (168730859 (estimated locally),1.00 per call) Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06f43d20
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06d14d20
Type: function
Visibility: external public
References:
@ -82,7 +82,7 @@ SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization)
Function flags: optimize_size
Called by: Clock_Ip_DistributePll/7 (38976828 (estimated locally),0.23 per call) Clock_Ip_InitClock/5 (38976828 (estimated locally),0.33 per call)
Calls:
gateCallbacks/44 (gateCallbacks) @06fcc4c8
gateCallbacks/44 (gateCallbacks) @06f474c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -90,7 +90,7 @@ gateCallbacks/44 (gateCallbacks) @06fcc4c8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
gateCallbackIndex/43 (gateCallbackIndex) @06f47480
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -98,7 +98,7 @@ gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
clockName_sourceType/42 (clockName_sourceType) @06f473a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -106,7 +106,7 @@ clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbacks/41 (dividerCallbacks) @06fcc120
dividerCallbacks/41 (dividerCallbacks) @06f47120
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -114,7 +114,7 @@ dividerCallbacks/41 (dividerCallbacks) @06fcc120
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
dividerCallbackIndex/40 (dividerCallbackIndex) @06f470d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -122,7 +122,7 @@ dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06f47000
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -130,7 +130,7 @@ dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06d21630
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -138,7 +138,7 @@ dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
pcfsCallbacks/37 (pcfsCallbacks) @06d21ee8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -146,7 +146,7 @@ pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06d21ea0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -154,7 +154,7 @@ pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
intOscCallbacks/35 (intOscCallbacks) @06f50cf0
intOscCallbacks/35 (intOscCallbacks) @06d21cf0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -162,7 +162,7 @@ intOscCallbacks/35 (intOscCallbacks) @06f50cf0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06d21ca8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -170,7 +170,7 @@ ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
extOscCallbacks/33 (extOscCallbacks) @06f50bd0
extOscCallbacks/33 (extOscCallbacks) @06d21bd0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -178,7 +178,7 @@ extOscCallbacks/33 (extOscCallbacks) @06f50bd0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
xoscCallbackIndex/32 (xoscCallbackIndex) @06d21b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -186,7 +186,7 @@ xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pllCallbacks/31 (pllCallbacks) @06f50ab0
pllCallbacks/31 (pllCallbacks) @06d21ab0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -194,7 +194,7 @@ pllCallbacks/31 (pllCallbacks) @06f50ab0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
pllCallbackIndex/30 (pllCallbackIndex) @06d21a68
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -202,7 +202,7 @@ pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
fracDivCallbacks/29 (fracDivCallbacks) @06f50990
fracDivCallbacks/29 (fracDivCallbacks) @06d21990
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -210,7 +210,7 @@ fracDivCallbacks/29 (fracDivCallbacks) @06f50990
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06d21948
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -218,7 +218,7 @@ fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbacks/27 (selectorCallbacks) @06f50870
selectorCallbacks/27 (selectorCallbacks) @06d21870
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -226,7 +226,7 @@ selectorCallbacks/27 (selectorCallbacks) @06f50870
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
selectorCallbackIndex/26 (selectorCallbackIndex) @06d21828
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -234,7 +234,7 @@ selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06d14c40
Type: function
Visibility: external public
References:
@ -243,7 +243,7 @@ SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
Function flags: optimize_size
Called by: Clock_Ip_InitClock/5 (118111599 (estimated locally),1.00 per call)
Calls:
cmuCallbacks/24 (cmuCallbacks) @06f50708
cmuCallbacks/24 (cmuCallbacks) @06d21708
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -251,7 +251,7 @@ cmuCallbacks/24 (cmuCallbacks) @06f50708
Referring: Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
cmuCallbackIndex/23 (cmuCallbackIndex) @06d216c0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -259,7 +259,7 @@ cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
Referring: Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/22 (clockFeatures) @06f50678
clockFeatures/22 (clockFeatures) @06d21678
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -267,7 +267,7 @@ clockFeatures/22 (clockFeatures) @06f50678
Referring: Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -276,7 +276,7 @@ ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_GetElapsed/53 (1073741824 (estimated locally),1.00 per call)
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -285,7 +285,7 @@ ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 (1073741824 (estimated locally),1.00 per call) OsIf_GetCounter/51 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (read)
@ -295,7 +295,7 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -305,7 +305,7 @@ ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
@ -315,7 +315,7 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
References: calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
@ -325,7 +325,7 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
Indirect call(955630223 (estimated locally),8.09 per call)
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
References: consumerClockCallbacks/49 (read)
@ -335,7 +335,7 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50 (354334802 (estimated locally),0.33 per call)
Indirect call(719407023 (estimated locally),0.67 per call)
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -345,7 +345,7 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -355,7 +355,7 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (write)
@ -364,7 +364,7 @@ Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback)
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -373,7 +373,7 @@ Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: UpdateFrequencies/46 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -383,7 +383,7 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -393,7 +393,7 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -403,7 +403,7 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
References: clockConfig/2 (read)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)
@ -414,7 +414,7 @@ Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Calls: UpdateFrequencies/46 (168730859 (estimated locally),1.00 per call) SpecificPeripheralClockInitialization/45 (38976828 (estimated locally),0.23 per call)
Indirect call(155907314 (estimated locally),0.92 per call)
Indirect call(630715948 (estimated locally),3.74 per call)
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)
@ -424,7 +424,7 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4 (354334802 (estimated locally),0.33 per call)
Calls:
Indirect call(1014686025 (estimated locally),8.83 per call)
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -449,7 +449,7 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call(118111600 (estimated locally),1.00 per call)
Indirect call(955630217 (estimated locally),8.09 per call)
Indirect call(330712479 (estimated locally),2.80 per call)
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
References: clockTreeIsConsumingPll/0 (read)
@ -458,28 +458,28 @@ Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Clock_Ip_DistributePll/7 (116930485 (estimated locally),0.11 per call) Clock_Ip_GetPllStatus/6 (354334802 (estimated locally),0.33 per call) Clock_Ip_InitClock/5 (1073741824 (estimated locally),1.00 per call)
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06e9b678
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06d75678
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: Clock_Ip_InitClock/5 (write)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (write)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (write)
Availability: available
Varpool flags:
clockConfig/2 (clockConfig) @06e9b5e8
clockConfig/2 (clockConfig) @06d755e8
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (write)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)
Availability: available
Varpool flags: initialized
clockNotificationsCallback/1 (clockNotificationsCallback) @06e9b5a0
clockNotificationsCallback/1 (clockNotificationsCallback) @06d755a0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References: ClockNotificatonsEmptyCallback/18 (addr)
Referring: Clock_Ip_InstallNotificationsCallback/12 (write)ReportClockErrors/19 (read)
Availability: available
Varpool flags: initialized
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06e9b510
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06d75510
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -14,7 +14,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06f51a80
Type: function
Visibility: external public
References:
@ -23,7 +23,7 @@ OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
Function flags: optimize_size
Called by: ClockTimeoutExpired/21 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06f518c0
Type: function
Visibility: external public
References:
@ -32,7 +32,7 @@ OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
OsIf_GetCounter/51 (OsIf_GetCounter) @06f517e0
Type: function
Visibility: external public
References:
@ -41,7 +41,7 @@ OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
GetProducerClockFreq/50 (GetProducerClockFreq) @06f51460
Type: function
Visibility: external public
References:
@ -50,7 +50,7 @@ GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
Function flags: optimize_size
Called by: Clock_Ip_GetClockFrequency/15 (354334802 (estimated locally),0.33 per call)
Calls:
consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
consumerClockCallbacks/49 (consumerClockCallbacks) @06f553a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -58,7 +58,7 @@ consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
Referring: Clock_Ip_GetClockFrequency/15 (read)
Availability: not_available
Varpool flags: read-only
HwPllName/48 (HwPllName) @06fccdc8
HwPllName/48 (HwPllName) @06f47dc8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -66,7 +66,7 @@ HwPllName/48 (HwPllName) @06fccdc8
Referring: Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
calcFreqCallbacks/47 (calcFreqCallbacks) @06f479d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -74,7 +74,7 @@ calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
Referring: Clock_Ip_Sleep/16 (read)Clock_Ip_TimeDelay/17 (read)
Availability: not_available
Varpool flags: read-only
UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
UpdateFrequencies/46 (UpdateFrequencies) @06d14e00
Type: function
Visibility: external public
References:
@ -83,7 +83,7 @@ UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
Function flags: optimize_size
Called by: Clock_Ip_PowerModeChangeNotification/11 (1073741824 (estimated locally),1.00 per call) Clock_Ip_DistributePll/7 (168730859 (estimated locally),1.00 per call) Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06f43d20
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06d14d20
Type: function
Visibility: external public
References:
@ -92,7 +92,7 @@ SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization)
Function flags: optimize_size
Called by: Clock_Ip_DistributePll/7 (38976828 (estimated locally),0.23 per call) Clock_Ip_InitClock/5 (38976828 (estimated locally),0.33 per call)
Calls:
gateCallbacks/44 (gateCallbacks) @06fcc4c8
gateCallbacks/44 (gateCallbacks) @06f474c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -100,7 +100,7 @@ gateCallbacks/44 (gateCallbacks) @06fcc4c8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
gateCallbackIndex/43 (gateCallbackIndex) @06f47480
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -108,7 +108,7 @@ gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
clockName_sourceType/42 (clockName_sourceType) @06f473a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -116,7 +116,7 @@ clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbacks/41 (dividerCallbacks) @06fcc120
dividerCallbacks/41 (dividerCallbacks) @06f47120
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -124,7 +124,7 @@ dividerCallbacks/41 (dividerCallbacks) @06fcc120
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
dividerCallbackIndex/40 (dividerCallbackIndex) @06f470d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -132,7 +132,7 @@ dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06f47000
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -140,7 +140,7 @@ dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06d21630
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -148,7 +148,7 @@ dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
pcfsCallbacks/37 (pcfsCallbacks) @06d21ee8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -156,7 +156,7 @@ pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06d21ea0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -164,7 +164,7 @@ pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
intOscCallbacks/35 (intOscCallbacks) @06f50cf0
intOscCallbacks/35 (intOscCallbacks) @06d21cf0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -172,7 +172,7 @@ intOscCallbacks/35 (intOscCallbacks) @06f50cf0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06d21ca8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -180,7 +180,7 @@ ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
extOscCallbacks/33 (extOscCallbacks) @06f50bd0
extOscCallbacks/33 (extOscCallbacks) @06d21bd0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -188,7 +188,7 @@ extOscCallbacks/33 (extOscCallbacks) @06f50bd0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
xoscCallbackIndex/32 (xoscCallbackIndex) @06d21b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -196,7 +196,7 @@ xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pllCallbacks/31 (pllCallbacks) @06f50ab0
pllCallbacks/31 (pllCallbacks) @06d21ab0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -204,7 +204,7 @@ pllCallbacks/31 (pllCallbacks) @06f50ab0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
pllCallbackIndex/30 (pllCallbackIndex) @06d21a68
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -212,7 +212,7 @@ pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
fracDivCallbacks/29 (fracDivCallbacks) @06f50990
fracDivCallbacks/29 (fracDivCallbacks) @06d21990
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -220,7 +220,7 @@ fracDivCallbacks/29 (fracDivCallbacks) @06f50990
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06d21948
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -228,7 +228,7 @@ fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbacks/27 (selectorCallbacks) @06f50870
selectorCallbacks/27 (selectorCallbacks) @06d21870
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -236,7 +236,7 @@ selectorCallbacks/27 (selectorCallbacks) @06f50870
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
selectorCallbackIndex/26 (selectorCallbackIndex) @06d21828
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -244,7 +244,7 @@ selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06d14c40
Type: function
Visibility: external public
References:
@ -253,7 +253,7 @@ SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
Function flags: optimize_size
Called by: Clock_Ip_InitClock/5 (118111599 (estimated locally),1.00 per call)
Calls:
cmuCallbacks/24 (cmuCallbacks) @06f50708
cmuCallbacks/24 (cmuCallbacks) @06d21708
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -261,7 +261,7 @@ cmuCallbacks/24 (cmuCallbacks) @06f50708
Referring: Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
cmuCallbackIndex/23 (cmuCallbackIndex) @06d216c0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -269,7 +269,7 @@ cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
Referring: Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/22 (clockFeatures) @06f50678
clockFeatures/22 (clockFeatures) @06d21678
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -277,7 +277,7 @@ clockFeatures/22 (clockFeatures) @06f50678
Referring: Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -286,7 +286,7 @@ ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_GetElapsed/53 (1073741824 (estimated locally),1.00 per call)
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -295,7 +295,7 @@ ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 (1073741824 (estimated locally),1.00 per call) OsIf_GetCounter/51 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (read)
@ -305,7 +305,7 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -315,7 +315,7 @@ ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
@ -325,7 +325,7 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
References: calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
@ -335,7 +335,7 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
Indirect call(955630223 (estimated locally),8.09 per call)
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
References: consumerClockCallbacks/49 (read)
@ -345,7 +345,7 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50 (354334802 (estimated locally),0.33 per call)
Indirect call(719407023 (estimated locally),0.67 per call)
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -355,7 +355,7 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -365,7 +365,7 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (write)
@ -374,7 +374,7 @@ Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback)
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -383,7 +383,7 @@ Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: UpdateFrequencies/46 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -393,7 +393,7 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -403,7 +403,7 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -413,7 +413,7 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
References: clockConfig/2 (read)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)
@ -424,7 +424,7 @@ Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Calls: UpdateFrequencies/46 (168730859 (estimated locally),1.00 per call) SpecificPeripheralClockInitialization/45 (38976828 (estimated locally),0.23 per call)
Indirect call(155907314 (estimated locally),0.92 per call)
Indirect call(630715948 (estimated locally),3.74 per call)
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)
@ -434,7 +434,7 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4 (354334802 (estimated locally),0.33 per call)
Calls:
Indirect call(1014686025 (estimated locally),8.83 per call)
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -459,7 +459,7 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call(118111600 (estimated locally),1.00 per call)
Indirect call(955630217 (estimated locally),8.09 per call)
Indirect call(330712479 (estimated locally),2.80 per call)
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
References: clockTreeIsConsumingPll/0 (read)
@ -468,28 +468,28 @@ Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Clock_Ip_DistributePll/7 (116930485 (estimated locally),0.11 per call) Clock_Ip_GetPllStatus/6 (354334802 (estimated locally),0.33 per call) Clock_Ip_InitClock/5 (1073741824 (estimated locally),1.00 per call)
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06e9b678
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06d75678
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: Clock_Ip_InitClock/5 (write)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (write)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (write)
Availability: available
Varpool flags:
clockConfig/2 (clockConfig) @06e9b5e8
clockConfig/2 (clockConfig) @06d755e8
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (write)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)
Availability: available
Varpool flags: initialized
clockNotificationsCallback/1 (clockNotificationsCallback) @06e9b5a0
clockNotificationsCallback/1 (clockNotificationsCallback) @06d755a0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References: ClockNotificatonsEmptyCallback/18 (addr)
Referring: Clock_Ip_InstallNotificationsCallback/12 (write)ReportClockErrors/19 (read)
Availability: available
Varpool flags: initialized
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06e9b510
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06d75510
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -1,6 +1,6 @@
Symbol table:
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06f51a80
Type: function
Visibility: external public
References:
@ -9,7 +9,7 @@ OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
Function flags: optimize_size
Called by: ClockTimeoutExpired/21 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06f518c0
Type: function
Visibility: external public
References:
@ -18,7 +18,7 @@ OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
OsIf_GetCounter/51 (OsIf_GetCounter) @06f517e0
Type: function
Visibility: external public
References:
@ -27,7 +27,7 @@ OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
GetProducerClockFreq/50 (GetProducerClockFreq) @06f51460
Type: function
Visibility: external public
References:
@ -36,7 +36,7 @@ GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
Function flags: optimize_size
Called by: Clock_Ip_GetClockFrequency/15 (354334802 (estimated locally),0.33 per call)
Calls:
consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
consumerClockCallbacks/49 (consumerClockCallbacks) @06f553a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -44,7 +44,7 @@ consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
Referring: Clock_Ip_GetClockFrequency/15 (read)
Availability: not_available
Varpool flags: read-only
HwPllName/48 (HwPllName) @06fccdc8
HwPllName/48 (HwPllName) @06f47dc8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -52,7 +52,7 @@ HwPllName/48 (HwPllName) @06fccdc8
Referring: Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
calcFreqCallbacks/47 (calcFreqCallbacks) @06f479d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -60,7 +60,7 @@ calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
Referring: Clock_Ip_Sleep/16 (read)Clock_Ip_TimeDelay/17 (read)
Availability: not_available
Varpool flags: read-only
UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
UpdateFrequencies/46 (UpdateFrequencies) @06d14e00
Type: function
Visibility: external public
References:
@ -69,7 +69,7 @@ UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
Function flags: optimize_size
Called by: Clock_Ip_PowerModeChangeNotification/11 (1073741824 (estimated locally),1.00 per call) Clock_Ip_DistributePll/7 (168730859 (estimated locally),1.00 per call) Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06f43d20
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06d14d20
Type: function
Visibility: external public
References:
@ -78,7 +78,7 @@ SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization)
Function flags: optimize_size
Called by: Clock_Ip_DistributePll/7 (38976828 (estimated locally),0.23 per call) Clock_Ip_InitClock/5 (38976828 (estimated locally),0.33 per call)
Calls:
gateCallbacks/44 (gateCallbacks) @06fcc4c8
gateCallbacks/44 (gateCallbacks) @06f474c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -86,7 +86,7 @@ gateCallbacks/44 (gateCallbacks) @06fcc4c8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
gateCallbackIndex/43 (gateCallbackIndex) @06f47480
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -94,7 +94,7 @@ gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
clockName_sourceType/42 (clockName_sourceType) @06f473a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -102,7 +102,7 @@ clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbacks/41 (dividerCallbacks) @06fcc120
dividerCallbacks/41 (dividerCallbacks) @06f47120
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -110,7 +110,7 @@ dividerCallbacks/41 (dividerCallbacks) @06fcc120
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
dividerCallbackIndex/40 (dividerCallbackIndex) @06f470d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -118,7 +118,7 @@ dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06f47000
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -126,7 +126,7 @@ dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06d21630
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -134,7 +134,7 @@ dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
pcfsCallbacks/37 (pcfsCallbacks) @06d21ee8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -142,7 +142,7 @@ pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06d21ea0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -150,7 +150,7 @@ pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
intOscCallbacks/35 (intOscCallbacks) @06f50cf0
intOscCallbacks/35 (intOscCallbacks) @06d21cf0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -158,7 +158,7 @@ intOscCallbacks/35 (intOscCallbacks) @06f50cf0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06d21ca8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -166,7 +166,7 @@ ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
extOscCallbacks/33 (extOscCallbacks) @06f50bd0
extOscCallbacks/33 (extOscCallbacks) @06d21bd0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -174,7 +174,7 @@ extOscCallbacks/33 (extOscCallbacks) @06f50bd0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
xoscCallbackIndex/32 (xoscCallbackIndex) @06d21b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -182,7 +182,7 @@ xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pllCallbacks/31 (pllCallbacks) @06f50ab0
pllCallbacks/31 (pllCallbacks) @06d21ab0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -190,7 +190,7 @@ pllCallbacks/31 (pllCallbacks) @06f50ab0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
pllCallbackIndex/30 (pllCallbackIndex) @06d21a68
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -198,7 +198,7 @@ pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
fracDivCallbacks/29 (fracDivCallbacks) @06f50990
fracDivCallbacks/29 (fracDivCallbacks) @06d21990
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -206,7 +206,7 @@ fracDivCallbacks/29 (fracDivCallbacks) @06f50990
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06d21948
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -214,7 +214,7 @@ fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbacks/27 (selectorCallbacks) @06f50870
selectorCallbacks/27 (selectorCallbacks) @06d21870
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -222,7 +222,7 @@ selectorCallbacks/27 (selectorCallbacks) @06f50870
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
selectorCallbackIndex/26 (selectorCallbackIndex) @06d21828
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -230,7 +230,7 @@ selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06d14c40
Type: function
Visibility: external public
References:
@ -239,7 +239,7 @@ SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
Function flags: optimize_size
Called by: Clock_Ip_InitClock/5 (118111599 (estimated locally),1.00 per call)
Calls:
cmuCallbacks/24 (cmuCallbacks) @06f50708
cmuCallbacks/24 (cmuCallbacks) @06d21708
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -247,7 +247,7 @@ cmuCallbacks/24 (cmuCallbacks) @06f50708
Referring: Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
cmuCallbackIndex/23 (cmuCallbackIndex) @06d216c0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -255,7 +255,7 @@ cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
Referring: Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/22 (clockFeatures) @06f50678
clockFeatures/22 (clockFeatures) @06d21678
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -263,7 +263,7 @@ clockFeatures/22 (clockFeatures) @06f50678
Referring: Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -272,7 +272,7 @@ ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_GetElapsed/53 (1073741824 (estimated locally),1.00 per call)
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -281,7 +281,7 @@ ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 (1073741824 (estimated locally),1.00 per call) OsIf_GetCounter/51 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (read)
@ -291,7 +291,7 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -301,7 +301,7 @@ ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
@ -311,7 +311,7 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
References: calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
@ -321,7 +321,7 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
Indirect call(955630223 (estimated locally),8.09 per call)
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
References: consumerClockCallbacks/49 (read)
@ -331,7 +331,7 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50 (354334802 (estimated locally),0.33 per call)
Indirect call(719407023 (estimated locally),0.67 per call)
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -341,7 +341,7 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -351,7 +351,7 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (write)
@ -360,7 +360,7 @@ Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback)
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -369,7 +369,7 @@ Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: UpdateFrequencies/46 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -379,7 +379,7 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -389,7 +389,7 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -399,7 +399,7 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
References: clockConfig/2 (read)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)
@ -410,7 +410,7 @@ Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Calls: UpdateFrequencies/46 (168730859 (estimated locally),1.00 per call) SpecificPeripheralClockInitialization/45 (38976828 (estimated locally),0.23 per call)
Indirect call(155907314 (estimated locally),0.92 per call)
Indirect call(630715948 (estimated locally),3.74 per call)
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)
@ -420,7 +420,7 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4 (354334802 (estimated locally),0.33 per call)
Calls:
Indirect call(1014686025 (estimated locally),8.83 per call)
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -445,7 +445,7 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call(118111600 (estimated locally),1.00 per call)
Indirect call(955630217 (estimated locally),8.09 per call)
Indirect call(330712479 (estimated locally),2.80 per call)
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
References: clockTreeIsConsumingPll/0 (read)
@ -454,28 +454,28 @@ Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Clock_Ip_DistributePll/7 (116930485 (estimated locally),0.11 per call) Clock_Ip_GetPllStatus/6 (354334802 (estimated locally),0.33 per call) Clock_Ip_InitClock/5 (1073741824 (estimated locally),1.00 per call)
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06e9b678
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06d75678
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: Clock_Ip_InitClock/5 (write)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (write)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (write)
Availability: available
Varpool flags:
clockConfig/2 (clockConfig) @06e9b5e8
clockConfig/2 (clockConfig) @06d755e8
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (write)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)
Availability: available
Varpool flags: initialized
clockNotificationsCallback/1 (clockNotificationsCallback) @06e9b5a0
clockNotificationsCallback/1 (clockNotificationsCallback) @06d755a0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References: ClockNotificatonsEmptyCallback/18 (addr)
Referring: Clock_Ip_InstallNotificationsCallback/12 (write)ReportClockErrors/19 (read)
Availability: available
Varpool flags: initialized
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06e9b510
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06d75510
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -537,7 +537,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06f51a80
Type: function
Visibility: external public
References:
@ -546,7 +546,7 @@ OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
Function flags: optimize_size
Called by: ClockTimeoutExpired/21 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06f518c0
Type: function
Visibility: external public
References:
@ -555,7 +555,7 @@ OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
OsIf_GetCounter/51 (OsIf_GetCounter) @06f517e0
Type: function
Visibility: external public
References:
@ -564,7 +564,7 @@ OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
GetProducerClockFreq/50 (GetProducerClockFreq) @06f51460
Type: function
Visibility: external public
References:
@ -573,7 +573,7 @@ GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
Function flags: optimize_size
Called by: Clock_Ip_GetClockFrequency/15 (354334802 (estimated locally),0.33 per call)
Calls:
consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
consumerClockCallbacks/49 (consumerClockCallbacks) @06f553a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -581,7 +581,7 @@ consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
Referring: Clock_Ip_GetClockFrequency/15 (read)
Availability: not_available
Varpool flags: read-only
HwPllName/48 (HwPllName) @06fccdc8
HwPllName/48 (HwPllName) @06f47dc8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -589,7 +589,7 @@ HwPllName/48 (HwPllName) @06fccdc8
Referring: Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
calcFreqCallbacks/47 (calcFreqCallbacks) @06f479d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -597,7 +597,7 @@ calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
Referring: Clock_Ip_Sleep/16 (read)Clock_Ip_TimeDelay/17 (read)
Availability: not_available
Varpool flags: read-only
UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
UpdateFrequencies/46 (UpdateFrequencies) @06d14e00
Type: function
Visibility: external public
References:
@ -606,7 +606,7 @@ UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
Function flags: optimize_size
Called by: Clock_Ip_PowerModeChangeNotification/11 (1073741824 (estimated locally),1.00 per call) Clock_Ip_DistributePll/7 (168730859 (estimated locally),1.00 per call) Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06f43d20
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06d14d20
Type: function
Visibility: external public
References:
@ -615,7 +615,7 @@ SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization)
Function flags: optimize_size
Called by: Clock_Ip_DistributePll/7 (38976828 (estimated locally),0.23 per call) Clock_Ip_InitClock/5 (38976828 (estimated locally),0.33 per call)
Calls:
gateCallbacks/44 (gateCallbacks) @06fcc4c8
gateCallbacks/44 (gateCallbacks) @06f474c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -623,7 +623,7 @@ gateCallbacks/44 (gateCallbacks) @06fcc4c8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
gateCallbackIndex/43 (gateCallbackIndex) @06f47480
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -631,7 +631,7 @@ gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
clockName_sourceType/42 (clockName_sourceType) @06f473a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -639,7 +639,7 @@ clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbacks/41 (dividerCallbacks) @06fcc120
dividerCallbacks/41 (dividerCallbacks) @06f47120
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -647,7 +647,7 @@ dividerCallbacks/41 (dividerCallbacks) @06fcc120
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
dividerCallbackIndex/40 (dividerCallbackIndex) @06f470d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -655,7 +655,7 @@ dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06f47000
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -663,7 +663,7 @@ dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06d21630
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -671,7 +671,7 @@ dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
pcfsCallbacks/37 (pcfsCallbacks) @06d21ee8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -679,7 +679,7 @@ pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06d21ea0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -687,7 +687,7 @@ pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
intOscCallbacks/35 (intOscCallbacks) @06f50cf0
intOscCallbacks/35 (intOscCallbacks) @06d21cf0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -695,7 +695,7 @@ intOscCallbacks/35 (intOscCallbacks) @06f50cf0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06d21ca8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -703,7 +703,7 @@ ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
extOscCallbacks/33 (extOscCallbacks) @06f50bd0
extOscCallbacks/33 (extOscCallbacks) @06d21bd0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -711,7 +711,7 @@ extOscCallbacks/33 (extOscCallbacks) @06f50bd0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
xoscCallbackIndex/32 (xoscCallbackIndex) @06d21b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -719,7 +719,7 @@ xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pllCallbacks/31 (pllCallbacks) @06f50ab0
pllCallbacks/31 (pllCallbacks) @06d21ab0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -727,7 +727,7 @@ pllCallbacks/31 (pllCallbacks) @06f50ab0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
pllCallbackIndex/30 (pllCallbackIndex) @06d21a68
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -735,7 +735,7 @@ pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
fracDivCallbacks/29 (fracDivCallbacks) @06f50990
fracDivCallbacks/29 (fracDivCallbacks) @06d21990
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -743,7 +743,7 @@ fracDivCallbacks/29 (fracDivCallbacks) @06f50990
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06d21948
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -751,7 +751,7 @@ fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbacks/27 (selectorCallbacks) @06f50870
selectorCallbacks/27 (selectorCallbacks) @06d21870
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -759,7 +759,7 @@ selectorCallbacks/27 (selectorCallbacks) @06f50870
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
selectorCallbackIndex/26 (selectorCallbackIndex) @06d21828
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -767,7 +767,7 @@ selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06d14c40
Type: function
Visibility: external public
References:
@ -776,7 +776,7 @@ SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
Function flags: optimize_size
Called by: Clock_Ip_InitClock/5 (118111599 (estimated locally),1.00 per call)
Calls:
cmuCallbacks/24 (cmuCallbacks) @06f50708
cmuCallbacks/24 (cmuCallbacks) @06d21708
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -784,7 +784,7 @@ cmuCallbacks/24 (cmuCallbacks) @06f50708
Referring: Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
cmuCallbackIndex/23 (cmuCallbackIndex) @06d216c0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -792,7 +792,7 @@ cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
Referring: Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/22 (clockFeatures) @06f50678
clockFeatures/22 (clockFeatures) @06d21678
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -800,7 +800,7 @@ clockFeatures/22 (clockFeatures) @06f50678
Referring: Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -809,7 +809,7 @@ ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_GetElapsed/53 (1073741824 (estimated locally),1.00 per call)
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -818,7 +818,7 @@ ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 (1073741824 (estimated locally),1.00 per call) OsIf_GetCounter/51 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (read)
@ -828,7 +828,7 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -838,7 +838,7 @@ ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
@ -848,7 +848,7 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
References: calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
@ -858,7 +858,7 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
Indirect call(955630223 (estimated locally),8.09 per call)
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
References: consumerClockCallbacks/49 (read)
@ -868,7 +868,7 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50 (354334802 (estimated locally),0.33 per call)
Indirect call(719407023 (estimated locally),0.67 per call)
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -878,7 +878,7 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -888,7 +888,7 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (write)
@ -897,7 +897,7 @@ Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback)
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -906,7 +906,7 @@ Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: UpdateFrequencies/46 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -916,7 +916,7 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -926,7 +926,7 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -936,7 +936,7 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
References: clockConfig/2 (read)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)
@ -947,7 +947,7 @@ Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Calls: UpdateFrequencies/46 (168730859 (estimated locally),1.00 per call) SpecificPeripheralClockInitialization/45 (38976828 (estimated locally),0.23 per call)
Indirect call(155907314 (estimated locally),0.92 per call)
Indirect call(630715948 (estimated locally),3.74 per call)
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)
@ -957,7 +957,7 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4 (354334802 (estimated locally),0.33 per call)
Calls:
Indirect call(1014686025 (estimated locally),8.83 per call)
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -982,7 +982,7 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call(118111600 (estimated locally),1.00 per call)
Indirect call(955630217 (estimated locally),8.09 per call)
Indirect call(330712479 (estimated locally),2.80 per call)
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
References: clockTreeIsConsumingPll/0 (read)
@ -991,28 +991,28 @@ Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Clock_Ip_DistributePll/7 (116930485 (estimated locally),0.11 per call) Clock_Ip_GetPllStatus/6 (354334802 (estimated locally),0.33 per call) Clock_Ip_InitClock/5 (1073741824 (estimated locally),1.00 per call)
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06e9b678
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06d75678
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: Clock_Ip_InitClock/5 (write)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (write)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (write)
Availability: available
Varpool flags:
clockConfig/2 (clockConfig) @06e9b5e8
clockConfig/2 (clockConfig) @06d755e8
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (write)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)
Availability: available
Varpool flags: initialized
clockNotificationsCallback/1 (clockNotificationsCallback) @06e9b5a0
clockNotificationsCallback/1 (clockNotificationsCallback) @06d755a0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References: ClockNotificatonsEmptyCallback/18 (addr)
Referring: Clock_Ip_InstallNotificationsCallback/12 (write)ReportClockErrors/19 (read)
Availability: available
Varpool flags: initialized
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06e9b510
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06d75510
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -664,7 +664,7 @@ IPA function summary for Clock_Ip_Init/4 inlinable
Symbol table:
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06f51a80
Type: function
Visibility: external public
References:
@ -673,7 +673,7 @@ OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
Function flags: optimize_size
Called by: ClockTimeoutExpired/21 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06f518c0
Type: function
Visibility: external public
References:
@ -682,7 +682,7 @@ OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
OsIf_GetCounter/51 (OsIf_GetCounter) @06f517e0
Type: function
Visibility: external public
References:
@ -691,7 +691,7 @@ OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
GetProducerClockFreq/50 (GetProducerClockFreq) @06f51460
Type: function
Visibility: external public
References:
@ -700,7 +700,7 @@ GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
Function flags: optimize_size
Called by: Clock_Ip_GetClockFrequency/15 (354334802 (estimated locally),0.33 per call)
Calls:
consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
consumerClockCallbacks/49 (consumerClockCallbacks) @06f553a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -708,7 +708,7 @@ consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
Referring: Clock_Ip_GetClockFrequency/15 (read)
Availability: not_available
Varpool flags: read-only
HwPllName/48 (HwPllName) @06fccdc8
HwPllName/48 (HwPllName) @06f47dc8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -716,7 +716,7 @@ HwPllName/48 (HwPllName) @06fccdc8
Referring: Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
calcFreqCallbacks/47 (calcFreqCallbacks) @06f479d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -724,7 +724,7 @@ calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
Referring: Clock_Ip_Sleep/16 (read)Clock_Ip_TimeDelay/17 (read)
Availability: not_available
Varpool flags: read-only
UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
UpdateFrequencies/46 (UpdateFrequencies) @06d14e00
Type: function
Visibility: external public
References:
@ -733,7 +733,7 @@ UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
Function flags: optimize_size
Called by: Clock_Ip_PowerModeChangeNotification/11 (1073741824 (estimated locally),1.00 per call) Clock_Ip_DistributePll/7 (168730859 (estimated locally),1.00 per call) Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06f43d20
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06d14d20
Type: function
Visibility: external public
References:
@ -742,7 +742,7 @@ SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization)
Function flags: optimize_size
Called by: Clock_Ip_DistributePll/7 (38976828 (estimated locally),0.23 per call) Clock_Ip_InitClock/5 (38976828 (estimated locally),0.33 per call)
Calls:
gateCallbacks/44 (gateCallbacks) @06fcc4c8
gateCallbacks/44 (gateCallbacks) @06f474c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -750,7 +750,7 @@ gateCallbacks/44 (gateCallbacks) @06fcc4c8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
gateCallbackIndex/43 (gateCallbackIndex) @06f47480
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -758,7 +758,7 @@ gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
clockName_sourceType/42 (clockName_sourceType) @06f473a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -766,7 +766,7 @@ clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbacks/41 (dividerCallbacks) @06fcc120
dividerCallbacks/41 (dividerCallbacks) @06f47120
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -774,7 +774,7 @@ dividerCallbacks/41 (dividerCallbacks) @06fcc120
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
dividerCallbackIndex/40 (dividerCallbackIndex) @06f470d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -782,7 +782,7 @@ dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06f47000
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -790,7 +790,7 @@ dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06d21630
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -798,7 +798,7 @@ dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
pcfsCallbacks/37 (pcfsCallbacks) @06d21ee8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -806,7 +806,7 @@ pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06d21ea0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -814,7 +814,7 @@ pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
intOscCallbacks/35 (intOscCallbacks) @06f50cf0
intOscCallbacks/35 (intOscCallbacks) @06d21cf0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -822,7 +822,7 @@ intOscCallbacks/35 (intOscCallbacks) @06f50cf0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06d21ca8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -830,7 +830,7 @@ ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
extOscCallbacks/33 (extOscCallbacks) @06f50bd0
extOscCallbacks/33 (extOscCallbacks) @06d21bd0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -838,7 +838,7 @@ extOscCallbacks/33 (extOscCallbacks) @06f50bd0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
xoscCallbackIndex/32 (xoscCallbackIndex) @06d21b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -846,7 +846,7 @@ xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pllCallbacks/31 (pllCallbacks) @06f50ab0
pllCallbacks/31 (pllCallbacks) @06d21ab0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -854,7 +854,7 @@ pllCallbacks/31 (pllCallbacks) @06f50ab0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
pllCallbackIndex/30 (pllCallbackIndex) @06d21a68
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -862,7 +862,7 @@ pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
fracDivCallbacks/29 (fracDivCallbacks) @06f50990
fracDivCallbacks/29 (fracDivCallbacks) @06d21990
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -870,7 +870,7 @@ fracDivCallbacks/29 (fracDivCallbacks) @06f50990
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06d21948
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -878,7 +878,7 @@ fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbacks/27 (selectorCallbacks) @06f50870
selectorCallbacks/27 (selectorCallbacks) @06d21870
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -886,7 +886,7 @@ selectorCallbacks/27 (selectorCallbacks) @06f50870
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
selectorCallbackIndex/26 (selectorCallbackIndex) @06d21828
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -894,7 +894,7 @@ selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06d14c40
Type: function
Visibility: external public
References:
@ -903,7 +903,7 @@ SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
Function flags: optimize_size
Called by: Clock_Ip_InitClock/5 (118111599 (estimated locally),1.00 per call)
Calls:
cmuCallbacks/24 (cmuCallbacks) @06f50708
cmuCallbacks/24 (cmuCallbacks) @06d21708
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -911,7 +911,7 @@ cmuCallbacks/24 (cmuCallbacks) @06f50708
Referring: Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
cmuCallbackIndex/23 (cmuCallbackIndex) @06d216c0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -919,7 +919,7 @@ cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
Referring: Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/22 (clockFeatures) @06f50678
clockFeatures/22 (clockFeatures) @06d21678
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -927,7 +927,7 @@ clockFeatures/22 (clockFeatures) @06f50678
Referring: Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -936,7 +936,7 @@ ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_GetElapsed/53 (1073741824 (estimated locally),1.00 per call)
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -945,7 +945,7 @@ ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 (1073741824 (estimated locally),1.00 per call) OsIf_GetCounter/51 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (read)
@ -955,7 +955,7 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -965,7 +965,7 @@ ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
@ -975,7 +975,7 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
References: calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
@ -985,7 +985,7 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
Indirect call(955630223 (estimated locally),8.09 per call)
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
References: consumerClockCallbacks/49 (read)
@ -995,7 +995,7 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50 (354334802 (estimated locally),0.33 per call)
Indirect call(719407023 (estimated locally),0.67 per call)
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -1005,7 +1005,7 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -1015,7 +1015,7 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (write)
@ -1024,7 +1024,7 @@ Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback)
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -1033,7 +1033,7 @@ Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: UpdateFrequencies/46 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -1043,7 +1043,7 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -1053,7 +1053,7 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -1063,7 +1063,7 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
References: clockConfig/2 (read)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)
@ -1074,7 +1074,7 @@ Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Calls: UpdateFrequencies/46 (168730859 (estimated locally),1.00 per call) SpecificPeripheralClockInitialization/45 (38976828 (estimated locally),0.23 per call)
Indirect call(155907314 (estimated locally),0.92 per call)
Indirect call(630715948 (estimated locally),3.74 per call)
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)
@ -1084,7 +1084,7 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4 (354334802 (estimated locally),0.33 per call)
Calls:
Indirect call(1014686025 (estimated locally),8.83 per call)
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -1109,7 +1109,7 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call(118111600 (estimated locally),1.00 per call)
Indirect call(955630217 (estimated locally),8.09 per call)
Indirect call(330712479 (estimated locally),2.80 per call)
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
References: clockTreeIsConsumingPll/0 (read)
@ -1118,28 +1118,28 @@ Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Clock_Ip_DistributePll/7 (116930485 (estimated locally),0.11 per call) Clock_Ip_GetPllStatus/6 (354334802 (estimated locally),0.33 per call) Clock_Ip_InitClock/5 (1073741824 (estimated locally),1.00 per call)
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06e9b678
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06d75678
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: Clock_Ip_InitClock/5 (write)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (write)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (write)
Availability: available
Varpool flags:
clockConfig/2 (clockConfig) @06e9b5e8
clockConfig/2 (clockConfig) @06d755e8
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (write)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)
Availability: available
Varpool flags: initialized
clockNotificationsCallback/1 (clockNotificationsCallback) @06e9b5a0
clockNotificationsCallback/1 (clockNotificationsCallback) @06d755a0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References: ClockNotificatonsEmptyCallback/18 (addr)
Referring: Clock_Ip_InstallNotificationsCallback/12 (write)ReportClockErrors/19 (read)
Availability: available
Varpool flags: initialized
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06e9b510
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06d75510
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -568,7 +568,7 @@ IPA function summary for Clock_Ip_Init/4 inlinable
Symbol table:
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06f51a80
Type: function
Visibility: external public
References:
@ -577,7 +577,7 @@ OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
Function flags: optimize_size
Called by: ClockTimeoutExpired/21 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06f518c0
Type: function
Visibility: external public
References:
@ -586,7 +586,7 @@ OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
OsIf_GetCounter/51 (OsIf_GetCounter) @06f517e0
Type: function
Visibility: external public
References:
@ -595,7 +595,7 @@ OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
GetProducerClockFreq/50 (GetProducerClockFreq) @06f51460
Type: function
Visibility: external public
References:
@ -604,7 +604,7 @@ GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
Function flags: optimize_size
Called by: Clock_Ip_GetClockFrequency/15 (354334802 (estimated locally),0.33 per call)
Calls:
consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
consumerClockCallbacks/49 (consumerClockCallbacks) @06f553a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -612,7 +612,7 @@ consumerClockCallbacks/49 (consumerClockCallbacks) @06fda3a8
Referring: Clock_Ip_GetClockFrequency/15 (read)
Availability: not_available
Varpool flags: read-only
HwPllName/48 (HwPllName) @06fccdc8
HwPllName/48 (HwPllName) @06f47dc8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -620,7 +620,7 @@ HwPllName/48 (HwPllName) @06fccdc8
Referring: Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
calcFreqCallbacks/47 (calcFreqCallbacks) @06f479d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -628,7 +628,7 @@ calcFreqCallbacks/47 (calcFreqCallbacks) @06fcc9d8
Referring: Clock_Ip_Sleep/16 (read)Clock_Ip_TimeDelay/17 (read)
Availability: not_available
Varpool flags: read-only
UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
UpdateFrequencies/46 (UpdateFrequencies) @06d14e00
Type: function
Visibility: external public
References:
@ -637,7 +637,7 @@ UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
Function flags: optimize_size
Called by: Clock_Ip_PowerModeChangeNotification/11 (1073741824 (estimated locally),1.00 per call) Clock_Ip_DistributePll/7 (168730859 (estimated locally),1.00 per call) Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06f43d20
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06d14d20
Type: function
Visibility: external public
References:
@ -646,7 +646,7 @@ SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization)
Function flags: optimize_size
Called by: Clock_Ip_DistributePll/7 (38976828 (estimated locally),0.23 per call) Clock_Ip_InitClock/5 (38976828 (estimated locally),0.33 per call)
Calls:
gateCallbacks/44 (gateCallbacks) @06fcc4c8
gateCallbacks/44 (gateCallbacks) @06f474c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -654,7 +654,7 @@ gateCallbacks/44 (gateCallbacks) @06fcc4c8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
gateCallbackIndex/43 (gateCallbackIndex) @06f47480
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -662,7 +662,7 @@ gateCallbackIndex/43 (gateCallbackIndex) @06fcc480
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
clockName_sourceType/42 (clockName_sourceType) @06f473a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -670,7 +670,7 @@ clockName_sourceType/42 (clockName_sourceType) @06fcc3a8
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbacks/41 (dividerCallbacks) @06fcc120
dividerCallbacks/41 (dividerCallbacks) @06f47120
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -678,7 +678,7 @@ dividerCallbacks/41 (dividerCallbacks) @06fcc120
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
dividerCallbackIndex/40 (dividerCallbackIndex) @06f470d8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -686,7 +686,7 @@ dividerCallbackIndex/40 (dividerCallbackIndex) @06fcc0d8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06f47000
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -694,7 +694,7 @@ dividerTriggerCallbacks/39 (dividerTriggerCallbacks) @06fcc000
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06d21630
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -702,7 +702,7 @@ dividertriggerCallbackIndex/38 (dividertriggerCallbackIndex) @06f50630
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
pcfsCallbacks/37 (pcfsCallbacks) @06d21ee8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -710,7 +710,7 @@ pcfsCallbacks/37 (pcfsCallbacks) @06f50ee8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
pcfsCallbackIndex/36 (pcfsCallbackIndex) @06d21ea0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -718,7 +718,7 @@ pcfsCallbackIndex/36 (pcfsCallbackIndex) @06f50ea0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
intOscCallbacks/35 (intOscCallbacks) @06f50cf0
intOscCallbacks/35 (intOscCallbacks) @06d21cf0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -726,7 +726,7 @@ intOscCallbacks/35 (intOscCallbacks) @06f50cf0
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
ircoscCallbackIndex/34 (ircoscCallbackIndex) @06d21ca8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -734,7 +734,7 @@ ircoscCallbackIndex/34 (ircoscCallbackIndex) @06f50ca8
Referring: Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
extOscCallbacks/33 (extOscCallbacks) @06f50bd0
extOscCallbacks/33 (extOscCallbacks) @06d21bd0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -742,7 +742,7 @@ extOscCallbacks/33 (extOscCallbacks) @06f50bd0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
xoscCallbackIndex/32 (xoscCallbackIndex) @06d21b88
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -750,7 +750,7 @@ xoscCallbackIndex/32 (xoscCallbackIndex) @06f50b88
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
pllCallbacks/31 (pllCallbacks) @06f50ab0
pllCallbacks/31 (pllCallbacks) @06d21ab0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -758,7 +758,7 @@ pllCallbacks/31 (pllCallbacks) @06f50ab0
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
pllCallbackIndex/30 (pllCallbackIndex) @06d21a68
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -766,7 +766,7 @@ pllCallbackIndex/30 (pllCallbackIndex) @06f50a68
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)
Availability: not_available
Varpool flags: read-only
fracDivCallbacks/29 (fracDivCallbacks) @06f50990
fracDivCallbacks/29 (fracDivCallbacks) @06d21990
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -774,7 +774,7 @@ fracDivCallbacks/29 (fracDivCallbacks) @06f50990
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06d21948
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -782,7 +782,7 @@ fractional_dividerCallbackIndex/28 (fractional_dividerCallbackIndex) @06f50948
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbacks/27 (selectorCallbacks) @06f50870
selectorCallbacks/27 (selectorCallbacks) @06d21870
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -790,7 +790,7 @@ selectorCallbacks/27 (selectorCallbacks) @06f50870
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
selectorCallbackIndex/26 (selectorCallbackIndex) @06d21828
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -798,7 +798,7 @@ selectorCallbackIndex/26 (selectorCallbackIndex) @06f50828
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)
Availability: not_available
Varpool flags: read-only
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06d14c40
Type: function
Visibility: external public
References:
@ -807,7 +807,7 @@ SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
Function flags: optimize_size
Called by: Clock_Ip_InitClock/5 (118111599 (estimated locally),1.00 per call)
Calls:
cmuCallbacks/24 (cmuCallbacks) @06f50708
cmuCallbacks/24 (cmuCallbacks) @06d21708
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -815,7 +815,7 @@ cmuCallbacks/24 (cmuCallbacks) @06f50708
Referring: Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
cmuCallbackIndex/23 (cmuCallbackIndex) @06d216c0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -823,7 +823,7 @@ cmuCallbackIndex/23 (cmuCallbackIndex) @06f506c0
Referring: Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/22 (clockFeatures) @06f50678
clockFeatures/22 (clockFeatures) @06d21678
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -831,7 +831,7 @@ clockFeatures/22 (clockFeatures) @06f50678
Referring: Clock_Ip_DisableModuleClock/13 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_GetPllStatus/6 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DisableClockMonitor/8 (read)Clock_Ip_GetClockMonitorStatus/9 (read)Clock_Ip_ClearClockMonitorStatus/10 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_EnableModuleClock/14 (read)
Availability: not_available
Varpool flags: read-only
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -840,7 +840,7 @@ ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_GetElapsed/53 (1073741824 (estimated locally),1.00 per call)
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -849,7 +849,7 @@ ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 (1073741824 (estimated locally),1.00 per call) OsIf_GetCounter/51 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (read)
@ -859,7 +859,7 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -869,7 +869,7 @@ ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
@ -879,7 +879,7 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
References: calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
@ -890,7 +890,7 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5 (inlined) (118111600 (estimated locally),1.00 per call)
Calls:
Indirect call(955630223 (estimated locally),8.09 per call)
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
References: consumerClockCallbacks/49 (read)
@ -900,7 +900,7 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50 (354334802 (estimated locally),0.33 per call)
Indirect call(719407023 (estimated locally),0.67 per call)
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -910,7 +910,7 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -920,7 +920,7 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (write)
@ -929,7 +929,7 @@ Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback)
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -938,7 +938,7 @@ Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: UpdateFrequencies/46 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -948,7 +948,7 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -958,7 +958,7 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -968,7 +968,7 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
References: clockConfig/2 (read)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)
@ -979,7 +979,7 @@ Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Calls: UpdateFrequencies/46 (168730859 (estimated locally),1.00 per call) SpecificPeripheralClockInitialization/45 (38976828 (estimated locally),0.23 per call)
Indirect call(155907314 (estimated locally),0.92 per call)
Indirect call(630715948 (estimated locally),3.74 per call)
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)
@ -989,7 +989,7 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4 (354334802 (estimated locally),0.33 per call)
Calls:
Indirect call(1014686025 (estimated locally),8.83 per call)
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -1014,7 +1014,7 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call(118111600 (estimated locally),1.00 per call)
Indirect call(955630217 (estimated locally),8.09 per call)
Indirect call(330712479 (estimated locally),2.80 per call)
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
References: clockTreeIsConsumingPll/0 (read)
@ -1023,28 +1023,28 @@ Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Clock_Ip_DistributePll/7 (116930485 (estimated locally),0.11 per call) Clock_Ip_GetPllStatus/6 (354334802 (estimated locally),0.33 per call) Clock_Ip_InitClock/5 (1073741824 (estimated locally),1.00 per call)
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06e9b678
ClockCalcFreqCallIdx/3 (ClockCalcFreqCallIdx) @06d75678
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:
Referring: Clock_Ip_InitClock/5 (write)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (read)Clock_Ip_Sleep/16 (write)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (read)Clock_Ip_TimeDelay/17 (write)
Availability: available
Varpool flags:
clockConfig/2 (clockConfig) @06e9b5e8
clockConfig/2 (clockConfig) @06d755e8
Type: variable definition analyzed
Visibility: externally_visible public
References:
Referring: Clock_Ip_InitClock/5 (read)Clock_Ip_InitClock/5 (write)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)Clock_Ip_DistributePll/7 (read)
Availability: available
Varpool flags: initialized
clockNotificationsCallback/1 (clockNotificationsCallback) @06e9b5a0
clockNotificationsCallback/1 (clockNotificationsCallback) @06d755a0
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References: ClockNotificatonsEmptyCallback/18 (addr)
Referring: Clock_Ip_InstallNotificationsCallback/12 (write)ReportClockErrors/19 (read)
Availability: available
Varpool flags: initialized
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06e9b510
clockTreeIsConsumingPll/0 (clockTreeIsConsumingPll) @06d75510
Type: variable definition analyzed
Visibility: prevailing_def_ironly
References:

View File

@ -687,7 +687,7 @@ Function is locally pure.
Function is locally const.
callgraph:
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06f51a80
Type: function
Visibility: external public
References:
@ -696,7 +696,7 @@ OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
Function flags: optimize_size
Called by: ClockTimeoutExpired/21 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06f518c0
Type: function
Visibility: external public
References:
@ -705,7 +705,7 @@ OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
OsIf_GetCounter/51 (OsIf_GetCounter) @06f517e0
Type: function
Visibility: external public
References:
@ -714,7 +714,7 @@ OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
GetProducerClockFreq/50 (GetProducerClockFreq) @06f51460
Type: function
Visibility: external public
References:
@ -723,7 +723,7 @@ GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
Function flags: optimize_size
Called by: Clock_Ip_GetClockFrequency/15 (354334802 (estimated locally),0.33 per call)
Calls:
UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
UpdateFrequencies/46 (UpdateFrequencies) @06d14e00
Type: function
Visibility: external public
References:
@ -732,7 +732,7 @@ UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
Function flags: optimize_size
Called by: Clock_Ip_PowerModeChangeNotification/11 (1073741824 (estimated locally),1.00 per call) Clock_Ip_DistributePll/7 (168730859 (estimated locally),1.00 per call) Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06f43d20
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06d14d20
Type: function
Visibility: external public
References:
@ -741,7 +741,7 @@ SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization)
Function flags: optimize_size
Called by: Clock_Ip_DistributePll/7 (38976828 (estimated locally),0.23 per call) Clock_Ip_InitClock/5 (38976828 (estimated locally),0.33 per call)
Calls:
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06d14c40
Type: function
Visibility: external public
References:
@ -750,30 +750,30 @@ SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
Function flags: optimize_size
Called by: Clock_Ip_InitClock/5 (118111599 (estimated locally),1.00 per call)
Calls:
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8fa8
Aux: @06f97148
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_GetElapsed/53 (1073741824 (estimated locally),1.00 per call)
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8cc8
Aux: @06f973e8
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 (1073741824 (estimated locally),1.00 per call) OsIf_GetCounter/51 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8ce8
Aux: @06f97408
References: clockNotificationsCallback/1 (read)
Referring:
Availability: available
@ -781,21 +781,21 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @070b8d08
Aux: @06f971e8
References:
Referring: clockNotificationsCallback/1 (addr)
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8e28
Aux: @06f97168
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
Referring:
Availability: available
@ -803,10 +803,10 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Aux: @070b8d28
Aux: @06f971a8
References: calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
Referring:
Function Clock_Ip_Sleep/16 is inline copy in Clock_Ip_InitClock/5
@ -815,10 +815,10 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5 (inlined) (118111600 (estimated locally),1.00 per call)
Calls:
Indirect call(955630223 (estimated locally),8.09 per call)
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8d48
Aux: @06f97088
References: consumerClockCallbacks/49 (read)
Referring:
Availability: available
@ -826,10 +826,10 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50 (354334802 (estimated locally),0.33 per call)
Indirect call(719407023 (estimated locally),0.67 per call)
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8d68
Aux: @06f97448
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
Referring:
Availability: available
@ -837,10 +837,10 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8da8
Aux: @06f97428
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
Referring:
Availability: available
@ -848,30 +848,30 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8ee8
Aux: @06f97468
References: clockNotificationsCallback/1 (write)
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8f08
Aux: @06f971c8
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: UpdateFrequencies/46 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8e48
Aux: @06f97208
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -879,10 +879,10 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8948
Aux: @06f97708
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -890,10 +890,10 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8988
Aux: @06f97728
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -901,10 +901,10 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8bc8
Aux: @06f97508
References: clockConfig/2 (read)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)
Referring:
Availability: available
@ -913,10 +913,10 @@ Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Calls: UpdateFrequencies/46 (168730859 (estimated locally),1.00 per call) SpecificPeripheralClockInitialization/45 (38976828 (estimated locally),0.23 per call)
Indirect call(155907314 (estimated locally),0.92 per call)
Indirect call(630715948 (estimated locally),3.74 per call)
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8be8
Aux: @06f97828
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)
Referring:
Availability: available
@ -924,10 +924,10 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4 (354334802 (estimated locally),0.33 per call)
Calls:
Indirect call(1014686025 (estimated locally),8.83 per call)
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b89e8
Aux: @06f97608
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -950,10 +950,10 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call(118111600 (estimated locally),1.00 per call)
Indirect call(955630217 (estimated locally),8.09 per call)
Indirect call(330712479 (estimated locally),2.80 per call)
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8a28
Aux: @06f974a8
References: clockTreeIsConsumingPll/0 (read)
Referring:
Availability: available
@ -963,30 +963,30 @@ Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
ordered call graph: reduced for nothrow
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8fa8
Aux: @06f97148
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_GetElapsed/53 (1073741824 (estimated locally),1.00 per call)
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8cc8
Aux: @06f973e8
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 (1073741824 (estimated locally),1.00 per call) OsIf_GetCounter/51 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8ce8
Aux: @06f97408
References: clockNotificationsCallback/1 (read)
Referring:
Availability: available
@ -994,21 +994,21 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @070b8d08
Aux: @06f971e8
References:
Referring: clockNotificationsCallback/1 (addr)
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8e28
Aux: @06f97168
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
Referring:
Availability: available
@ -1016,10 +1016,10 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Aux: @070b8d28
Aux: @06f971a8
References: calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
Referring:
Function Clock_Ip_Sleep/16 is inline copy in Clock_Ip_InitClock/5
@ -1028,10 +1028,10 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5 (inlined) (118111600 (estimated locally),1.00 per call)
Calls:
Indirect call(955630223 (estimated locally),8.09 per call)
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8d48
Aux: @06f97088
References: consumerClockCallbacks/49 (read)
Referring:
Availability: available
@ -1039,10 +1039,10 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50 (354334802 (estimated locally),0.33 per call)
Indirect call(719407023 (estimated locally),0.67 per call)
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8d68
Aux: @06f97448
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
Referring:
Availability: available
@ -1050,10 +1050,10 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8da8
Aux: @06f97428
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
Referring:
Availability: available
@ -1061,30 +1061,30 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8ee8
Aux: @06f97468
References: clockNotificationsCallback/1 (write)
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8f08
Aux: @06f971c8
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: UpdateFrequencies/46 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8e48
Aux: @06f97208
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -1092,10 +1092,10 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8948
Aux: @06f97708
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -1103,10 +1103,10 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8988
Aux: @06f97728
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -1114,10 +1114,10 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8bc8
Aux: @06f97508
References: clockConfig/2 (read)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)
Referring:
Availability: available
@ -1126,10 +1126,10 @@ Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Calls: UpdateFrequencies/46 (168730859 (estimated locally),1.00 per call) SpecificPeripheralClockInitialization/45 (38976828 (estimated locally),0.23 per call)
Indirect call(155907314 (estimated locally),0.92 per call)
Indirect call(630715948 (estimated locally),3.74 per call)
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8be8
Aux: @06f97828
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)
Referring:
Availability: available
@ -1137,10 +1137,10 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4 (354334802 (estimated locally),0.33 per call)
Calls:
Indirect call(1014686025 (estimated locally),8.83 per call)
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b89e8
Aux: @06f97608
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -1163,10 +1163,10 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call(118111600 (estimated locally),1.00 per call)
Indirect call(955630217 (estimated locally),8.09 per call)
Indirect call(330712479 (estimated locally),2.80 per call)
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8a28
Aux: @06f974a8
References: clockTreeIsConsumingPll/0 (read)
Referring:
Availability: available
@ -1218,7 +1218,7 @@ Clock_Ip_InitClock: malloc_bottom
Clock_Ip_Init: malloc_bottom
callgraph:
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06f51a80
Type: function
Visibility: external public
References:
@ -1227,7 +1227,7 @@ OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
Function flags: optimize_size
Called by: ClockTimeoutExpired/21 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06f518c0
Type: function
Visibility: external public
References:
@ -1236,7 +1236,7 @@ OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
OsIf_GetCounter/51 (OsIf_GetCounter) @06f517e0
Type: function
Visibility: external public
References:
@ -1245,7 +1245,7 @@ OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
GetProducerClockFreq/50 (GetProducerClockFreq) @06f51460
Type: function
Visibility: external public
References:
@ -1254,7 +1254,7 @@ GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
Function flags: optimize_size
Called by: Clock_Ip_GetClockFrequency/15 (354334802 (estimated locally),0.33 per call)
Calls:
UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
UpdateFrequencies/46 (UpdateFrequencies) @06d14e00
Type: function
Visibility: external public
References:
@ -1263,7 +1263,7 @@ UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
Function flags: optimize_size
Called by: Clock_Ip_PowerModeChangeNotification/11 (1073741824 (estimated locally),1.00 per call) Clock_Ip_DistributePll/7 (168730859 (estimated locally),1.00 per call) Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06f43d20
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06d14d20
Type: function
Visibility: external public
References:
@ -1272,7 +1272,7 @@ SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization)
Function flags: optimize_size
Called by: Clock_Ip_DistributePll/7 (38976828 (estimated locally),0.23 per call) Clock_Ip_InitClock/5 (38976828 (estimated locally),0.33 per call)
Calls:
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06d14c40
Type: function
Visibility: external public
References:
@ -1281,30 +1281,30 @@ SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
Function flags: optimize_size
Called by: Clock_Ip_InitClock/5 (118111599 (estimated locally),1.00 per call)
Calls:
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8a28
Aux: @06f97828
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_GetElapsed/53 (1073741824 (estimated locally),1.00 per call)
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8a88
Aux: @06f97708
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 (1073741824 (estimated locally),1.00 per call) OsIf_GetCounter/51 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8bc8
Aux: @06f974a8
References: clockNotificationsCallback/1 (read)
Referring:
Availability: available
@ -1312,21 +1312,21 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @070b8948
Aux: @06f97728
References:
Referring: clockNotificationsCallback/1 (addr)
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8be8
Aux: @06f97508
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
Referring:
Availability: available
@ -1334,10 +1334,10 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Aux: @070b89e8
Aux: @06f97568
References: calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
Referring:
Function Clock_Ip_Sleep/16 is inline copy in Clock_Ip_InitClock/5
@ -1346,10 +1346,10 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5 (inlined) (118111600 (estimated locally),1.00 per call)
Calls:
Indirect call(955630223 (estimated locally),8.09 per call)
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8988
Aux: @06f97608
References: consumerClockCallbacks/49 (read)
Referring:
Availability: available
@ -1357,10 +1357,10 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50 (354334802 (estimated locally),0.33 per call)
Indirect call(719407023 (estimated locally),0.67 per call)
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8e28
Aux: @06f97448
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
Referring:
Availability: available
@ -1368,10 +1368,10 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8e48
Aux: @06f973e8
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
Referring:
Availability: available
@ -1379,30 +1379,30 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8cc8
Aux: @06f97408
References: clockNotificationsCallback/1 (write)
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8ce8
Aux: @06f97148
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: UpdateFrequencies/46 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8d08
Aux: @06f97428
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -1410,10 +1410,10 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8ee8
Aux: @06f971a8
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -1421,10 +1421,10 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8fa8
Aux: @06f97168
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -1432,10 +1432,10 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8f08
Aux: @06f97468
References: clockConfig/2 (read)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)
Referring:
Availability: available
@ -1444,10 +1444,10 @@ Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Calls: UpdateFrequencies/46 (168730859 (estimated locally),1.00 per call) SpecificPeripheralClockInitialization/45 (38976828 (estimated locally),0.23 per call)
Indirect call(155907314 (estimated locally),0.92 per call)
Indirect call(630715948 (estimated locally),3.74 per call)
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8d28
Aux: @06f971c8
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)
Referring:
Availability: available
@ -1455,10 +1455,10 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4 (354334802 (estimated locally),0.33 per call)
Calls:
Indirect call(1014686025 (estimated locally),8.83 per call)
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8d48
Aux: @06f971e8
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -1481,10 +1481,10 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call(118111600 (estimated locally),1.00 per call)
Indirect call(955630217 (estimated locally),8.09 per call)
Indirect call(330712479 (estimated locally),2.80 per call)
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8d68
Aux: @06f97088
References: clockTreeIsConsumingPll/0 (read)
Referring:
Availability: available
@ -1494,30 +1494,30 @@ Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
ordered call graph: reduced
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8a28
Aux: @06f97828
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_GetElapsed/53 (1073741824 (estimated locally),1.00 per call)
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8a88
Aux: @06f97708
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 (1073741824 (estimated locally),1.00 per call) OsIf_GetCounter/51 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8bc8
Aux: @06f974a8
References: clockNotificationsCallback/1 (read)
Referring:
Availability: available
@ -1525,21 +1525,21 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @070b8948
Aux: @06f97728
References:
Referring: clockNotificationsCallback/1 (addr)
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8be8
Aux: @06f97508
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
Referring:
Availability: available
@ -1547,10 +1547,10 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8988
Aux: @06f97608
References: consumerClockCallbacks/49 (read)
Referring:
Availability: available
@ -1558,10 +1558,10 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50 (354334802 (estimated locally),0.33 per call)
Indirect call(719407023 (estimated locally),0.67 per call)
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8e28
Aux: @06f97448
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
Referring:
Availability: available
@ -1569,10 +1569,10 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8e48
Aux: @06f973e8
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
Referring:
Availability: available
@ -1580,30 +1580,30 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8cc8
Aux: @06f97408
References: clockNotificationsCallback/1 (write)
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8ce8
Aux: @06f97148
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: UpdateFrequencies/46 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8d08
Aux: @06f97428
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -1611,10 +1611,10 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8ee8
Aux: @06f971a8
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -1622,10 +1622,10 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8fa8
Aux: @06f97168
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -1633,20 +1633,20 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8d68
Aux: @06f97088
References: clockTreeIsConsumingPll/0 (read)
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Clock_Ip_DistributePll/7 (116930485 (estimated locally),0.11 per call) Clock_Ip_GetPllStatus/6 (354334802 (estimated locally),0.33 per call) Clock_Ip_InitClock/5 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8d48
Aux: @06f971e8
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -1669,10 +1669,10 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call(118111600 (estimated locally),1.00 per call)
Indirect call(955630217 (estimated locally),8.09 per call)
Indirect call(330712479 (estimated locally),2.80 per call)
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Aux: @070b89e8
Aux: @06f97568
References: calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
Referring:
Function Clock_Ip_Sleep/16 is inline copy in Clock_Ip_InitClock/5
@ -1681,10 +1681,10 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5 (inlined) (118111600 (estimated locally),1.00 per call)
Calls:
Indirect call(955630223 (estimated locally),8.09 per call)
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8d28
Aux: @06f971c8
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)
Referring:
Availability: available
@ -1692,10 +1692,10 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4 (354334802 (estimated locally),0.33 per call)
Calls:
Indirect call(1014686025 (estimated locally),8.83 per call)
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8f08
Aux: @06f97468
References: clockConfig/2 (read)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)
Referring:
Availability: available

View File

@ -1,6 +1,6 @@
callgraph:
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
OsIf_GetElapsed/53 (OsIf_GetElapsed) @06f51a80
Type: function
Visibility: external public
References:
@ -9,7 +9,7 @@ OsIf_GetElapsed/53 (OsIf_GetElapsed) @06fd6a80
Function flags: optimize_size
Called by: ClockTimeoutExpired/21 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06f518c0
Type: function
Visibility: external public
References:
@ -18,7 +18,7 @@ OsIf_MicrosToTicks/52 (OsIf_MicrosToTicks) @06fd68c0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
OsIf_GetCounter/51 (OsIf_GetCounter) @06f517e0
Type: function
Visibility: external public
References:
@ -27,7 +27,7 @@ OsIf_GetCounter/51 (OsIf_GetCounter) @06fd67e0
Function flags: optimize_size
Called by: ClockStartTimeout/20 (1073741824 (estimated locally),1.00 per call)
Calls:
GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
GetProducerClockFreq/50 (GetProducerClockFreq) @06f51460
Type: function
Visibility: external public
References:
@ -36,7 +36,7 @@ GetProducerClockFreq/50 (GetProducerClockFreq) @06fd6460
Function flags: optimize_size
Called by: Clock_Ip_GetClockFrequency/15 (354334802 (estimated locally),0.33 per call)
Calls:
UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
UpdateFrequencies/46 (UpdateFrequencies) @06d14e00
Type: function
Visibility: external public
References:
@ -45,7 +45,7 @@ UpdateFrequencies/46 (UpdateFrequencies) @06f43e00
Function flags: optimize_size
Called by: Clock_Ip_PowerModeChangeNotification/11 (1073741824 (estimated locally),1.00 per call) Clock_Ip_DistributePll/7 (168730859 (estimated locally),1.00 per call) Clock_Ip_InitClock/5 (118111600 (estimated locally),1.00 per call)
Calls:
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06f43d20
SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization) @06d14d20
Type: function
Visibility: external public
References:
@ -54,7 +54,7 @@ SpecificPeripheralClockInitialization/45 (SpecificPeripheralClockInitialization)
Function flags: optimize_size
Called by: Clock_Ip_DistributePll/7 (38976828 (estimated locally),0.23 per call) Clock_Ip_InitClock/5 (38976828 (estimated locally),0.33 per call)
Calls:
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06d14c40
Type: function
Visibility: external public
References:
@ -63,7 +63,7 @@ SpecificPlatformInitClock/25 (SpecificPlatformInitClock) @06f43c40
Function flags: optimize_size
Called by: Clock_Ip_InitClock/5 (118111599 (estimated locally),1.00 per call)
Calls:
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -72,7 +72,7 @@ ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_GetElapsed/53 (1073741824 (estimated locally),1.00 per call)
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -81,7 +81,7 @@ ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 (1073741824 (estimated locally),1.00 per call) OsIf_GetCounter/51 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (read)
@ -91,7 +91,7 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -101,7 +101,7 @@ ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
@ -111,7 +111,7 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
References: calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
@ -122,7 +122,7 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5 (inlined) (118111600 (estimated locally),1.00 per call)
Calls:
Indirect call(955630223 (estimated locally),8.09 per call)
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
References: consumerClockCallbacks/49 (read)
@ -132,7 +132,7 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50 (354334802 (estimated locally),0.33 per call)
Indirect call(719407023 (estimated locally),0.67 per call)
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -142,7 +142,7 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
@ -152,7 +152,7 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
References: clockNotificationsCallback/1 (write)
@ -161,7 +161,7 @@ Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback)
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
References:
@ -170,7 +170,7 @@ Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: UpdateFrequencies/46 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -180,7 +180,7 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -190,7 +190,7 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -200,7 +200,7 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
References: clockConfig/2 (read)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)
@ -211,7 +211,7 @@ Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Calls: UpdateFrequencies/46 (168730859 (estimated locally),1.00 per call) SpecificPeripheralClockInitialization/45 (38976828 (estimated locally),0.23 per call)
Indirect call(155907314 (estimated locally),0.92 per call)
Indirect call(630715948 (estimated locally),3.74 per call)
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)
@ -221,7 +221,7 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4 (354334802 (estimated locally),0.33 per call)
Calls:
Indirect call(1014686025 (estimated locally),8.83 per call)
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
@ -246,7 +246,7 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call(118111600 (estimated locally),1.00 per call)
Indirect call(955630217 (estimated locally),8.09 per call)
Indirect call(330712479 (estimated locally),2.80 per call)
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
References: clockTreeIsConsumingPll/0 (read)
@ -319,30 +319,30 @@ Function name:Clock_Ip_Init/4:
locals written:
ordered call graph: reduced
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06f43460
ClockTimeoutExpired/21 (ClockTimeoutExpired) @06d14460
Type: function definition analyzed
Visibility: externally_visible public
Aux: @068246d0
Aux: @067947e0
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_GetElapsed/53 (1073741824 (estimated locally),1.00 per call)
ClockStartTimeout/20 (ClockStartTimeout) @06f431c0
ClockStartTimeout/20 (ClockStartTimeout) @06d141c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06824830
Aux: @06794620
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: OsIf_MicrosToTicks/52 (1073741824 (estimated locally),1.00 per call) OsIf_GetCounter/51 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/19 (ReportClockErrors) @06f3cd20
ReportClockErrors/19 (ReportClockErrors) @06d0dd20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06824870
Aux: @06794840
References: clockNotificationsCallback/1 (read)
Referring:
Availability: available
@ -350,21 +350,21 @@ ReportClockErrors/19 (ReportClockErrors) @06f3cd20
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06f3c7e0
ClockNotificatonsEmptyCallback/18 (ClockNotificatonsEmptyCallback) @06d0d7e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @068246f0
Aux: @06794680
References:
Referring: clockNotificationsCallback/1 (addr)
Availability: available
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06d0d2a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @06824750
Aux: @06794720
References: ClockCalcFreqCallIdx/3 (read)calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)
Referring:
Availability: available
@ -372,10 +372,10 @@ Clock_Ip_TimeDelay/17 (Clock_Ip_TimeDelay) @06f3c2a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06d0dc40
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8a48
Aux: @06f97588
References: consumerClockCallbacks/49 (read)
Referring:
Availability: available
@ -383,10 +383,10 @@ Clock_Ip_GetClockFrequency/15 (Clock_Ip_GetClockFrequency) @06f3cc40
Called by:
Calls: GetProducerClockFreq/50 (354334802 (estimated locally),0.33 per call)
Indirect call(719407023 (estimated locally),0.67 per call)
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06d0d9a0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b89a8
Aux: @06f97688
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
Referring:
Availability: available
@ -394,10 +394,10 @@ Clock_Ip_EnableModuleClock/14 (Clock_Ip_EnableModuleClock) @06f3c9a0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06d0d700
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8948
Aux: @06f97828
References: clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)
Referring:
Availability: available
@ -405,30 +405,30 @@ Clock_Ip_DisableModuleClock/13 (Clock_Ip_DisableModuleClock) @06f3c700
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06f3c460
Clock_Ip_InstallNotificationsCallback/12 (Clock_Ip_InstallNotificationsCallback) @06d0d460
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8968
Aux: @06f97608
References: clockNotificationsCallback/1 (write)
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06f3c1c0
Clock_Ip_PowerModeChangeNotification/11 (Clock_Ip_PowerModeChangeNotification) @06d0d1c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8b48
Aux: @06f977a8
References:
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: UpdateFrequencies/46 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06d77e00
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8c48
Aux: @06f975e8
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -436,10 +436,10 @@ Clock_Ip_ClearClockMonitorStatus/10 (Clock_Ip_ClearClockMonitorStatus) @06e9de00
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06d778c0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8988
Aux: @06f97488
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -447,10 +447,10 @@ Clock_Ip_GetClockMonitorStatus/9 (Clock_Ip_GetClockMonitorStatus) @06e9d8c0
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06d77380
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8b68
Aux: @06f976a8
References: clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -458,20 +458,20 @@ Clock_Ip_DisableClockMonitor/8 (Clock_Ip_DisableClockMonitor) @06e9d380
Called by:
Calls:
Indirect call(1073741824 (estimated locally),1.00 per call)
Clock_Ip_Init/4 (Clock_Ip_Init) @06e9d540
Clock_Ip_Init/4 (Clock_Ip_Init) @06d77540
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8be8
Aux: @06f97648
References: clockTreeIsConsumingPll/0 (read)
Referring:
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls: Clock_Ip_DistributePll/7 (116930485 (estimated locally),0.11 per call) Clock_Ip_GetPllStatus/6 (354334802 (estimated locally),0.33 per call) Clock_Ip_InitClock/5 (1073741824 (estimated locally),1.00 per call)
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06d777e0
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8a88
Aux: @06f975c8
References: ClockCalcFreqCallIdx/3 (write)clockConfig/2 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (write)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)ircoscCallbackIndex/34 (read)intOscCallbacks/35 (read)clockFeatures/22 (read)xoscCallbackIndex/32 (read)extOscCallbacks/33 (read)clockFeatures/22 (read)pcfsCallbackIndex/36 (read)pcfsCallbacks/37 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)dividerCallbackIndex/40 (read)dividerCallbacks/41 (read)clockFeatures/22 (read)dividertriggerCallbackIndex/38 (read)dividerTriggerCallbacks/39 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)clockFeatures/22 (read)fractional_dividerCallbackIndex/28 (read)fracDivCallbacks/29 (read)clockTreeIsConsumingPll/0 (write)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockTreeIsConsumingPll/0 (write)clockFeatures/22 (read)gateCallbackIndex/43 (read)gateCallbacks/44 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)
Referring:
Availability: available
@ -494,10 +494,10 @@ Clock_Ip_InitClock/5 (Clock_Ip_InitClock) @06e9d7e0
Indirect call(118111600 (estimated locally),1.00 per call)
Indirect call(955630217 (estimated locally),8.09 per call)
Indirect call(330712479 (estimated locally),2.80 per call)
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06d0dee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Aux: @070b8ca8
Aux: @06f97568
References: calcFreqCallbacks/47 (read)ClockCalcFreqCallIdx/3 (read)ClockCalcFreqCallIdx/3 (write)ClockCalcFreqCallIdx/3 (read)
Referring:
Function Clock_Ip_Sleep/16 is inline copy in Clock_Ip_InitClock/5
@ -506,10 +506,10 @@ Clock_Ip_Sleep/16 (Clock_Ip_Sleep) @06f3cee0
Called by: Clock_Ip_InitClock/5 (inlined) (118111600 (estimated locally),1.00 per call)
Calls:
Indirect call(955630223 (estimated locally),8.09 per call)
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06d77a80
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8a68
Aux: @06f976e8
References: HwPllName/48 (read)clockFeatures/22 (read)pllCallbackIndex/30 (read)pllCallbacks/31 (read)
Referring:
Availability: available
@ -517,10 +517,10 @@ Clock_Ip_GetPllStatus/6 (Clock_Ip_GetPllStatus) @06e9da80
Called by: Clock_Ip_Init/4 (354334802 (estimated locally),0.33 per call)
Calls:
Indirect call(1014686025 (estimated locally),8.83 per call)
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06e9dd20
Clock_Ip_DistributePll/7 (Clock_Ip_DistributePll) @06d77d20
Type: function definition analyzed
Visibility: externally_visible public
Aux: @070b8a28
Aux: @06f97628
References: clockConfig/2 (read)clockName_sourceType/42 (read)clockFeatures/22 (read)selectorCallbackIndex/26 (read)selectorCallbacks/27 (read)clockConfig/2 (read)clockTreeIsConsumingPll/0 (read)clockFeatures/22 (read)cmuCallbackIndex/23 (read)cmuCallbacks/24 (read)clockConfig/2 (read)
Referring:
Availability: available

View File

@ -3,14 +3,14 @@ Trivially needed symbols: dividerCallbacks
Initial Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Visibility: external public
References:
Referring: SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not-ready
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -18,7 +18,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -26,14 +26,14 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Visibility: external public
References:
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)
Availability: not-ready
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -41,7 +41,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -49,7 +49,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -57,54 +57,54 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Visibility: external public
References:
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not-ready
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility:
Address is taken.
Aux: @06f247e0
Aux: @06f747e0
References: clockFeatures/6 (read)pll/10 (read)pll/10 (read)
Referring: dividerCallbacks/0 (addr)
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/11 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility:
Address is taken.
Aux: @06f24380
Aux: @06f74380
References: clockFeatures/6 (read)clockFeatures/6 (read)pll/10 (read)pll/10 (read)pll/10 (read)pll/10 (read)
Referring: dividerCallbacks/0 (addr)
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/11 UpdateClockState/11 GetClockState/12 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility:
Address is taken.
Aux: @06e1ee00
Aux: @06e6ee00
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)
Referring: dividerCallbacks/0 (addr)
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/9 UpdateClockState/11 GetClockState/12 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7 UpdateClockState/11 ClockTimeoutExpired/8 ClockStartTimeout/7
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility:
Address is taken.
Aux: @06e1ed20
Aux: @06e6ed20
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)
Referring: dividerCallbacks/0 (addr)
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/9 UpdateClockState/11 UpdateClockState/11 GetClockState/12 ClockTimeoutExpired/8 ClockStartTimeout/7
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility:
Address is taken.
@ -114,7 +114,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: body optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: public
Aux: @01733ea0
@ -127,14 +127,14 @@ Removing unused symbols:
Reclaimed Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Visibility: external public
References:
Referring: SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not-ready
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -142,7 +142,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -150,14 +150,14 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Visibility: external public
References:
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)
Availability: not-ready
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -165,7 +165,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -173,7 +173,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -181,14 +181,14 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Visibility: external public
References:
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not-ready
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility:
Address is taken.
@ -197,7 +197,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/11 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility:
Address is taken.
@ -206,7 +206,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/11 UpdateClockState/11 GetClockState/12 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility:
Address is taken.
@ -215,7 +215,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/9 UpdateClockState/11 GetClockState/12 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7 UpdateClockState/11 ClockTimeoutExpired/8 ClockStartTimeout/7
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility:
Address is taken.
@ -224,7 +224,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/9 UpdateClockState/11 UpdateClockState/11 GetClockState/12 ClockTimeoutExpired/8 ClockStartTimeout/7
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility:
Address is taken.
@ -233,7 +233,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: body optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: public
References: Callback_DividerEmpty/1 (addr)SetCgmXDeDivStatWithoutPhase/2 (addr)SetCgmXDeDivStatWithPhase/3 (addr)SetPllPll0divDeDivOutput/4 (addr)SetPllPlldvOdiv2Output/5 (addr)
@ -244,14 +244,14 @@ dividerCallbacks/0 (dividerCallbacks) @06e23000
Initial Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Visibility: external public
References:
Referring: SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not-ready
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -259,7 +259,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -267,14 +267,14 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Visibility: external public
References:
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)
Availability: not-ready
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -282,7 +282,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -290,7 +290,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -298,14 +298,14 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Visibility: external public
References:
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not-ready
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility:
Address is taken.
@ -314,7 +314,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/11 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility:
Address is taken.
@ -323,7 +323,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/11 UpdateClockState/11 GetClockState/12 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility:
Address is taken.
@ -332,7 +332,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/9 UpdateClockState/11 GetClockState/12 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7 UpdateClockState/11 ClockTimeoutExpired/8 ClockStartTimeout/7
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility:
Address is taken.
@ -341,7 +341,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/9 UpdateClockState/11 UpdateClockState/11 GetClockState/12 ClockTimeoutExpired/8 ClockStartTimeout/7
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility:
Address is taken.
@ -350,7 +350,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: body optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: public
References: Callback_DividerEmpty/1 (addr)SetCgmXDeDivStatWithoutPhase/2 (addr)SetCgmXDeDivStatWithPhase/3 (addr)SetPllPll0divDeDivOutput/4 (addr)SetPllPlldvOdiv2Output/5 (addr)
@ -362,14 +362,14 @@ Removing unused symbols:
Reclaimed Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Visibility: external public
References:
Referring: SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not-ready
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -377,7 +377,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -385,14 +385,14 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Visibility: external public
References:
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)
Availability: not-ready
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -400,7 +400,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -408,7 +408,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -416,14 +416,14 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Visibility: external public
References:
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not-ready
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility:
Address is taken.
@ -432,7 +432,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/11 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility:
Address is taken.
@ -441,7 +441,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/11 UpdateClockState/11 GetClockState/12 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility:
Address is taken.
@ -450,7 +450,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/9 UpdateClockState/11 GetClockState/12 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7 UpdateClockState/11 ClockTimeoutExpired/8 ClockStartTimeout/7
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility:
Address is taken.
@ -459,7 +459,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/9 UpdateClockState/11 UpdateClockState/11 GetClockState/12 ClockTimeoutExpired/8 ClockStartTimeout/7
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility:
Address is taken.
@ -468,7 +468,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: body optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: public
References: Callback_DividerEmpty/1 (addr)SetCgmXDeDivStatWithoutPhase/2 (addr)SetCgmXDeDivStatWithPhase/3 (addr)SetPllPll0divDeDivOutput/4 (addr)SetPllPlldvOdiv2Output/5 (addr)
@ -481,7 +481,7 @@ Reclaiming variables:
Clearing address taken flags:
Optimized Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -489,7 +489,7 @@ cgm/13 (cgm) @06f3e318
Referring: SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -498,7 +498,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call)
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -507,7 +507,7 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithoutPhase/2 (19205760 (estimated locally),0.12 per call) SetCgmXDeDivStatWithPhase/3 (12508639 (estimated locally),0.08 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call) SetPllPll0divDeDivOutput/4 (57431766 (estimated locally),0.17 per call) SetPllPlldvOdiv2Output/5 (348071309 (estimated locally),1.00 per call)
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -515,7 +515,7 @@ pll/10 (pll) @06f314c8
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)
Availability: not_available
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -524,7 +524,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (37904965 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37405092 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (37904965 (estimated locally),0.11 per call) SetPllPlldvOdiv2Output/5 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -533,7 +533,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (1073741824 (estimated locally),6.96 per call) SetCgmXDeDivStatWithPhase/3 (1073741824 (estimated locally),7.05 per call) SetCgmXDeDivStatWithPhase/3 (1059581806 (estimated locally),6.96 per call) SetPllPll0divDeDivOutput/4 (1073741824 (estimated locally),3.08 per call) SetPllPlldvOdiv2Output/5 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -542,7 +542,7 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (114863532 (estimated locally),0.74 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetCgmXDeDivStatWithPhase/3 (113348764 (estimated locally),0.74 per call) SetPllPll0divDeDivOutput/4 (114863532 (estimated locally),0.33 per call) SetPllPlldvOdiv2Output/5 (114863532 (estimated locally),0.33 per call)
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -550,7 +550,7 @@ clockFeatures/6 (clockFeatures) @06f313a8
Referring: SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetPllPlldvOdiv2Output/5 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -560,7 +560,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -570,7 +570,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -580,7 +580,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -590,7 +590,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -600,7 +600,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerEmpty/1 (addr)SetCgmXDeDivStatWithoutPhase/2 (addr)SetCgmXDeDivStatWithPhase/3 (addr)SetPllPll0divDeDivOutput/4 (addr)SetPllPlldvOdiv2Output/5 (addr)
@ -623,7 +623,7 @@ Removing variables:
Final Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -631,7 +631,7 @@ cgm/13 (cgm) @06f3e318
Referring:
Availability: not_available
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -640,7 +640,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by:
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -649,7 +649,7 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by:
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -657,7 +657,7 @@ pll/10 (pll) @06f314c8
Referring:
Availability: not_available
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -666,7 +666,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by:
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -675,7 +675,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by:
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -684,7 +684,7 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by:
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -692,7 +692,7 @@ clockFeatures/6 (clockFeatures) @06f313a8
Referring:
Availability: not_available
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -702,7 +702,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: count:348071309 (estimated locally) optimize_size
Called by:
Calls:
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -712,7 +712,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: count:348071309 (estimated locally) optimize_size
Called by:
Calls:
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -722,7 +722,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: count:152268625 (estimated locally) optimize_size
Called by:
Calls:
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -732,7 +732,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: count:154303509 (estimated locally) optimize_size
Called by:
Calls:
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -742,7 +742,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: count:1073741824 (estimated locally) nonfreeing_fn optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: externally_visible asm_written public
Aux: @00000001

View File

@ -13,7 +13,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -21,7 +21,7 @@ cgm/13 (cgm) @06f3e318
Referring: SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -30,7 +30,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -39,7 +39,7 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -47,7 +47,7 @@ pll/10 (pll) @06f314c8
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)
Availability: not_available
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -56,7 +56,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -65,7 +65,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -74,7 +74,7 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 SetCgmXDeDivStatWithPhase/3 SetCgmXDeDivStatWithPhase/3 SetPllPll0divDeDivOutput/4 SetPllPlldvOdiv2Output/5
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -82,7 +82,7 @@ clockFeatures/6 (clockFeatures) @06f313a8
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -92,7 +92,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/11 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -102,7 +102,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/11 UpdateClockState/11 GetClockState/12 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -112,7 +112,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/9 UpdateClockState/11 GetClockState/12 ReportClockErrors/9 ClockTimeoutExpired/8 ClockStartTimeout/7 UpdateClockState/11 ClockTimeoutExpired/8 ClockStartTimeout/7
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -122,7 +122,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/9 UpdateClockState/11 UpdateClockState/11 GetClockState/12 ClockTimeoutExpired/8 ClockStartTimeout/7
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -132,7 +132,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: body optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerEmpty/1 (addr)SetCgmXDeDivStatWithoutPhase/2 (addr)SetCgmXDeDivStatWithPhase/3 (addr)SetPllPll0divDeDivOutput/4 (addr)SetPllPlldvOdiv2Output/5 (addr)

View File

@ -4,7 +4,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -12,7 +12,7 @@ cgm/13 (cgm) @06f3e318
Referring: SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -21,7 +21,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call)
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -30,7 +30,7 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithoutPhase/2 (19205760 (estimated locally),0.12 per call) SetCgmXDeDivStatWithPhase/3 (12508639 (estimated locally),0.08 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call) SetPllPll0divDeDivOutput/4 (57431766 (estimated locally),0.17 per call) SetPllPlldvOdiv2Output/5 (348071309 (estimated locally),1.00 per call)
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -38,7 +38,7 @@ pll/10 (pll) @06f314c8
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)
Availability: not_available
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -47,7 +47,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (37904965 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37405092 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (37904965 (estimated locally),0.11 per call) SetPllPlldvOdiv2Output/5 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -56,7 +56,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (1073741824 (estimated locally),6.96 per call) SetCgmXDeDivStatWithPhase/3 (1073741824 (estimated locally),7.05 per call) SetCgmXDeDivStatWithPhase/3 (1059581806 (estimated locally),6.96 per call) SetPllPll0divDeDivOutput/4 (1073741824 (estimated locally),3.08 per call) SetPllPlldvOdiv2Output/5 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -65,7 +65,7 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (114863532 (estimated locally),0.74 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetCgmXDeDivStatWithPhase/3 (113348764 (estimated locally),0.74 per call) SetPllPll0divDeDivOutput/4 (114863532 (estimated locally),0.33 per call) SetPllPlldvOdiv2Output/5 (114863532 (estimated locally),0.33 per call)
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -73,7 +73,7 @@ clockFeatures/6 (clockFeatures) @06f313a8
Referring: SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetPllPlldvOdiv2Output/5 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -83,7 +83,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -93,7 +93,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -103,7 +103,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -113,7 +113,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -123,7 +123,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerEmpty/1 (addr)SetCgmXDeDivStatWithoutPhase/2 (addr)SetCgmXDeDivStatWithPhase/3 (addr)SetPllPll0divDeDivOutput/4 (addr)SetPllPlldvOdiv2Output/5 (addr)

View File

@ -14,7 +14,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -22,7 +22,7 @@ cgm/13 (cgm) @06f3e318
Referring: SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -31,7 +31,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call)
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -40,7 +40,7 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithoutPhase/2 (19205760 (estimated locally),0.12 per call) SetCgmXDeDivStatWithPhase/3 (12508639 (estimated locally),0.08 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call) SetPllPll0divDeDivOutput/4 (57431766 (estimated locally),0.17 per call) SetPllPlldvOdiv2Output/5 (348071309 (estimated locally),1.00 per call)
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -48,7 +48,7 @@ pll/10 (pll) @06f314c8
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)
Availability: not_available
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -57,7 +57,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (37904965 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37405092 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (37904965 (estimated locally),0.11 per call) SetPllPlldvOdiv2Output/5 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -66,7 +66,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (1073741824 (estimated locally),6.96 per call) SetCgmXDeDivStatWithPhase/3 (1073741824 (estimated locally),7.05 per call) SetCgmXDeDivStatWithPhase/3 (1059581806 (estimated locally),6.96 per call) SetPllPll0divDeDivOutput/4 (1073741824 (estimated locally),3.08 per call) SetPllPlldvOdiv2Output/5 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -75,7 +75,7 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (114863532 (estimated locally),0.74 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetCgmXDeDivStatWithPhase/3 (113348764 (estimated locally),0.74 per call) SetPllPll0divDeDivOutput/4 (114863532 (estimated locally),0.33 per call) SetPllPlldvOdiv2Output/5 (114863532 (estimated locally),0.33 per call)
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -83,7 +83,7 @@ clockFeatures/6 (clockFeatures) @06f313a8
Referring: SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetPllPlldvOdiv2Output/5 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -93,7 +93,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -103,7 +103,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -113,7 +113,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -123,7 +123,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -133,7 +133,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerEmpty/1 (addr)SetCgmXDeDivStatWithoutPhase/2 (addr)SetCgmXDeDivStatWithPhase/3 (addr)SetPllPll0divDeDivOutput/4 (addr)SetPllPlldvOdiv2Output/5 (addr)

View File

@ -1,6 +1,6 @@
Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -8,7 +8,7 @@ cgm/13 (cgm) @06f3e318
Referring: SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -17,7 +17,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call)
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -26,7 +26,7 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithoutPhase/2 (19205760 (estimated locally),0.12 per call) SetCgmXDeDivStatWithPhase/3 (12508639 (estimated locally),0.08 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call) SetPllPll0divDeDivOutput/4 (57431766 (estimated locally),0.17 per call) SetPllPlldvOdiv2Output/5 (348071309 (estimated locally),1.00 per call)
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -34,7 +34,7 @@ pll/10 (pll) @06f314c8
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)
Availability: not_available
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -43,7 +43,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (37904965 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37405092 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (37904965 (estimated locally),0.11 per call) SetPllPlldvOdiv2Output/5 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -52,7 +52,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (1073741824 (estimated locally),6.96 per call) SetCgmXDeDivStatWithPhase/3 (1073741824 (estimated locally),7.05 per call) SetCgmXDeDivStatWithPhase/3 (1059581806 (estimated locally),6.96 per call) SetPllPll0divDeDivOutput/4 (1073741824 (estimated locally),3.08 per call) SetPllPlldvOdiv2Output/5 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -61,7 +61,7 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (114863532 (estimated locally),0.74 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetCgmXDeDivStatWithPhase/3 (113348764 (estimated locally),0.74 per call) SetPllPll0divDeDivOutput/4 (114863532 (estimated locally),0.33 per call) SetPllPlldvOdiv2Output/5 (114863532 (estimated locally),0.33 per call)
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -69,7 +69,7 @@ clockFeatures/6 (clockFeatures) @06f313a8
Referring: SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetPllPlldvOdiv2Output/5 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -79,7 +79,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -89,7 +89,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -99,7 +99,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -109,7 +109,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -119,7 +119,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerEmpty/1 (addr)SetCgmXDeDivStatWithoutPhase/2 (addr)SetCgmXDeDivStatWithPhase/3 (addr)SetPllPll0divDeDivOutput/4 (addr)SetPllPlldvOdiv2Output/5 (addr)

View File

@ -70,7 +70,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -78,7 +78,7 @@ cgm/13 (cgm) @06f3e318
Referring: SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -87,7 +87,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call)
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -96,7 +96,7 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithoutPhase/2 (19205760 (estimated locally),0.12 per call) SetCgmXDeDivStatWithPhase/3 (12508639 (estimated locally),0.08 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call) SetPllPll0divDeDivOutput/4 (57431766 (estimated locally),0.17 per call) SetPllPlldvOdiv2Output/5 (348071309 (estimated locally),1.00 per call)
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -104,7 +104,7 @@ pll/10 (pll) @06f314c8
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)
Availability: not_available
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -113,7 +113,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (37904965 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37405092 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (37904965 (estimated locally),0.11 per call) SetPllPlldvOdiv2Output/5 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -122,7 +122,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (1073741824 (estimated locally),6.96 per call) SetCgmXDeDivStatWithPhase/3 (1073741824 (estimated locally),7.05 per call) SetCgmXDeDivStatWithPhase/3 (1059581806 (estimated locally),6.96 per call) SetPllPll0divDeDivOutput/4 (1073741824 (estimated locally),3.08 per call) SetPllPlldvOdiv2Output/5 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -131,7 +131,7 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (114863532 (estimated locally),0.74 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetCgmXDeDivStatWithPhase/3 (113348764 (estimated locally),0.74 per call) SetPllPll0divDeDivOutput/4 (114863532 (estimated locally),0.33 per call) SetPllPlldvOdiv2Output/5 (114863532 (estimated locally),0.33 per call)
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -139,7 +139,7 @@ clockFeatures/6 (clockFeatures) @06f313a8
Referring: SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetPllPlldvOdiv2Output/5 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -149,7 +149,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -159,7 +159,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -169,7 +169,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -179,7 +179,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -189,7 +189,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerEmpty/1 (addr)SetCgmXDeDivStatWithoutPhase/2 (addr)SetCgmXDeDivStatWithPhase/3 (addr)SetPllPll0divDeDivOutput/4 (addr)SetPllPlldvOdiv2Output/5 (addr)

View File

@ -304,7 +304,7 @@ IPA function summary for Callback_DividerEmpty/1 inlinable
Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -312,7 +312,7 @@ cgm/13 (cgm) @06f3e318
Referring: SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -321,7 +321,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call)
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -330,7 +330,7 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithoutPhase/2 (19205760 (estimated locally),0.12 per call) SetCgmXDeDivStatWithPhase/3 (12508639 (estimated locally),0.08 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call) SetPllPll0divDeDivOutput/4 (57431766 (estimated locally),0.17 per call) SetPllPlldvOdiv2Output/5 (348071309 (estimated locally),1.00 per call)
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -338,7 +338,7 @@ pll/10 (pll) @06f314c8
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)
Availability: not_available
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -347,7 +347,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (37904965 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37405092 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (37904965 (estimated locally),0.11 per call) SetPllPlldvOdiv2Output/5 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -356,7 +356,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (1073741824 (estimated locally),6.96 per call) SetCgmXDeDivStatWithPhase/3 (1073741824 (estimated locally),7.05 per call) SetCgmXDeDivStatWithPhase/3 (1059581806 (estimated locally),6.96 per call) SetPllPll0divDeDivOutput/4 (1073741824 (estimated locally),3.08 per call) SetPllPlldvOdiv2Output/5 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -365,7 +365,7 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (114863532 (estimated locally),0.74 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetCgmXDeDivStatWithPhase/3 (113348764 (estimated locally),0.74 per call) SetPllPll0divDeDivOutput/4 (114863532 (estimated locally),0.33 per call) SetPllPlldvOdiv2Output/5 (114863532 (estimated locally),0.33 per call)
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -373,7 +373,7 @@ clockFeatures/6 (clockFeatures) @06f313a8
Referring: SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetPllPlldvOdiv2Output/5 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -383,7 +383,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -393,7 +393,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -403,7 +403,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -413,7 +413,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -423,7 +423,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerEmpty/1 (addr)SetCgmXDeDivStatWithoutPhase/2 (addr)SetCgmXDeDivStatWithPhase/3 (addr)SetPllPll0divDeDivOutput/4 (addr)SetPllPlldvOdiv2Output/5 (addr)

View File

@ -354,7 +354,7 @@ IPA function summary for Callback_DividerEmpty/1 inlinable
Symbol table:
cgm/13 (cgm) @06f3e318
cgm/13 (cgm) @06f8e318
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -362,7 +362,7 @@ cgm/13 (cgm) @06f3e318
Referring: SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -371,7 +371,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call)
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -380,7 +380,7 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithoutPhase/2 (19205760 (estimated locally),0.12 per call) SetCgmXDeDivStatWithPhase/3 (12508639 (estimated locally),0.08 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call) SetPllPll0divDeDivOutput/4 (57431766 (estimated locally),0.17 per call) SetPllPlldvOdiv2Output/5 (348071309 (estimated locally),1.00 per call)
Calls:
pll/10 (pll) @06f314c8
pll/10 (pll) @06f814c8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -388,7 +388,7 @@ pll/10 (pll) @06f314c8
Referring: SetPllPlldvOdiv2Output/5 (read)SetPllPll0divDeDivOutput/4 (read)
Availability: not_available
Varpool flags: read-only
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -397,7 +397,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (37904965 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37405092 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (37904965 (estimated locally),0.11 per call) SetPllPlldvOdiv2Output/5 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -406,7 +406,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (1073741824 (estimated locally),6.96 per call) SetCgmXDeDivStatWithPhase/3 (1073741824 (estimated locally),7.05 per call) SetCgmXDeDivStatWithPhase/3 (1059581806 (estimated locally),6.96 per call) SetPllPll0divDeDivOutput/4 (1073741824 (estimated locally),3.08 per call) SetPllPlldvOdiv2Output/5 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -415,7 +415,7 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (114863532 (estimated locally),0.74 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetCgmXDeDivStatWithPhase/3 (113348764 (estimated locally),0.74 per call) SetPllPll0divDeDivOutput/4 (114863532 (estimated locally),0.33 per call) SetPllPlldvOdiv2Output/5 (114863532 (estimated locally),0.33 per call)
Calls:
clockFeatures/6 (clockFeatures) @06f313a8
clockFeatures/6 (clockFeatures) @06f813a8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -423,7 +423,7 @@ clockFeatures/6 (clockFeatures) @06f313a8
Referring: SetPllPll0divDeDivOutput/4 (read)SetPllPll0divDeDivOutput/4 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetCgmXDeDivStatWithPhase/3 (read)SetPllPlldvOdiv2Output/5 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)SetCgmXDeDivStatWithoutPhase/2 (read)
Availability: not_available
Varpool flags: read-only
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -433,7 +433,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -443,7 +443,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -453,7 +453,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -463,7 +463,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -473,7 +473,7 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
dividerCallbacks/0 (dividerCallbacks) @06e23000
dividerCallbacks/0 (dividerCallbacks) @06e73000
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerEmpty/1 (addr)SetCgmXDeDivStatWithoutPhase/2 (addr)SetCgmXDeDivStatWithPhase/3 (addr)SetPllPll0divDeDivOutput/4 (addr)SetPllPlldvOdiv2Output/5 (addr)

View File

@ -346,7 +346,7 @@
Function is locally const.
callgraph:
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -355,7 +355,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call)
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -364,7 +364,7 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithoutPhase/2 (19205760 (estimated locally),0.12 per call) SetCgmXDeDivStatWithPhase/3 (12508639 (estimated locally),0.08 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call) SetPllPll0divDeDivOutput/4 (57431766 (estimated locally),0.17 per call) SetPllPlldvOdiv2Output/5 (348071309 (estimated locally),1.00 per call)
Calls:
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -373,7 +373,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (37904965 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37405092 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (37904965 (estimated locally),0.11 per call) SetPllPlldvOdiv2Output/5 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -382,7 +382,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (1073741824 (estimated locally),6.96 per call) SetCgmXDeDivStatWithPhase/3 (1073741824 (estimated locally),7.05 per call) SetCgmXDeDivStatWithPhase/3 (1059581806 (estimated locally),6.96 per call) SetPllPll0divDeDivOutput/4 (1073741824 (estimated locally),3.08 per call) SetPllPlldvOdiv2Output/5 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -391,55 +391,55 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (114863532 (estimated locally),0.74 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetCgmXDeDivStatWithPhase/3 (113348764 (estimated locally),0.74 per call) SetPllPll0divDeDivOutput/4 (114863532 (estimated locally),0.33 per call) SetPllPlldvOdiv2Output/5 (114863532 (estimated locally),0.33 per call)
Calls:
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859ee0
Aux: @068a9be8
References: clockFeatures/6 (read)pll/10 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859f20
Aux: @068a9c08
References: clockFeatures/6 (read)clockFeatures/6 (read)pll/10 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859be0
Aux: @068a9c88
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859c00
Aux: @068a9ca8
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859c40
Aux: @068a9ac8
References:
Referring: dividerCallbacks/0 (addr)
Availability: available
@ -449,55 +449,55 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
ordered call graph: reduced for nothrow
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859ee0
Aux: @068a9be8
References: clockFeatures/6 (read)pll/10 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859f20
Aux: @068a9c08
References: clockFeatures/6 (read)clockFeatures/6 (read)pll/10 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859be0
Aux: @068a9c88
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859c00
Aux: @068a9ca8
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859c40
Aux: @068a9ac8
References:
Referring: dividerCallbacks/0 (addr)
Availability: available
@ -523,7 +523,7 @@ SetCgmXDeDivStatWithoutPhase: malloc_bottom
Callback_DividerEmpty: malloc_bottom
callgraph:
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -532,7 +532,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call)
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -541,7 +541,7 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithoutPhase/2 (19205760 (estimated locally),0.12 per call) SetCgmXDeDivStatWithPhase/3 (12508639 (estimated locally),0.08 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call) SetPllPll0divDeDivOutput/4 (57431766 (estimated locally),0.17 per call) SetPllPlldvOdiv2Output/5 (348071309 (estimated locally),1.00 per call)
Calls:
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -550,7 +550,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (37904965 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37405092 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (37904965 (estimated locally),0.11 per call) SetPllPlldvOdiv2Output/5 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -559,7 +559,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (1073741824 (estimated locally),6.96 per call) SetCgmXDeDivStatWithPhase/3 (1073741824 (estimated locally),7.05 per call) SetCgmXDeDivStatWithPhase/3 (1059581806 (estimated locally),6.96 per call) SetPllPll0divDeDivOutput/4 (1073741824 (estimated locally),3.08 per call) SetPllPlldvOdiv2Output/5 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -568,55 +568,55 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (114863532 (estimated locally),0.74 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetCgmXDeDivStatWithPhase/3 (113348764 (estimated locally),0.74 per call) SetPllPll0divDeDivOutput/4 (114863532 (estimated locally),0.33 per call) SetPllPlldvOdiv2Output/5 (114863532 (estimated locally),0.33 per call)
Calls:
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859d00
Aux: @068a9c08
References: clockFeatures/6 (read)pll/10 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859da0
Aux: @068a9d08
References: clockFeatures/6 (read)clockFeatures/6 (read)pll/10 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859be0
Aux: @068a9b68
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859dc0
Aux: @068a9ca8
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859c00
Aux: @068a9b88
References:
Referring: dividerCallbacks/0 (addr)
Availability: available
@ -626,55 +626,55 @@ Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
ordered call graph: reduced
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859d00
Aux: @068a9c08
References: clockFeatures/6 (read)pll/10 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859da0
Aux: @068a9d08
References: clockFeatures/6 (read)clockFeatures/6 (read)pll/10 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859be0
Aux: @068a9b68
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859dc0
Aux: @068a9ca8
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859c00
Aux: @068a9b88
References:
Referring: dividerCallbacks/0 (addr)
Availability: available

View File

@ -1,6 +1,6 @@
callgraph:
GetClockState/12 (GetClockState) @06f34380
GetClockState/12 (GetClockState) @06f84380
Type: function
Visibility: external public
References:
@ -9,7 +9,7 @@ GetClockState/12 (GetClockState) @06f34380
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call)
Calls:
UpdateClockState/11 (UpdateClockState) @06f340e0
UpdateClockState/11 (UpdateClockState) @06f840e0
Type: function
Visibility: external public
References:
@ -18,7 +18,7 @@ UpdateClockState/11 (UpdateClockState) @06f340e0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (58199271 (estimated locally),0.38 per call) SetCgmXDeDivStatWithoutPhase/2 (19205760 (estimated locally),0.12 per call) SetCgmXDeDivStatWithPhase/3 (12508639 (estimated locally),0.08 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetPllPll0divDeDivOutput/4 (174035654 (estimated locally),0.50 per call) SetPllPll0divDeDivOutput/4 (57431766 (estimated locally),0.17 per call) SetPllPlldvOdiv2Output/5 (348071309 (estimated locally),1.00 per call)
Calls:
ReportClockErrors/9 (ReportClockErrors) @06f34000
ReportClockErrors/9 (ReportClockErrors) @06f84000
Type: function
Visibility: external public
References:
@ -27,7 +27,7 @@ ReportClockErrors/9 (ReportClockErrors) @06f34000
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (37904965 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37405092 (estimated locally),0.25 per call) SetCgmXDeDivStatWithPhase/3 (37904965 (estimated locally),0.25 per call) SetPllPll0divDeDivOutput/4 (37904965 (estimated locally),0.11 per call) SetPllPlldvOdiv2Output/5 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f748c0
Type: function
Visibility: external public
References:
@ -36,7 +36,7 @@ ClockTimeoutExpired/8 (ClockTimeoutExpired) @06f248c0
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (1073741824 (estimated locally),6.96 per call) SetCgmXDeDivStatWithPhase/3 (1073741824 (estimated locally),7.05 per call) SetCgmXDeDivStatWithPhase/3 (1059581806 (estimated locally),6.96 per call) SetPllPll0divDeDivOutput/4 (1073741824 (estimated locally),3.08 per call) SetPllPlldvOdiv2Output/5 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/7 (ClockStartTimeout) @06f24460
ClockStartTimeout/7 (ClockStartTimeout) @06f74460
Type: function
Visibility: external public
References:
@ -45,7 +45,7 @@ ClockStartTimeout/7 (ClockStartTimeout) @06f24460
Function flags: optimize_size
Called by: SetCgmXDeDivStatWithoutPhase/2 (114863532 (estimated locally),0.74 per call) SetCgmXDeDivStatWithPhase/3 (114863532 (estimated locally),0.75 per call) SetCgmXDeDivStatWithPhase/3 (113348764 (estimated locally),0.74 per call) SetPllPll0divDeDivOutput/4 (114863532 (estimated locally),0.33 per call) SetPllPlldvOdiv2Output/5 (114863532 (estimated locally),0.33 per call)
Calls:
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -55,7 +55,7 @@ SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -65,7 +65,7 @@ SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -75,7 +75,7 @@ SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -85,7 +85,7 @@ SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -114,55 +114,55 @@ Function name:Callback_DividerEmpty/1:
locals written:
ordered call graph: reduced
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f24c40
SetPllPlldvOdiv2Output/5 (SetPllPlldvOdiv2Output) @06f74c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859f20
Aux: @068a9c88
References: clockFeatures/6 (read)pll/10 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (348071309 (estimated locally),1.00 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f247e0
SetPllPll0divDeDivOutput/4 (SetPllPll0divDeDivOutput) @06f747e0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859e40
Aux: @068a9a48
References: clockFeatures/6 (read)clockFeatures/6 (read)pll/10 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/11 (174035654 (estimated locally),0.50 per call) UpdateClockState/11 (57431766 (estimated locally),0.17 per call) GetClockState/12 (174035654 (estimated locally),0.50 per call) ReportClockErrors/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.33 per call)
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f24380
SetCgmXDeDivStatWithPhase/3 (SetCgmXDeDivStatWithPhase) @06f74380
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859ce0
Aux: @068a9b88
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:152268625 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37405092 (estimated locally),0.25 per call) UpdateClockState/11 (12508639 (estimated locally),0.08 per call) GetClockState/12 (37904965 (estimated locally),0.25 per call) ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),7.05 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.75 per call) UpdateClockState/11 (114863532 (estimated locally),0.75 per call) ClockTimeoutExpired/8 (1059581806 (estimated locally),6.96 per call) ClockStartTimeout/7 (113348764 (estimated locally),0.74 per call)
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e1ee00
SetCgmXDeDivStatWithoutPhase/2 (SetCgmXDeDivStatWithoutPhase) @06e6ee00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859e20
Aux: @068a9aa8
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)cgm/13 (read)
Referring: dividerCallbacks/0 (addr)
Availability: available
Function flags: count:154303509 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/9 (37904965 (estimated locally),0.25 per call) UpdateClockState/11 (58199271 (estimated locally),0.38 per call) UpdateClockState/11 (19205760 (estimated locally),0.12 per call) GetClockState/12 (58199271 (estimated locally),0.38 per call) ClockTimeoutExpired/8 (1073741824 (estimated locally),6.96 per call) ClockStartTimeout/7 (114863532 (estimated locally),0.74 per call)
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e1ed20
Callback_DividerEmpty/1 (Callback_DividerEmpty) @06e6ed20
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06859e00
Aux: @068a99c8
References:
Referring: dividerCallbacks/0 (addr)
Availability: available

View File

@ -3,7 +3,7 @@ Trivially needed symbols: dividerTriggerCallbacks
Initial Symbol table:
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -11,7 +11,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -19,7 +19,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -27,41 +27,41 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Visibility: external public
References:
Referring: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)
Availability: not-ready
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Visibility: external public
References:
Referring: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)
Availability: not-ready
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility:
Address is taken.
Aux: @06de2e00
Aux: @06ebae00
References: clockFeatures/4 (read)clockFeatures/4 (read)cgm/5 (read)cgm/5 (read)
Referring: dividerTriggerCallbacks/0 (addr)
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/8 ClockTimeoutExpired/7 ClockStartTimeout/6
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility:
Address is taken.
Aux: @06de2b60
Aux: @06ebab60
References: clockFeatures/4 (read)clockFeatures/4 (read)cgm/5 (read)cgm/5 (read)cgm/5 (read)
Referring: dividerTriggerCallbacks/0 (addr)
Function flags: body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility:
Address is taken.
@ -71,7 +71,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: body optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: public
Aux: @01733ea0
@ -84,7 +84,7 @@ Removing unused symbols:
Reclaimed Symbol table:
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -92,7 +92,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -100,7 +100,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -108,21 +108,21 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Visibility: external public
References:
Referring: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)
Availability: not-ready
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Visibility: external public
References:
Referring: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)
Availability: not-ready
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility:
Address is taken.
@ -131,7 +131,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/8 ClockTimeoutExpired/7 ClockStartTimeout/6
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility:
Address is taken.
@ -140,7 +140,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility:
Address is taken.
@ -149,7 +149,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: body optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: public
References: Callback_DividerTriggerEmpty/1 (addr)Callback_DividerTriggerEmpty/1 (addr)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (addr)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (addr)
@ -160,7 +160,7 @@ dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
Initial Symbol table:
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -168,7 +168,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -176,7 +176,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -184,21 +184,21 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Visibility: external public
References:
Referring: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)
Availability: not-ready
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Visibility: external public
References:
Referring: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)
Availability: not-ready
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility:
Address is taken.
@ -207,7 +207,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/8 ClockTimeoutExpired/7 ClockStartTimeout/6
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility:
Address is taken.
@ -216,7 +216,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility:
Address is taken.
@ -225,7 +225,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: body optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: public
References: Callback_DividerTriggerEmpty/1 (addr)Callback_DividerTriggerEmpty/1 (addr)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (addr)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (addr)
@ -237,7 +237,7 @@ Removing unused symbols:
Reclaimed Symbol table:
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -245,7 +245,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -253,7 +253,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -261,21 +261,21 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Visibility: external public
References:
Referring: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)
Availability: not-ready
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Visibility: external public
References:
Referring: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)
Availability: not-ready
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility:
Address is taken.
@ -284,7 +284,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/8 ClockTimeoutExpired/7 ClockStartTimeout/6
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility:
Address is taken.
@ -293,7 +293,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility:
Address is taken.
@ -302,7 +302,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: body optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: public
References: Callback_DividerTriggerEmpty/1 (addr)Callback_DividerTriggerEmpty/1 (addr)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (addr)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (addr)
@ -315,7 +315,7 @@ Reclaiming variables:
Clearing address taken flags:
Optimized Symbol table:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: prevailing_def_ironly artificial
References:
@ -325,7 +325,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:37904965 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (inlined) (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (37904965 (estimated locally),0.11 per call)
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -334,7 +334,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -343,7 +343,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -352,7 +352,7 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (114863532 (estimated locally),0.33 per call)
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -360,7 +360,7 @@ cgm/5 (cgm) @06ef41b0
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -368,7 +368,7 @@ clockFeatures/4 (clockFeatures) @06ef4168
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -378,7 +378,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (inlined) (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -388,7 +388,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -398,7 +398,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerTriggerEmpty/1 (addr)Callback_DividerTriggerEmpty/1 (addr)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (addr)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (addr)
@ -419,7 +419,7 @@ Removing variables:
Final Symbol table:
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -428,7 +428,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by:
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -437,7 +437,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by:
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -446,7 +446,7 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by:
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -454,7 +454,7 @@ cgm/5 (cgm) @06ef41b0
Referring:
Availability: not_available
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -462,7 +462,7 @@ clockFeatures/4 (clockFeatures) @06ef4168
Referring:
Availability: not_available
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -472,7 +472,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: count:348071309 (estimated locally) optimize_size
Called by:
Calls:
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -482,7 +482,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: count:1073741824 (estimated locally) nonfreeing_fn optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -492,7 +492,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: count:1073741824 (estimated locally) nonfreeing_fn optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: externally_visible asm_written public
Aux: @00000001

View File

@ -13,7 +13,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -22,7 +22,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -31,7 +31,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -40,7 +40,7 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -48,7 +48,7 @@ cgm/5 (cgm) @06ef41b0
Referring: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -56,7 +56,7 @@ clockFeatures/4 (clockFeatures) @06ef4168
Referring: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)
Availability: not_available
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -66,7 +66,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/8 ClockTimeoutExpired/7 ClockStartTimeout/6
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -76,7 +76,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -86,7 +86,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: body optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerTriggerEmpty/1 (addr)Callback_DividerTriggerEmpty/1 (addr)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (addr)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (addr)

View File

@ -4,7 +4,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: artificial
References:
@ -13,7 +13,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:1073741824 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -22,7 +22,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (1073741824 (estimated locally),1.00 per call)
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -31,7 +31,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -40,7 +40,7 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (114863532 (estimated locally),0.33 per call)
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -48,7 +48,7 @@ cgm/5 (cgm) @06ef41b0
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -56,7 +56,7 @@ clockFeatures/4 (clockFeatures) @06ef4168
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -66,7 +66,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -76,7 +76,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -86,7 +86,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerTriggerEmpty/1 (addr)Callback_DividerTriggerEmpty/1 (addr)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (addr)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (addr)

View File

@ -14,7 +14,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: prevailing_def_ironly artificial
References:
@ -23,7 +23,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:1073741824 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -32,7 +32,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (1073741824 (estimated locally),1.00 per call)
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -41,7 +41,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -50,7 +50,7 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (114863532 (estimated locally),0.33 per call)
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -58,7 +58,7 @@ cgm/5 (cgm) @06ef41b0
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -66,7 +66,7 @@ clockFeatures/4 (clockFeatures) @06ef4168
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -76,7 +76,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -86,7 +86,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -96,7 +96,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerTriggerEmpty/1 (addr)Callback_DividerTriggerEmpty/1 (addr)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (addr)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (addr)

View File

@ -1,6 +1,6 @@
Symbol table:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: prevailing_def_ironly artificial
References:
@ -9,7 +9,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:1073741824 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -18,7 +18,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (1073741824 (estimated locally),1.00 per call)
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -27,7 +27,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -36,7 +36,7 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (114863532 (estimated locally),0.33 per call)
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -44,7 +44,7 @@ cgm/5 (cgm) @06ef41b0
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -52,7 +52,7 @@ clockFeatures/4 (clockFeatures) @06ef4168
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -62,7 +62,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -72,7 +72,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -82,7 +82,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerTriggerEmpty/1 (addr)Callback_DividerTriggerEmpty/1 (addr)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (addr)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (addr)

View File

@ -69,7 +69,7 @@ Reclaiming variables:
Clearing address taken flags:
Symbol table:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: prevailing_def_ironly artificial
References:
@ -78,7 +78,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:1073741824 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -87,7 +87,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (1073741824 (estimated locally),1.00 per call)
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -96,7 +96,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -105,7 +105,7 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (114863532 (estimated locally),0.33 per call)
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -113,7 +113,7 @@ cgm/5 (cgm) @06ef41b0
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -121,7 +121,7 @@ clockFeatures/4 (clockFeatures) @06ef4168
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -131,7 +131,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -141,7 +141,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -151,7 +151,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerTriggerEmpty/1 (addr)Callback_DividerTriggerEmpty/1 (addr)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (addr)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (addr)

View File

@ -139,7 +139,7 @@ IPA function summary for Callback_DividerTriggerEmpty/1 inlinable
Symbol table:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: prevailing_def_ironly artificial
References:
@ -148,7 +148,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:1073741824 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (1073741824 (estimated locally),1.00 per call)
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -157,7 +157,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (1073741824 (estimated locally),1.00 per call)
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -166,7 +166,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -175,7 +175,7 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (114863532 (estimated locally),0.33 per call)
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -183,7 +183,7 @@ cgm/5 (cgm) @06ef41b0
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -191,7 +191,7 @@ clockFeatures/4 (clockFeatures) @06ef4168
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -201,7 +201,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -211,7 +211,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -221,7 +221,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerTriggerEmpty/1 (addr)Callback_DividerTriggerEmpty/1 (addr)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (addr)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (addr)

View File

@ -159,7 +159,7 @@ IPA function summary for Callback_DividerTriggerEmpty/1 inlinable
Symbol table:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: prevailing_def_ironly artificial
References:
@ -169,7 +169,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:37904965 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (inlined) (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (37904965 (estimated locally),0.11 per call)
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -178,7 +178,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -187,7 +187,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -196,7 +196,7 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (114863532 (estimated locally),0.33 per call)
Calls:
cgm/5 (cgm) @06ef41b0
cgm/5 (cgm) @06f441b0
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -204,7 +204,7 @@ cgm/5 (cgm) @06ef41b0
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/4 (clockFeatures) @06ef4168
clockFeatures/4 (clockFeatures) @06f44168
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -212,7 +212,7 @@ clockFeatures/4 (clockFeatures) @06ef4168
Referring: ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (read)
Availability: not_available
Varpool flags: read-only
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -222,7 +222,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (inlined) (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -232,7 +232,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -242,7 +242,7 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06ddc9d8
dividerTriggerCallbacks/0 (dividerTriggerCallbacks) @06eb49d8
Type: variable definition analyzed
Visibility: externally_visible public
References: Callback_DividerTriggerEmpty/1 (addr)Callback_DividerTriggerEmpty/1 (addr)ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (addr)TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (addr)

View File

@ -68,10 +68,10 @@ Function is locally pure.
Function is locally const.
callgraph:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: prevailing_def_ironly artificial
Aux: @06774a50
Aux: @06854ad8
References:
Referring:
Function TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 is inline copy in TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
@ -79,7 +79,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:37904965 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (inlined) (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (37904965 (estimated locally),0.11 per call)
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -88,7 +88,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -97,7 +97,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -106,33 +106,33 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (114863532 (estimated locally),0.33 per call)
Calls:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06774b90
Aux: @06854b38
References: clockFeatures/4 (read)clockFeatures/4 (read)cgm/5 (read)
Referring: dividerTriggerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (inlined) (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06774c10
Aux: @068548b8
References: clockFeatures/4 (read)clockFeatures/4 (read)cgm/5 (read)cgm/5 (read)
Referring: dividerTriggerCallbacks/0 (addr)
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06774ab0
Aux: @068548d8
References:
Referring: dividerTriggerCallbacks/0 (addr)dividerTriggerCallbacks/0 (addr)
Availability: available
@ -142,10 +142,10 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
ordered call graph: reduced for nothrow
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: prevailing_def_ironly artificial
Aux: @06774a50
Aux: @06854ad8
References:
Referring:
Function TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 is inline copy in TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
@ -153,33 +153,33 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:37904965 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (inlined) (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (37904965 (estimated locally),0.11 per call)
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06774b90
Aux: @06854b38
References: clockFeatures/4 (read)clockFeatures/4 (read)cgm/5 (read)
Referring: dividerTriggerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (inlined) (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06774c10
Aux: @068548b8
References: clockFeatures/4 (read)clockFeatures/4 (read)cgm/5 (read)cgm/5 (read)
Referring: dividerTriggerCallbacks/0 (addr)
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06774ab0
Aux: @068548d8
References:
Referring: dividerTriggerCallbacks/0 (addr)dividerTriggerCallbacks/0 (addr)
Availability: available
@ -203,10 +203,10 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat: malloc_bottom
Callback_DividerTriggerEmpty: malloc_bottom
callgraph:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: prevailing_def_ironly artificial
Aux: @06774ad0
Aux: @068548b8
References:
Referring:
Function TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 is inline copy in TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
@ -214,7 +214,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:37904965 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (inlined) (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (37904965 (estimated locally),0.11 per call)
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -223,7 +223,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -232,7 +232,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -241,33 +241,33 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (114863532 (estimated locally),0.33 per call)
Calls:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06774950
Aux: @06854958
References: clockFeatures/4 (read)clockFeatures/4 (read)cgm/5 (read)
Referring: dividerTriggerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (inlined) (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @067749d0
Aux: @068548d8
References: clockFeatures/4 (read)clockFeatures/4 (read)cgm/5 (read)cgm/5 (read)
Referring: dividerTriggerCallbacks/0 (addr)
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06774af0
Aux: @06854978
References:
Referring: dividerTriggerCallbacks/0 (addr)dividerTriggerCallbacks/0 (addr)
Availability: available
@ -277,21 +277,21 @@ Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
ordered call graph: reduced
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06774950
Aux: @06854958
References: clockFeatures/4 (read)clockFeatures/4 (read)cgm/5 (read)
Referring: dividerTriggerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (inlined) (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: prevailing_def_ironly artificial
Aux: @06774ad0
Aux: @068548b8
References:
Referring:
Function TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 is inline copy in TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
@ -299,22 +299,22 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:37904965 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (inlined) (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (37904965 (estimated locally),0.11 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @067749d0
Aux: @068548d8
References: clockFeatures/4 (read)clockFeatures/4 (read)cgm/5 (read)cgm/5 (read)
Referring: dividerTriggerCallbacks/0 (addr)
Availability: available
Function flags: count:1073741824 (estimated locally) body optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06774af0
Aux: @06854978
References:
Referring: dividerTriggerCallbacks/0 (addr)dividerTriggerCallbacks/0 (addr)
Availability: available

View File

@ -1,6 +1,6 @@
callgraph:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: prevailing_def_ironly artificial
References:
@ -10,7 +10,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:37904965 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (inlined) (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (37904965 (estimated locally),0.11 per call)
ReportClockErrors/8 (ReportClockErrors) @06ef2540
ReportClockErrors/8 (ReportClockErrors) @06f42540
Type: function
Visibility: external public
References:
@ -19,7 +19,7 @@ ReportClockErrors/8 (ReportClockErrors) @06ef2540
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (37904965 (estimated locally),0.11 per call)
Calls:
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
ClockTimeoutExpired/7 (ClockTimeoutExpired) @06f42460
Type: function
Visibility: external public
References:
@ -28,7 +28,7 @@ ClockTimeoutExpired/7 (ClockTimeoutExpired) @06ef2460
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (1073741824 (estimated locally),3.08 per call)
Calls:
ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
ClockStartTimeout/6 (ClockStartTimeout) @06f42380
Type: function
Visibility: external public
References:
@ -37,7 +37,7 @@ ClockStartTimeout/6 (ClockStartTimeout) @06ef2380
Function flags: optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (114863532 (estimated locally),0.33 per call)
Calls:
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -47,7 +47,7 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlH
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (inlined) (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -57,7 +57,7 @@ ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdSt
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -83,21 +83,21 @@ Function name:Callback_DividerTriggerEmpty/1:
locals written:
ordered call graph: reduced
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06de2ee0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat) @06ebaee0
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06774950
Aux: @06854a78
References: clockFeatures/4 (read)clockFeatures/4 (read)cgm/5 (read)
Referring: dividerTriggerCallbacks/0 (addr)
Availability: available
Function flags: count:348071309 (estimated locally) body optimize_size
Called by:
Calls: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (inlined) (37904965 (estimated locally),0.11 per call) ClockTimeoutExpired/7 (1073741824 (estimated locally),3.08 per call) ClockStartTimeout/6 (114863532 (estimated locally),0.33 per call)
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06ef88c0
TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0) @06f488c0
Type: function definition analyzed
Visibility: prevailing_def_ironly artificial
Aux: @06774af0
Aux: @068549f8
References:
Referring:
Function TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 is inline copy in TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3
@ -105,22 +105,22 @@ TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat.part.0/9 (TriggerUpdateCgmXDivTrigCt
Function flags: count:37904965 (estimated locally) first_run:1 body local split_part optimize_size
Called by: TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat/3 (inlined) (37904965 (estimated locally),0.11 per call)
Calls: ReportClockErrors/8 (37904965 (estimated locally),0.11 per call)
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06de2e00
ConfigureCgmXDivTrigCtrlTctlHhenUpdStat/2 (ConfigureCgmXDivTrigCtrlTctlHhenUpdStat) @06ebae00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @067749d0
Aux: @06854758
References: clockFeatures/4 (read)clockFeatures/4 (read)cgm/5 (read)cgm/5 (read)
Referring: dividerTriggerCallbacks/0 (addr)
Availability: available
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06de2b60
Callback_DividerTriggerEmpty/1 (Callback_DividerTriggerEmpty) @06ebab60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
Aux: @06774ad0
Aux: @06854ab8
References:
Referring: dividerTriggerCallbacks/0 (addr)dividerTriggerCallbacks/0 (addr)
Availability: available

View File

@ -3,7 +3,7 @@ Trivially needed symbols: extOscCallbacks
Initial Symbol table:
UpdateClockState/16 (UpdateClockState) @06da5540
UpdateClockState/16 (UpdateClockState) @06f22540
Type: function
Visibility: external public
References:
@ -11,7 +11,7 @@ UpdateClockState/16 (UpdateClockState) @06da5540
Function flags: optimize_size
Called by: ResetFxoscOsconBypEocvGmSel/2 SetFxoscOsconBypEocvGmSel/3 ResetSxoscOsconEocv/4 SetSxoscOsconEocv/5
Calls:
Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06da5460
Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06f22460
Type: function
Visibility: external public
References:
@ -19,14 +19,14 @@ Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06da5460
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5
Calls:
xosc/14 (xosc) @06da6168
xosc/14 (xosc) @06f23168
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not-ready
Varpool flags: read-only
ReportClockErrors/13 (ReportClockErrors) @06da5380
ReportClockErrors/13 (ReportClockErrors) @06f22380
Type: function
Visibility: external public
References:
@ -34,7 +34,7 @@ ReportClockErrors/13 (ReportClockErrors) @06da5380
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5 SetSxoscOsconEocv/5
Calls:
ClockTimeoutExpired/12 (ClockTimeoutExpired) @06da52a0
ClockTimeoutExpired/12 (ClockTimeoutExpired) @06f222a0
Type: function
Visibility: external public
References:
@ -42,7 +42,7 @@ ClockTimeoutExpired/12 (ClockTimeoutExpired) @06da52a0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5 SetSxoscOsconEocv/5
Calls:
ClockStartTimeout/11 (ClockStartTimeout) @06da51c0
ClockStartTimeout/11 (ClockStartTimeout) @06f221c0
Type: function
Visibility: external public
References:
@ -50,7 +50,7 @@ ClockStartTimeout/11 (ClockStartTimeout) @06da51c0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5 SetSxoscOsconEocv/5
Calls:
McMeEnterKey/10 (McMeEnterKey) @06da50e0
McMeEnterKey/10 (McMeEnterKey) @06f220e0
Type: function
Visibility: external public
References:
@ -58,75 +58,75 @@ McMeEnterKey/10 (McMeEnterKey) @06da50e0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5
Calls:
mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06da6000
mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06f23000
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)
Availability: not-ready
Varpool flags: read-only
mcmeSetPartitions/8 (mcmeSetPartitions) @06d9ff78
mcmeSetPartitions/8 (mcmeSetPartitions) @06f1cf78
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)
Availability: not-ready
Varpool flags: read-only
mcmeGetPartitions/7 (mcmeGetPartitions) @06d9ff30
mcmeGetPartitions/7 (mcmeGetPartitions) @06f1cf30
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not-ready
Varpool flags: read-only
clockFeatures/6 (clockFeatures) @06d9fee8
clockFeatures/6 (clockFeatures) @06f1cee8
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not-ready
Varpool flags: read-only
SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06d97b60
SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06f14b60
Type: function definition analyzed
Visibility:
Address is taken.
Aux: @06d97700
Aux: @06f14700
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)mcmeGetPartitions/7 (read)mcmeSetPartitions/8 (read)mcmeSetPartitions/8 (read)mcmeTriggerPartitions/9 (read)mcmeTriggerPartitions/9 (read)mcmeTriggerPartitions/9 (read)mcmeTriggerPartitions/9 (read)mcmeGetPartitions/7 (read)xosc/14 (read)xosc/14 (read)
Referring: extOscCallbacks/0 (addr)
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/13 UpdateClockState/16 ClockTimeoutExpired/12 Clock_Ip_TimeDelay/15 ClockStartTimeout/11 ReportClockErrors/13 ClockTimeoutExpired/12 ClockStartTimeout/11 McMeEnterKey/10
ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06d97700
ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06f14700
Type: function definition analyzed
Visibility:
Address is taken.
Aux: @06d97460
Aux: @06f14460
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)mcmeGetPartitions/7 (read)xosc/14 (read)xosc/14 (read)
Referring: extOscCallbacks/0 (addr)
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/16
SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06d97460
SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06f14460
Type: function definition analyzed
Visibility:
Address is taken.
Aux: @06debc40
Aux: @06e03c40
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)mcmeGetPartitions/7 (read)mcmeSetPartitions/8 (read)mcmeSetPartitions/8 (read)mcmeTriggerPartitions/9 (read)mcmeTriggerPartitions/9 (read)mcmeTriggerPartitions/9 (read)mcmeTriggerPartitions/9 (read)mcmeGetPartitions/7 (read)xosc/14 (read)xosc/14 (read)
Referring: extOscCallbacks/0 (addr)
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/13 ReportClockErrors/13 UpdateClockState/16 ClockTimeoutExpired/12 Clock_Ip_TimeDelay/15 ClockStartTimeout/11 ReportClockErrors/13 ClockTimeoutExpired/12 ClockStartTimeout/11 McMeEnterKey/10
ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06debc40
ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06e03c40
Type: function definition analyzed
Visibility:
Address is taken.
Aux: @06debe00
Aux: @06e03e00
References: clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)clockFeatures/6 (read)mcmeGetPartitions/7 (read)xosc/14 (read)xosc/14 (read)
Referring: extOscCallbacks/0 (addr)
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/16
ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06debe00
ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06e03e00
Type: function definition analyzed
Visibility:
Address is taken.
@ -136,7 +136,7 @@ ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06debe00
Function flags: body optimize_size
Called by:
Calls:
extOscCallbacks/0 (extOscCallbacks) @06de5b40
extOscCallbacks/0 (extOscCallbacks) @06dfdb40
Type: variable definition analyzed
Visibility: public
Aux: @01733ea0
@ -149,7 +149,7 @@ Removing unused symbols:
Reclaimed Symbol table:
UpdateClockState/16 (UpdateClockState) @06da5540
UpdateClockState/16 (UpdateClockState) @06f22540
Type: function
Visibility: external public
References:
@ -157,7 +157,7 @@ UpdateClockState/16 (UpdateClockState) @06da5540
Function flags: optimize_size
Called by: ResetFxoscOsconBypEocvGmSel/2 SetFxoscOsconBypEocvGmSel/3 ResetSxoscOsconEocv/4 SetSxoscOsconEocv/5
Calls:
Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06da5460
Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06f22460
Type: function
Visibility: external public
References:
@ -165,14 +165,14 @@ Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06da5460
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5
Calls:
xosc/14 (xosc) @06da6168
xosc/14 (xosc) @06f23168
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not-ready
Varpool flags: read-only
ReportClockErrors/13 (ReportClockErrors) @06da5380
ReportClockErrors/13 (ReportClockErrors) @06f22380
Type: function
Visibility: external public
References:
@ -180,7 +180,7 @@ ReportClockErrors/13 (ReportClockErrors) @06da5380
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5 SetSxoscOsconEocv/5
Calls:
ClockTimeoutExpired/12 (ClockTimeoutExpired) @06da52a0
ClockTimeoutExpired/12 (ClockTimeoutExpired) @06f222a0
Type: function
Visibility: external public
References:
@ -188,7 +188,7 @@ ClockTimeoutExpired/12 (ClockTimeoutExpired) @06da52a0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5 SetSxoscOsconEocv/5
Calls:
ClockStartTimeout/11 (ClockStartTimeout) @06da51c0
ClockStartTimeout/11 (ClockStartTimeout) @06f221c0
Type: function
Visibility: external public
References:
@ -196,7 +196,7 @@ ClockStartTimeout/11 (ClockStartTimeout) @06da51c0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5 SetSxoscOsconEocv/5
Calls:
McMeEnterKey/10 (McMeEnterKey) @06da50e0
McMeEnterKey/10 (McMeEnterKey) @06f220e0
Type: function
Visibility: external public
References:
@ -204,35 +204,35 @@ McMeEnterKey/10 (McMeEnterKey) @06da50e0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5
Calls:
mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06da6000
mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06f23000
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)
Availability: not-ready
Varpool flags: read-only
mcmeSetPartitions/8 (mcmeSetPartitions) @06d9ff78
mcmeSetPartitions/8 (mcmeSetPartitions) @06f1cf78
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)
Availability: not-ready
Varpool flags: read-only
mcmeGetPartitions/7 (mcmeGetPartitions) @06d9ff30
mcmeGetPartitions/7 (mcmeGetPartitions) @06f1cf30
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not-ready
Varpool flags: read-only
clockFeatures/6 (clockFeatures) @06d9fee8
clockFeatures/6 (clockFeatures) @06f1cee8
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not-ready
Varpool flags: read-only
SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06d97b60
SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06f14b60
Type: function definition analyzed
Visibility:
Address is taken.
@ -241,7 +241,7 @@ SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06d97b60
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/13 UpdateClockState/16 ClockTimeoutExpired/12 Clock_Ip_TimeDelay/15 ClockStartTimeout/11 ReportClockErrors/13 ClockTimeoutExpired/12 ClockStartTimeout/11 McMeEnterKey/10
ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06d97700
ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06f14700
Type: function definition analyzed
Visibility:
Address is taken.
@ -250,7 +250,7 @@ ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06d97700
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/16
SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06d97460
SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06f14460
Type: function definition analyzed
Visibility:
Address is taken.
@ -259,7 +259,7 @@ SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06d97460
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/13 ReportClockErrors/13 UpdateClockState/16 ClockTimeoutExpired/12 Clock_Ip_TimeDelay/15 ClockStartTimeout/11 ReportClockErrors/13 ClockTimeoutExpired/12 ClockStartTimeout/11 McMeEnterKey/10
ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06debc40
ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06e03c40
Type: function definition analyzed
Visibility:
Address is taken.
@ -268,7 +268,7 @@ ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06debc40
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/16
ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06debe00
ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06e03e00
Type: function definition analyzed
Visibility:
Address is taken.
@ -277,7 +277,7 @@ ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06debe00
Function flags: body optimize_size
Called by:
Calls:
extOscCallbacks/0 (extOscCallbacks) @06de5b40
extOscCallbacks/0 (extOscCallbacks) @06dfdb40
Type: variable definition analyzed
Visibility: public
References: ExternalOscillatorEmpty/1 (addr)ExternalOscillatorEmpty/1 (addr)ResetFxoscOsconBypEocvGmSel/2 (addr)SetFxoscOsconBypEocvGmSel/3 (addr)ResetSxoscOsconEocv/4 (addr)SetSxoscOsconEocv/5 (addr)
@ -288,7 +288,7 @@ extOscCallbacks/0 (extOscCallbacks) @06de5b40
Initial Symbol table:
UpdateClockState/16 (UpdateClockState) @06da5540
UpdateClockState/16 (UpdateClockState) @06f22540
Type: function
Visibility: external public
References:
@ -296,7 +296,7 @@ UpdateClockState/16 (UpdateClockState) @06da5540
Function flags: optimize_size
Called by: ResetFxoscOsconBypEocvGmSel/2 SetFxoscOsconBypEocvGmSel/3 ResetSxoscOsconEocv/4 SetSxoscOsconEocv/5
Calls:
Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06da5460
Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06f22460
Type: function
Visibility: external public
References:
@ -304,14 +304,14 @@ Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06da5460
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5
Calls:
xosc/14 (xosc) @06da6168
xosc/14 (xosc) @06f23168
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not-ready
Varpool flags: read-only
ReportClockErrors/13 (ReportClockErrors) @06da5380
ReportClockErrors/13 (ReportClockErrors) @06f22380
Type: function
Visibility: external public
References:
@ -319,7 +319,7 @@ ReportClockErrors/13 (ReportClockErrors) @06da5380
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5 SetSxoscOsconEocv/5
Calls:
ClockTimeoutExpired/12 (ClockTimeoutExpired) @06da52a0
ClockTimeoutExpired/12 (ClockTimeoutExpired) @06f222a0
Type: function
Visibility: external public
References:
@ -327,7 +327,7 @@ ClockTimeoutExpired/12 (ClockTimeoutExpired) @06da52a0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5 SetSxoscOsconEocv/5
Calls:
ClockStartTimeout/11 (ClockStartTimeout) @06da51c0
ClockStartTimeout/11 (ClockStartTimeout) @06f221c0
Type: function
Visibility: external public
References:
@ -335,7 +335,7 @@ ClockStartTimeout/11 (ClockStartTimeout) @06da51c0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5 SetSxoscOsconEocv/5
Calls:
McMeEnterKey/10 (McMeEnterKey) @06da50e0
McMeEnterKey/10 (McMeEnterKey) @06f220e0
Type: function
Visibility: external public
References:
@ -343,35 +343,35 @@ McMeEnterKey/10 (McMeEnterKey) @06da50e0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5
Calls:
mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06da6000
mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06f23000
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)
Availability: not-ready
Varpool flags: read-only
mcmeSetPartitions/8 (mcmeSetPartitions) @06d9ff78
mcmeSetPartitions/8 (mcmeSetPartitions) @06f1cf78
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)
Availability: not-ready
Varpool flags: read-only
mcmeGetPartitions/7 (mcmeGetPartitions) @06d9ff30
mcmeGetPartitions/7 (mcmeGetPartitions) @06f1cf30
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not-ready
Varpool flags: read-only
clockFeatures/6 (clockFeatures) @06d9fee8
clockFeatures/6 (clockFeatures) @06f1cee8
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not-ready
Varpool flags: read-only
SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06d97b60
SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06f14b60
Type: function definition analyzed
Visibility:
Address is taken.
@ -380,7 +380,7 @@ SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06d97b60
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/13 UpdateClockState/16 ClockTimeoutExpired/12 Clock_Ip_TimeDelay/15 ClockStartTimeout/11 ReportClockErrors/13 ClockTimeoutExpired/12 ClockStartTimeout/11 McMeEnterKey/10
ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06d97700
ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06f14700
Type: function definition analyzed
Visibility:
Address is taken.
@ -389,7 +389,7 @@ ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06d97700
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/16
SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06d97460
SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06f14460
Type: function definition analyzed
Visibility:
Address is taken.
@ -398,7 +398,7 @@ SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06d97460
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/13 ReportClockErrors/13 UpdateClockState/16 ClockTimeoutExpired/12 Clock_Ip_TimeDelay/15 ClockStartTimeout/11 ReportClockErrors/13 ClockTimeoutExpired/12 ClockStartTimeout/11 McMeEnterKey/10
ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06debc40
ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06e03c40
Type: function definition analyzed
Visibility:
Address is taken.
@ -407,7 +407,7 @@ ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06debc40
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/16
ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06debe00
ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06e03e00
Type: function definition analyzed
Visibility:
Address is taken.
@ -416,7 +416,7 @@ ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06debe00
Function flags: body optimize_size
Called by:
Calls:
extOscCallbacks/0 (extOscCallbacks) @06de5b40
extOscCallbacks/0 (extOscCallbacks) @06dfdb40
Type: variable definition analyzed
Visibility: public
References: ExternalOscillatorEmpty/1 (addr)ExternalOscillatorEmpty/1 (addr)ResetFxoscOsconBypEocvGmSel/2 (addr)SetFxoscOsconBypEocvGmSel/3 (addr)ResetSxoscOsconEocv/4 (addr)SetSxoscOsconEocv/5 (addr)
@ -428,7 +428,7 @@ Removing unused symbols:
Reclaimed Symbol table:
UpdateClockState/16 (UpdateClockState) @06da5540
UpdateClockState/16 (UpdateClockState) @06f22540
Type: function
Visibility: external public
References:
@ -436,7 +436,7 @@ UpdateClockState/16 (UpdateClockState) @06da5540
Function flags: optimize_size
Called by: ResetFxoscOsconBypEocvGmSel/2 SetFxoscOsconBypEocvGmSel/3 ResetSxoscOsconEocv/4 SetSxoscOsconEocv/5
Calls:
Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06da5460
Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06f22460
Type: function
Visibility: external public
References:
@ -444,14 +444,14 @@ Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06da5460
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5
Calls:
xosc/14 (xosc) @06da6168
xosc/14 (xosc) @06f23168
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not-ready
Varpool flags: read-only
ReportClockErrors/13 (ReportClockErrors) @06da5380
ReportClockErrors/13 (ReportClockErrors) @06f22380
Type: function
Visibility: external public
References:
@ -459,7 +459,7 @@ ReportClockErrors/13 (ReportClockErrors) @06da5380
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5 SetSxoscOsconEocv/5
Calls:
ClockTimeoutExpired/12 (ClockTimeoutExpired) @06da52a0
ClockTimeoutExpired/12 (ClockTimeoutExpired) @06f222a0
Type: function
Visibility: external public
References:
@ -467,7 +467,7 @@ ClockTimeoutExpired/12 (ClockTimeoutExpired) @06da52a0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5 SetSxoscOsconEocv/5
Calls:
ClockStartTimeout/11 (ClockStartTimeout) @06da51c0
ClockStartTimeout/11 (ClockStartTimeout) @06f221c0
Type: function
Visibility: external public
References:
@ -475,7 +475,7 @@ ClockStartTimeout/11 (ClockStartTimeout) @06da51c0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5 SetSxoscOsconEocv/5
Calls:
McMeEnterKey/10 (McMeEnterKey) @06da50e0
McMeEnterKey/10 (McMeEnterKey) @06f220e0
Type: function
Visibility: external public
References:
@ -483,35 +483,35 @@ McMeEnterKey/10 (McMeEnterKey) @06da50e0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 SetSxoscOsconEocv/5
Calls:
mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06da6000
mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06f23000
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)
Availability: not-ready
Varpool flags: read-only
mcmeSetPartitions/8 (mcmeSetPartitions) @06d9ff78
mcmeSetPartitions/8 (mcmeSetPartitions) @06f1cf78
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)
Availability: not-ready
Varpool flags: read-only
mcmeGetPartitions/7 (mcmeGetPartitions) @06d9ff30
mcmeGetPartitions/7 (mcmeGetPartitions) @06f1cf30
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not-ready
Varpool flags: read-only
clockFeatures/6 (clockFeatures) @06d9fee8
clockFeatures/6 (clockFeatures) @06f1cee8
Type: variable
Visibility: external public
References:
Referring: SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not-ready
Varpool flags: read-only
SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06d97b60
SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06f14b60
Type: function definition analyzed
Visibility:
Address is taken.
@ -520,7 +520,7 @@ SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06d97b60
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/13 UpdateClockState/16 ClockTimeoutExpired/12 Clock_Ip_TimeDelay/15 ClockStartTimeout/11 ReportClockErrors/13 ClockTimeoutExpired/12 ClockStartTimeout/11 McMeEnterKey/10
ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06d97700
ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06f14700
Type: function definition analyzed
Visibility:
Address is taken.
@ -529,7 +529,7 @@ ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06d97700
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/16
SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06d97460
SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06f14460
Type: function definition analyzed
Visibility:
Address is taken.
@ -538,7 +538,7 @@ SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06d97460
Function flags: body optimize_size
Called by:
Calls: ReportClockErrors/13 ReportClockErrors/13 UpdateClockState/16 ClockTimeoutExpired/12 Clock_Ip_TimeDelay/15 ClockStartTimeout/11 ReportClockErrors/13 ClockTimeoutExpired/12 ClockStartTimeout/11 McMeEnterKey/10
ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06debc40
ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06e03c40
Type: function definition analyzed
Visibility:
Address is taken.
@ -547,7 +547,7 @@ ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06debc40
Function flags: body optimize_size
Called by:
Calls: UpdateClockState/16
ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06debe00
ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06e03e00
Type: function definition analyzed
Visibility:
Address is taken.
@ -556,7 +556,7 @@ ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06debe00
Function flags: body optimize_size
Called by:
Calls:
extOscCallbacks/0 (extOscCallbacks) @06de5b40
extOscCallbacks/0 (extOscCallbacks) @06dfdb40
Type: variable definition analyzed
Visibility: public
References: ExternalOscillatorEmpty/1 (addr)ExternalOscillatorEmpty/1 (addr)ResetFxoscOsconBypEocvGmSel/2 (addr)SetFxoscOsconBypEocvGmSel/3 (addr)ResetSxoscOsconEocv/4 (addr)SetSxoscOsconEocv/5 (addr)
@ -569,7 +569,7 @@ Reclaiming variables:
Clearing address taken flags:
Optimized Symbol table:
UpdateClockState/16 (UpdateClockState) @06da5540
UpdateClockState/16 (UpdateClockState) @06f22540
Type: function
Visibility: external public
References:
@ -578,7 +578,7 @@ UpdateClockState/16 (UpdateClockState) @06da5540
Function flags: optimize_size
Called by: ResetFxoscOsconBypEocvGmSel/2 (1073741824 (estimated locally),1.00 per call) SetFxoscOsconBypEocvGmSel/3 (57431766 (estimated locally),0.06 per call) ResetSxoscOsconEocv/4 (1073741824 (estimated locally),1.00 per call) SetSxoscOsconEocv/5 (57431766 (estimated locally),0.25 per call)
Calls:
Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06da5460
Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06f22460
Type: function
Visibility: external public
References:
@ -587,7 +587,7 @@ Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06da5460
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 (1073741824 (estimated locally),1.17 per call) SetSxoscOsconEocv/5 (1073741824 (estimated locally),4.67 per call)
Calls:
xosc/14 (xosc) @06da6168
xosc/14 (xosc) @06f23168
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -595,7 +595,7 @@ xosc/14 (xosc) @06da6168
Referring: SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not_available
Varpool flags: read-only
ReportClockErrors/13 (ReportClockErrors) @06da5380
ReportClockErrors/13 (ReportClockErrors) @06f22380
Type: function
Visibility: external public
References:
@ -604,7 +604,7 @@ ReportClockErrors/13 (ReportClockErrors) @06da5380
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 (114863532 (estimated locally),0.12 per call) SetFxoscOsconBypEocvGmSel/3 (57431766 (estimated locally),0.06 per call) SetFxoscOsconBypEocvGmSel/3 (14384734 (estimated locally),0.02 per call) SetSxoscOsconEocv/5 (57431766 (estimated locally),0.25 per call) SetSxoscOsconEocv/5 (3596184 (estimated locally),0.02 per call)
Calls:
ClockTimeoutExpired/12 (ClockTimeoutExpired) @06da52a0
ClockTimeoutExpired/12 (ClockTimeoutExpired) @06f222a0
Type: function
Visibility: external public
References:
@ -613,7 +613,7 @@ ClockTimeoutExpired/12 (ClockTimeoutExpired) @06da52a0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 (1073741824 (estimated locally),1.17 per call) SetFxoscOsconBypEocvGmSel/3 (407479353 (estimated locally),0.44 per call) SetSxoscOsconEocv/5 (1073741824 (estimated locally),4.67 per call) SetSxoscOsconEocv/5 (101869838 (estimated locally),0.44 per call)
Calls:
ClockStartTimeout/11 (ClockStartTimeout) @06da51c0
ClockStartTimeout/11 (ClockStartTimeout) @06f221c0
Type: function
Visibility: external public
References:
@ -622,7 +622,7 @@ ClockStartTimeout/11 (ClockStartTimeout) @06da51c0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 (114863532 (estimated locally),0.12 per call) SetFxoscOsconBypEocvGmSel/3 (43590104 (estimated locally),0.05 per call) SetSxoscOsconEocv/5 (114863532 (estimated locally),0.50 per call) SetSxoscOsconEocv/5 (10897526 (estimated locally),0.05 per call)
Calls:
McMeEnterKey/10 (McMeEnterKey) @06da50e0
McMeEnterKey/10 (McMeEnterKey) @06f220e0
Type: function
Visibility: external public
References:
@ -631,7 +631,7 @@ McMeEnterKey/10 (McMeEnterKey) @06da50e0
Function flags: optimize_size
Called by: SetFxoscOsconBypEocvGmSel/3 (43590104 (estimated locally),0.05 per call) SetSxoscOsconEocv/5 (10897526 (estimated locally),0.05 per call)
Calls:
mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06da6000
mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06f23000
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -639,7 +639,7 @@ mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06da6000
Referring: SetSxoscOsconEocv/5 (read)SetFxoscOsconBypEocvGmSel/3 (read)
Availability: not_available
Varpool flags: read-only
mcmeSetPartitions/8 (mcmeSetPartitions) @06d9ff78
mcmeSetPartitions/8 (mcmeSetPartitions) @06f1cf78
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -647,7 +647,7 @@ mcmeSetPartitions/8 (mcmeSetPartitions) @06d9ff78
Referring: SetSxoscOsconEocv/5 (read)SetFxoscOsconBypEocvGmSel/3 (read)
Availability: not_available
Varpool flags: read-only
mcmeGetPartitions/7 (mcmeGetPartitions) @06d9ff30
mcmeGetPartitions/7 (mcmeGetPartitions) @06f1cf30
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -655,7 +655,7 @@ mcmeGetPartitions/7 (mcmeGetPartitions) @06d9ff30
Referring: SetSxoscOsconEocv/5 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not_available
Varpool flags: read-only
clockFeatures/6 (clockFeatures) @06d9fee8
clockFeatures/6 (clockFeatures) @06f1cee8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -663,7 +663,7 @@ clockFeatures/6 (clockFeatures) @06d9fee8
Referring: ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)ResetSxoscOsconEocv/4 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetFxoscOsconBypEocvGmSel/3 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)SetSxoscOsconEocv/5 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)ResetFxoscOsconBypEocvGmSel/2 (read)
Availability: not_available
Varpool flags: read-only
SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06d97b60
SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06f14b60
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -673,7 +673,7 @@ SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06d97b60
Function flags: count:229727064 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/13 (57431766 (estimated locally),0.25 per call) UpdateClockState/16 (57431766 (estimated locally),0.25 per call) ClockTimeoutExpired/12 (1073741824 (estimated locally),4.67 per call) Clock_Ip_TimeDelay/15 (1073741824 (estimated locally),4.67 per call) ClockStartTimeout/11 (114863532 (estimated locally),0.50 per call) ReportClockErrors/13 (3596184 (estimated locally),0.02 per call) ClockTimeoutExpired/12 (101869838 (estimated locally),0.44 per call) ClockStartTimeout/11 (10897526 (estimated locally),0.05 per call) McMeEnterKey/10 (10897526 (estimated locally),0.05 per call)
ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06d97700
ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06f14700
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -683,7 +683,7 @@ ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06d97700
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/16 (1073741824 (estimated locally),1.00 per call)
SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06d97460
SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06f14460
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -693,7 +693,7 @@ SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06d97460
Function flags: count:918908257 (estimated locally) body optimize_size
Called by:
Calls: ReportClockErrors/13 (114863532 (estimated locally),0.12 per call) ReportClockErrors/13 (57431766 (estimated locally),0.06 per call) UpdateClockState/16 (57431766 (estimated locally),0.06 per call) ClockTimeoutExpired/12 (1073741824 (estimated locally),1.17 per call) Clock_Ip_TimeDelay/15 (1073741824 (estimated locally),1.17 per call) ClockStartTimeout/11 (114863532 (estimated locally),0.12 per call) ReportClockErrors/13 (14384734 (estimated locally),0.02 per call) ClockTimeoutExpired/12 (407479353 (estimated locally),0.44 per call) ClockStartTimeout/11 (43590104 (estimated locally),0.05 per call) McMeEnterKey/10 (43590104 (estimated locally),0.05 per call)
ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06debc40
ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06e03c40
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -703,7 +703,7 @@ ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06debc40
Function flags: count:1073741823 (estimated locally) body optimize_size
Called by:
Calls: UpdateClockState/16 (1073741824 (estimated locally),1.00 per call)
ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06debe00
ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06e03e00
Type: function definition analyzed
Visibility: prevailing_def_ironly
Address is taken.
@ -713,7 +713,7 @@ ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06debe00
Function flags: count:1073741824 (estimated locally) body nonfreeing_fn optimize_size
Called by:
Calls:
extOscCallbacks/0 (extOscCallbacks) @06de5b40
extOscCallbacks/0 (extOscCallbacks) @06dfdb40
Type: variable definition analyzed
Visibility: externally_visible public
References: ExternalOscillatorEmpty/1 (addr)ExternalOscillatorEmpty/1 (addr)ResetFxoscOsconBypEocvGmSel/2 (addr)SetFxoscOsconBypEocvGmSel/3 (addr)ResetSxoscOsconEocv/4 (addr)SetSxoscOsconEocv/5 (addr)
@ -736,7 +736,7 @@ Removing variables:
Final Symbol table:
UpdateClockState/16 (UpdateClockState) @06da5540
UpdateClockState/16 (UpdateClockState) @06f22540
Type: function
Visibility: external public
References:
@ -745,7 +745,7 @@ UpdateClockState/16 (UpdateClockState) @06da5540
Function flags: optimize_size
Called by:
Calls:
Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06da5460
Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06f22460
Type: function
Visibility: external public
References:
@ -754,7 +754,7 @@ Clock_Ip_TimeDelay/15 (Clock_Ip_TimeDelay) @06da5460
Function flags: optimize_size
Called by:
Calls:
xosc/14 (xosc) @06da6168
xosc/14 (xosc) @06f23168
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -762,7 +762,7 @@ xosc/14 (xosc) @06da6168
Referring:
Availability: not_available
Varpool flags: read-only
ReportClockErrors/13 (ReportClockErrors) @06da5380
ReportClockErrors/13 (ReportClockErrors) @06f22380
Type: function
Visibility: external public
References:
@ -771,7 +771,7 @@ ReportClockErrors/13 (ReportClockErrors) @06da5380
Function flags: optimize_size
Called by:
Calls:
ClockTimeoutExpired/12 (ClockTimeoutExpired) @06da52a0
ClockTimeoutExpired/12 (ClockTimeoutExpired) @06f222a0
Type: function
Visibility: external public
References:
@ -780,7 +780,7 @@ ClockTimeoutExpired/12 (ClockTimeoutExpired) @06da52a0
Function flags: optimize_size
Called by:
Calls:
ClockStartTimeout/11 (ClockStartTimeout) @06da51c0
ClockStartTimeout/11 (ClockStartTimeout) @06f221c0
Type: function
Visibility: external public
References:
@ -789,7 +789,7 @@ ClockStartTimeout/11 (ClockStartTimeout) @06da51c0
Function flags: optimize_size
Called by:
Calls:
McMeEnterKey/10 (McMeEnterKey) @06da50e0
McMeEnterKey/10 (McMeEnterKey) @06f220e0
Type: function
Visibility: external public
References:
@ -798,7 +798,7 @@ McMeEnterKey/10 (McMeEnterKey) @06da50e0
Function flags: optimize_size
Called by:
Calls:
mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06da6000
mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06f23000
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -806,7 +806,7 @@ mcmeTriggerPartitions/9 (mcmeTriggerPartitions) @06da6000
Referring:
Availability: not_available
Varpool flags: read-only
mcmeSetPartitions/8 (mcmeSetPartitions) @06d9ff78
mcmeSetPartitions/8 (mcmeSetPartitions) @06f1cf78
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -814,7 +814,7 @@ mcmeSetPartitions/8 (mcmeSetPartitions) @06d9ff78
Referring:
Availability: not_available
Varpool flags: read-only
mcmeGetPartitions/7 (mcmeGetPartitions) @06d9ff30
mcmeGetPartitions/7 (mcmeGetPartitions) @06f1cf30
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -822,7 +822,7 @@ mcmeGetPartitions/7 (mcmeGetPartitions) @06d9ff30
Referring:
Availability: not_available
Varpool flags: read-only
clockFeatures/6 (clockFeatures) @06d9fee8
clockFeatures/6 (clockFeatures) @06f1cee8
Type: variable
Body removed by symtab_remove_unreachable_nodes
Visibility: external public
@ -830,7 +830,7 @@ clockFeatures/6 (clockFeatures) @06d9fee8
Referring:
Availability: not_available
Varpool flags: read-only
SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06d97b60
SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06f14b60
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -840,7 +840,7 @@ SetSxoscOsconEocv/5 (SetSxoscOsconEocv) @06d97b60
Function flags: count:229727064 (estimated locally) optimize_size
Called by:
Calls:
ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06d97700
ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06f14700
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -850,7 +850,7 @@ ResetSxoscOsconEocv/4 (ResetSxoscOsconEocv) @06d97700
Function flags: count:1073741823 (estimated locally) optimize_size
Called by:
Calls:
SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06d97460
SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06f14460
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -860,7 +860,7 @@ SetFxoscOsconBypEocvGmSel/3 (SetFxoscOsconBypEocvGmSel) @06d97460
Function flags: count:918908257 (estimated locally) optimize_size
Called by:
Calls:
ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06debc40
ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06e03c40
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -870,7 +870,7 @@ ResetFxoscOsconBypEocvGmSel/2 (ResetFxoscOsconBypEocvGmSel) @06debc40
Function flags: count:1073741823 (estimated locally) optimize_size
Called by:
Calls:
ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06debe00
ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06e03e00
Type: function definition analyzed
Visibility: prevailing_def_ironly asm_written
Address is taken.
@ -880,7 +880,7 @@ ExternalOscillatorEmpty/1 (ExternalOscillatorEmpty) @06debe00
Function flags: count:1073741824 (estimated locally) nonfreeing_fn optimize_size
Called by:
Calls:
extOscCallbacks/0 (extOscCallbacks) @06de5b40
extOscCallbacks/0 (extOscCallbacks) @06dfdb40
Type: variable definition analyzed
Visibility: externally_visible asm_written public
Aux: @00000001

Some files were not shown because too many files have changed in this diff Show More