/* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * Copyright (c) 2008-2016 Texas Instruments. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /*****************************************************************************/ /* stdarg.h */ /* */ /* Copyright (c) 1996 Texas Instruments Incorporated */ /* http://www.ti.com/ */ /* */ /* Redistribution and use in source and binary forms, with or without */ /* modification, are permitted provided that the following conditions */ /* are met: */ /* */ /* Redistributions of source code must retain the above copyright */ /* notice, this list of conditions and the following disclaimer. */ /* */ /* Redistributions in binary form must reproduce the above copyright */ /* notice, this list of conditions and the following disclaimer in */ /* the documentation and/or other materials provided with the */ /* distribution. */ /* */ /* Neither the name of Texas Instruments Incorporated nor the names */ /* of its contributors may be used to endorse or promote products */ /* derived from this software without specific prior written */ /* permission. */ /* */ /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */ /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */ /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */ /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */ /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */ /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */ /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */ /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */ /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */ /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* */ /*****************************************************************************/ /*****************************************************************************/ /* _ti_config.h */ /* */ /* Copyright (c) 2017 Texas Instruments Incorporated */ /* http://www.ti.com/ */ /* */ /* Redistribution and use in source and binary forms, with or without */ /* modification, are permitted provided that the following conditions */ /* are met: */ /* */ /* Redistributions of source code must retain the above copyright */ /* notice, this list of conditions and the following disclaimer. */ /* */ /* Redistributions in binary form must reproduce the above copyright */ /* notice, this list of conditions and the following disclaimer in */ /* the documentation and/or other materials provided with the */ /* distribution. */ /* */ /* Neither the name of Texas Instruments Incorporated nor the names */ /* of its contributors may be used to endorse or promote products */ /* derived from this software without specific prior written */ /* permission. */ /* */ /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */ /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */ /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */ /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */ /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */ /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */ /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */ /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */ /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */ /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* */ /*****************************************************************************/ #pragma diag_push #pragma CHECK_MISRA("-19.4") #pragma CHECK_MISRA("-19.1") /* Common definitions */ /* C */ /* C89/C99 */ /* _TI_NOEXCEPT_CPP14 is defined to noexcept only when compiling for C++14. It is intended to be used for functions like abort and atexit that are supposed to be declared noexcept only in C++14 mode. */ /* Target-specific definitions */ /*****************************************************************************/ /* linkage.h */ /* */ /* Copyright (c) 1998 Texas Instruments Incorporated */ /* http://www.ti.com/ */ /* */ /* Redistribution and use in source and binary forms, with or without */ /* modification, are permitted provided that the following conditions */ /* are met: */ /* */ /* Redistributions of source code must retain the above copyright */ /* notice, this list of conditions and the following disclaimer. */ /* */ /* Redistributions in binary form must reproduce the above copyright */ /* notice, this list of conditions and the following disclaimer in */ /* the documentation and/or other materials provided with the */ /* distribution. */ /* */ /* Neither the name of Texas Instruments Incorporated nor the names */ /* of its contributors may be used to endorse or promote products */ /* derived from this software without specific prior written */ /* permission. */ /* */ /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */ /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */ /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */ /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */ /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */ /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */ /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */ /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */ /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */ /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* */ /*****************************************************************************/ #pragma diag_push #pragma CHECK_MISRA("-19.4") /* macros required for implementation */ /* No modifiers needed to access code */ /*--------------------------------------------------------------------------*/ /* Define _DATA_ACCESS ==> how to access RTS global or static data */ /*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/ /* Define _OPTIMIZE_FOR_SPACE ==> Always optimize for space. */ /*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/ /* Define _IDECL ==> how inline functions are declared */ /*--------------------------------------------------------------------------*/ #pragma diag_pop #pragma diag_pop #pragma diag_push #pragma CHECK_MISRA("-20.1") /* standard headers must define standard names */ #pragma CHECK_MISRA("-20.2") /* standard headers must define standard names */ #pragma CHECK_MISRA("-19.7") /* macros required for implementation */ #pragma CHECK_MISRA("-19.10") /* need types as macro arguments */ typedef char *va_list; /****************************************************************************/ /* RETURN THE NEXT VALUE ON THE STACK ... */ /* */ /* (, ) BECOMES ... */ /* */ /* ap -= 1 (stack grows toward high addresses) */ /* ap -= 1 more if type is long or float */ /* ap -= 1 more if type is long or float and to account for alignment */ /* if necessary */ /* */ /* if () return **ap; */ /* else if () return *ap; */ /* */ /* LONG/FLOATS ARE ALWAYS ALIGNED ON AN EVEN WORD BOUNDARY, EVEN WHEN */ /* PASSED AS PARAMETERS, THUS ap MUST BE ALIGNED FOR THOSE ACCESSES. */ /****************************************************************************/ #pragma diag_pop /*****************************************************************************/ /* stddef.h */ /* */ /* Copyright (c) 1993 Texas Instruments Incorporated */ /* http://www.ti.com/ */ /* */ /* Redistribution and use in source and binary forms, with or without */ /* modification, are permitted provided that the following conditions */ /* are met: */ /* */ /* Redistributions of source code must retain the above copyright */ /* notice, this list of conditions and the following disclaimer. */ /* */ /* Redistributions in binary form must reproduce the above copyright */ /* notice, this list of conditions and the following disclaimer in */ /* the documentation and/or other materials provided with the */ /* distribution. */ /* */ /* Neither the name of Texas Instruments Incorporated nor the names */ /* of its contributors may be used to endorse or promote products */ /* derived from this software without specific prior written */ /* permission. */ /* */ /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */ /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */ /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */ /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */ /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */ /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */ /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */ /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */ /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */ /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* */ /*****************************************************************************/ #pragma diag_push #pragma CHECK_MISRA("-19.7") /* macros required for implementation */ #pragma CHECK_MISRA("-20.1") /* standard headers must define standard names */ #pragma CHECK_MISRA("-20.2") /* standard headers must define standard names */ typedef long ptrdiff_t; typedef unsigned long size_t; typedef unsigned int wchar_t; /*----------------------------------------------------------------------------*/ /* C++11 and C11 required max_align_t to be defined. The libc++ cstddef */ /* header expects the macro __DEFINED_max_align_t to be defined if it is to */ /* use the definintion of max_align_t from stddef.h. Only define it if */ /* compiling for C11 or we're in non strict ansi mode. */ /*----------------------------------------------------------------------------*/ typedef long double max_align_t; #pragma diag_push #pragma CHECK_MISRA("-19.10") /* need types as macro arguments */ #pragma diag_pop #pragma diag_pop /* macros to simplify "stringification" and computed includes */ /* TitleCase standard types */ typedef char xdc_Char; typedef unsigned char xdc_UChar; typedef short xdc_Short; typedef unsigned short xdc_UShort; typedef int xdc_Int; typedef unsigned int xdc_UInt; typedef long xdc_Long; typedef unsigned long xdc_ULong; typedef float xdc_Float; typedef double xdc_Double; typedef long double xdc_LDouble; typedef size_t xdc_SizeT; typedef va_list xdc_VaList; /* Generic Extended Types */ typedef unsigned short xdc_Bool; /* boolean flag */ typedef void *xdc_Ptr; /* data pointer */ typedef const void *xdc_CPtr; /* data pointer */ typedef char *xdc_String; /* null terminated string */ typedef const char *xdc_CString; /* null terminated immutable string */ /* we intentionally omit arguments from Fxn to indicate that it can have * any (or none). Unfortunately this causes gcc to emit warnings when * -Wstrict-prototypes is used. Newer gcc's (4.6 or later) support a pragma * that works around this: * * #pragma GCC diagnostic ignored "-Wstrict-prototypes" */ typedef int (*xdc_Fxn)(); /* function pointer */ /* * Import the target-specific std.h */ /* * Copyright (c) 2008-2016 Texas Instruments Incorporated * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Texas Instruments - initial implementation * * */ /* * ======== ti/targets/std.h ======== * Standard types for supported TI compilers * */ /* allow _TI_STD_TYPES like 'Uns' and 'Uint8' */ /* include target-specific "portable" macros */ /* * Copyright 2017 by Texas Instruments Incorporated. * */ /* * ======== C28_float.h ======== * DO NOT MODIFY: This header is generated from stddef.xdt * * This header contains target-specific definitions of target-independent * macros required by the ITarget interface. These definitions allow C/C++ * sources to portably compile for multiple targets (using #ifdef ...). */ /* * ======== ti_targets_C28_float ======== * This macro identifies the specific target being used. This macro should * probably be avoided in portable sources. */ /* * ======== xdc_target__arraytype_VaList ======== * The following macro specifies whether or not a VaList is an * array type; e.g., struct __va_list_tag (*)[1] verses a simple char *. * This affects how va_list variables are passed to functions (by value * or by address). */ /* * ======== xdc_target__isaCompatible_* macros ======== * The following definitions enable clients to conditionally compile for any * compatible subset of the actual target ISA. */ /* * ======== xdc_target__isa_28FP ======== * This macro identifies the specific target ISA for which we are being * compiled. */ /* * ======== xdc_target__{big|little}Endian ======== * The following macro enables clients to portably compile for big or little * endian targets. */ /* * ======== xdc_target__{...}Data ======== * The following macro enables clients to portably compile for target specific * data models; e.g., near, far, ... */ /* * ======== xdc_target__os_undefined ======== * The following macro enables clients to portably compile for target specific * OS; e.g., Linux, Solaris, Windows, undefined. */ /* * ======== xdc_target__sizeof_ ======== * The following macros enable clients to portably determine type sizes * within #ifdef blocks; sizeof() can't be used and the definitions in * stdint.h are not available to C++ clients (unless the special macro * __STDC_LIMIT_MACROS is defined). */ /* * ======== xdc_target__alignof_ ======== * The following macros enable clients to portably determine type alignment * within #ifdef blocks; even if provided by the compiler, alignof() can't * be used in pre-processor statements. */ /* * ======== xdc_target__bitsPerChar ======== * The number of bits in a char. This macro allow one to determine the * precise number of bits in any of the standard types (whose sizes are * expressed as a number of chars). */ /* * @(#) ti.targets; 1, 0, 3,1; 7-27-2017 11:47:27; /db/ztree/library/trees/xdctargets/xdctargets-o04/src/ xlibrary */ /*****************************************************************************/ /* STDINT.H */ /* */ /* Copyright (c) 2002 Texas Instruments Incorporated */ /* http://www.ti.com/ */ /* */ /* Redistribution and use in source and binary forms, with or without */ /* modification, are permitted provided that the following conditions */ /* are met: */ /* */ /* Redistributions of source code must retain the above copyright */ /* notice, this list of conditions and the following disclaimer. */ /* */ /* Redistributions in binary form must reproduce the above copyright */ /* notice, this list of conditions and the following disclaimer in */ /* the documentation and/or other materials provided with the */ /* distribution. */ /* */ /* Neither the name of Texas Instruments Incorporated nor the names */ /* of its contributors may be used to endorse or promote products */ /* derived from this software without specific prior written */ /* permission. */ /* */ /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */ /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */ /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */ /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */ /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */ /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */ /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */ /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */ /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */ /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* */ /*****************************************************************************/ #pragma diag_push #pragma CHECK_MISRA("-19.1") /* no code before #include */ #pragma CHECK_MISRA("-19.7") /* prefer functions to macros */ /* 7.18.1.1 Exact-width integer types */ typedef int int16_t; typedef unsigned int uint16_t; typedef long int32_t; typedef unsigned long uint32_t; typedef long long int64_t; typedef unsigned long long uint64_t; /* 7.18.1.2 Minimum-width integer types */ typedef int16_t int_least8_t; typedef uint16_t uint_least8_t; typedef int16_t int_least16_t; typedef uint16_t uint_least16_t; typedef int32_t int_least32_t; typedef uint32_t uint_least32_t; typedef int64_t int_least64_t; typedef uint64_t uint_least64_t; /* 7.18.1.3 Fastest minimum-width integer types */ typedef int16_t int_fast8_t; typedef uint16_t uint_fast8_t; typedef int16_t int_fast16_t; typedef uint16_t uint_fast16_t; typedef int32_t int_fast32_t; typedef uint32_t uint_fast32_t; typedef int64_t int_fast64_t; typedef uint64_t uint_fast64_t; /* 7.18.1.4 Integer types capable of holding object pointers */ typedef long intptr_t; typedef unsigned long uintptr_t; /* 7.18.1.5 Greatest-width integer types */ typedef long long intmax_t; typedef unsigned long long uintmax_t; /* According to footnotes in the 1999 C standard, "C++ implementations should define these macros only when __STDC_LIMIT_MACROS is defined before is included." */ /* 7.18.2 Limits of specified width integer types */ /* 7.18.3 Limits of other integer types */ /* 7.18.4.1 Macros for minimum-width integer constants */ /* There is a defect report filed against the C99 standard concerning how the (U)INTN_C macros should be implemented. Please refer to -- http://wwwold.dkuug.dk/JTC1/SC22/WG14/www/docs/dr_209.htm for more information. These macros are implemented according to the suggestion given at this web site. */ /* 7.18.4.2 Macros for greatest-width integer constants */ #pragma diag_pop typedef void *xdc_Arg; /* deprecated, but compatible with BIOS 5.x */ /* * xdc__LONGLONG__ indicates if compiler supports 'long long' type * xdc__BITS __ indicates if compiler supports 'uint_t' type */ /* * ======== [U]Int ======== */ typedef int_least8_t xdc_Int8; typedef uint_least8_t xdc_UInt8; typedef int_least16_t xdc_Int16; typedef uint_least16_t xdc_UInt16; typedef int_least32_t xdc_Int32; typedef uint_least32_t xdc_UInt32; typedef int_least64_t xdc_Int64; typedef uint_least64_t xdc_UInt64; /* * ======== Bits ======== */ typedef uint16_t xdc_Bits16; typedef uint32_t xdc_Bits32; typedef uint64_t xdc_Bits64; /* * ======== [UI]Arg ======== */ typedef intptr_t xdc_IArg; typedef uintptr_t xdc_UArg; /* * ======== restrict ======== */ /* * ======== ti_targets_mkPragma ======== */ /* * ======== xdc__META ======== */ /* * ======== __ti__ ======== * These symbols are used by RTSC tools to indicate presence/absence of * assorted #pragma options in TI compiler. */ /* * @(#) ti.targets; 1, 0, 3,1; 7-27-2017 11:47:28; /db/ztree/library/trees/xdctargets/xdctargets-o04/src/ xlibrary */ /* Each modules' internal header file defines 'module' as * xdc__MODOBJADDR__(Module__state__V), where Module__state__V is the actual * object where the module state is kept. For most targets, the default macro * given here results in the construct '(&Module__state__V)->field', when the * expression 'module->field' is used. Compilers then generate the code that * doesn't dereference a pointer, but puts the address of the field in the * code. * The targets that need to do something different can define * xdc__MODOBJADDR__ in std.h for their target package. */ /* Long Long Types */ typedef long long xdc_LLong; typedef unsigned long long xdc_ULLong; /* Arg to Ptr and Fxn conversion operators * * Individual targets may override these definitions in the event * that compilers issue warnings about shortening of an Arg to a pointer, * for example. */ static xdc_Ptr xdc_iargToPtr(xdc_IArg a); static xdc_Ptr xdc_uargToPtr(xdc_UArg a); static inline xdc_Ptr xdc_iargToPtr(xdc_IArg a) { return ((xdc_Ptr)a); } static inline xdc_Ptr xdc_uargToPtr(xdc_UArg a) { return ((xdc_Ptr)a); } static xdc_Fxn xdc_iargToFxn(xdc_IArg a); static xdc_Fxn xdc_uargToFxn(xdc_UArg a); static inline xdc_Fxn xdc_iargToFxn(xdc_IArg a) { return ((xdc_Fxn)a); } static inline xdc_Fxn xdc_uargToFxn(xdc_UArg a) { return ((xdc_Fxn)a); } /* * functions to efficiently convert a single precision float to an IArg * and vice-versa while maintaining client type safety * * Here the assumption is that sizeof(Float) <= sizeof(IArg); */ typedef union { xdc_Float f; xdc_IArg a; } xdc_FloatData; static xdc_IArg xdc_floatToArg(xdc_Float f); static inline xdc_IArg xdc_floatToArg(xdc_Float f) { xdc_FloatData u; u.f = f; return (u.a); } static xdc_Float xdc_argToFloat(xdc_IArg a); static inline xdc_Float xdc_argToFloat(xdc_IArg a) { xdc_FloatData u; u.a = a; return (u.f); } /* restrict keyword */ /* Unprefixed Aliases */ typedef xdc_Char Char; typedef xdc_UChar UChar; typedef xdc_Short Short; typedef xdc_UShort UShort; typedef xdc_Int Int; typedef xdc_UInt UInt; typedef xdc_Long Long; typedef xdc_ULong ULong; typedef xdc_LLong LLong; typedef xdc_ULLong ULLong; typedef xdc_Float Float; typedef xdc_Double Double; typedef xdc_LDouble LDouble; typedef xdc_SizeT SizeT; typedef xdc_VaList VaList; typedef xdc_IArg IArg; typedef xdc_UArg UArg; typedef xdc_Bool Bool; typedef xdc_Int8 Int8; typedef xdc_Int16 Int16; typedef xdc_Int32 Int32; typedef xdc_Fxn Fxn; typedef xdc_Ptr Ptr; typedef xdc_CPtr CPtr; typedef xdc_String String; typedef xdc_CString CString; typedef xdc_UInt8 UInt8; typedef xdc_UInt16 UInt16; typedef xdc_UInt32 UInt32; /* DEPRECATED Aliases */ /* xdc_Arg is defined only in ti/targets/std.h; use IArg and UArg instead */ typedef xdc_Arg Arg; typedef xdc_UInt8 Uint8; typedef xdc_UInt16 Uint16; typedef xdc_UInt32 Uint32; typedef xdc_UInt Uns; /* * ======== optional types ======== * The following types are not always defined for all targets */ typedef xdc_Int64 Int64; typedef xdc_UInt64 UInt64; /* The following exact size types are not required by C99 and may not be * supported by some compiler/processor environments. For greater * portability, use the IntN or UIntN types above. */ typedef xdc_Bits16 Bits16; typedef xdc_Bits32 Bits32; typedef xdc_Bits64 Bits64; /* Standard Constants */ /* NULL must be 0 for C++ and is set to 0 in C to allow legacy code to * compile without warnings. * * If xdc__strict is defined, NULL is defined to be a pointer to allow * maximal type checking in "modern" C sources */ /* Declaration Qualifiers */ /* * ======== xdc__CODESECT ======== * Code-Section Directive * * Targets can optionally #define xdc__CODESECT in their specific * std.h files. This directive is placed in front of all * "extern" function declarations, and specifies a section-name in * which to place this function. This approach * provides more control on combining/organizing groups of * related functions into a single named sub-section (e.g., * "init-code") If this macro is not defined by the target, an * empty definition is used instead. */ /* * ======== xdc__META ======== * Embed unreferenced string in the current file * * Strings emebdded via xdc__META can be placed in a section that is * _not_ loaded on the target but are, nevertheless, part of the * executable and available to loaders. * * Different targets may define this macro in a way that places these * strings in an output section that is not loaded (and therefore does * not takeup space on the target). Unless the target provides a * definition of xdc__META, the definition below simply defines * as string constant in the current file. */ /* * @(#) xdc; 1, 1, 1,0; 7-31-2018 11:48:19; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== GENERATED SECTIONS ======== * * MODULE INCLUDES * * INTERNALS * INHERITS * VTABLE * PATCH TABLE * DECLARATIONS * OBJECT OFFSETS * TEMPLATES * INITIALIZERS * FUNCTION STUBS * PROXY BODY * OBJECT DESCRIPTOR * VIRTUAL FUNCTIONS * SYSTEM FUNCTIONS * PRAGMAS * * INITIALIZATION ENTRY POINT * PROGRAM GLOBALS * CLINK DIRECTIVES */ /* * ======== MODULE INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Copyright (c) 2008-2018 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * ======== xdc.h ======== * All generated public module headers include this file */ /* * ======== __CONC__ ======== * Concatenate the specified tokens to create a new single token */ /* * ======== __STR__ ======== * Stringify the specified arguement */ /* * ======== xdc_FILE__ ======== * Alternative to __FILE__ which defaults to NULL * * We define our own symbol in lieu of the standard __FILE__ * so we can avoid embedding lots of static strings in applications * that use Error and Assert. * * Both Error and Assert use xdc_FILE__ and ALL module internal headers * redefine xdc_FILE__ to be NULL, unless xdc_FILE is defined. If xdc_FILE * is defined, xdc-FILE__ has the same value assigned to xdc_FILE. So, by * default, Error and Asserts in modules do *not* provide a file name. * * Since this header is included in all module public headers, "non-module" * clients of Error and Assert *will*, by default, provide a file name * string. To eliminate these embedded strings, add the following line * before all module headers: * #define xdc_FILE NULL * * Module creators may opt to define xdc_FILE as the string to use in * Error and Assert messages. For example, adding the following line * to a module's implementation (before the inclusion of the module's * internal header) will cause the standard __FILE__ to be * used in lieu of NULL in Error and Assert calls: * #define xdc_FILE __FILE__ * */ /* * ======== xdc_LINE ======== * Standard file-line-number string for identifying a call site */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * ======== Types__prologue.h ======== * Hand crafted definitions for Types.xdc */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== interface xdc.runtime.IModule ======== */ typedef struct xdc_runtime_IModule_Fxns__ xdc_runtime_IModule_Fxns__; typedef const struct xdc_runtime_IModule_Fxns__* xdc_runtime_IModule_Module; /* * ======== module xdc.runtime.Assert ======== */ /* * ======== module xdc.runtime.Core ======== */ typedef struct xdc_runtime_Core_ObjDesc xdc_runtime_Core_ObjDesc; /* * ======== module xdc.runtime.Defaults ======== */ /* * ======== module xdc.runtime.Diags ======== */ typedef struct xdc_runtime_Diags_DictElem xdc_runtime_Diags_DictElem; /* * ======== module xdc.runtime.Error ======== */ typedef struct xdc_runtime_Error_Data xdc_runtime_Error_Data; typedef struct xdc_runtime_Error_Block xdc_runtime_Error_Block; typedef struct xdc_runtime_Error_Module_State xdc_runtime_Error_Module_State; /* * ======== module xdc.runtime.Gate ======== */ /* * ======== interface xdc.runtime.IGateProvider ======== */ typedef struct xdc_runtime_IGateProvider_Fxns__ xdc_runtime_IGateProvider_Fxns__; typedef const struct xdc_runtime_IGateProvider_Fxns__* xdc_runtime_IGateProvider_Module; typedef struct xdc_runtime_IGateProvider_Params xdc_runtime_IGateProvider_Params; typedef struct xdc_runtime_IGateProvider___Object { xdc_runtime_IGateProvider_Fxns__* __fxns; xdc_Bits32 __label; } *xdc_runtime_IGateProvider_Handle; /* * ======== module xdc.runtime.GateNull ======== */ typedef struct xdc_runtime_GateNull_Fxns__ xdc_runtime_GateNull_Fxns__; typedef const struct xdc_runtime_GateNull_Fxns__* xdc_runtime_GateNull_Module; typedef struct xdc_runtime_GateNull_Params xdc_runtime_GateNull_Params; typedef struct xdc_runtime_GateNull_Object xdc_runtime_GateNull_Object; typedef struct xdc_runtime_GateNull_Struct xdc_runtime_GateNull_Struct; typedef xdc_runtime_GateNull_Object* xdc_runtime_GateNull_Handle; typedef struct xdc_runtime_GateNull_Object__ xdc_runtime_GateNull_Instance_State; typedef xdc_runtime_GateNull_Object* xdc_runtime_GateNull_Instance; /* * ======== module xdc.runtime.Log ======== */ typedef struct xdc_runtime_Log_EventRec xdc_runtime_Log_EventRec; /* * ======== interface xdc.runtime.ILogger ======== */ typedef struct xdc_runtime_ILogger_Fxns__ xdc_runtime_ILogger_Fxns__; typedef const struct xdc_runtime_ILogger_Fxns__* xdc_runtime_ILogger_Module; typedef struct xdc_runtime_ILogger_Params xdc_runtime_ILogger_Params; typedef struct xdc_runtime_ILogger___Object { xdc_runtime_ILogger_Fxns__* __fxns; xdc_Bits32 __label; } *xdc_runtime_ILogger_Handle; /* * ======== interface xdc.runtime.IFilterLogger ======== */ typedef struct xdc_runtime_IFilterLogger_Fxns__ xdc_runtime_IFilterLogger_Fxns__; typedef const struct xdc_runtime_IFilterLogger_Fxns__* xdc_runtime_IFilterLogger_Module; typedef struct xdc_runtime_IFilterLogger_Params xdc_runtime_IFilterLogger_Params; typedef struct xdc_runtime_IFilterLogger___Object { xdc_runtime_IFilterLogger_Fxns__* __fxns; xdc_Bits32 __label; } *xdc_runtime_IFilterLogger_Handle; /* * ======== module xdc.runtime.LoggerBuf ======== */ typedef struct xdc_runtime_LoggerBuf_Entry xdc_runtime_LoggerBuf_Entry; typedef struct xdc_runtime_LoggerBuf_Module_State xdc_runtime_LoggerBuf_Module_State; typedef struct xdc_runtime_LoggerBuf_Fxns__ xdc_runtime_LoggerBuf_Fxns__; typedef const struct xdc_runtime_LoggerBuf_Fxns__* xdc_runtime_LoggerBuf_Module; typedef struct xdc_runtime_LoggerBuf_Params xdc_runtime_LoggerBuf_Params; typedef struct xdc_runtime_LoggerBuf_Object xdc_runtime_LoggerBuf_Object; typedef struct xdc_runtime_LoggerBuf_Struct xdc_runtime_LoggerBuf_Struct; typedef xdc_runtime_LoggerBuf_Object* xdc_runtime_LoggerBuf_Handle; typedef struct xdc_runtime_LoggerBuf_Object__ xdc_runtime_LoggerBuf_Instance_State; typedef xdc_runtime_LoggerBuf_Object* xdc_runtime_LoggerBuf_Instance; /* * ======== module xdc.runtime.LoggerCallback ======== */ typedef struct xdc_runtime_LoggerCallback_Fxns__ xdc_runtime_LoggerCallback_Fxns__; typedef const struct xdc_runtime_LoggerCallback_Fxns__* xdc_runtime_LoggerCallback_Module; typedef struct xdc_runtime_LoggerCallback_Params xdc_runtime_LoggerCallback_Params; typedef struct xdc_runtime_LoggerCallback_Object xdc_runtime_LoggerCallback_Object; typedef struct xdc_runtime_LoggerCallback_Struct xdc_runtime_LoggerCallback_Struct; typedef xdc_runtime_LoggerCallback_Object* xdc_runtime_LoggerCallback_Handle; typedef struct xdc_runtime_LoggerCallback_Object__ xdc_runtime_LoggerCallback_Instance_State; typedef xdc_runtime_LoggerCallback_Object* xdc_runtime_LoggerCallback_Instance; /* * ======== module xdc.runtime.LoggerSys ======== */ typedef struct xdc_runtime_LoggerSys_Fxns__ xdc_runtime_LoggerSys_Fxns__; typedef const struct xdc_runtime_LoggerSys_Fxns__* xdc_runtime_LoggerSys_Module; typedef struct xdc_runtime_LoggerSys_Params xdc_runtime_LoggerSys_Params; typedef struct xdc_runtime_LoggerSys_Object xdc_runtime_LoggerSys_Object; typedef struct xdc_runtime_LoggerSys_Struct xdc_runtime_LoggerSys_Struct; typedef xdc_runtime_LoggerSys_Object* xdc_runtime_LoggerSys_Handle; typedef struct xdc_runtime_LoggerSys_Object__ xdc_runtime_LoggerSys_Instance_State; typedef xdc_runtime_LoggerSys_Object* xdc_runtime_LoggerSys_Instance; /* * ======== module xdc.runtime.Main ======== */ /* * ======== module xdc.runtime.Memory ======== */ typedef struct xdc_runtime_Memory_Stats xdc_runtime_Memory_Stats; typedef struct xdc_runtime_Memory_Module_State xdc_runtime_Memory_Module_State; /* * ======== interface xdc.runtime.IHeap ======== */ typedef struct xdc_runtime_IHeap_Fxns__ xdc_runtime_IHeap_Fxns__; typedef const struct xdc_runtime_IHeap_Fxns__* xdc_runtime_IHeap_Module; typedef struct xdc_runtime_IHeap_Params xdc_runtime_IHeap_Params; typedef struct xdc_runtime_IHeap___Object { xdc_runtime_IHeap_Fxns__* __fxns; xdc_Bits32 __label; } *xdc_runtime_IHeap_Handle; /* * ======== module xdc.runtime.HeapMin ======== */ typedef struct xdc_runtime_HeapMin_Fxns__ xdc_runtime_HeapMin_Fxns__; typedef const struct xdc_runtime_HeapMin_Fxns__* xdc_runtime_HeapMin_Module; typedef struct xdc_runtime_HeapMin_Params xdc_runtime_HeapMin_Params; typedef struct xdc_runtime_HeapMin_Object xdc_runtime_HeapMin_Object; typedef struct xdc_runtime_HeapMin_Struct xdc_runtime_HeapMin_Struct; typedef xdc_runtime_HeapMin_Object* xdc_runtime_HeapMin_Handle; typedef struct xdc_runtime_HeapMin_Object__ xdc_runtime_HeapMin_Instance_State; typedef xdc_runtime_HeapMin_Object* xdc_runtime_HeapMin_Instance; /* * ======== module xdc.runtime.HeapStd ======== */ typedef struct xdc_runtime_HeapStd_Module_State xdc_runtime_HeapStd_Module_State; typedef struct xdc_runtime_HeapStd_Fxns__ xdc_runtime_HeapStd_Fxns__; typedef const struct xdc_runtime_HeapStd_Fxns__* xdc_runtime_HeapStd_Module; typedef struct xdc_runtime_HeapStd_Params xdc_runtime_HeapStd_Params; typedef struct xdc_runtime_HeapStd_Object xdc_runtime_HeapStd_Object; typedef struct xdc_runtime_HeapStd_Struct xdc_runtime_HeapStd_Struct; typedef xdc_runtime_HeapStd_Object* xdc_runtime_HeapStd_Handle; typedef struct xdc_runtime_HeapStd_Object__ xdc_runtime_HeapStd_Instance_State; typedef xdc_runtime_HeapStd_Object* xdc_runtime_HeapStd_Instance; /* * ======== module xdc.runtime.Registry ======== */ typedef struct xdc_runtime_Registry_Module_State xdc_runtime_Registry_Module_State; /* * ======== module xdc.runtime.Rta ======== */ typedef struct xdc_runtime_Rta_CommandPacket xdc_runtime_Rta_CommandPacket; typedef struct xdc_runtime_Rta_ResponsePacket xdc_runtime_Rta_ResponsePacket; /* * ======== module xdc.runtime.Startup ======== */ typedef struct xdc_runtime_Startup_IdMap xdc_runtime_Startup_IdMap; typedef struct xdc_runtime_Startup_Module_State xdc_runtime_Startup_Module_State; /* * ======== module xdc.runtime.System ======== */ typedef struct xdc_runtime_System_ParseData xdc_runtime_System_ParseData; typedef struct xdc_runtime_System_Module_State xdc_runtime_System_Module_State; /* * ======== interface xdc.runtime.ISystemSupport ======== */ typedef struct xdc_runtime_ISystemSupport_Fxns__ xdc_runtime_ISystemSupport_Fxns__; typedef const struct xdc_runtime_ISystemSupport_Fxns__* xdc_runtime_ISystemSupport_Module; /* * ======== module xdc.runtime.SysCallback ======== */ typedef struct xdc_runtime_SysCallback_Fxns__ xdc_runtime_SysCallback_Fxns__; typedef const struct xdc_runtime_SysCallback_Fxns__* xdc_runtime_SysCallback_Module; /* * ======== module xdc.runtime.SysMin ======== */ typedef struct xdc_runtime_SysMin_Module_State xdc_runtime_SysMin_Module_State; typedef struct xdc_runtime_SysMin_Fxns__ xdc_runtime_SysMin_Fxns__; typedef const struct xdc_runtime_SysMin_Fxns__* xdc_runtime_SysMin_Module; /* * ======== module xdc.runtime.SysStd ======== */ typedef struct xdc_runtime_SysStd_Fxns__ xdc_runtime_SysStd_Fxns__; typedef const struct xdc_runtime_SysStd_Fxns__* xdc_runtime_SysStd_Module; /* * ======== module xdc.runtime.Text ======== */ typedef struct xdc_runtime_Text_Node xdc_runtime_Text_Node; typedef struct xdc_runtime_Text_MatchVisState xdc_runtime_Text_MatchVisState; typedef struct xdc_runtime_Text_PrintVisState xdc_runtime_Text_PrintVisState; typedef struct xdc_runtime_Text_Module_State xdc_runtime_Text_Module_State; /* * ======== interface xdc.runtime.ITimestampClient ======== */ typedef struct xdc_runtime_ITimestampClient_Fxns__ xdc_runtime_ITimestampClient_Fxns__; typedef const struct xdc_runtime_ITimestampClient_Fxns__* xdc_runtime_ITimestampClient_Module; /* * ======== module xdc.runtime.Timestamp ======== */ typedef struct xdc_runtime_Timestamp_Fxns__ xdc_runtime_Timestamp_Fxns__; typedef const struct xdc_runtime_Timestamp_Fxns__* xdc_runtime_Timestamp_Module; /* * ======== interface xdc.runtime.ITimestampProvider ======== */ typedef struct xdc_runtime_ITimestampProvider_Fxns__ xdc_runtime_ITimestampProvider_Fxns__; typedef const struct xdc_runtime_ITimestampProvider_Fxns__* xdc_runtime_ITimestampProvider_Module; /* * ======== module xdc.runtime.TimestampNull ======== */ typedef struct xdc_runtime_TimestampNull_Fxns__ xdc_runtime_TimestampNull_Fxns__; typedef const struct xdc_runtime_TimestampNull_Fxns__* xdc_runtime_TimestampNull_Module; /* * ======== module xdc.runtime.TimestampStd ======== */ typedef struct xdc_runtime_TimestampStd_Fxns__ xdc_runtime_TimestampStd_Fxns__; typedef const struct xdc_runtime_TimestampStd_Fxns__* xdc_runtime_TimestampStd_Module; /* * ======== module xdc.runtime.Types ======== */ typedef struct xdc_runtime_Types_CordAddr__ xdc_runtime_Types_CordAddr__; typedef struct xdc_runtime_Types_GateRef__ xdc_runtime_Types_GateRef__; typedef struct xdc_runtime_Types_Label xdc_runtime_Types_Label; typedef struct xdc_runtime_Types_Site xdc_runtime_Types_Site; typedef struct xdc_runtime_Types_Timestamp64 xdc_runtime_Types_Timestamp64; typedef struct xdc_runtime_Types_FreqHz xdc_runtime_Types_FreqHz; typedef struct xdc_runtime_Types_RegDesc xdc_runtime_Types_RegDesc; typedef struct xdc_runtime_Types_Vec xdc_runtime_Types_Vec; typedef struct xdc_runtime_Types_Link xdc_runtime_Types_Link; typedef struct xdc_runtime_Types_InstHdr xdc_runtime_Types_InstHdr; typedef struct xdc_runtime_Types_PrmsHdr xdc_runtime_Types_PrmsHdr; typedef struct xdc_runtime_Types_Base xdc_runtime_Types_Base; typedef struct xdc_runtime_Types_SysFxns2 xdc_runtime_Types_SysFxns2; /* * ======== interface xdc.runtime.IInstance ======== */ typedef struct xdc_runtime_IInstance_Fxns__ xdc_runtime_IInstance_Fxns__; typedef const struct xdc_runtime_IInstance_Fxns__* xdc_runtime_IInstance_Module; typedef struct xdc_runtime_IInstance_Params xdc_runtime_IInstance_Params; typedef struct xdc_runtime_IInstance___Object { xdc_runtime_IInstance_Fxns__* __fxns; xdc_Bits32 __label; } *xdc_runtime_IInstance_Handle; /* * ======== module xdc.runtime.LoggerBuf_TimestampProxy ======== */ typedef struct xdc_runtime_LoggerBuf_TimestampProxy_Fxns__ xdc_runtime_LoggerBuf_TimestampProxy_Fxns__; typedef const struct xdc_runtime_LoggerBuf_TimestampProxy_Fxns__* xdc_runtime_LoggerBuf_TimestampProxy_Module; /* * ======== module xdc.runtime.LoggerBuf_Module_GateProxy ======== */ typedef struct xdc_runtime_LoggerBuf_Module_GateProxy_Fxns__ xdc_runtime_LoggerBuf_Module_GateProxy_Fxns__; typedef const struct xdc_runtime_LoggerBuf_Module_GateProxy_Fxns__* xdc_runtime_LoggerBuf_Module_GateProxy_Module; typedef struct xdc_runtime_LoggerBuf_Module_GateProxy_Params xdc_runtime_LoggerBuf_Module_GateProxy_Params; typedef struct xdc_runtime_IGateProvider___Object *xdc_runtime_LoggerBuf_Module_GateProxy_Handle; /* * ======== module xdc.runtime.LoggerSys_TimestampProxy ======== */ typedef struct xdc_runtime_LoggerSys_TimestampProxy_Fxns__ xdc_runtime_LoggerSys_TimestampProxy_Fxns__; typedef const struct xdc_runtime_LoggerSys_TimestampProxy_Fxns__* xdc_runtime_LoggerSys_TimestampProxy_Module; /* * ======== module xdc.runtime.Main_Module_GateProxy ======== */ typedef struct xdc_runtime_Main_Module_GateProxy_Fxns__ xdc_runtime_Main_Module_GateProxy_Fxns__; typedef const struct xdc_runtime_Main_Module_GateProxy_Fxns__* xdc_runtime_Main_Module_GateProxy_Module; typedef struct xdc_runtime_Main_Module_GateProxy_Params xdc_runtime_Main_Module_GateProxy_Params; typedef struct xdc_runtime_IGateProvider___Object *xdc_runtime_Main_Module_GateProxy_Handle; /* * ======== module xdc.runtime.Memory_HeapProxy ======== */ typedef struct xdc_runtime_Memory_HeapProxy_Fxns__ xdc_runtime_Memory_HeapProxy_Fxns__; typedef const struct xdc_runtime_Memory_HeapProxy_Fxns__* xdc_runtime_Memory_HeapProxy_Module; typedef struct xdc_runtime_Memory_HeapProxy_Params xdc_runtime_Memory_HeapProxy_Params; typedef struct xdc_runtime_IHeap___Object *xdc_runtime_Memory_HeapProxy_Handle; /* * ======== module xdc.runtime.System_SupportProxy ======== */ typedef struct xdc_runtime_System_SupportProxy_Fxns__ xdc_runtime_System_SupportProxy_Fxns__; typedef const struct xdc_runtime_System_SupportProxy_Fxns__* xdc_runtime_System_SupportProxy_Module; /* * ======== module xdc.runtime.System_Module_GateProxy ======== */ typedef struct xdc_runtime_System_Module_GateProxy_Fxns__ xdc_runtime_System_Module_GateProxy_Fxns__; typedef const struct xdc_runtime_System_Module_GateProxy_Fxns__* xdc_runtime_System_Module_GateProxy_Module; typedef struct xdc_runtime_System_Module_GateProxy_Params xdc_runtime_System_Module_GateProxy_Params; typedef struct xdc_runtime_IGateProvider___Object *xdc_runtime_System_Module_GateProxy_Handle; /* * ======== module xdc.runtime.Timestamp_SupportProxy ======== */ typedef struct xdc_runtime_Timestamp_SupportProxy_Fxns__ xdc_runtime_Timestamp_SupportProxy_Fxns__; typedef const struct xdc_runtime_Timestamp_SupportProxy_Fxns__* xdc_runtime_Timestamp_SupportProxy_Module; /* * ======== AUXILIARY DEFINITIONS ======== */ /* ModuleId */ typedef xdc_Bits16 xdc_runtime_Types_ModuleId; /* DiagsMask */ typedef xdc_Bits16 xdc_runtime_Types_DiagsMask; /* Event */ typedef xdc_Bits32 xdc_runtime_Types_Event; /* EventId */ typedef xdc_runtime_Types_Event xdc_runtime_Types_EventId; /* CordAddr__ */ struct xdc_runtime_Types_CordAddr__; /* CordAddr */ typedef xdc_runtime_Types_CordAddr__ *xdc_runtime_Types_CordAddr; /* GateRef__ */ struct xdc_runtime_Types_GateRef__; /* GateRef */ typedef xdc_runtime_Types_GateRef__ *xdc_runtime_Types_GateRef; /* RopeId */ typedef xdc_Bits16 xdc_runtime_Types_RopeId; /* CreatePolicy */ enum xdc_runtime_Types_CreatePolicy { xdc_runtime_Types_STATIC_POLICY, xdc_runtime_Types_CREATE_POLICY, xdc_runtime_Types_DELETE_POLICY }; typedef enum xdc_runtime_Types_CreatePolicy xdc_runtime_Types_CreatePolicy; /* OutputPolicy */ enum xdc_runtime_Types_OutputPolicy { xdc_runtime_Types_COMMON_FILE, xdc_runtime_Types_SEPARATE_FILE, xdc_runtime_Types_NO_FILE }; typedef enum xdc_runtime_Types_OutputPolicy xdc_runtime_Types_OutputPolicy; /* Label */ struct xdc_runtime_Types_Label { xdc_Ptr handle; xdc_runtime_Types_ModuleId modId; xdc_String iname; xdc_Bool named; }; /* Site */ struct xdc_runtime_Types_Site { xdc_runtime_Types_ModuleId mod; xdc_CString file; xdc_Int line; }; /* Timestamp64 */ struct xdc_runtime_Types_Timestamp64 { xdc_Bits32 hi; xdc_Bits32 lo; }; /* FreqHz */ struct xdc_runtime_Types_FreqHz { xdc_Bits32 hi; xdc_Bits32 lo; }; /* RegDesc */ struct xdc_runtime_Types_RegDesc { xdc_runtime_Types_RegDesc *next; xdc_CString modName; xdc_runtime_Types_ModuleId id; xdc_runtime_Types_DiagsMask mask; }; /* * ======== INTERNAL DEFINITIONS ======== */ /* LogEvent */ typedef xdc_Bits32 xdc_runtime_Types_LogEvent; /* LoggerFxn0 */ typedef void (*xdc_runtime_Types_LoggerFxn0)(xdc_Ptr arg1, xdc_runtime_Types_LogEvent arg2, xdc_runtime_Types_ModuleId arg3); /* LoggerFxn1 */ typedef void (*xdc_runtime_Types_LoggerFxn1)(xdc_Ptr arg1, xdc_runtime_Types_LogEvent arg2, xdc_runtime_Types_ModuleId arg3, xdc_IArg arg4); /* LoggerFxn2 */ typedef void (*xdc_runtime_Types_LoggerFxn2)(xdc_Ptr arg1, xdc_runtime_Types_LogEvent arg2, xdc_runtime_Types_ModuleId arg3, xdc_IArg arg4, xdc_IArg arg5); /* LoggerFxn4 */ typedef void (*xdc_runtime_Types_LoggerFxn4)(xdc_Ptr arg1, xdc_runtime_Types_LogEvent arg2, xdc_runtime_Types_ModuleId arg3, xdc_IArg arg4, xdc_IArg arg5, xdc_IArg arg6, xdc_IArg arg7); /* LoggerFxn8 */ typedef void (*xdc_runtime_Types_LoggerFxn8)(xdc_Ptr arg1, xdc_runtime_Types_LogEvent arg2, xdc_runtime_Types_ModuleId arg3, xdc_IArg arg4, xdc_IArg arg5, xdc_IArg arg6, xdc_IArg arg7, xdc_IArg arg8, xdc_IArg arg9, xdc_IArg arg10, xdc_IArg arg11); /* Vec */ struct xdc_runtime_Types_Vec { xdc_Int len; xdc_Ptr arr; }; /* Link */ struct xdc_runtime_Types_Link { xdc_runtime_Types_Link *next; xdc_runtime_Types_Link *prev; }; /* InstHdr */ struct xdc_runtime_Types_InstHdr { xdc_runtime_Types_Link link; }; /* PrmsHdr */ struct xdc_runtime_Types_PrmsHdr { xdc_SizeT size; xdc_Ptr self; xdc_Ptr modFxns; xdc_Ptr instPrms; }; /* Base */ struct xdc_runtime_Types_Base { const xdc_runtime_Types_Base *base; }; /* SysFxns2 */ struct xdc_runtime_Types_SysFxns2 { xdc_Ptr (*__create)(xdc_CPtr arg1, const xdc_UChar* arg2, xdc_SizeT arg3, xdc_runtime_Error_Block* arg4); void (*__delete)(xdc_Ptr arg1); xdc_runtime_Types_Label *(*__label)(xdc_Ptr arg1, xdc_runtime_Types_Label* arg2); xdc_runtime_Types_ModuleId __mid; }; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Types_Module__diagsEnabled; extern const CT__xdc_runtime_Types_Module__diagsEnabled xdc_runtime_Types_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Types_Module__diagsIncluded; extern const CT__xdc_runtime_Types_Module__diagsIncluded xdc_runtime_Types_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Types_Module__diagsMask; extern const CT__xdc_runtime_Types_Module__diagsMask xdc_runtime_Types_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Types_Module__gateObj; extern const CT__xdc_runtime_Types_Module__gateObj xdc_runtime_Types_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Types_Module__gatePrms; extern const CT__xdc_runtime_Types_Module__gatePrms xdc_runtime_Types_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Types_Module__id; extern const CT__xdc_runtime_Types_Module__id xdc_runtime_Types_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Types_Module__loggerDefined; extern const CT__xdc_runtime_Types_Module__loggerDefined xdc_runtime_Types_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Types_Module__loggerObj; extern const CT__xdc_runtime_Types_Module__loggerObj xdc_runtime_Types_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Types_Module__loggerFxn0; extern const CT__xdc_runtime_Types_Module__loggerFxn0 xdc_runtime_Types_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Types_Module__loggerFxn1; extern const CT__xdc_runtime_Types_Module__loggerFxn1 xdc_runtime_Types_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Types_Module__loggerFxn2; extern const CT__xdc_runtime_Types_Module__loggerFxn2 xdc_runtime_Types_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Types_Module__loggerFxn4; extern const CT__xdc_runtime_Types_Module__loggerFxn4 xdc_runtime_Types_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Types_Module__loggerFxn8; extern const CT__xdc_runtime_Types_Module__loggerFxn8 xdc_runtime_Types_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Types_Object__count; extern const CT__xdc_runtime_Types_Object__count xdc_runtime_Types_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Types_Object__heap; extern const CT__xdc_runtime_Types_Object__heap xdc_runtime_Types_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Types_Object__sizeof; extern const CT__xdc_runtime_Types_Object__sizeof xdc_runtime_Types_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Types_Object__table; extern const CT__xdc_runtime_Types_Object__table xdc_runtime_Types_Object__table__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Types_Module__startupDone__S( void ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Types_Module__id xdc_runtime_Types_Module_id(void); static inline CT__xdc_runtime_Types_Module__id xdc_runtime_Types_Module_id( void ) { return xdc_runtime_Types_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Types_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Types_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Types_Module__diagsMask__C != (CT__xdc_runtime_Types_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Types_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Types_Module_getMask(void) { return (xdc_runtime_Types_Module__diagsMask__C != (CT__xdc_runtime_Types_Module__diagsMask)0) ? *xdc_runtime_Types_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Types_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Types_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Types_Module__diagsMask__C != (CT__xdc_runtime_Types_Module__diagsMask)0) { *xdc_runtime_Types_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * ======== Types__epilogue.h ======== * Hand crafted macros for Types.xdc */ /* * ======== xdc_runtime_Types_getEventId ======== */ /* * ======== xdc_runtime_Types_makeEvent ======== */ /* * ======== xdc_runtime_Types_getModuleId ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2012, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== module ti.sysbios.BIOS ======== */ typedef struct ti_sysbios_BIOS_intSize ti_sysbios_BIOS_intSize; typedef struct ti_sysbios_BIOS_Module_State ti_sysbios_BIOS_Module_State; /* * ======== module ti.sysbios.BIOS_RtsGateProxy ======== */ typedef struct ti_sysbios_BIOS_RtsGateProxy_Fxns__ ti_sysbios_BIOS_RtsGateProxy_Fxns__; typedef const struct ti_sysbios_BIOS_RtsGateProxy_Fxns__* ti_sysbios_BIOS_RtsGateProxy_Module; typedef struct ti_sysbios_BIOS_RtsGateProxy_Params ti_sysbios_BIOS_RtsGateProxy_Params; typedef struct xdc_runtime_IGateProvider___Object *ti_sysbios_BIOS_RtsGateProxy_Handle; /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct xdc_runtime_IInstance_Params { size_t __size; xdc_CString name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_IInstance_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base xdc_runtime_IInstance_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* create */ extern xdc_runtime_IInstance_Handle xdc_runtime_IInstance_create(xdc_runtime_IInstance_Module mod, const xdc_runtime_IInstance_Params *prms, xdc_runtime_Error_Block *eb); /* delete */ extern void xdc_runtime_IInstance_delete(xdc_runtime_IInstance_Handle *inst); /* Handle_to_Module */ static inline xdc_runtime_IInstance_Module xdc_runtime_IInstance_Handle_to_Module(xdc_runtime_IInstance_Handle inst); static inline xdc_runtime_IInstance_Module xdc_runtime_IInstance_Handle_to_Module(xdc_runtime_IInstance_Handle inst) { return inst->__fxns; } /* Handle_label */ static inline xdc_runtime_Types_Label *xdc_runtime_IInstance_Handle_label(xdc_runtime_IInstance_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *xdc_runtime_IInstance_Handle_label(xdc_runtime_IInstance_Handle inst, xdc_runtime_Types_Label *lab) { return inst->__fxns->__sysp->__label(inst, lab); } /* Module_id */ static inline xdc_runtime_Types_ModuleId xdc_runtime_IInstance_Module_id(xdc_runtime_IInstance_Module mod); static inline xdc_runtime_Types_ModuleId xdc_runtime_IInstance_Module_id(xdc_runtime_IInstance_Module mod) { return mod->__sysp->__mid; } /* * ======== FUNCTION SELECTORS ======== */ /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct xdc_runtime_Error_Module_State { xdc_UInt16 count; }; /* Module__state__V */ extern struct xdc_runtime_Error_Module_State__ xdc_runtime_Error_Module__state__V; /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Memory_HeapProxy_Module__diagsEnabled; extern const CT__xdc_runtime_Memory_HeapProxy_Module__diagsEnabled xdc_runtime_Memory_HeapProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Memory_HeapProxy_Module__diagsIncluded; extern const CT__xdc_runtime_Memory_HeapProxy_Module__diagsIncluded xdc_runtime_Memory_HeapProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Memory_HeapProxy_Module__diagsMask; extern const CT__xdc_runtime_Memory_HeapProxy_Module__diagsMask xdc_runtime_Memory_HeapProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Memory_HeapProxy_Module__gateObj; extern const CT__xdc_runtime_Memory_HeapProxy_Module__gateObj xdc_runtime_Memory_HeapProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Memory_HeapProxy_Module__gatePrms; extern const CT__xdc_runtime_Memory_HeapProxy_Module__gatePrms xdc_runtime_Memory_HeapProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Memory_HeapProxy_Module__id; extern const CT__xdc_runtime_Memory_HeapProxy_Module__id xdc_runtime_Memory_HeapProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Memory_HeapProxy_Module__loggerDefined; extern const CT__xdc_runtime_Memory_HeapProxy_Module__loggerDefined xdc_runtime_Memory_HeapProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Memory_HeapProxy_Module__loggerObj; extern const CT__xdc_runtime_Memory_HeapProxy_Module__loggerObj xdc_runtime_Memory_HeapProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Memory_HeapProxy_Module__loggerFxn0; extern const CT__xdc_runtime_Memory_HeapProxy_Module__loggerFxn0 xdc_runtime_Memory_HeapProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Memory_HeapProxy_Module__loggerFxn1; extern const CT__xdc_runtime_Memory_HeapProxy_Module__loggerFxn1 xdc_runtime_Memory_HeapProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Memory_HeapProxy_Module__loggerFxn2; extern const CT__xdc_runtime_Memory_HeapProxy_Module__loggerFxn2 xdc_runtime_Memory_HeapProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Memory_HeapProxy_Module__loggerFxn4; extern const CT__xdc_runtime_Memory_HeapProxy_Module__loggerFxn4 xdc_runtime_Memory_HeapProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Memory_HeapProxy_Module__loggerFxn8; extern const CT__xdc_runtime_Memory_HeapProxy_Module__loggerFxn8 xdc_runtime_Memory_HeapProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Memory_HeapProxy_Object__count; extern const CT__xdc_runtime_Memory_HeapProxy_Object__count xdc_runtime_Memory_HeapProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Memory_HeapProxy_Object__heap; extern const CT__xdc_runtime_Memory_HeapProxy_Object__heap xdc_runtime_Memory_HeapProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Memory_HeapProxy_Object__sizeof; extern const CT__xdc_runtime_Memory_HeapProxy_Object__sizeof xdc_runtime_Memory_HeapProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Memory_HeapProxy_Object__table; extern const CT__xdc_runtime_Memory_HeapProxy_Object__table xdc_runtime_Memory_HeapProxy_Object__table__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct xdc_runtime_Memory_HeapProxy_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct xdc_runtime_Memory_HeapProxy_Struct { const xdc_runtime_Memory_HeapProxy_Fxns__ *__fxns; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_Memory_HeapProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Ptr (*alloc)(xdc_runtime_Memory_HeapProxy_Handle inst, xdc_SizeT size, xdc_SizeT align, xdc_runtime_Error_Block* eb); void (*free)(xdc_runtime_Memory_HeapProxy_Handle inst, xdc_Ptr block, xdc_SizeT size); xdc_Bool (*isBlocking)(xdc_runtime_Memory_HeapProxy_Handle inst); void (*getStats)(xdc_runtime_Memory_HeapProxy_Handle inst, xdc_runtime_Memory_Stats* stats); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const xdc_runtime_Memory_HeapProxy_Fxns__ xdc_runtime_Memory_HeapProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* create */ extern xdc_runtime_Memory_HeapProxy_Handle xdc_runtime_Memory_HeapProxy_create( const xdc_runtime_Memory_HeapProxy_Params *prms, xdc_runtime_Error_Block *eb); /* delete */ extern void xdc_runtime_Memory_HeapProxy_delete(xdc_runtime_Memory_HeapProxy_Handle *instp); /* Handle__label__S */ extern xdc_runtime_Types_Label *xdc_runtime_Memory_HeapProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Memory_HeapProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr xdc_runtime_Memory_HeapProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr xdc_runtime_Memory_HeapProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr xdc_runtime_Memory_HeapProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void xdc_runtime_Memory_HeapProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool xdc_runtime_Memory_HeapProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr xdc_runtime_Memory_HeapProxy_Proxy__delegate__S( void ); /* alloc__E */ extern xdc_Ptr xdc_runtime_Memory_HeapProxy_alloc__E( xdc_runtime_Memory_HeapProxy_Handle __inst, xdc_SizeT size, xdc_SizeT align, xdc_runtime_Error_Block *eb ); /* free__E */ extern void xdc_runtime_Memory_HeapProxy_free__E( xdc_runtime_Memory_HeapProxy_Handle __inst, xdc_Ptr block, xdc_SizeT size ); /* isBlocking__E */ extern xdc_Bool xdc_runtime_Memory_HeapProxy_isBlocking__E( xdc_runtime_Memory_HeapProxy_Handle __inst ); /* getStats__E */ extern void xdc_runtime_Memory_HeapProxy_getStats__E( xdc_runtime_Memory_HeapProxy_Handle __inst, xdc_runtime_Memory_Stats *stats ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_IHeap_Module xdc_runtime_Memory_HeapProxy_Module_upCast(void); static inline xdc_runtime_IHeap_Module xdc_runtime_Memory_HeapProxy_Module_upCast(void) { return (xdc_runtime_IHeap_Module)xdc_runtime_Memory_HeapProxy_Proxy__delegate__S(); } /* Module_to_xdc_runtime_IHeap */ /* Handle_upCast */ static inline xdc_runtime_IHeap_Handle xdc_runtime_Memory_HeapProxy_Handle_upCast(xdc_runtime_Memory_HeapProxy_Handle i); static inline xdc_runtime_IHeap_Handle xdc_runtime_Memory_HeapProxy_Handle_upCast(xdc_runtime_Memory_HeapProxy_Handle i) { return (xdc_runtime_IHeap_Handle)i; } /* Handle_to_xdc_runtime_IHeap */ /* Handle_downCast */ static inline xdc_runtime_Memory_HeapProxy_Handle xdc_runtime_Memory_HeapProxy_Handle_downCast(xdc_runtime_IHeap_Handle i); static inline xdc_runtime_Memory_HeapProxy_Handle xdc_runtime_Memory_HeapProxy_Handle_downCast(xdc_runtime_IHeap_Handle i) { xdc_runtime_IHeap_Handle i2 = (xdc_runtime_IHeap_Handle)i; if (xdc_runtime_Memory_HeapProxy_Proxy__abstract__S()) { return (xdc_runtime_Memory_HeapProxy_Handle)i; } return ((const void*)i2->__fxns == (const void*)xdc_runtime_Memory_HeapProxy_Proxy__delegate__S()) ? (xdc_runtime_Memory_HeapProxy_Handle)i : (xdc_runtime_Memory_HeapProxy_Handle)0; } /* Handle_from_xdc_runtime_IHeap */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Memory_HeapProxy_Module__id xdc_runtime_Memory_HeapProxy_Module_id(void); static inline CT__xdc_runtime_Memory_HeapProxy_Module__id xdc_runtime_Memory_HeapProxy_Module_id( void ) { return xdc_runtime_Memory_HeapProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* Params_init */ static inline void xdc_runtime_Memory_HeapProxy_Params_init(xdc_runtime_Memory_HeapProxy_Params *prms); static inline void xdc_runtime_Memory_HeapProxy_Params_init( xdc_runtime_Memory_HeapProxy_Params *prms ) { if (prms != 0) { xdc_runtime_Memory_HeapProxy_Params__init__S(prms, 0, sizeof(xdc_runtime_Memory_HeapProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void xdc_runtime_Memory_HeapProxy_Params_copy(xdc_runtime_Memory_HeapProxy_Params *dst, const xdc_runtime_Memory_HeapProxy_Params *src); static inline void xdc_runtime_Memory_HeapProxy_Params_copy(xdc_runtime_Memory_HeapProxy_Params *dst, const xdc_runtime_Memory_HeapProxy_Params *src) { if (dst != 0) { xdc_runtime_Memory_HeapProxy_Params__init__S(dst, (const void *)src, sizeof(xdc_runtime_Memory_HeapProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Q_BLOCKING */ /* Size */ typedef xdc_UArg xdc_runtime_Memory_Size; /* Stats */ struct xdc_runtime_Memory_Stats { xdc_runtime_Memory_Size totalSize; xdc_runtime_Memory_Size totalFreeSize; xdc_runtime_Memory_Size largestFreeSize; }; /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Memory_Module__diagsEnabled; extern const CT__xdc_runtime_Memory_Module__diagsEnabled xdc_runtime_Memory_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Memory_Module__diagsIncluded; extern const CT__xdc_runtime_Memory_Module__diagsIncluded xdc_runtime_Memory_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Memory_Module__diagsMask; extern const CT__xdc_runtime_Memory_Module__diagsMask xdc_runtime_Memory_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Memory_Module__gateObj; extern const CT__xdc_runtime_Memory_Module__gateObj xdc_runtime_Memory_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Memory_Module__gatePrms; extern const CT__xdc_runtime_Memory_Module__gatePrms xdc_runtime_Memory_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Memory_Module__id; extern const CT__xdc_runtime_Memory_Module__id xdc_runtime_Memory_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Memory_Module__loggerDefined; extern const CT__xdc_runtime_Memory_Module__loggerDefined xdc_runtime_Memory_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Memory_Module__loggerObj; extern const CT__xdc_runtime_Memory_Module__loggerObj xdc_runtime_Memory_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Memory_Module__loggerFxn0; extern const CT__xdc_runtime_Memory_Module__loggerFxn0 xdc_runtime_Memory_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Memory_Module__loggerFxn1; extern const CT__xdc_runtime_Memory_Module__loggerFxn1 xdc_runtime_Memory_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Memory_Module__loggerFxn2; extern const CT__xdc_runtime_Memory_Module__loggerFxn2 xdc_runtime_Memory_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Memory_Module__loggerFxn4; extern const CT__xdc_runtime_Memory_Module__loggerFxn4 xdc_runtime_Memory_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Memory_Module__loggerFxn8; extern const CT__xdc_runtime_Memory_Module__loggerFxn8 xdc_runtime_Memory_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Memory_Object__count; extern const CT__xdc_runtime_Memory_Object__count xdc_runtime_Memory_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Memory_Object__heap; extern const CT__xdc_runtime_Memory_Object__heap xdc_runtime_Memory_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Memory_Object__sizeof; extern const CT__xdc_runtime_Memory_Object__sizeof xdc_runtime_Memory_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Memory_Object__table; extern const CT__xdc_runtime_Memory_Object__table xdc_runtime_Memory_Object__table__C; /* defaultHeapInstance */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Memory_defaultHeapInstance; extern const CT__xdc_runtime_Memory_defaultHeapInstance xdc_runtime_Memory_defaultHeapInstance__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Memory_Module__startupDone__S( void ); /* alloc__E */ extern xdc_Ptr xdc_runtime_Memory_alloc__E( xdc_runtime_IHeap_Handle heap, xdc_SizeT size, xdc_SizeT align, xdc_runtime_Error_Block *eb ); /* calloc__E */ extern xdc_Ptr xdc_runtime_Memory_calloc__E( xdc_runtime_IHeap_Handle heap, xdc_SizeT size, xdc_SizeT align, xdc_runtime_Error_Block *eb ); /* free__E */ extern void xdc_runtime_Memory_free__E( xdc_runtime_IHeap_Handle heap, xdc_Ptr block, xdc_SizeT size ); /* getStats__E */ extern void xdc_runtime_Memory_getStats__E( xdc_runtime_IHeap_Handle heap, xdc_runtime_Memory_Stats *stats ); /* query__E */ extern xdc_Bool xdc_runtime_Memory_query__E( xdc_runtime_IHeap_Handle heap, xdc_Int qual ); /* getMaxDefaultTypeAlign__E */ extern xdc_SizeT xdc_runtime_Memory_getMaxDefaultTypeAlign__E( void ); /* valloc__E */ extern xdc_Ptr xdc_runtime_Memory_valloc__E( xdc_runtime_IHeap_Handle heap, xdc_SizeT size, xdc_SizeT align, xdc_Char value, xdc_runtime_Error_Block *eb ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Memory_Module__id xdc_runtime_Memory_Module_id(void); static inline CT__xdc_runtime_Memory_Module__id xdc_runtime_Memory_Module_id( void ) { return xdc_runtime_Memory_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Memory_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Memory_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Memory_Module__diagsMask__C != (CT__xdc_runtime_Memory_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Memory_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Memory_Module_getMask(void) { return (xdc_runtime_Memory_Module__diagsMask__C != (CT__xdc_runtime_Memory_Module__diagsMask)0) ? *xdc_runtime_Memory_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Memory_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Memory_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Memory_Module__diagsMask__C != (CT__xdc_runtime_Memory_Module__diagsMask)0) { *xdc_runtime_Memory_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct xdc_runtime_Memory_Module_State { xdc_SizeT maxDefaultTypeAlign; }; /* Module__state__V */ extern struct xdc_runtime_Memory_Module_State__ xdc_runtime_Memory_Module__state__V; /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct xdc_runtime_IHeap_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_IHeap_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Ptr (*alloc)(void* inst, xdc_SizeT size, xdc_SizeT align, xdc_runtime_Error_Block* eb); void (*free)(void* inst, xdc_Ptr block, xdc_SizeT size); xdc_Bool (*isBlocking)(void* inst); void (*getStats)(void* inst, xdc_runtime_Memory_Stats* stats); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base xdc_runtime_IHeap_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* create */ extern xdc_runtime_IHeap_Handle xdc_runtime_IHeap_create(xdc_runtime_IHeap_Module mod, const xdc_runtime_IHeap_Params *prms, xdc_runtime_Error_Block *eb); /* delete */ extern void xdc_runtime_IHeap_delete(xdc_runtime_IHeap_Handle *inst); /* Handle_to_Module */ static inline xdc_runtime_IHeap_Module xdc_runtime_IHeap_Handle_to_Module(xdc_runtime_IHeap_Handle inst); static inline xdc_runtime_IHeap_Module xdc_runtime_IHeap_Handle_to_Module(xdc_runtime_IHeap_Handle inst) { return inst->__fxns; } /* Handle_label */ static inline xdc_runtime_Types_Label *xdc_runtime_IHeap_Handle_label(xdc_runtime_IHeap_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *xdc_runtime_IHeap_Handle_label(xdc_runtime_IHeap_Handle inst, xdc_runtime_Types_Label *lab) { return inst->__fxns->__sysp->__label(inst, lab); } /* Module_id */ static inline xdc_runtime_Types_ModuleId xdc_runtime_IHeap_Module_id(xdc_runtime_IHeap_Module mod); static inline xdc_runtime_Types_ModuleId xdc_runtime_IHeap_Module_id(xdc_runtime_IHeap_Module mod) { return mod->__sysp->__mid; } /* alloc */ static inline xdc_Ptr xdc_runtime_IHeap_alloc(xdc_runtime_IHeap_Handle inst, xdc_SizeT size, xdc_SizeT align, xdc_runtime_Error_Block *eb); static inline xdc_Ptr xdc_runtime_IHeap_alloc( xdc_runtime_IHeap_Handle inst, xdc_SizeT size, xdc_SizeT align, xdc_runtime_Error_Block *eb ) { return inst->__fxns->alloc((void*)inst, size, align, eb); } /* free */ static inline void xdc_runtime_IHeap_free(xdc_runtime_IHeap_Handle inst, xdc_Ptr block, xdc_SizeT size); static inline void xdc_runtime_IHeap_free( xdc_runtime_IHeap_Handle inst, xdc_Ptr block, xdc_SizeT size ) { inst->__fxns->free((void*)inst, block, size); } /* isBlocking */ static inline xdc_Bool xdc_runtime_IHeap_isBlocking(xdc_runtime_IHeap_Handle inst); static inline xdc_Bool xdc_runtime_IHeap_isBlocking( xdc_runtime_IHeap_Handle inst ) { return inst->__fxns->isBlocking((void*)inst); } /* getStats */ static inline void xdc_runtime_IHeap_getStats(xdc_runtime_IHeap_Handle inst, xdc_runtime_Memory_Stats *stats); static inline void xdc_runtime_IHeap_getStats( xdc_runtime_IHeap_Handle inst, xdc_runtime_Memory_Stats *stats ) { inst->__fxns->getStats((void*)inst, stats); } /* * ======== FUNCTION SELECTORS ======== */ /* These functions return function pointers for module and instance functions. * The functions accept modules and instances declared as types defined in this * interface, but they return functions defined for the actual objects passed * as parameters. These functions are not invoked by any generated code or * XDCtools internal code. */ /* alloc_{FxnT,fxnP} */ typedef xdc_Ptr (*xdc_runtime_IHeap_alloc_FxnT)(void *inst, xdc_SizeT size, xdc_SizeT align, xdc_runtime_Error_Block* eb); static inline xdc_runtime_IHeap_alloc_FxnT xdc_runtime_IHeap_alloc_fxnP(xdc_runtime_IHeap_Handle inst); static inline xdc_runtime_IHeap_alloc_FxnT xdc_runtime_IHeap_alloc_fxnP(xdc_runtime_IHeap_Handle inst) { return (xdc_runtime_IHeap_alloc_FxnT)inst->__fxns->alloc; } /* free_{FxnT,fxnP} */ typedef void (*xdc_runtime_IHeap_free_FxnT)(void *inst, xdc_Ptr block, xdc_SizeT size); static inline xdc_runtime_IHeap_free_FxnT xdc_runtime_IHeap_free_fxnP(xdc_runtime_IHeap_Handle inst); static inline xdc_runtime_IHeap_free_FxnT xdc_runtime_IHeap_free_fxnP(xdc_runtime_IHeap_Handle inst) { return (xdc_runtime_IHeap_free_FxnT)inst->__fxns->free; } /* isBlocking_{FxnT,fxnP} */ typedef xdc_Bool (*xdc_runtime_IHeap_isBlocking_FxnT)(void *inst); static inline xdc_runtime_IHeap_isBlocking_FxnT xdc_runtime_IHeap_isBlocking_fxnP(xdc_runtime_IHeap_Handle inst); static inline xdc_runtime_IHeap_isBlocking_FxnT xdc_runtime_IHeap_isBlocking_fxnP(xdc_runtime_IHeap_Handle inst) { return (xdc_runtime_IHeap_isBlocking_FxnT)inst->__fxns->isBlocking; } /* getStats_{FxnT,fxnP} */ typedef void (*xdc_runtime_IHeap_getStats_FxnT)(void *inst, xdc_runtime_Memory_Stats* stats); static inline xdc_runtime_IHeap_getStats_FxnT xdc_runtime_IHeap_getStats_fxnP(xdc_runtime_IHeap_Handle inst); static inline xdc_runtime_IHeap_getStats_FxnT xdc_runtime_IHeap_getStats_fxnP(xdc_runtime_IHeap_Handle inst) { return (xdc_runtime_IHeap_getStats_FxnT)inst->__fxns->getStats; } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_IModule_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base xdc_runtime_IModule_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* Module_id */ static inline xdc_runtime_Types_ModuleId xdc_runtime_IModule_Module_id(xdc_runtime_IModule_Module mod); static inline xdc_runtime_Types_ModuleId xdc_runtime_IModule_Module_id(xdc_runtime_IModule_Module mod) { return mod->__sysp->__mid; } /* * ======== FUNCTION SELECTORS ======== */ /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Q_BLOCKING */ /* Q_PREEMPTING */ /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct xdc_runtime_IGateProvider_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_IGateProvider_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bool (*query)(xdc_Int qual); xdc_IArg (*enter)(void* inst); void (*leave)(void* inst, xdc_IArg key); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base xdc_runtime_IGateProvider_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* create */ extern xdc_runtime_IGateProvider_Handle xdc_runtime_IGateProvider_create(xdc_runtime_IGateProvider_Module mod, const xdc_runtime_IGateProvider_Params *prms, xdc_runtime_Error_Block *eb); /* delete */ extern void xdc_runtime_IGateProvider_delete(xdc_runtime_IGateProvider_Handle *inst); /* Handle_to_Module */ static inline xdc_runtime_IGateProvider_Module xdc_runtime_IGateProvider_Handle_to_Module(xdc_runtime_IGateProvider_Handle inst); static inline xdc_runtime_IGateProvider_Module xdc_runtime_IGateProvider_Handle_to_Module(xdc_runtime_IGateProvider_Handle inst) { return inst->__fxns; } /* Handle_label */ static inline xdc_runtime_Types_Label *xdc_runtime_IGateProvider_Handle_label(xdc_runtime_IGateProvider_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *xdc_runtime_IGateProvider_Handle_label(xdc_runtime_IGateProvider_Handle inst, xdc_runtime_Types_Label *lab) { return inst->__fxns->__sysp->__label(inst, lab); } /* Module_id */ static inline xdc_runtime_Types_ModuleId xdc_runtime_IGateProvider_Module_id(xdc_runtime_IGateProvider_Module mod); static inline xdc_runtime_Types_ModuleId xdc_runtime_IGateProvider_Module_id(xdc_runtime_IGateProvider_Module mod) { return mod->__sysp->__mid; } /* query */ static inline xdc_Bool xdc_runtime_IGateProvider_query(xdc_runtime_IGateProvider_Module mod, xdc_Int qual); static inline xdc_Bool xdc_runtime_IGateProvider_query( xdc_runtime_IGateProvider_Module mod, xdc_Int qual ) { return mod->query(qual); } /* enter */ static inline xdc_IArg xdc_runtime_IGateProvider_enter(xdc_runtime_IGateProvider_Handle inst); static inline xdc_IArg xdc_runtime_IGateProvider_enter( xdc_runtime_IGateProvider_Handle inst ) { return inst->__fxns->enter((void*)inst); } /* leave */ static inline void xdc_runtime_IGateProvider_leave(xdc_runtime_IGateProvider_Handle inst, xdc_IArg key); static inline void xdc_runtime_IGateProvider_leave( xdc_runtime_IGateProvider_Handle inst, xdc_IArg key ) { inst->__fxns->leave((void*)inst, key); } /* * ======== FUNCTION SELECTORS ======== */ /* These functions return function pointers for module and instance functions. * The functions accept modules and instances declared as types defined in this * interface, but they return functions defined for the actual objects passed * as parameters. These functions are not invoked by any generated code or * XDCtools internal code. */ /* query_{FxnT,fxnP} */ typedef xdc_Bool (*xdc_runtime_IGateProvider_query_FxnT)(xdc_Int qual); static inline xdc_runtime_IGateProvider_query_FxnT xdc_runtime_IGateProvider_query_fxnP(xdc_runtime_IGateProvider_Module mod); static inline xdc_runtime_IGateProvider_query_FxnT xdc_runtime_IGateProvider_query_fxnP(xdc_runtime_IGateProvider_Module mod) { return (xdc_runtime_IGateProvider_query_FxnT)mod->query; } /* enter_{FxnT,fxnP} */ typedef xdc_IArg (*xdc_runtime_IGateProvider_enter_FxnT)(void *inst); static inline xdc_runtime_IGateProvider_enter_FxnT xdc_runtime_IGateProvider_enter_fxnP(xdc_runtime_IGateProvider_Handle inst); static inline xdc_runtime_IGateProvider_enter_FxnT xdc_runtime_IGateProvider_enter_fxnP(xdc_runtime_IGateProvider_Handle inst) { return (xdc_runtime_IGateProvider_enter_FxnT)inst->__fxns->enter; } /* leave_{FxnT,fxnP} */ typedef void (*xdc_runtime_IGateProvider_leave_FxnT)(void *inst, xdc_IArg key); static inline xdc_runtime_IGateProvider_leave_FxnT xdc_runtime_IGateProvider_leave_fxnP(xdc_runtime_IGateProvider_Handle inst); static inline xdc_runtime_IGateProvider_leave_FxnT xdc_runtime_IGateProvider_leave_fxnP(xdc_runtime_IGateProvider_Handle inst) { return (xdc_runtime_IGateProvider_leave_FxnT)inst->__fxns->leave; } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Q_BLOCKING */ /* Q_PREEMPTING */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Main_Module_GateProxy_Module__diagsEnabled; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__diagsEnabled xdc_runtime_Main_Module_GateProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Main_Module_GateProxy_Module__diagsIncluded; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__diagsIncluded xdc_runtime_Main_Module_GateProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Main_Module_GateProxy_Module__diagsMask; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__diagsMask xdc_runtime_Main_Module_GateProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Main_Module_GateProxy_Module__gateObj; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__gateObj xdc_runtime_Main_Module_GateProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Main_Module_GateProxy_Module__gatePrms; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__gatePrms xdc_runtime_Main_Module_GateProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Main_Module_GateProxy_Module__id; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__id xdc_runtime_Main_Module_GateProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Main_Module_GateProxy_Module__loggerDefined; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__loggerDefined xdc_runtime_Main_Module_GateProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Main_Module_GateProxy_Module__loggerObj; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__loggerObj xdc_runtime_Main_Module_GateProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Main_Module_GateProxy_Module__loggerFxn0; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__loggerFxn0 xdc_runtime_Main_Module_GateProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Main_Module_GateProxy_Module__loggerFxn1; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__loggerFxn1 xdc_runtime_Main_Module_GateProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Main_Module_GateProxy_Module__loggerFxn2; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__loggerFxn2 xdc_runtime_Main_Module_GateProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Main_Module_GateProxy_Module__loggerFxn4; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__loggerFxn4 xdc_runtime_Main_Module_GateProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Main_Module_GateProxy_Module__loggerFxn8; extern const CT__xdc_runtime_Main_Module_GateProxy_Module__loggerFxn8 xdc_runtime_Main_Module_GateProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Main_Module_GateProxy_Object__count; extern const CT__xdc_runtime_Main_Module_GateProxy_Object__count xdc_runtime_Main_Module_GateProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Main_Module_GateProxy_Object__heap; extern const CT__xdc_runtime_Main_Module_GateProxy_Object__heap xdc_runtime_Main_Module_GateProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Main_Module_GateProxy_Object__sizeof; extern const CT__xdc_runtime_Main_Module_GateProxy_Object__sizeof xdc_runtime_Main_Module_GateProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Main_Module_GateProxy_Object__table; extern const CT__xdc_runtime_Main_Module_GateProxy_Object__table xdc_runtime_Main_Module_GateProxy_Object__table__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct xdc_runtime_Main_Module_GateProxy_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct xdc_runtime_Main_Module_GateProxy_Struct { const xdc_runtime_Main_Module_GateProxy_Fxns__ *__fxns; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_Main_Module_GateProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bool (*query)(xdc_Int qual); xdc_IArg (*enter)(xdc_runtime_Main_Module_GateProxy_Handle inst); void (*leave)(xdc_runtime_Main_Module_GateProxy_Handle inst, xdc_IArg key); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const xdc_runtime_Main_Module_GateProxy_Fxns__ xdc_runtime_Main_Module_GateProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* create */ extern xdc_runtime_Main_Module_GateProxy_Handle xdc_runtime_Main_Module_GateProxy_create( const xdc_runtime_Main_Module_GateProxy_Params *prms, xdc_runtime_Error_Block *eb); /* delete */ extern void xdc_runtime_Main_Module_GateProxy_delete(xdc_runtime_Main_Module_GateProxy_Handle *instp); /* Handle__label__S */ extern xdc_runtime_Types_Label *xdc_runtime_Main_Module_GateProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Main_Module_GateProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr xdc_runtime_Main_Module_GateProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr xdc_runtime_Main_Module_GateProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr xdc_runtime_Main_Module_GateProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void xdc_runtime_Main_Module_GateProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool xdc_runtime_Main_Module_GateProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr xdc_runtime_Main_Module_GateProxy_Proxy__delegate__S( void ); /* query__E */ extern xdc_Bool xdc_runtime_Main_Module_GateProxy_query__E( xdc_Int qual ); /* enter__E */ extern xdc_IArg xdc_runtime_Main_Module_GateProxy_enter__E( xdc_runtime_Main_Module_GateProxy_Handle __inst ); /* leave__E */ extern void xdc_runtime_Main_Module_GateProxy_leave__E( xdc_runtime_Main_Module_GateProxy_Handle __inst, xdc_IArg key ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_IGateProvider_Module xdc_runtime_Main_Module_GateProxy_Module_upCast(void); static inline xdc_runtime_IGateProvider_Module xdc_runtime_Main_Module_GateProxy_Module_upCast(void) { return (xdc_runtime_IGateProvider_Module)xdc_runtime_Main_Module_GateProxy_Proxy__delegate__S(); } /* Module_to_xdc_runtime_IGateProvider */ /* Handle_upCast */ static inline xdc_runtime_IGateProvider_Handle xdc_runtime_Main_Module_GateProxy_Handle_upCast(xdc_runtime_Main_Module_GateProxy_Handle i); static inline xdc_runtime_IGateProvider_Handle xdc_runtime_Main_Module_GateProxy_Handle_upCast(xdc_runtime_Main_Module_GateProxy_Handle i) { return (xdc_runtime_IGateProvider_Handle)i; } /* Handle_to_xdc_runtime_IGateProvider */ /* Handle_downCast */ static inline xdc_runtime_Main_Module_GateProxy_Handle xdc_runtime_Main_Module_GateProxy_Handle_downCast(xdc_runtime_IGateProvider_Handle i); static inline xdc_runtime_Main_Module_GateProxy_Handle xdc_runtime_Main_Module_GateProxy_Handle_downCast(xdc_runtime_IGateProvider_Handle i) { xdc_runtime_IGateProvider_Handle i2 = (xdc_runtime_IGateProvider_Handle)i; if (xdc_runtime_Main_Module_GateProxy_Proxy__abstract__S()) { return (xdc_runtime_Main_Module_GateProxy_Handle)i; } return ((const void*)i2->__fxns == (const void*)xdc_runtime_Main_Module_GateProxy_Proxy__delegate__S()) ? (xdc_runtime_Main_Module_GateProxy_Handle)i : (xdc_runtime_Main_Module_GateProxy_Handle)0; } /* Handle_from_xdc_runtime_IGateProvider */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Main_Module_GateProxy_Module__id xdc_runtime_Main_Module_GateProxy_Module_id(void); static inline CT__xdc_runtime_Main_Module_GateProxy_Module__id xdc_runtime_Main_Module_GateProxy_Module_id( void ) { return xdc_runtime_Main_Module_GateProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* Params_init */ static inline void xdc_runtime_Main_Module_GateProxy_Params_init(xdc_runtime_Main_Module_GateProxy_Params *prms); static inline void xdc_runtime_Main_Module_GateProxy_Params_init( xdc_runtime_Main_Module_GateProxy_Params *prms ) { if (prms != 0) { xdc_runtime_Main_Module_GateProxy_Params__init__S(prms, 0, sizeof(xdc_runtime_Main_Module_GateProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void xdc_runtime_Main_Module_GateProxy_Params_copy(xdc_runtime_Main_Module_GateProxy_Params *dst, const xdc_runtime_Main_Module_GateProxy_Params *src); static inline void xdc_runtime_Main_Module_GateProxy_Params_copy(xdc_runtime_Main_Module_GateProxy_Params *dst, const xdc_runtime_Main_Module_GateProxy_Params *src) { if (dst != 0) { xdc_runtime_Main_Module_GateProxy_Params__init__S(dst, (const void *)src, sizeof(xdc_runtime_Main_Module_GateProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Main_Module__diagsEnabled; extern const CT__xdc_runtime_Main_Module__diagsEnabled xdc_runtime_Main_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Main_Module__diagsIncluded; extern const CT__xdc_runtime_Main_Module__diagsIncluded xdc_runtime_Main_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Main_Module__diagsMask; extern const CT__xdc_runtime_Main_Module__diagsMask xdc_runtime_Main_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Main_Module__gateObj; extern const CT__xdc_runtime_Main_Module__gateObj xdc_runtime_Main_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Main_Module__gatePrms; extern const CT__xdc_runtime_Main_Module__gatePrms xdc_runtime_Main_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Main_Module__id; extern const CT__xdc_runtime_Main_Module__id xdc_runtime_Main_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Main_Module__loggerDefined; extern const CT__xdc_runtime_Main_Module__loggerDefined xdc_runtime_Main_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Main_Module__loggerObj; extern const CT__xdc_runtime_Main_Module__loggerObj xdc_runtime_Main_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Main_Module__loggerFxn0; extern const CT__xdc_runtime_Main_Module__loggerFxn0 xdc_runtime_Main_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Main_Module__loggerFxn1; extern const CT__xdc_runtime_Main_Module__loggerFxn1 xdc_runtime_Main_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Main_Module__loggerFxn2; extern const CT__xdc_runtime_Main_Module__loggerFxn2 xdc_runtime_Main_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Main_Module__loggerFxn4; extern const CT__xdc_runtime_Main_Module__loggerFxn4 xdc_runtime_Main_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Main_Module__loggerFxn8; extern const CT__xdc_runtime_Main_Module__loggerFxn8 xdc_runtime_Main_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Main_Object__count; extern const CT__xdc_runtime_Main_Object__count xdc_runtime_Main_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Main_Object__heap; extern const CT__xdc_runtime_Main_Object__heap xdc_runtime_Main_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Main_Object__sizeof; extern const CT__xdc_runtime_Main_Object__sizeof xdc_runtime_Main_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Main_Object__table; extern const CT__xdc_runtime_Main_Object__table xdc_runtime_Main_Object__table__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Main_Module__startupDone__S( void ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Main_Module__id xdc_runtime_Main_Module_id(void); static inline CT__xdc_runtime_Main_Module__id xdc_runtime_Main_Module_id( void ) { return xdc_runtime_Main_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Main_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Main_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Main_Module__diagsMask__C != (CT__xdc_runtime_Main_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Main_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Main_Module_getMask(void) { return (xdc_runtime_Main_Module__diagsMask__C != (CT__xdc_runtime_Main_Module__diagsMask)0) ? *xdc_runtime_Main_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Main_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Main_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Main_Module__diagsMask__C != (CT__xdc_runtime_Main_Module__diagsMask)0) { *xdc_runtime_Main_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== xdc_runtime_Error_Id ======== */ typedef xdc_Bits32 xdc_runtime_Error_Id; /* * ======== Module__MID ======== * This definition allows non-module code to * use the Error module. This symbol is normally defined in each * module internal header (i.e., package/internal/.xdc.h). * * Only do this if this file is not one that will be included in the Registry. * This check ensures that Registry.h (which similarly defines these Module__* * symbols) can be included in any order relative to other xdc.runtime * headers. */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Policy */ enum xdc_runtime_Error_Policy { xdc_runtime_Error_TERMINATE, xdc_runtime_Error_UNWIND }; typedef enum xdc_runtime_Error_Policy xdc_runtime_Error_Policy; /* HookFxn */ typedef void (*xdc_runtime_Error_HookFxn)(xdc_runtime_Error_Block* arg1); /* NUMARGS */ /* Data */ typedef xdc_IArg __T1_xdc_runtime_Error_Data__arg; typedef xdc_IArg ARRAY1_xdc_runtime_Error_Data__arg[2]; typedef xdc_IArg CARRAY1_xdc_runtime_Error_Data__arg[2]; typedef CARRAY1_xdc_runtime_Error_Data__arg __TA_xdc_runtime_Error_Data__arg; struct xdc_runtime_Error_Data { __TA_xdc_runtime_Error_Data__arg arg; }; /* Block */ struct xdc_runtime_Error_Block { xdc_UInt16 unused; xdc_runtime_Error_Data data; xdc_runtime_Error_Id id; xdc_CString msg; xdc_runtime_Types_Site site; }; /* IGNORE */ /* ABORT */ /* PolicyFxn */ typedef void (*xdc_runtime_Error_PolicyFxn)(xdc_runtime_Error_Block* arg1, xdc_runtime_Types_ModuleId arg2, xdc_CString arg3, xdc_Int arg4, xdc_runtime_Error_Id arg5, xdc_IArg arg6, xdc_IArg arg7); /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Error_Module__diagsEnabled; extern const CT__xdc_runtime_Error_Module__diagsEnabled xdc_runtime_Error_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Error_Module__diagsIncluded; extern const CT__xdc_runtime_Error_Module__diagsIncluded xdc_runtime_Error_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Error_Module__diagsMask; extern const CT__xdc_runtime_Error_Module__diagsMask xdc_runtime_Error_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Error_Module__gateObj; extern const CT__xdc_runtime_Error_Module__gateObj xdc_runtime_Error_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Error_Module__gatePrms; extern const CT__xdc_runtime_Error_Module__gatePrms xdc_runtime_Error_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Error_Module__id; extern const CT__xdc_runtime_Error_Module__id xdc_runtime_Error_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Error_Module__loggerDefined; extern const CT__xdc_runtime_Error_Module__loggerDefined xdc_runtime_Error_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Error_Module__loggerObj; extern const CT__xdc_runtime_Error_Module__loggerObj xdc_runtime_Error_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Error_Module__loggerFxn0; extern const CT__xdc_runtime_Error_Module__loggerFxn0 xdc_runtime_Error_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Error_Module__loggerFxn1; extern const CT__xdc_runtime_Error_Module__loggerFxn1 xdc_runtime_Error_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Error_Module__loggerFxn2; extern const CT__xdc_runtime_Error_Module__loggerFxn2 xdc_runtime_Error_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Error_Module__loggerFxn4; extern const CT__xdc_runtime_Error_Module__loggerFxn4 xdc_runtime_Error_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Error_Module__loggerFxn8; extern const CT__xdc_runtime_Error_Module__loggerFxn8 xdc_runtime_Error_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Error_Object__count; extern const CT__xdc_runtime_Error_Object__count xdc_runtime_Error_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Error_Object__heap; extern const CT__xdc_runtime_Error_Object__heap xdc_runtime_Error_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Error_Object__sizeof; extern const CT__xdc_runtime_Error_Object__sizeof xdc_runtime_Error_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Error_Object__table; extern const CT__xdc_runtime_Error_Object__table xdc_runtime_Error_Object__table__C; /* policyFxn */ typedef xdc_runtime_Error_PolicyFxn CT__xdc_runtime_Error_policyFxn; extern const CT__xdc_runtime_Error_policyFxn xdc_runtime_Error_policyFxn__C; /* E_generic */ typedef xdc_runtime_Error_Id CT__xdc_runtime_Error_E_generic; extern const CT__xdc_runtime_Error_E_generic xdc_runtime_Error_E_generic__C; /* E_memory */ typedef xdc_runtime_Error_Id CT__xdc_runtime_Error_E_memory; extern const CT__xdc_runtime_Error_E_memory xdc_runtime_Error_E_memory__C; /* E_msgCode */ typedef xdc_runtime_Error_Id CT__xdc_runtime_Error_E_msgCode; extern const CT__xdc_runtime_Error_E_msgCode xdc_runtime_Error_E_msgCode__C; /* policy */ typedef xdc_runtime_Error_Policy CT__xdc_runtime_Error_policy; extern const CT__xdc_runtime_Error_policy xdc_runtime_Error_policy__C; /* raiseHook */ typedef xdc_runtime_Error_HookFxn CT__xdc_runtime_Error_raiseHook; extern const CT__xdc_runtime_Error_raiseHook xdc_runtime_Error_raiseHook__C; /* maxDepth */ typedef xdc_UInt16 CT__xdc_runtime_Error_maxDepth; extern const CT__xdc_runtime_Error_maxDepth xdc_runtime_Error_maxDepth__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Error_Module__startupDone__S( void ); /* check__E */ extern xdc_Bool xdc_runtime_Error_check__E( xdc_runtime_Error_Block *eb ); /* getData__E */ extern xdc_runtime_Error_Data *xdc_runtime_Error_getData__E( xdc_runtime_Error_Block *eb ); /* getCode__E */ extern xdc_UInt16 xdc_runtime_Error_getCode__E( xdc_runtime_Error_Block *eb ); /* getId__E */ extern xdc_runtime_Error_Id xdc_runtime_Error_getId__E( xdc_runtime_Error_Block *eb ); /* getMsg__E */ extern xdc_CString xdc_runtime_Error_getMsg__E( xdc_runtime_Error_Block *eb ); /* getSite__E */ extern xdc_runtime_Types_Site *xdc_runtime_Error_getSite__E( xdc_runtime_Error_Block *eb ); /* init__E */ extern void xdc_runtime_Error_init__E( xdc_runtime_Error_Block *eb ); /* print__E */ extern void xdc_runtime_Error_print__E( xdc_runtime_Error_Block *eb ); /* policyDefault__E */ extern void xdc_runtime_Error_policyDefault__E( xdc_runtime_Error_Block *eb, xdc_runtime_Types_ModuleId mod, xdc_CString file, xdc_Int line, xdc_runtime_Error_Id id, xdc_IArg arg1, xdc_IArg arg2 ); /* policyMin__E */ extern void xdc_runtime_Error_policyMin__E( xdc_runtime_Error_Block *eb, xdc_runtime_Types_ModuleId mod, xdc_CString file, xdc_Int line, xdc_runtime_Error_Id id, xdc_IArg arg1, xdc_IArg arg2 ); /* policySpin__E */ extern void xdc_runtime_Error_policySpin__E( xdc_runtime_Error_Block *eb, xdc_runtime_Types_ModuleId mod, xdc_CString file, xdc_Int line, xdc_runtime_Error_Id id, xdc_IArg arg1, xdc_IArg arg2 ); /* raiseX__E */ extern void xdc_runtime_Error_raiseX__E( xdc_runtime_Error_Block *eb, xdc_runtime_Types_ModuleId mod, xdc_CString file, xdc_Int line, xdc_runtime_Error_Id id, xdc_IArg arg1, xdc_IArg arg2 ); /* setX__E */ extern void xdc_runtime_Error_setX__E( xdc_runtime_Error_Block *eb, xdc_runtime_Types_ModuleId mod, xdc_CString file, xdc_Int line, xdc_runtime_Error_Id id, xdc_IArg arg1, xdc_IArg arg2 ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Error_Module__id xdc_runtime_Error_Module_id(void); static inline CT__xdc_runtime_Error_Module__id xdc_runtime_Error_Module_id( void ) { return xdc_runtime_Error_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Error_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Error_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Error_Module__diagsMask__C != (CT__xdc_runtime_Error_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Error_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Error_Module_getMask(void) { return (xdc_runtime_Error_Module__diagsMask__C != (CT__xdc_runtime_Error_Module__diagsMask)0) ? *xdc_runtime_Error_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Error_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Error_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Error_Module__diagsMask__C != (CT__xdc_runtime_Error_Module__diagsMask)0) { *xdc_runtime_Error_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * ======== xdc_runtime_Error_raise ======== * Call underlying error handler with current module ID, file name, and * line number. * * Note use of xdc_FILE__ in lieu of __FILE__; this is done * to prevent accumulation of file name strings in the application. See * xdc.h for details. */ /* * ======== xdc_runtime_Error_idToCode ======== */ /* * ======== xdc_runtime_Error_idToUid ======== */ extern xdc_runtime_Error_Block xdc_runtime_Error_IgnoreBlock; /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Q_BLOCKING */ /* Q_PREEMPTING */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_BIOS_RtsGateProxy_Module__diagsEnabled; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__diagsEnabled ti_sysbios_BIOS_RtsGateProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_BIOS_RtsGateProxy_Module__diagsIncluded; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__diagsIncluded ti_sysbios_BIOS_RtsGateProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_BIOS_RtsGateProxy_Module__diagsMask; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__diagsMask ti_sysbios_BIOS_RtsGateProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_BIOS_RtsGateProxy_Module__gateObj; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__gateObj ti_sysbios_BIOS_RtsGateProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_BIOS_RtsGateProxy_Module__gatePrms; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__gatePrms ti_sysbios_BIOS_RtsGateProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_BIOS_RtsGateProxy_Module__id; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__id ti_sysbios_BIOS_RtsGateProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerDefined; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerDefined ti_sysbios_BIOS_RtsGateProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerObj; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerObj ti_sysbios_BIOS_RtsGateProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn0; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn0 ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn1; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn1 ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn2; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn2 ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn4; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn4 ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn8; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn8 ti_sysbios_BIOS_RtsGateProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_BIOS_RtsGateProxy_Object__count; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Object__count ti_sysbios_BIOS_RtsGateProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_BIOS_RtsGateProxy_Object__heap; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Object__heap ti_sysbios_BIOS_RtsGateProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_BIOS_RtsGateProxy_Object__sizeof; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Object__sizeof ti_sysbios_BIOS_RtsGateProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_BIOS_RtsGateProxy_Object__table; extern const CT__ti_sysbios_BIOS_RtsGateProxy_Object__table ti_sysbios_BIOS_RtsGateProxy_Object__table__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_BIOS_RtsGateProxy_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_BIOS_RtsGateProxy_Struct { const ti_sysbios_BIOS_RtsGateProxy_Fxns__ *__fxns; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_BIOS_RtsGateProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bool (*query)(xdc_Int qual); xdc_IArg (*enter)(ti_sysbios_BIOS_RtsGateProxy_Handle __inst); void (*leave)(ti_sysbios_BIOS_RtsGateProxy_Handle __inst, xdc_IArg key); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_BIOS_RtsGateProxy_Fxns__ ti_sysbios_BIOS_RtsGateProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* create */ extern ti_sysbios_BIOS_RtsGateProxy_Handle ti_sysbios_BIOS_RtsGateProxy_create( const ti_sysbios_BIOS_RtsGateProxy_Params *__prms, xdc_runtime_Error_Block *__eb ); /* delete */ extern void ti_sysbios_BIOS_RtsGateProxy_delete(ti_sysbios_BIOS_RtsGateProxy_Handle *instp); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_BIOS_RtsGateProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_BIOS_RtsGateProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_BIOS_RtsGateProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_BIOS_RtsGateProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_BIOS_RtsGateProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_BIOS_RtsGateProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool ti_sysbios_BIOS_RtsGateProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr ti_sysbios_BIOS_RtsGateProxy_Proxy__delegate__S( void ); /* query__E */ extern xdc_Bool ti_sysbios_BIOS_RtsGateProxy_query__E( xdc_Int qual ); /* enter__E */ extern xdc_IArg ti_sysbios_BIOS_RtsGateProxy_enter__E( ti_sysbios_BIOS_RtsGateProxy_Handle __inst ); /* leave__E */ extern void ti_sysbios_BIOS_RtsGateProxy_leave__E( ti_sysbios_BIOS_RtsGateProxy_Handle __inst, xdc_IArg key ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_IGateProvider_Module ti_sysbios_BIOS_RtsGateProxy_Module_upCast(void); static inline xdc_runtime_IGateProvider_Module ti_sysbios_BIOS_RtsGateProxy_Module_upCast(void) { return (xdc_runtime_IGateProvider_Module)ti_sysbios_BIOS_RtsGateProxy_Proxy__delegate__S(); } /* Module_to_xdc_runtime_IGateProvider */ /* Handle_upCast */ static inline xdc_runtime_IGateProvider_Handle ti_sysbios_BIOS_RtsGateProxy_Handle_upCast(ti_sysbios_BIOS_RtsGateProxy_Handle i); static inline xdc_runtime_IGateProvider_Handle ti_sysbios_BIOS_RtsGateProxy_Handle_upCast(ti_sysbios_BIOS_RtsGateProxy_Handle i) { return (xdc_runtime_IGateProvider_Handle)i; } /* Handle_to_xdc_runtime_IGateProvider */ /* Handle_downCast */ static inline ti_sysbios_BIOS_RtsGateProxy_Handle ti_sysbios_BIOS_RtsGateProxy_Handle_downCast(xdc_runtime_IGateProvider_Handle i); static inline ti_sysbios_BIOS_RtsGateProxy_Handle ti_sysbios_BIOS_RtsGateProxy_Handle_downCast(xdc_runtime_IGateProvider_Handle i) { xdc_runtime_IGateProvider_Handle i2 = (xdc_runtime_IGateProvider_Handle)i; if (ti_sysbios_BIOS_RtsGateProxy_Proxy__abstract__S()) { return (ti_sysbios_BIOS_RtsGateProxy_Handle)i; } return (const void*)i2->__fxns == (const void*)ti_sysbios_BIOS_RtsGateProxy_Proxy__delegate__S() ? (ti_sysbios_BIOS_RtsGateProxy_Handle)i : (ti_sysbios_BIOS_RtsGateProxy_Handle)0; } /* Handle_from_xdc_runtime_IGateProvider */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_BIOS_RtsGateProxy_Module__id ti_sysbios_BIOS_RtsGateProxy_Module_id(void); static inline CT__ti_sysbios_BIOS_RtsGateProxy_Module__id ti_sysbios_BIOS_RtsGateProxy_Module_id( void ) { return ti_sysbios_BIOS_RtsGateProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* Params_init */ static inline void ti_sysbios_BIOS_RtsGateProxy_Params_init(ti_sysbios_BIOS_RtsGateProxy_Params *prms); static inline void ti_sysbios_BIOS_RtsGateProxy_Params_init( ti_sysbios_BIOS_RtsGateProxy_Params *prms ) { if (prms) { ti_sysbios_BIOS_RtsGateProxy_Params__init__S(prms, 0, sizeof(ti_sysbios_BIOS_RtsGateProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_BIOS_RtsGateProxy_Params_copy(ti_sysbios_BIOS_RtsGateProxy_Params *dst, const ti_sysbios_BIOS_RtsGateProxy_Params *src); static inline void ti_sysbios_BIOS_RtsGateProxy_Params_copy(ti_sysbios_BIOS_RtsGateProxy_Params *dst, const ti_sysbios_BIOS_RtsGateProxy_Params *src) { if (dst) { ti_sysbios_BIOS_RtsGateProxy_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_BIOS_RtsGateProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* ThreadType */ enum ti_sysbios_BIOS_ThreadType { ti_sysbios_BIOS_ThreadType_Hwi, ti_sysbios_BIOS_ThreadType_Swi, ti_sysbios_BIOS_ThreadType_Task, ti_sysbios_BIOS_ThreadType_Main }; typedef enum ti_sysbios_BIOS_ThreadType ti_sysbios_BIOS_ThreadType; /* RtsLockType */ enum ti_sysbios_BIOS_RtsLockType { ti_sysbios_BIOS_NoLocking, ti_sysbios_BIOS_GateHwi, ti_sysbios_BIOS_GateSwi, ti_sysbios_BIOS_GateMutex, ti_sysbios_BIOS_GateMutexPri }; typedef enum ti_sysbios_BIOS_RtsLockType ti_sysbios_BIOS_RtsLockType; /* LibType */ enum ti_sysbios_BIOS_LibType { ti_sysbios_BIOS_LibType_Instrumented, ti_sysbios_BIOS_LibType_NonInstrumented, ti_sysbios_BIOS_LibType_Custom, ti_sysbios_BIOS_LibType_Debug }; typedef enum ti_sysbios_BIOS_LibType ti_sysbios_BIOS_LibType; /* WAIT_FOREVER */ /* NO_WAIT */ /* StartupFuncPtr */ typedef void (*ti_sysbios_BIOS_StartupFuncPtr)(void); /* version */ /* * ======== INTERNAL DEFINITIONS ======== */ /* intSize */ struct ti_sysbios_BIOS_intSize { xdc_Int intSize; }; /* StartFuncPtr */ typedef void (*ti_sysbios_BIOS_StartFuncPtr)(void); /* ExitFuncPtr */ typedef void (*ti_sysbios_BIOS_ExitFuncPtr)(xdc_Int __arg1); /* Module_State */ typedef ti_sysbios_BIOS_ThreadType __T1_ti_sysbios_BIOS_Module_State__smpThreadType; typedef ti_sysbios_BIOS_ThreadType *__ARRAY1_ti_sysbios_BIOS_Module_State__smpThreadType; typedef const ti_sysbios_BIOS_ThreadType *__CARRAY1_ti_sysbios_BIOS_Module_State__smpThreadType; typedef __ARRAY1_ti_sysbios_BIOS_Module_State__smpThreadType __TA_ti_sysbios_BIOS_Module_State__smpThreadType; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_BIOS_Module__diagsEnabled; extern const CT__ti_sysbios_BIOS_Module__diagsEnabled ti_sysbios_BIOS_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_BIOS_Module__diagsIncluded; extern const CT__ti_sysbios_BIOS_Module__diagsIncluded ti_sysbios_BIOS_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_BIOS_Module__diagsMask; extern const CT__ti_sysbios_BIOS_Module__diagsMask ti_sysbios_BIOS_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_BIOS_Module__gateObj; extern const CT__ti_sysbios_BIOS_Module__gateObj ti_sysbios_BIOS_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_BIOS_Module__gatePrms; extern const CT__ti_sysbios_BIOS_Module__gatePrms ti_sysbios_BIOS_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_BIOS_Module__id; extern const CT__ti_sysbios_BIOS_Module__id ti_sysbios_BIOS_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_BIOS_Module__loggerDefined; extern const CT__ti_sysbios_BIOS_Module__loggerDefined ti_sysbios_BIOS_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_BIOS_Module__loggerObj; extern const CT__ti_sysbios_BIOS_Module__loggerObj ti_sysbios_BIOS_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_BIOS_Module__loggerFxn0; extern const CT__ti_sysbios_BIOS_Module__loggerFxn0 ti_sysbios_BIOS_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_BIOS_Module__loggerFxn1; extern const CT__ti_sysbios_BIOS_Module__loggerFxn1 ti_sysbios_BIOS_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_BIOS_Module__loggerFxn2; extern const CT__ti_sysbios_BIOS_Module__loggerFxn2 ti_sysbios_BIOS_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_BIOS_Module__loggerFxn4; extern const CT__ti_sysbios_BIOS_Module__loggerFxn4 ti_sysbios_BIOS_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_BIOS_Module__loggerFxn8; extern const CT__ti_sysbios_BIOS_Module__loggerFxn8 ti_sysbios_BIOS_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_BIOS_Object__count; extern const CT__ti_sysbios_BIOS_Object__count ti_sysbios_BIOS_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_BIOS_Object__heap; extern const CT__ti_sysbios_BIOS_Object__heap ti_sysbios_BIOS_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_BIOS_Object__sizeof; extern const CT__ti_sysbios_BIOS_Object__sizeof ti_sysbios_BIOS_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_BIOS_Object__table; extern const CT__ti_sysbios_BIOS_Object__table ti_sysbios_BIOS_Object__table__C; /* smpEnabled */ typedef xdc_Bool CT__ti_sysbios_BIOS_smpEnabled; extern const CT__ti_sysbios_BIOS_smpEnabled ti_sysbios_BIOS_smpEnabled__C; /* cpuFreq */ typedef xdc_runtime_Types_FreqHz CT__ti_sysbios_BIOS_cpuFreq; extern const CT__ti_sysbios_BIOS_cpuFreq ti_sysbios_BIOS_cpuFreq__C; /* runtimeCreatesEnabled */ typedef xdc_Bool CT__ti_sysbios_BIOS_runtimeCreatesEnabled; extern const CT__ti_sysbios_BIOS_runtimeCreatesEnabled ti_sysbios_BIOS_runtimeCreatesEnabled__C; /* taskEnabled */ typedef xdc_Bool CT__ti_sysbios_BIOS_taskEnabled; extern const CT__ti_sysbios_BIOS_taskEnabled ti_sysbios_BIOS_taskEnabled__C; /* swiEnabled */ typedef xdc_Bool CT__ti_sysbios_BIOS_swiEnabled; extern const CT__ti_sysbios_BIOS_swiEnabled ti_sysbios_BIOS_swiEnabled__C; /* clockEnabled */ typedef xdc_Bool CT__ti_sysbios_BIOS_clockEnabled; extern const CT__ti_sysbios_BIOS_clockEnabled ti_sysbios_BIOS_clockEnabled__C; /* heapSize */ typedef xdc_SizeT CT__ti_sysbios_BIOS_heapSize; extern const CT__ti_sysbios_BIOS_heapSize ti_sysbios_BIOS_heapSize__C; /* heapSection */ typedef xdc_String CT__ti_sysbios_BIOS_heapSection; extern const CT__ti_sysbios_BIOS_heapSection ti_sysbios_BIOS_heapSection__C; /* heapTrackEnabled */ typedef xdc_Bool CT__ti_sysbios_BIOS_heapTrackEnabled; extern const CT__ti_sysbios_BIOS_heapTrackEnabled ti_sysbios_BIOS_heapTrackEnabled__C; /* setupSecureContext */ typedef xdc_Bool CT__ti_sysbios_BIOS_setupSecureContext; extern const CT__ti_sysbios_BIOS_setupSecureContext ti_sysbios_BIOS_setupSecureContext__C; /* useSK */ typedef xdc_Bool CT__ti_sysbios_BIOS_useSK; extern const CT__ti_sysbios_BIOS_useSK ti_sysbios_BIOS_useSK__C; /* installedErrorHook */ typedef void (*CT__ti_sysbios_BIOS_installedErrorHook)(xdc_runtime_Error_Block* __arg1); extern const CT__ti_sysbios_BIOS_installedErrorHook ti_sysbios_BIOS_installedErrorHook__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_BIOS_Module__startupDone__S( void ); /* linkedWithIncorrectBootLibrary__E */ extern void ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E( void ); /* start__E */ extern void ti_sysbios_BIOS_start__E( void ); /* exit__E */ extern void ti_sysbios_BIOS_exit__E( xdc_Int stat ); /* getThreadType__E */ extern ti_sysbios_BIOS_ThreadType ti_sysbios_BIOS_getThreadType__E( void ); /* setThreadType__E */ extern ti_sysbios_BIOS_ThreadType ti_sysbios_BIOS_setThreadType__E( ti_sysbios_BIOS_ThreadType ttype ); /* setCpuFreq__E */ extern void ti_sysbios_BIOS_setCpuFreq__E( xdc_runtime_Types_FreqHz *freq ); /* getCpuFreq__E */ extern void ti_sysbios_BIOS_getCpuFreq__E( xdc_runtime_Types_FreqHz *freq ); /* errorRaiseHook__I */ extern void ti_sysbios_BIOS_errorRaiseHook__I( xdc_runtime_Error_Block *eb ); /* startFunc__I */ extern void ti_sysbios_BIOS_startFunc__I( void ); /* atExitFunc__I */ extern void ti_sysbios_BIOS_atExitFunc__I( xdc_Int stat ); /* exitFunc__I */ extern void ti_sysbios_BIOS_exitFunc__I( xdc_Int stat ); /* registerRTSLock__I */ extern void ti_sysbios_BIOS_registerRTSLock__I( void ); /* removeRTSLock__I */ extern void ti_sysbios_BIOS_removeRTSLock__I( void ); /* rtsLock__I */ extern void ti_sysbios_BIOS_rtsLock__I( void ); /* rtsUnlock__I */ extern void ti_sysbios_BIOS_rtsUnlock__I( void ); /* nullFunc__I */ extern void ti_sysbios_BIOS_nullFunc__I( void ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_BIOS_Module__id ti_sysbios_BIOS_Module_id(void); static inline CT__ti_sysbios_BIOS_Module__id ti_sysbios_BIOS_Module_id( void ) { return ti_sysbios_BIOS_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_BIOS_Module_hasMask(void); static inline xdc_Bool ti_sysbios_BIOS_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_BIOS_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_BIOS_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_BIOS_Module_getMask( void ) { return ti_sysbios_BIOS_Module__diagsMask__C != 0 ? *ti_sysbios_BIOS_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_BIOS_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_BIOS_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_BIOS_Module__diagsMask__C != 0) { *ti_sysbios_BIOS_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2012, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct ti_sysbios_BIOS_Module_State { xdc_runtime_Types_FreqHz cpuFreq; xdc_UInt rtsGateCount; xdc_IArg rtsGateKey; ti_sysbios_BIOS_RtsGateProxy_Handle rtsGate; ti_sysbios_BIOS_ThreadType threadType; __TA_ti_sysbios_BIOS_Module_State__smpThreadType smpThreadType; volatile ti_sysbios_BIOS_StartFuncPtr startFunc; volatile ti_sysbios_BIOS_ExitFuncPtr exitFunc; }; /* Module__state__V */ extern struct ti_sysbios_BIOS_Module_State__ ti_sysbios_BIOS_Module__state__V; /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2012, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== module ti.sysbios.family.c28.TimestampProvider ======== */ typedef struct ti_sysbios_family_c28_TimestampProvider_Module_State ti_sysbios_family_c28_TimestampProvider_Module_State; typedef struct ti_sysbios_family_c28_TimestampProvider_Fxns__ ti_sysbios_family_c28_TimestampProvider_Fxns__; typedef const struct ti_sysbios_family_c28_TimestampProvider_Fxns__* ti_sysbios_family_c28_TimestampProvider_Module; /* * ======== module ti.sysbios.family.c28.Clobber ======== */ /* * ======== module ti.sysbios.family.c28.Hwi ======== */ typedef struct ti_sysbios_family_c28_Hwi_Module_State ti_sysbios_family_c28_Hwi_Module_State; typedef struct ti_sysbios_family_c28_Hwi_Fxns__ ti_sysbios_family_c28_Hwi_Fxns__; typedef const struct ti_sysbios_family_c28_Hwi_Fxns__* ti_sysbios_family_c28_Hwi_Module; typedef struct ti_sysbios_family_c28_Hwi_Params ti_sysbios_family_c28_Hwi_Params; typedef struct ti_sysbios_family_c28_Hwi_Object ti_sysbios_family_c28_Hwi_Object; typedef struct ti_sysbios_family_c28_Hwi_Struct ti_sysbios_family_c28_Hwi_Struct; typedef ti_sysbios_family_c28_Hwi_Object* ti_sysbios_family_c28_Hwi_Handle; typedef struct ti_sysbios_family_c28_Hwi_Object__ ti_sysbios_family_c28_Hwi_Instance_State; typedef ti_sysbios_family_c28_Hwi_Object* ti_sysbios_family_c28_Hwi_Instance; /* * ======== module ti.sysbios.family.c28.Timer ======== */ typedef struct ti_sysbios_family_c28_Timer_EmulationMode ti_sysbios_family_c28_Timer_EmulationMode; typedef struct ti_sysbios_family_c28_Timer_Module_State ti_sysbios_family_c28_Timer_Module_State; typedef struct ti_sysbios_family_c28_Timer_Fxns__ ti_sysbios_family_c28_Timer_Fxns__; typedef const struct ti_sysbios_family_c28_Timer_Fxns__* ti_sysbios_family_c28_Timer_Module; typedef struct ti_sysbios_family_c28_Timer_Params ti_sysbios_family_c28_Timer_Params; typedef struct ti_sysbios_family_c28_Timer_Object ti_sysbios_family_c28_Timer_Object; typedef struct ti_sysbios_family_c28_Timer_Struct ti_sysbios_family_c28_Timer_Struct; typedef ti_sysbios_family_c28_Timer_Object* ti_sysbios_family_c28_Timer_Handle; typedef struct ti_sysbios_family_c28_Timer_Object__ ti_sysbios_family_c28_Timer_Instance_State; typedef ti_sysbios_family_c28_Timer_Object* ti_sysbios_family_c28_Timer_Instance; /* * ======== module ti.sysbios.family.c28.IntrinsicsSupport ======== */ typedef struct ti_sysbios_family_c28_IntrinsicsSupport_Fxns__ ti_sysbios_family_c28_IntrinsicsSupport_Fxns__; typedef const struct ti_sysbios_family_c28_IntrinsicsSupport_Fxns__* ti_sysbios_family_c28_IntrinsicsSupport_Module; /* * ======== module ti.sysbios.family.c28.TaskSupport ======== */ typedef struct ti_sysbios_family_c28_TaskSupport_Fxns__ ti_sysbios_family_c28_TaskSupport_Fxns__; typedef const struct ti_sysbios_family_c28_TaskSupport_Fxns__* ti_sysbios_family_c28_TaskSupport_Module; /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * ======== Diags__prologue.h ======== * * This header defines Module__* symbols for every Module__* value used * by the Diags module's headers. This allows non-module code to * use the Diags module. These symbols are normally defined in * module internal headers (i.e., package/internal/.xdc.h) and they * define a "current module context". */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Only define these symbols for xdc.runtime.Main if this file is not one that * will be included in the Registry. This check ensures that Registry.h (which * similarly defines these Module__* symbols) can be included in any order * relative to other xdc.runtime headers. */ /* * ======== Module__DGSINCL ======== * The set of diags categories that are runtime controllable _or_ always on * * This costant is computed at config time and enables us to eliminate * expensive runtime time checks and unnecessary data (the module's diags * mask) when whole program optimization is used. */ /* * ======== Module__DGSENAB ======== * The set of diags categories that are _always_ enabled * * This costant is computed at config time and enables us to eliminate * expensive runtime time checks and unnecessary data (the module's diags * mask) when whole program optimization is used. */ /* * ======== Module__DGSMASK ======== * Pointer to the set of diags categories that are runtime controllable */ /* * ======== Module__MID ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Mask */ typedef xdc_runtime_Types_DiagsMask xdc_runtime_Diags_Mask; /* ENTRY */ /* EXIT */ /* LIFECYCLE */ /* INTERNAL */ /* ASSERT */ /* STATUS */ /* LEVEL */ /* USER1 */ /* USER2 */ /* USER3 */ /* USER4 */ /* USER5 */ /* USER6 */ /* USER7 */ /* INFO */ /* USER8 */ /* ANALYSIS */ /* ALL */ /* ALL_LOGGING */ /* EventLevel */ enum xdc_runtime_Diags_EventLevel { xdc_runtime_Diags_LEVEL1 = 0x0, xdc_runtime_Diags_LEVEL2 = 0x20, xdc_runtime_Diags_LEVEL3 = 0x40, xdc_runtime_Diags_LEVEL4 = 0x60 }; typedef enum xdc_runtime_Diags_EventLevel xdc_runtime_Diags_EventLevel; /* EMERGENCY */ /* CRITICAL */ /* ERROR */ /* WARNING */ /* * ======== INTERNAL DEFINITIONS ======== */ /* DictElem */ struct xdc_runtime_Diags_DictElem { xdc_runtime_Types_ModuleId modId; xdc_runtime_Diags_Mask *maskAddr; }; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Diags_Module__diagsEnabled; extern const CT__xdc_runtime_Diags_Module__diagsEnabled xdc_runtime_Diags_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Diags_Module__diagsIncluded; extern const CT__xdc_runtime_Diags_Module__diagsIncluded xdc_runtime_Diags_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Diags_Module__diagsMask; extern const CT__xdc_runtime_Diags_Module__diagsMask xdc_runtime_Diags_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Diags_Module__gateObj; extern const CT__xdc_runtime_Diags_Module__gateObj xdc_runtime_Diags_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Diags_Module__gatePrms; extern const CT__xdc_runtime_Diags_Module__gatePrms xdc_runtime_Diags_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Diags_Module__id; extern const CT__xdc_runtime_Diags_Module__id xdc_runtime_Diags_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Diags_Module__loggerDefined; extern const CT__xdc_runtime_Diags_Module__loggerDefined xdc_runtime_Diags_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Diags_Module__loggerObj; extern const CT__xdc_runtime_Diags_Module__loggerObj xdc_runtime_Diags_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Diags_Module__loggerFxn0; extern const CT__xdc_runtime_Diags_Module__loggerFxn0 xdc_runtime_Diags_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Diags_Module__loggerFxn1; extern const CT__xdc_runtime_Diags_Module__loggerFxn1 xdc_runtime_Diags_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Diags_Module__loggerFxn2; extern const CT__xdc_runtime_Diags_Module__loggerFxn2 xdc_runtime_Diags_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Diags_Module__loggerFxn4; extern const CT__xdc_runtime_Diags_Module__loggerFxn4 xdc_runtime_Diags_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Diags_Module__loggerFxn8; extern const CT__xdc_runtime_Diags_Module__loggerFxn8 xdc_runtime_Diags_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Diags_Object__count; extern const CT__xdc_runtime_Diags_Object__count xdc_runtime_Diags_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Diags_Object__heap; extern const CT__xdc_runtime_Diags_Object__heap xdc_runtime_Diags_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Diags_Object__sizeof; extern const CT__xdc_runtime_Diags_Object__sizeof xdc_runtime_Diags_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Diags_Object__table; extern const CT__xdc_runtime_Diags_Object__table xdc_runtime_Diags_Object__table__C; /* setMaskEnabled */ typedef xdc_Bool CT__xdc_runtime_Diags_setMaskEnabled; extern const CT__xdc_runtime_Diags_setMaskEnabled xdc_runtime_Diags_setMaskEnabled__C; /* dictBase */ typedef xdc_runtime_Diags_DictElem *CT__xdc_runtime_Diags_dictBase; extern const CT__xdc_runtime_Diags_dictBase xdc_runtime_Diags_dictBase__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Diags_Module__startupDone__S( void ); /* setMask__E */ extern void xdc_runtime_Diags_setMask__E( xdc_CString control ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Diags_Module__id xdc_runtime_Diags_Module_id(void); static inline CT__xdc_runtime_Diags_Module__id xdc_runtime_Diags_Module_id( void ) { return xdc_runtime_Diags_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Diags_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Diags_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Diags_Module__diagsMask__C != (CT__xdc_runtime_Diags_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Diags_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Diags_Module_getMask(void) { return (xdc_runtime_Diags_Module__diagsMask__C != (CT__xdc_runtime_Diags_Module__diagsMask)0) ? *xdc_runtime_Diags_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Diags_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Diags_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Diags_Module__diagsMask__C != (CT__xdc_runtime_Diags_Module__diagsMask)0) { *xdc_runtime_Diags_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * ======== xdc_runtime_Diags_query ======== * Returns true iff: * 1. the current module's included diags intersect evt's mask, and * 2. either the permanently enabled diags intersect evt's mask or * the runtime controllable diags intersect evt's mask. * * This macro relies on three "internal" macros which are defined in each * module's internal header (e.g., package/internal/System.xdc.h): * Module__DGSINCL - a const bit mask of bits that are _not_ ALWAYS_OFF * Module__DGSENAB - a const bit mask of bits that are ALWAYS_ON * Module__DGSMASK - a const pointer to a bit mask of currently enabled * diagnostics * These macros reference module-specific variables generated at config * time, when we know the value of these constants. * */ /* * ======== xdc_runtime_Diags_getLevel ======== * Returns the event level set in the given diags mask. The level is a value * stored using two bits of the diags mask. */ /* * ======== xdc_runtime_Diags_compareLevels ======== * The definition of the diags levels assigns the value '0' to the highest * priority events and '3' to the lowest, so the comparison is done backwards. * For example, for (LEVEL4 (0), LEVEL1 (3)) this must return false. */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== xdc_runtime_Log_Event ======== * Log_Event is an encoded type. Log Events are encoded on the target as * a 32-bit value: * * | format rope | module ID or mask | * | 31 ----- 16 | 15 ------------ 0 | * * The lower 16-bits contain either a mask or a module ID; when the event * is statically declared this field has a mask, when the event is passed * to an ILogger this field is the module ID of the module that generated * the event. * * The upper 16-bits are an ID (rope) that that identifies the format * string to use to render the event (and its arguments). */ typedef xdc_Bits32 xdc_runtime_Log_Event; /* * The following macros establish xdc.runtime.Main as the "default" * module for all sources files not part of a module. * * Module__MID - the module's ID (see Text.xs) * Module__LOGOBJ - the module's logger object * Module__LOGFXN0 - the module's logger's write0 function * Module__LOGFXN1 - the module's logger's write1 function * Module__LOGFXN2 - the module's logger's write2 function * Module__LOGFXN4 - the module's logger's write4 function * Module__LOGFXN8 - the module's logger's write8 function * Module__LOGDEF - 0 if the module has a logger, non-zero otherwise * * Only define these symbols for xdc.runtime.Main if this file is not one that * will be included in the Registry. This check ensures that Registry.h (which * similarly defines these Module__* symbols) can be included in any order * relative to other xdc.runtime headers. */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* CordAddr */ typedef xdc_runtime_Types_CordAddr xdc_runtime_Text_CordAddr; /* Label */ typedef xdc_runtime_Types_Label xdc_runtime_Text_Label; /* RopeId */ typedef xdc_runtime_Types_RopeId xdc_runtime_Text_RopeId; /* * ======== INTERNAL DEFINITIONS ======== */ /* Node */ struct xdc_runtime_Text_Node { xdc_runtime_Types_RopeId left; xdc_runtime_Types_RopeId right; }; /* RopeVisitor */ typedef xdc_Bool (*xdc_runtime_Text_RopeVisitor)(xdc_Ptr arg1, xdc_CString arg2); /* MatchVisState */ struct xdc_runtime_Text_MatchVisState { xdc_CString pat; xdc_UShort *lenp; xdc_Int res; }; /* PrintVisState */ struct xdc_runtime_Text_PrintVisState { xdc_Char **bufp; xdc_UShort len; xdc_Int res; }; /* VisitRopeFxn */ typedef void (*xdc_runtime_Text_VisitRopeFxn)(xdc_runtime_Text_RopeId arg1, xdc_Fxn arg2, xdc_Ptr arg3); /* VisitRopeFxn2 */ typedef void (*xdc_runtime_Text_VisitRopeFxn2)(xdc_runtime_Text_RopeId arg1, xdc_Fxn arg2, xdc_Ptr arg3, xdc_CString arg4[]); /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Text_Module__diagsEnabled; extern const CT__xdc_runtime_Text_Module__diagsEnabled xdc_runtime_Text_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Text_Module__diagsIncluded; extern const CT__xdc_runtime_Text_Module__diagsIncluded xdc_runtime_Text_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Text_Module__diagsMask; extern const CT__xdc_runtime_Text_Module__diagsMask xdc_runtime_Text_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Text_Module__gateObj; extern const CT__xdc_runtime_Text_Module__gateObj xdc_runtime_Text_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Text_Module__gatePrms; extern const CT__xdc_runtime_Text_Module__gatePrms xdc_runtime_Text_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Text_Module__id; extern const CT__xdc_runtime_Text_Module__id xdc_runtime_Text_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Text_Module__loggerDefined; extern const CT__xdc_runtime_Text_Module__loggerDefined xdc_runtime_Text_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Text_Module__loggerObj; extern const CT__xdc_runtime_Text_Module__loggerObj xdc_runtime_Text_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Text_Module__loggerFxn0; extern const CT__xdc_runtime_Text_Module__loggerFxn0 xdc_runtime_Text_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Text_Module__loggerFxn1; extern const CT__xdc_runtime_Text_Module__loggerFxn1 xdc_runtime_Text_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Text_Module__loggerFxn2; extern const CT__xdc_runtime_Text_Module__loggerFxn2 xdc_runtime_Text_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Text_Module__loggerFxn4; extern const CT__xdc_runtime_Text_Module__loggerFxn4 xdc_runtime_Text_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Text_Module__loggerFxn8; extern const CT__xdc_runtime_Text_Module__loggerFxn8 xdc_runtime_Text_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Text_Object__count; extern const CT__xdc_runtime_Text_Object__count xdc_runtime_Text_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Text_Object__heap; extern const CT__xdc_runtime_Text_Object__heap xdc_runtime_Text_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Text_Object__sizeof; extern const CT__xdc_runtime_Text_Object__sizeof xdc_runtime_Text_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Text_Object__table; extern const CT__xdc_runtime_Text_Object__table xdc_runtime_Text_Object__table__C; /* nameUnknown */ typedef xdc_String CT__xdc_runtime_Text_nameUnknown; extern const CT__xdc_runtime_Text_nameUnknown xdc_runtime_Text_nameUnknown__C; /* nameEmpty */ typedef xdc_String CT__xdc_runtime_Text_nameEmpty; extern const CT__xdc_runtime_Text_nameEmpty xdc_runtime_Text_nameEmpty__C; /* nameStatic */ typedef xdc_String CT__xdc_runtime_Text_nameStatic; extern const CT__xdc_runtime_Text_nameStatic xdc_runtime_Text_nameStatic__C; /* isLoaded */ typedef xdc_Bool CT__xdc_runtime_Text_isLoaded; extern const CT__xdc_runtime_Text_isLoaded xdc_runtime_Text_isLoaded__C; /* charTab */ typedef xdc_Char __T1_xdc_runtime_Text_charTab; typedef xdc_Char *ARRAY1_xdc_runtime_Text_charTab; typedef const xdc_Char *CARRAY1_xdc_runtime_Text_charTab; typedef CARRAY1_xdc_runtime_Text_charTab __TA_xdc_runtime_Text_charTab; typedef CARRAY1_xdc_runtime_Text_charTab CT__xdc_runtime_Text_charTab; extern const CT__xdc_runtime_Text_charTab xdc_runtime_Text_charTab__C; /* nodeTab */ typedef xdc_runtime_Text_Node __T1_xdc_runtime_Text_nodeTab; typedef xdc_runtime_Text_Node *ARRAY1_xdc_runtime_Text_nodeTab; typedef const xdc_runtime_Text_Node *CARRAY1_xdc_runtime_Text_nodeTab; typedef CARRAY1_xdc_runtime_Text_nodeTab __TA_xdc_runtime_Text_nodeTab; typedef CARRAY1_xdc_runtime_Text_nodeTab CT__xdc_runtime_Text_nodeTab; extern const CT__xdc_runtime_Text_nodeTab xdc_runtime_Text_nodeTab__C; /* charCnt */ typedef xdc_Int16 CT__xdc_runtime_Text_charCnt; extern const CT__xdc_runtime_Text_charCnt xdc_runtime_Text_charCnt__C; /* nodeCnt */ typedef xdc_Int16 CT__xdc_runtime_Text_nodeCnt; extern const CT__xdc_runtime_Text_nodeCnt xdc_runtime_Text_nodeCnt__C; /* unnamedModsLastId */ typedef xdc_UInt16 CT__xdc_runtime_Text_unnamedModsLastId; extern const CT__xdc_runtime_Text_unnamedModsLastId xdc_runtime_Text_unnamedModsLastId__C; /* registryModsLastId */ typedef xdc_UInt16 CT__xdc_runtime_Text_registryModsLastId; extern const CT__xdc_runtime_Text_registryModsLastId xdc_runtime_Text_registryModsLastId__C; /* visitRopeFxn */ typedef xdc_runtime_Text_VisitRopeFxn CT__xdc_runtime_Text_visitRopeFxn; extern const CT__xdc_runtime_Text_visitRopeFxn xdc_runtime_Text_visitRopeFxn__C; /* visitRopeFxn2 */ typedef xdc_runtime_Text_VisitRopeFxn2 CT__xdc_runtime_Text_visitRopeFxn2; extern const CT__xdc_runtime_Text_visitRopeFxn2 xdc_runtime_Text_visitRopeFxn2__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Text_Module__startupDone__S( void ); /* cordText__E */ extern xdc_String xdc_runtime_Text_cordText__E( xdc_runtime_Text_CordAddr cord ); /* ropeText__E */ extern xdc_CString xdc_runtime_Text_ropeText__E( xdc_runtime_Text_RopeId rope ); /* matchRope__E */ extern xdc_Int xdc_runtime_Text_matchRope__E( xdc_runtime_Text_RopeId rope, xdc_CString pat, xdc_UShort *lenp ); /* putLab__E */ extern xdc_Int xdc_runtime_Text_putLab__E( xdc_runtime_Types_Label *lab, xdc_Char **bufp, xdc_Int len ); /* putMod__E */ extern xdc_Int xdc_runtime_Text_putMod__E( xdc_runtime_Types_ModuleId mid, xdc_Char **bufp, xdc_Int len ); /* putSite__E */ extern xdc_Int xdc_runtime_Text_putSite__E( xdc_runtime_Types_Site *site, xdc_Char **bufp, xdc_Int len ); /* matchVisFxn__I */ extern xdc_Bool xdc_runtime_Text_matchVisFxn__I( xdc_Ptr p, xdc_CString s ); /* printVisFxn__I */ extern xdc_Bool xdc_runtime_Text_printVisFxn__I( xdc_Ptr p, xdc_CString s ); /* visitRope__I */ extern void xdc_runtime_Text_visitRope__I( xdc_runtime_Text_RopeId rope, xdc_Fxn visFxn, xdc_Ptr visState ); /* visitRope2__I */ extern void xdc_runtime_Text_visitRope2__I( xdc_runtime_Text_RopeId rope, xdc_Fxn visFxn, xdc_Ptr visState, xdc_CString stack[] ); /* xprintf__I */ extern xdc_Int xdc_runtime_Text_xprintf__I( xdc_Char **bufp, xdc_SizeT len, xdc_CString fmt, ... ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Text_Module__id xdc_runtime_Text_Module_id(void); static inline CT__xdc_runtime_Text_Module__id xdc_runtime_Text_Module_id( void ) { return xdc_runtime_Text_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Text_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Text_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Text_Module__diagsMask__C != (CT__xdc_runtime_Text_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Text_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Text_Module_getMask(void) { return (xdc_runtime_Text_Module__diagsMask__C != (CT__xdc_runtime_Text_Module__diagsMask)0) ? *xdc_runtime_Text_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Text_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Text_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Text_Module__diagsMask__C != (CT__xdc_runtime_Text_Module__diagsMask)0) { *xdc_runtime_Text_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct xdc_runtime_Text_Module_State { xdc_CPtr charBase; xdc_CPtr nodeBase; }; /* Module__state__V */ extern struct xdc_runtime_Text_Module_State__ xdc_runtime_Text_Module__state__V; /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* NUMARGS */ /* PRINTFID */ /* EventRec */ typedef xdc_IArg __T1_xdc_runtime_Log_EventRec__arg; typedef xdc_IArg ARRAY1_xdc_runtime_Log_EventRec__arg[8]; typedef xdc_IArg CARRAY1_xdc_runtime_Log_EventRec__arg[8]; typedef CARRAY1_xdc_runtime_Log_EventRec__arg __TA_xdc_runtime_Log_EventRec__arg; struct xdc_runtime_Log_EventRec { xdc_runtime_Types_Timestamp64 tstamp; xdc_Bits32 serial; xdc_runtime_Types_Event evt; __TA_xdc_runtime_Log_EventRec__arg arg; }; /* EventId */ typedef xdc_runtime_Types_RopeId xdc_runtime_Log_EventId; /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Log_Module__diagsEnabled; extern const CT__xdc_runtime_Log_Module__diagsEnabled xdc_runtime_Log_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Log_Module__diagsIncluded; extern const CT__xdc_runtime_Log_Module__diagsIncluded xdc_runtime_Log_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Log_Module__diagsMask; extern const CT__xdc_runtime_Log_Module__diagsMask xdc_runtime_Log_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Log_Module__gateObj; extern const CT__xdc_runtime_Log_Module__gateObj xdc_runtime_Log_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Log_Module__gatePrms; extern const CT__xdc_runtime_Log_Module__gatePrms xdc_runtime_Log_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Log_Module__id; extern const CT__xdc_runtime_Log_Module__id xdc_runtime_Log_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Log_Module__loggerDefined; extern const CT__xdc_runtime_Log_Module__loggerDefined xdc_runtime_Log_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Log_Module__loggerObj; extern const CT__xdc_runtime_Log_Module__loggerObj xdc_runtime_Log_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Log_Module__loggerFxn0; extern const CT__xdc_runtime_Log_Module__loggerFxn0 xdc_runtime_Log_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Log_Module__loggerFxn1; extern const CT__xdc_runtime_Log_Module__loggerFxn1 xdc_runtime_Log_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Log_Module__loggerFxn2; extern const CT__xdc_runtime_Log_Module__loggerFxn2 xdc_runtime_Log_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Log_Module__loggerFxn4; extern const CT__xdc_runtime_Log_Module__loggerFxn4 xdc_runtime_Log_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Log_Module__loggerFxn8; extern const CT__xdc_runtime_Log_Module__loggerFxn8 xdc_runtime_Log_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Log_Object__count; extern const CT__xdc_runtime_Log_Object__count xdc_runtime_Log_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Log_Object__heap; extern const CT__xdc_runtime_Log_Object__heap xdc_runtime_Log_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Log_Object__sizeof; extern const CT__xdc_runtime_Log_Object__sizeof xdc_runtime_Log_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Log_Object__table; extern const CT__xdc_runtime_Log_Object__table xdc_runtime_Log_Object__table__C; /* L_construct */ typedef xdc_runtime_Log_Event CT__xdc_runtime_Log_L_construct; extern const CT__xdc_runtime_Log_L_construct xdc_runtime_Log_L_construct__C; /* L_create */ typedef xdc_runtime_Log_Event CT__xdc_runtime_Log_L_create; extern const CT__xdc_runtime_Log_L_create xdc_runtime_Log_L_create__C; /* L_destruct */ typedef xdc_runtime_Log_Event CT__xdc_runtime_Log_L_destruct; extern const CT__xdc_runtime_Log_L_destruct xdc_runtime_Log_L_destruct__C; /* L_delete */ typedef xdc_runtime_Log_Event CT__xdc_runtime_Log_L_delete; extern const CT__xdc_runtime_Log_L_delete xdc_runtime_Log_L_delete__C; /* L_error */ typedef xdc_runtime_Log_Event CT__xdc_runtime_Log_L_error; extern const CT__xdc_runtime_Log_L_error xdc_runtime_Log_L_error__C; /* L_warning */ typedef xdc_runtime_Log_Event CT__xdc_runtime_Log_L_warning; extern const CT__xdc_runtime_Log_L_warning xdc_runtime_Log_L_warning__C; /* L_info */ typedef xdc_runtime_Log_Event CT__xdc_runtime_Log_L_info; extern const CT__xdc_runtime_Log_L_info xdc_runtime_Log_L_info__C; /* L_start */ typedef xdc_runtime_Log_Event CT__xdc_runtime_Log_L_start; extern const CT__xdc_runtime_Log_L_start xdc_runtime_Log_L_start__C; /* L_stop */ typedef xdc_runtime_Log_Event CT__xdc_runtime_Log_L_stop; extern const CT__xdc_runtime_Log_L_stop xdc_runtime_Log_L_stop__C; /* L_startInstance */ typedef xdc_runtime_Log_Event CT__xdc_runtime_Log_L_startInstance; extern const CT__xdc_runtime_Log_L_startInstance xdc_runtime_Log_L_startInstance__C; /* L_stopInstance */ typedef xdc_runtime_Log_Event CT__xdc_runtime_Log_L_stopInstance; extern const CT__xdc_runtime_Log_L_stopInstance xdc_runtime_Log_L_stopInstance__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Log_Module__startupDone__S( void ); /* doPrint__E */ extern void xdc_runtime_Log_doPrint__E( xdc_runtime_Log_EventRec *evRec ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Log_Module__id xdc_runtime_Log_Module_id(void); static inline CT__xdc_runtime_Log_Module__id xdc_runtime_Log_Module_id( void ) { return xdc_runtime_Log_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Log_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Log_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Log_Module__diagsMask__C != (CT__xdc_runtime_Log_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Log_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Log_Module_getMask(void) { return (xdc_runtime_Log_Module__diagsMask__C != (CT__xdc_runtime_Log_Module__diagsMask)0) ? *xdc_runtime_Log_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Log_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Log_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Log_Module__diagsMask__C != (CT__xdc_runtime_Log_Module__diagsMask)0) { *xdc_runtime_Log_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * ======== Log__epilogue.h ======== * Implementation of the Log_* macros * * The implementation below relies on eight symbols defined by every module * header. Each of these symbols is a reference to a constant defined in a * separate compilation unit. The values of these constants are as follows: * * Module__MID - the module's ID (see Text.xs) * Module__LOGOBJ - the module's logger instance object * Module__LOGFXN0 - the module's logger's write0 function * Module__LOGFXN1 - the module's logger's write1 function * Module__LOGFXN2 - the module's logger's write2 function * Module__LOGFXN4 - the module's logger's write4 function * Module__LOGFXN8 - the module's logger's write8 function * Module__LOGDEF - 0 if the module has a logger, non-zero otherwise */ /* * Define flags for compiling out all Log calls * * The intent of these flags is to allow users to completely optimize logging * out of their code even when not using whole program optimization. This is * implemented by controlling the definitions of the Log macros. This will * only affect code compiled with the flag(s) set, so it will not disable * logging in any precompiled libraries. * * The DISABLE_ALL flag will have the effect of disabling all Log put, write, * print, error, warning, and info log calls. The flag just has to be defined, * we give it a value of zero or one to use in the macros. * * There are additional flags which can be used to disable all log calls * "except for". We use the presence of the DISABLE_ALL flag and the presence * of any ENABLE_ERROR, ENABLE_INFO, or ENABLE_WARNING flags to compute the * value of ENABLE_ERROR, etc., as zero or one. * * We ensure that all of the flags are ultimately defined and given a zero or * one value. Then the macro definitions are conditional on the value of the * appropriate flag. */ /* * If DISABLE_ALL is defined, give it the value 1, and assign values to all * of the ENABLE flags based on whether they've been defined or not. */ /* * ======== xdc_runtime_Log_getMask ======== */ /* * ======== xdc_runtime_Log_getRope ======== */ /* * ======== xdc_runtime_Log_getEventId ======== */ /* * ======== xdc_runtime_Log_doPut* ======== * The 'doPut' macros are the real implementation of the Log_put* APIs. * The Log_put* macros are just stubs which point to these definitions. We do * this so that we can disable the Log_put* APIs but still leave their * functionality available for any other Log macros which use them. * * For example, if the flags DISABLE_ALL and ENABLE_ERROR are set, we want * to disable the Log_put* macros, but not the Log_error* macros which are * also built on top of these 'doPut' macros. */ /* * ======== xdc_runtime_Log_put* ======== * See Log_doPut* */ /* * ======== xdc_runtime_Log_doWrite* ======== * The real implementations of the Log_write* APIs. See Log_doPut* for an * explanation of why we stub-out the Log_put* and Log_write* APIs. */ /* * ======== xdc_runtime_Log_write* ======== * See Log_doWrite* */ /* * ======== xdc_runtime_Log_print* ======== * Since "print" events do not have a rope, we use 0 (an invalid rope value) * as the event Id and construct a Log_Event to pass to Log_put. This has the * benefit that the Log_Event is equal to just the mask: (0 | mask). For this * reason, we simply pass the 'mask' as the first argument to 'put'. * * Each print function is mapped to a call to appropriate 'put' function. * print0 -> put1 * print1 -> put2 * print2 -> print3 -> put4 * print3 -> put4 * print4 -> print6 -> put8 * print5 -> print6 -> put8 * print6 -> put8 */ /* * ======== xdc_runtime_Log_error* ======== * Log an error event */ /* * ======== xdc_runtime_Log_warning* ======== * Log a warning event */ /* * ======== xdc_runtime_Log_info* ======== * Log an informational event */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * ======== Assert__prologue.h ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== xdc_runtime_Assert_Id ======== */ typedef xdc_Bits32 xdc_runtime_Assert_Id; /* * ======== Module__MID ======== * This definition allows non-module code to * use the Assert module. This symbol is normally defined in each * module internal header (i.e., package/internal/.xdc.h). * * Only do this if this file is not one that will be included in the Registry. * This check ensures that Registry.h (which similarly defines these Module__* * symbols) can be included in any order relative to other xdc.runtime * headers. */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Assert_Module__diagsEnabled; extern const CT__xdc_runtime_Assert_Module__diagsEnabled xdc_runtime_Assert_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Assert_Module__diagsIncluded; extern const CT__xdc_runtime_Assert_Module__diagsIncluded xdc_runtime_Assert_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Assert_Module__diagsMask; extern const CT__xdc_runtime_Assert_Module__diagsMask xdc_runtime_Assert_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Assert_Module__gateObj; extern const CT__xdc_runtime_Assert_Module__gateObj xdc_runtime_Assert_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Assert_Module__gatePrms; extern const CT__xdc_runtime_Assert_Module__gatePrms xdc_runtime_Assert_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Assert_Module__id; extern const CT__xdc_runtime_Assert_Module__id xdc_runtime_Assert_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Assert_Module__loggerDefined; extern const CT__xdc_runtime_Assert_Module__loggerDefined xdc_runtime_Assert_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Assert_Module__loggerObj; extern const CT__xdc_runtime_Assert_Module__loggerObj xdc_runtime_Assert_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Assert_Module__loggerFxn0; extern const CT__xdc_runtime_Assert_Module__loggerFxn0 xdc_runtime_Assert_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Assert_Module__loggerFxn1; extern const CT__xdc_runtime_Assert_Module__loggerFxn1 xdc_runtime_Assert_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Assert_Module__loggerFxn2; extern const CT__xdc_runtime_Assert_Module__loggerFxn2 xdc_runtime_Assert_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Assert_Module__loggerFxn4; extern const CT__xdc_runtime_Assert_Module__loggerFxn4 xdc_runtime_Assert_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Assert_Module__loggerFxn8; extern const CT__xdc_runtime_Assert_Module__loggerFxn8 xdc_runtime_Assert_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Assert_Object__count; extern const CT__xdc_runtime_Assert_Object__count xdc_runtime_Assert_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Assert_Object__heap; extern const CT__xdc_runtime_Assert_Object__heap xdc_runtime_Assert_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Assert_Object__sizeof; extern const CT__xdc_runtime_Assert_Object__sizeof xdc_runtime_Assert_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Assert_Object__table; extern const CT__xdc_runtime_Assert_Object__table xdc_runtime_Assert_Object__table__C; /* E_assertFailed */ typedef xdc_runtime_Error_Id CT__xdc_runtime_Assert_E_assertFailed; extern const CT__xdc_runtime_Assert_E_assertFailed xdc_runtime_Assert_E_assertFailed__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Assert_Module__startupDone__S( void ); /* raise__I */ extern void xdc_runtime_Assert_raise__I( xdc_runtime_Types_ModuleId mod, xdc_CString file, xdc_Int line, xdc_runtime_Assert_Id id ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Assert_Module__id xdc_runtime_Assert_Module_id(void); static inline CT__xdc_runtime_Assert_Module__id xdc_runtime_Assert_Module_id( void ) { return xdc_runtime_Assert_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Assert_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Assert_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Assert_Module__diagsMask__C != (CT__xdc_runtime_Assert_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Assert_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Assert_Module_getMask(void) { return (xdc_runtime_Assert_Module__diagsMask__C != (CT__xdc_runtime_Assert_Module__diagsMask)0) ? *xdc_runtime_Assert_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Assert_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Assert_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Assert_Module__diagsMask__C != (CT__xdc_runtime_Assert_Module__diagsMask)0) { *xdc_runtime_Assert_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * ======== xdc_runtime_Assert_getMask ======== * Convert an id into a mask */ /* * ======== xdc_runtime_Assert_isTrue ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== interface ti.sysbios.interfaces.ICore ======== */ typedef struct ti_sysbios_interfaces_ICore_Fxns__ ti_sysbios_interfaces_ICore_Fxns__; typedef const struct ti_sysbios_interfaces_ICore_Fxns__* ti_sysbios_interfaces_ICore_Module; /* * ======== interface ti.sysbios.interfaces.IHwi ======== */ typedef struct ti_sysbios_interfaces_IHwi_HookSet ti_sysbios_interfaces_IHwi_HookSet; typedef struct ti_sysbios_interfaces_IHwi_StackInfo ti_sysbios_interfaces_IHwi_StackInfo; typedef struct ti_sysbios_interfaces_IHwi_Fxns__ ti_sysbios_interfaces_IHwi_Fxns__; typedef const struct ti_sysbios_interfaces_IHwi_Fxns__* ti_sysbios_interfaces_IHwi_Module; typedef struct ti_sysbios_interfaces_IHwi_Params ti_sysbios_interfaces_IHwi_Params; typedef struct ti_sysbios_interfaces_IHwi___Object { ti_sysbios_interfaces_IHwi_Fxns__* __fxns; xdc_Bits32 __label; } *ti_sysbios_interfaces_IHwi_Handle; /* * ======== interface ti.sysbios.interfaces.ITaskSupport ======== */ typedef struct ti_sysbios_interfaces_ITaskSupport_Fxns__ ti_sysbios_interfaces_ITaskSupport_Fxns__; typedef const struct ti_sysbios_interfaces_ITaskSupport_Fxns__* ti_sysbios_interfaces_ITaskSupport_Module; /* * ======== interface ti.sysbios.interfaces.ITimer ======== */ typedef struct ti_sysbios_interfaces_ITimer_Fxns__ ti_sysbios_interfaces_ITimer_Fxns__; typedef const struct ti_sysbios_interfaces_ITimer_Fxns__* ti_sysbios_interfaces_ITimer_Module; typedef struct ti_sysbios_interfaces_ITimer_Params ti_sysbios_interfaces_ITimer_Params; typedef struct ti_sysbios_interfaces_ITimer___Object { ti_sysbios_interfaces_ITimer_Fxns__* __fxns; xdc_Bits32 __label; } *ti_sysbios_interfaces_ITimer_Handle; /* * ======== interface ti.sysbios.interfaces.ITimerSupport ======== */ typedef struct ti_sysbios_interfaces_ITimerSupport_Fxns__ ti_sysbios_interfaces_ITimerSupport_Fxns__; typedef const struct ti_sysbios_interfaces_ITimerSupport_Fxns__* ti_sysbios_interfaces_ITimerSupport_Module; /* * ======== interface ti.sysbios.interfaces.ITimestamp ======== */ typedef struct ti_sysbios_interfaces_ITimestamp_Fxns__ ti_sysbios_interfaces_ITimestamp_Fxns__; typedef const struct ti_sysbios_interfaces_ITimestamp_Fxns__* ti_sysbios_interfaces_ITimestamp_Module; /* * ======== interface ti.sysbios.interfaces.IIntrinsicsSupport ======== */ typedef struct ti_sysbios_interfaces_IIntrinsicsSupport_Fxns__ ti_sysbios_interfaces_IIntrinsicsSupport_Fxns__; typedef const struct ti_sysbios_interfaces_IIntrinsicsSupport_Fxns__* ti_sysbios_interfaces_IIntrinsicsSupport_Module; /* * ======== interface ti.sysbios.interfaces.ICache ======== */ typedef struct ti_sysbios_interfaces_ICache_Fxns__ ti_sysbios_interfaces_ICache_Fxns__; typedef const struct ti_sysbios_interfaces_ICache_Fxns__* ti_sysbios_interfaces_ICache_Module; /* * ======== interface ti.sysbios.interfaces.IPower ======== */ typedef struct ti_sysbios_interfaces_IPower_Fxns__ ti_sysbios_interfaces_IPower_Fxns__; typedef const struct ti_sysbios_interfaces_IPower_Fxns__* ti_sysbios_interfaces_IPower_Module; /* * ======== interface ti.sysbios.interfaces.IRomDevice ======== */ typedef struct ti_sysbios_interfaces_IRomDevice_Fxns__ ti_sysbios_interfaces_IRomDevice_Fxns__; typedef const struct ti_sysbios_interfaces_IRomDevice_Fxns__* ti_sysbios_interfaces_IRomDevice_Module; /* * ======== interface ti.sysbios.interfaces.ISeconds ======== */ typedef struct ti_sysbios_interfaces_ISeconds_Time ti_sysbios_interfaces_ISeconds_Time; typedef struct ti_sysbios_interfaces_ISeconds_Fxns__ ti_sysbios_interfaces_ISeconds_Fxns__; typedef const struct ti_sysbios_interfaces_ISeconds_Fxns__* ti_sysbios_interfaces_ISeconds_Module; /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef void (*ti_sysbios_interfaces_IHwi_FuncPtr)(xdc_UArg __arg1); /* Irp */ typedef xdc_UArg ti_sysbios_interfaces_IHwi_Irp; /* HookSet */ struct ti_sysbios_interfaces_IHwi_HookSet { void (*registerFxn)(xdc_Int __arg1); void (*createFxn)(ti_sysbios_interfaces_IHwi_Handle __arg1, xdc_runtime_Error_Block* __arg2); void (*beginFxn)(ti_sysbios_interfaces_IHwi_Handle __arg1); void (*endFxn)(ti_sysbios_interfaces_IHwi_Handle __arg1); void (*deleteFxn)(ti_sysbios_interfaces_IHwi_Handle __arg1); }; /* MaskingOption */ enum ti_sysbios_interfaces_IHwi_MaskingOption { ti_sysbios_interfaces_IHwi_MaskingOption_NONE, ti_sysbios_interfaces_IHwi_MaskingOption_ALL, ti_sysbios_interfaces_IHwi_MaskingOption_SELF, ti_sysbios_interfaces_IHwi_MaskingOption_BITMASK, ti_sysbios_interfaces_IHwi_MaskingOption_LOWER }; typedef enum ti_sysbios_interfaces_IHwi_MaskingOption ti_sysbios_interfaces_IHwi_MaskingOption; /* StackInfo */ struct ti_sysbios_interfaces_IHwi_StackInfo { xdc_SizeT hwiStackPeak; xdc_SizeT hwiStackSize; xdc_Ptr hwiStackBase; }; /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_interfaces_IHwi_Args__create { xdc_Int intNum; ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn; } ti_sysbios_interfaces_IHwi_Args__create; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_interfaces_IHwi_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; ti_sysbios_interfaces_IHwi_MaskingOption maskSetting; xdc_UArg arg; xdc_Bool enableInt; xdc_Int eventId; xdc_Int priority; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_interfaces_IHwi_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bool (*getStackInfo)(ti_sysbios_interfaces_IHwi_StackInfo* stkInfo, xdc_Bool computeStackDepth); xdc_Bool (*getCoreStackInfo)(ti_sysbios_interfaces_IHwi_StackInfo* stkInfo, xdc_Bool computeStackDepth, xdc_UInt coreId); void (*startup)(void); xdc_UInt (*disable)(void); xdc_UInt (*enable)(void); void (*restore)(xdc_UInt key); void (*switchFromBootStack)(void); void (*post)(xdc_UInt intNum); xdc_Char *(*getTaskSP)(void); xdc_UInt (*disableInterrupt)(xdc_UInt intNum); xdc_UInt (*enableInterrupt)(xdc_UInt intNum); void (*restoreInterrupt)(xdc_UInt intNum, xdc_UInt key); void (*clearInterrupt)(xdc_UInt intNum); ti_sysbios_interfaces_IHwi_FuncPtr (*getFunc)(void* __inst, xdc_UArg* arg); void (*setFunc)(void* __inst, ti_sysbios_interfaces_IHwi_FuncPtr fxn, xdc_UArg arg); xdc_Ptr (*getHookContext)(void* __inst, xdc_Int id); void (*setHookContext)(void* __inst, xdc_Int id, xdc_Ptr hookContext); ti_sysbios_interfaces_IHwi_Irp (*getIrp)(void* __inst); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base ti_sysbios_interfaces_IHwi_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* create */ extern ti_sysbios_interfaces_IHwi_Handle ti_sysbios_interfaces_IHwi_create(ti_sysbios_interfaces_IHwi_Module __mod, xdc_Int intNum, ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn, const ti_sysbios_interfaces_IHwi_Params *__prms, xdc_runtime_Error_Block *__eb); /* delete */ extern void ti_sysbios_interfaces_IHwi_delete(ti_sysbios_interfaces_IHwi_Handle *__inst); /* Handle_to_Module */ static inline ti_sysbios_interfaces_IHwi_Module ti_sysbios_interfaces_IHwi_Handle_to_Module(ti_sysbios_interfaces_IHwi_Handle inst); static inline ti_sysbios_interfaces_IHwi_Module ti_sysbios_interfaces_IHwi_Handle_to_Module(ti_sysbios_interfaces_IHwi_Handle inst) { return inst->__fxns; } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_interfaces_IHwi_Handle_label(ti_sysbios_interfaces_IHwi_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_interfaces_IHwi_Handle_label(ti_sysbios_interfaces_IHwi_Handle inst, xdc_runtime_Types_Label *lab) { return inst->__fxns->__sysp->__label(inst, lab); } /* Module_id */ static inline xdc_runtime_Types_ModuleId ti_sysbios_interfaces_IHwi_Module_id(ti_sysbios_interfaces_IHwi_Module mod); static inline xdc_runtime_Types_ModuleId ti_sysbios_interfaces_IHwi_Module_id(ti_sysbios_interfaces_IHwi_Module mod) { return mod->__sysp->__mid; } /* getStackInfo */ static inline xdc_Bool ti_sysbios_interfaces_IHwi_getStackInfo(ti_sysbios_interfaces_IHwi_Module __mod, ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth); static inline xdc_Bool ti_sysbios_interfaces_IHwi_getStackInfo( ti_sysbios_interfaces_IHwi_Module __mod, ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth ) { return __mod->getStackInfo(stkInfo, computeStackDepth); } /* getCoreStackInfo */ static inline xdc_Bool ti_sysbios_interfaces_IHwi_getCoreStackInfo(ti_sysbios_interfaces_IHwi_Module __mod, ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth, xdc_UInt coreId); static inline xdc_Bool ti_sysbios_interfaces_IHwi_getCoreStackInfo( ti_sysbios_interfaces_IHwi_Module __mod, ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth, xdc_UInt coreId ) { return __mod->getCoreStackInfo(stkInfo, computeStackDepth, coreId); } /* startup */ static inline void ti_sysbios_interfaces_IHwi_startup(ti_sysbios_interfaces_IHwi_Module __mod); static inline void ti_sysbios_interfaces_IHwi_startup( ti_sysbios_interfaces_IHwi_Module __mod ) { __mod->startup(); } /* disable */ static inline xdc_UInt ti_sysbios_interfaces_IHwi_disable(ti_sysbios_interfaces_IHwi_Module __mod); static inline xdc_UInt ti_sysbios_interfaces_IHwi_disable( ti_sysbios_interfaces_IHwi_Module __mod ) { return __mod->disable(); } /* enable */ static inline xdc_UInt ti_sysbios_interfaces_IHwi_enable(ti_sysbios_interfaces_IHwi_Module __mod); static inline xdc_UInt ti_sysbios_interfaces_IHwi_enable( ti_sysbios_interfaces_IHwi_Module __mod ) { return __mod->enable(); } /* restore */ static inline void ti_sysbios_interfaces_IHwi_restore(ti_sysbios_interfaces_IHwi_Module __mod, xdc_UInt key); static inline void ti_sysbios_interfaces_IHwi_restore( ti_sysbios_interfaces_IHwi_Module __mod, xdc_UInt key ) { __mod->restore(key); } /* switchFromBootStack */ static inline void ti_sysbios_interfaces_IHwi_switchFromBootStack(ti_sysbios_interfaces_IHwi_Module __mod); static inline void ti_sysbios_interfaces_IHwi_switchFromBootStack( ti_sysbios_interfaces_IHwi_Module __mod ) { __mod->switchFromBootStack(); } /* post */ static inline void ti_sysbios_interfaces_IHwi_post(ti_sysbios_interfaces_IHwi_Module __mod, xdc_UInt intNum); static inline void ti_sysbios_interfaces_IHwi_post( ti_sysbios_interfaces_IHwi_Module __mod, xdc_UInt intNum ) { __mod->post(intNum); } /* getTaskSP */ static inline xdc_Char *ti_sysbios_interfaces_IHwi_getTaskSP(ti_sysbios_interfaces_IHwi_Module __mod); static inline xdc_Char *ti_sysbios_interfaces_IHwi_getTaskSP( ti_sysbios_interfaces_IHwi_Module __mod ) { return __mod->getTaskSP(); } /* disableInterrupt */ static inline xdc_UInt ti_sysbios_interfaces_IHwi_disableInterrupt(ti_sysbios_interfaces_IHwi_Module __mod, xdc_UInt intNum); static inline xdc_UInt ti_sysbios_interfaces_IHwi_disableInterrupt( ti_sysbios_interfaces_IHwi_Module __mod, xdc_UInt intNum ) { return __mod->disableInterrupt(intNum); } /* enableInterrupt */ static inline xdc_UInt ti_sysbios_interfaces_IHwi_enableInterrupt(ti_sysbios_interfaces_IHwi_Module __mod, xdc_UInt intNum); static inline xdc_UInt ti_sysbios_interfaces_IHwi_enableInterrupt( ti_sysbios_interfaces_IHwi_Module __mod, xdc_UInt intNum ) { return __mod->enableInterrupt(intNum); } /* restoreInterrupt */ static inline void ti_sysbios_interfaces_IHwi_restoreInterrupt(ti_sysbios_interfaces_IHwi_Module __mod, xdc_UInt intNum, xdc_UInt key); static inline void ti_sysbios_interfaces_IHwi_restoreInterrupt( ti_sysbios_interfaces_IHwi_Module __mod, xdc_UInt intNum, xdc_UInt key ) { __mod->restoreInterrupt(intNum, key); } /* clearInterrupt */ static inline void ti_sysbios_interfaces_IHwi_clearInterrupt(ti_sysbios_interfaces_IHwi_Module __mod, xdc_UInt intNum); static inline void ti_sysbios_interfaces_IHwi_clearInterrupt( ti_sysbios_interfaces_IHwi_Module __mod, xdc_UInt intNum ) { __mod->clearInterrupt(intNum); } /* getFunc */ static inline ti_sysbios_interfaces_IHwi_FuncPtr ti_sysbios_interfaces_IHwi_getFunc(ti_sysbios_interfaces_IHwi_Handle __inst, xdc_UArg *arg); static inline ti_sysbios_interfaces_IHwi_FuncPtr ti_sysbios_interfaces_IHwi_getFunc( ti_sysbios_interfaces_IHwi_Handle __inst, xdc_UArg *arg ) { return __inst->__fxns->getFunc((void*)__inst, arg); } /* setFunc */ static inline void ti_sysbios_interfaces_IHwi_setFunc(ti_sysbios_interfaces_IHwi_Handle __inst, ti_sysbios_interfaces_IHwi_FuncPtr fxn, xdc_UArg arg); static inline void ti_sysbios_interfaces_IHwi_setFunc( ti_sysbios_interfaces_IHwi_Handle __inst, ti_sysbios_interfaces_IHwi_FuncPtr fxn, xdc_UArg arg ) { __inst->__fxns->setFunc((void*)__inst, fxn, arg); } /* getHookContext */ static inline xdc_Ptr ti_sysbios_interfaces_IHwi_getHookContext(ti_sysbios_interfaces_IHwi_Handle __inst, xdc_Int id); static inline xdc_Ptr ti_sysbios_interfaces_IHwi_getHookContext( ti_sysbios_interfaces_IHwi_Handle __inst, xdc_Int id ) { return __inst->__fxns->getHookContext((void*)__inst, id); } /* setHookContext */ static inline void ti_sysbios_interfaces_IHwi_setHookContext(ti_sysbios_interfaces_IHwi_Handle __inst, xdc_Int id, xdc_Ptr hookContext); static inline void ti_sysbios_interfaces_IHwi_setHookContext( ti_sysbios_interfaces_IHwi_Handle __inst, xdc_Int id, xdc_Ptr hookContext ) { __inst->__fxns->setHookContext((void*)__inst, id, hookContext); } /* getIrp */ static inline ti_sysbios_interfaces_IHwi_Irp ti_sysbios_interfaces_IHwi_getIrp(ti_sysbios_interfaces_IHwi_Handle __inst); static inline ti_sysbios_interfaces_IHwi_Irp ti_sysbios_interfaces_IHwi_getIrp( ti_sysbios_interfaces_IHwi_Handle __inst ) { return __inst->__fxns->getIrp((void*)__inst); } /* * ======== FUNCTION SELECTORS ======== */ /* These functions return function pointers for module and instance functions. * The functions accept modules and instances declared as types defined in this * interface, but they return functions defined for the actual objects passed * as parameters. These functions are not invoked by any generated code or * XDCtools internal code. */ /* getStackInfo_{FxnT,fxnP} */ typedef xdc_Bool (*ti_sysbios_interfaces_IHwi_getStackInfo_FxnT)(ti_sysbios_interfaces_IHwi_StackInfo* stkInfo, xdc_Bool computeStackDepth); static inline ti_sysbios_interfaces_IHwi_getStackInfo_FxnT ti_sysbios_interfaces_IHwi_getStackInfo_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_getStackInfo_FxnT ti_sysbios_interfaces_IHwi_getStackInfo_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_getStackInfo_FxnT)__mod->getStackInfo; } /* getCoreStackInfo_{FxnT,fxnP} */ typedef xdc_Bool (*ti_sysbios_interfaces_IHwi_getCoreStackInfo_FxnT)(ti_sysbios_interfaces_IHwi_StackInfo* stkInfo, xdc_Bool computeStackDepth, xdc_UInt coreId); static inline ti_sysbios_interfaces_IHwi_getCoreStackInfo_FxnT ti_sysbios_interfaces_IHwi_getCoreStackInfo_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_getCoreStackInfo_FxnT ti_sysbios_interfaces_IHwi_getCoreStackInfo_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_getCoreStackInfo_FxnT)__mod->getCoreStackInfo; } /* startup_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_IHwi_startup_FxnT)(void); static inline ti_sysbios_interfaces_IHwi_startup_FxnT ti_sysbios_interfaces_IHwi_startup_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_startup_FxnT ti_sysbios_interfaces_IHwi_startup_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_startup_FxnT)__mod->startup; } /* disable_{FxnT,fxnP} */ typedef xdc_UInt (*ti_sysbios_interfaces_IHwi_disable_FxnT)(void); static inline ti_sysbios_interfaces_IHwi_disable_FxnT ti_sysbios_interfaces_IHwi_disable_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_disable_FxnT ti_sysbios_interfaces_IHwi_disable_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_disable_FxnT)__mod->disable; } /* enable_{FxnT,fxnP} */ typedef xdc_UInt (*ti_sysbios_interfaces_IHwi_enable_FxnT)(void); static inline ti_sysbios_interfaces_IHwi_enable_FxnT ti_sysbios_interfaces_IHwi_enable_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_enable_FxnT ti_sysbios_interfaces_IHwi_enable_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_enable_FxnT)__mod->enable; } /* restore_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_IHwi_restore_FxnT)(xdc_UInt key); static inline ti_sysbios_interfaces_IHwi_restore_FxnT ti_sysbios_interfaces_IHwi_restore_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_restore_FxnT ti_sysbios_interfaces_IHwi_restore_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_restore_FxnT)__mod->restore; } /* switchFromBootStack_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_IHwi_switchFromBootStack_FxnT)(void); static inline ti_sysbios_interfaces_IHwi_switchFromBootStack_FxnT ti_sysbios_interfaces_IHwi_switchFromBootStack_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_switchFromBootStack_FxnT ti_sysbios_interfaces_IHwi_switchFromBootStack_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_switchFromBootStack_FxnT)__mod->switchFromBootStack; } /* post_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_IHwi_post_FxnT)(xdc_UInt intNum); static inline ti_sysbios_interfaces_IHwi_post_FxnT ti_sysbios_interfaces_IHwi_post_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_post_FxnT ti_sysbios_interfaces_IHwi_post_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_post_FxnT)__mod->post; } /* getTaskSP_{FxnT,fxnP} */ typedef xdc_Char *(*ti_sysbios_interfaces_IHwi_getTaskSP_FxnT)(void); static inline ti_sysbios_interfaces_IHwi_getTaskSP_FxnT ti_sysbios_interfaces_IHwi_getTaskSP_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_getTaskSP_FxnT ti_sysbios_interfaces_IHwi_getTaskSP_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_getTaskSP_FxnT)__mod->getTaskSP; } /* disableInterrupt_{FxnT,fxnP} */ typedef xdc_UInt (*ti_sysbios_interfaces_IHwi_disableInterrupt_FxnT)(xdc_UInt intNum); static inline ti_sysbios_interfaces_IHwi_disableInterrupt_FxnT ti_sysbios_interfaces_IHwi_disableInterrupt_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_disableInterrupt_FxnT ti_sysbios_interfaces_IHwi_disableInterrupt_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_disableInterrupt_FxnT)__mod->disableInterrupt; } /* enableInterrupt_{FxnT,fxnP} */ typedef xdc_UInt (*ti_sysbios_interfaces_IHwi_enableInterrupt_FxnT)(xdc_UInt intNum); static inline ti_sysbios_interfaces_IHwi_enableInterrupt_FxnT ti_sysbios_interfaces_IHwi_enableInterrupt_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_enableInterrupt_FxnT ti_sysbios_interfaces_IHwi_enableInterrupt_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_enableInterrupt_FxnT)__mod->enableInterrupt; } /* restoreInterrupt_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_IHwi_restoreInterrupt_FxnT)(xdc_UInt intNum, xdc_UInt key); static inline ti_sysbios_interfaces_IHwi_restoreInterrupt_FxnT ti_sysbios_interfaces_IHwi_restoreInterrupt_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_restoreInterrupt_FxnT ti_sysbios_interfaces_IHwi_restoreInterrupt_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_restoreInterrupt_FxnT)__mod->restoreInterrupt; } /* clearInterrupt_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_IHwi_clearInterrupt_FxnT)(xdc_UInt intNum); static inline ti_sysbios_interfaces_IHwi_clearInterrupt_FxnT ti_sysbios_interfaces_IHwi_clearInterrupt_fxnP(ti_sysbios_interfaces_IHwi_Module __mod); static inline ti_sysbios_interfaces_IHwi_clearInterrupt_FxnT ti_sysbios_interfaces_IHwi_clearInterrupt_fxnP(ti_sysbios_interfaces_IHwi_Module __mod) { return (ti_sysbios_interfaces_IHwi_clearInterrupt_FxnT)__mod->clearInterrupt; } /* getFunc_{FxnT,fxnP} */ typedef ti_sysbios_interfaces_IHwi_FuncPtr (*ti_sysbios_interfaces_IHwi_getFunc_FxnT)(void *__inst, xdc_UArg* arg); static inline ti_sysbios_interfaces_IHwi_getFunc_FxnT ti_sysbios_interfaces_IHwi_getFunc_fxnP(ti_sysbios_interfaces_IHwi_Handle __inst); static inline ti_sysbios_interfaces_IHwi_getFunc_FxnT ti_sysbios_interfaces_IHwi_getFunc_fxnP(ti_sysbios_interfaces_IHwi_Handle __inst) { return (ti_sysbios_interfaces_IHwi_getFunc_FxnT)__inst->__fxns->getFunc; } /* setFunc_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_IHwi_setFunc_FxnT)(void *__inst, ti_sysbios_interfaces_IHwi_FuncPtr fxn, xdc_UArg arg); static inline ti_sysbios_interfaces_IHwi_setFunc_FxnT ti_sysbios_interfaces_IHwi_setFunc_fxnP(ti_sysbios_interfaces_IHwi_Handle __inst); static inline ti_sysbios_interfaces_IHwi_setFunc_FxnT ti_sysbios_interfaces_IHwi_setFunc_fxnP(ti_sysbios_interfaces_IHwi_Handle __inst) { return (ti_sysbios_interfaces_IHwi_setFunc_FxnT)__inst->__fxns->setFunc; } /* getHookContext_{FxnT,fxnP} */ typedef xdc_Ptr (*ti_sysbios_interfaces_IHwi_getHookContext_FxnT)(void *__inst, xdc_Int id); static inline ti_sysbios_interfaces_IHwi_getHookContext_FxnT ti_sysbios_interfaces_IHwi_getHookContext_fxnP(ti_sysbios_interfaces_IHwi_Handle __inst); static inline ti_sysbios_interfaces_IHwi_getHookContext_FxnT ti_sysbios_interfaces_IHwi_getHookContext_fxnP(ti_sysbios_interfaces_IHwi_Handle __inst) { return (ti_sysbios_interfaces_IHwi_getHookContext_FxnT)__inst->__fxns->getHookContext; } /* setHookContext_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_IHwi_setHookContext_FxnT)(void *__inst, xdc_Int id, xdc_Ptr hookContext); static inline ti_sysbios_interfaces_IHwi_setHookContext_FxnT ti_sysbios_interfaces_IHwi_setHookContext_fxnP(ti_sysbios_interfaces_IHwi_Handle __inst); static inline ti_sysbios_interfaces_IHwi_setHookContext_FxnT ti_sysbios_interfaces_IHwi_setHookContext_fxnP(ti_sysbios_interfaces_IHwi_Handle __inst) { return (ti_sysbios_interfaces_IHwi_setHookContext_FxnT)__inst->__fxns->setHookContext; } /* getIrp_{FxnT,fxnP} */ typedef ti_sysbios_interfaces_IHwi_Irp (*ti_sysbios_interfaces_IHwi_getIrp_FxnT)(void *__inst); static inline ti_sysbios_interfaces_IHwi_getIrp_FxnT ti_sysbios_interfaces_IHwi_getIrp_fxnP(ti_sysbios_interfaces_IHwi_Handle __inst); static inline ti_sysbios_interfaces_IHwi_getIrp_FxnT ti_sysbios_interfaces_IHwi_getIrp_fxnP(ti_sysbios_interfaces_IHwi_Handle __inst) { return (ti_sysbios_interfaces_IHwi_getIrp_FxnT)__inst->__fxns->getIrp; } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef ti_sysbios_interfaces_IHwi_FuncPtr ti_sysbios_family_c28_Hwi_FuncPtr; /* Irp */ typedef ti_sysbios_interfaces_IHwi_Irp ti_sysbios_family_c28_Hwi_Irp; /* HookSet */ typedef ti_sysbios_interfaces_IHwi_HookSet ti_sysbios_family_c28_Hwi_HookSet; /* MaskingOption */ typedef ti_sysbios_interfaces_IHwi_MaskingOption ti_sysbios_family_c28_Hwi_MaskingOption; /* StackInfo */ typedef ti_sysbios_interfaces_IHwi_StackInfo ti_sysbios_family_c28_Hwi_StackInfo; /* NUM_INTERRUPTS */ /* PlugFuncPtr */ typedef void (*ti_sysbios_family_c28_Hwi_PlugFuncPtr)(void); /* MaskingOption_NONE */ /* MaskingOption_ALL */ /* MaskingOption_SELF */ /* MaskingOption_BITMASK */ /* MaskingOption_LOWER */ /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_family_c28_Hwi_Args__create { xdc_Int intNum; ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn; } ti_sysbios_family_c28_Hwi_Args__create; /* * ======== INTERNAL DEFINITIONS ======== */ /* PIEIER1_ADDR */ /* Instance_State */ typedef xdc_Ptr __T1_ti_sysbios_family_c28_Hwi_Instance_State__hookEnv; typedef xdc_Ptr *__ARRAY1_ti_sysbios_family_c28_Hwi_Instance_State__hookEnv; typedef const xdc_Ptr *__CARRAY1_ti_sysbios_family_c28_Hwi_Instance_State__hookEnv; typedef __ARRAY1_ti_sysbios_family_c28_Hwi_Instance_State__hookEnv __TA_ti_sysbios_family_c28_Hwi_Instance_State__hookEnv; /* Module_State */ typedef ti_sysbios_family_c28_Hwi_Handle __T1_ti_sysbios_family_c28_Hwi_Module_State__dispatchTable; typedef ti_sysbios_family_c28_Hwi_Handle *__ARRAY1_ti_sysbios_family_c28_Hwi_Module_State__dispatchTable; typedef const ti_sysbios_family_c28_Hwi_Handle *__CARRAY1_ti_sysbios_family_c28_Hwi_Module_State__dispatchTable; typedef __ARRAY1_ti_sysbios_family_c28_Hwi_Module_State__dispatchTable __TA_ti_sysbios_family_c28_Hwi_Module_State__dispatchTable; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_family_c28_Hwi_Module__diagsEnabled; extern const CT__ti_sysbios_family_c28_Hwi_Module__diagsEnabled ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_family_c28_Hwi_Module__diagsIncluded; extern const CT__ti_sysbios_family_c28_Hwi_Module__diagsIncluded ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_family_c28_Hwi_Module__diagsMask; extern const CT__ti_sysbios_family_c28_Hwi_Module__diagsMask ti_sysbios_family_c28_Hwi_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_family_c28_Hwi_Module__gateObj; extern const CT__ti_sysbios_family_c28_Hwi_Module__gateObj ti_sysbios_family_c28_Hwi_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_family_c28_Hwi_Module__gatePrms; extern const CT__ti_sysbios_family_c28_Hwi_Module__gatePrms ti_sysbios_family_c28_Hwi_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_family_c28_Hwi_Module__id; extern const CT__ti_sysbios_family_c28_Hwi_Module__id ti_sysbios_family_c28_Hwi_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_family_c28_Hwi_Module__loggerDefined; extern const CT__ti_sysbios_family_c28_Hwi_Module__loggerDefined ti_sysbios_family_c28_Hwi_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_family_c28_Hwi_Module__loggerObj; extern const CT__ti_sysbios_family_c28_Hwi_Module__loggerObj ti_sysbios_family_c28_Hwi_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn0; extern const CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn0 ti_sysbios_family_c28_Hwi_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn1; extern const CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn1 ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn2; extern const CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn2 ti_sysbios_family_c28_Hwi_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn4; extern const CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn4 ti_sysbios_family_c28_Hwi_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn8; extern const CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn8 ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_family_c28_Hwi_Object__count; extern const CT__ti_sysbios_family_c28_Hwi_Object__count ti_sysbios_family_c28_Hwi_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_family_c28_Hwi_Object__heap; extern const CT__ti_sysbios_family_c28_Hwi_Object__heap ti_sysbios_family_c28_Hwi_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_family_c28_Hwi_Object__sizeof; extern const CT__ti_sysbios_family_c28_Hwi_Object__sizeof ti_sysbios_family_c28_Hwi_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_family_c28_Hwi_Object__table; extern const CT__ti_sysbios_family_c28_Hwi_Object__table ti_sysbios_family_c28_Hwi_Object__table__C; /* dispatcherAutoNestingSupport */ typedef xdc_Bool CT__ti_sysbios_family_c28_Hwi_dispatcherAutoNestingSupport; extern const CT__ti_sysbios_family_c28_Hwi_dispatcherAutoNestingSupport ti_sysbios_family_c28_Hwi_dispatcherAutoNestingSupport__C; /* dispatcherSwiSupport */ typedef xdc_Bool CT__ti_sysbios_family_c28_Hwi_dispatcherSwiSupport; extern const CT__ti_sysbios_family_c28_Hwi_dispatcherSwiSupport ti_sysbios_family_c28_Hwi_dispatcherSwiSupport__C; /* dispatcherTaskSupport */ typedef xdc_Bool CT__ti_sysbios_family_c28_Hwi_dispatcherTaskSupport; extern const CT__ti_sysbios_family_c28_Hwi_dispatcherTaskSupport ti_sysbios_family_c28_Hwi_dispatcherTaskSupport__C; /* dispatcherIrpTrackingSupport */ typedef xdc_Bool CT__ti_sysbios_family_c28_Hwi_dispatcherIrpTrackingSupport; extern const CT__ti_sysbios_family_c28_Hwi_dispatcherIrpTrackingSupport ti_sysbios_family_c28_Hwi_dispatcherIrpTrackingSupport__C; /* NUM_INTERRUPTS_PIE */ typedef xdc_Int CT__ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_PIE; extern const CT__ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_PIE ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_PIE__C; /* NUM_INTERRUPTS_ALL */ typedef xdc_Int CT__ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL; extern const CT__ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL__C; /* A_badIntNum */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_family_c28_Hwi_A_badIntNum; extern const CT__ti_sysbios_family_c28_Hwi_A_badIntNum ti_sysbios_family_c28_Hwi_A_badIntNum__C; /* A_invalidArg */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_family_c28_Hwi_A_invalidArg; extern const CT__ti_sysbios_family_c28_Hwi_A_invalidArg ti_sysbios_family_c28_Hwi_A_invalidArg__C; /* A_zeroLatencyConflict */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_family_c28_Hwi_A_zeroLatencyConflict; extern const CT__ti_sysbios_family_c28_Hwi_A_zeroLatencyConflict ti_sysbios_family_c28_Hwi_A_zeroLatencyConflict__C; /* E_unpluggedInterrupt */ typedef xdc_runtime_Error_Id CT__ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt; extern const CT__ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C; /* E_alreadyDefined */ typedef xdc_runtime_Error_Id CT__ti_sysbios_family_c28_Hwi_E_alreadyDefined; extern const CT__ti_sysbios_family_c28_Hwi_E_alreadyDefined ti_sysbios_family_c28_Hwi_E_alreadyDefined__C; /* zeroLatencyIERMask */ typedef xdc_Bits16 CT__ti_sysbios_family_c28_Hwi_zeroLatencyIERMask; extern const CT__ti_sysbios_family_c28_Hwi_zeroLatencyIERMask ti_sysbios_family_c28_Hwi_zeroLatencyIERMask__C; /* LM_begin */ typedef xdc_runtime_Log_Event CT__ti_sysbios_family_c28_Hwi_LM_begin; extern const CT__ti_sysbios_family_c28_Hwi_LM_begin ti_sysbios_family_c28_Hwi_LM_begin__C; /* LD_end */ typedef xdc_runtime_Log_Event CT__ti_sysbios_family_c28_Hwi_LD_end; extern const CT__ti_sysbios_family_c28_Hwi_LD_end ti_sysbios_family_c28_Hwi_LD_end__C; /* swiDisable */ typedef xdc_UInt (*CT__ti_sysbios_family_c28_Hwi_swiDisable)(void); extern const CT__ti_sysbios_family_c28_Hwi_swiDisable ti_sysbios_family_c28_Hwi_swiDisable__C; /* swiRestoreHwi */ typedef void (*CT__ti_sysbios_family_c28_Hwi_swiRestoreHwi)(xdc_UInt __arg1); extern const CT__ti_sysbios_family_c28_Hwi_swiRestoreHwi ti_sysbios_family_c28_Hwi_swiRestoreHwi__C; /* taskDisable */ typedef xdc_UInt (*CT__ti_sysbios_family_c28_Hwi_taskDisable)(void); extern const CT__ti_sysbios_family_c28_Hwi_taskDisable ti_sysbios_family_c28_Hwi_taskDisable__C; /* taskRestoreHwi */ typedef void (*CT__ti_sysbios_family_c28_Hwi_taskRestoreHwi)(xdc_UInt __arg1); extern const CT__ti_sysbios_family_c28_Hwi_taskRestoreHwi ti_sysbios_family_c28_Hwi_taskRestoreHwi__C; /* hooks */ typedef ti_sysbios_family_c28_Hwi_HookSet __T1_ti_sysbios_family_c28_Hwi_hooks; typedef struct { int length; ti_sysbios_family_c28_Hwi_HookSet *elem; } __ARRAY1_ti_sysbios_family_c28_Hwi_hooks; typedef struct { int length; ti_sysbios_family_c28_Hwi_HookSet const *elem; } __CARRAY1_ti_sysbios_family_c28_Hwi_hooks; typedef __CARRAY1_ti_sysbios_family_c28_Hwi_hooks __TA_ti_sysbios_family_c28_Hwi_hooks; typedef __CARRAY1_ti_sysbios_family_c28_Hwi_hooks CT__ti_sysbios_family_c28_Hwi_hooks; extern const CT__ti_sysbios_family_c28_Hwi_hooks ti_sysbios_family_c28_Hwi_hooks__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_family_c28_Hwi_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; ti_sysbios_interfaces_IHwi_MaskingOption maskSetting; xdc_UArg arg; xdc_Bool enableInt; xdc_Int eventId; xdc_Int priority; xdc_Bits16 disableMask; xdc_Bits16 restoreMask; xdc_Bool enableAck; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_family_c28_Hwi_Struct { const ti_sysbios_family_c28_Hwi_Fxns__ *__fxns; xdc_UInt __f0; xdc_Bool __f1; xdc_Bool __f2; xdc_Bits16 __f3; xdc_Bits16 __f4; xdc_Bits16 __f5; xdc_UArg __f6; ti_sysbios_family_c28_Hwi_FuncPtr __f7; ti_sysbios_family_c28_Hwi_Irp __f8; __TA_ti_sysbios_family_c28_Hwi_Instance_State__hookEnv __f9; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_family_c28_Hwi_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bool (*getStackInfo)(ti_sysbios_interfaces_IHwi_StackInfo* stkInfo, xdc_Bool computeStackDepth); xdc_Bool (*getCoreStackInfo)(ti_sysbios_interfaces_IHwi_StackInfo* stkInfo, xdc_Bool computeStackDepth, xdc_UInt coreId); void (*startup)(void); xdc_UInt (*disable)(void); xdc_UInt (*enable)(void); void (*restore)(xdc_UInt key); void (*switchFromBootStack)(void); void (*post)(xdc_UInt intNum); xdc_Char *(*getTaskSP)(void); xdc_UInt (*disableInterrupt)(xdc_UInt intNum); xdc_UInt (*enableInterrupt)(xdc_UInt intNum); void (*restoreInterrupt)(xdc_UInt intNum, xdc_UInt key); void (*clearInterrupt)(xdc_UInt intNum); ti_sysbios_interfaces_IHwi_FuncPtr (*getFunc)(ti_sysbios_family_c28_Hwi_Handle __inst, xdc_UArg* arg); void (*setFunc)(ti_sysbios_family_c28_Hwi_Handle __inst, ti_sysbios_interfaces_IHwi_FuncPtr fxn, xdc_UArg arg); xdc_Ptr (*getHookContext)(ti_sysbios_family_c28_Hwi_Handle __inst, xdc_Int id); void (*setHookContext)(ti_sysbios_family_c28_Hwi_Handle __inst, xdc_Int id, xdc_Ptr hookContext); ti_sysbios_interfaces_IHwi_Irp (*getIrp)(ti_sysbios_family_c28_Hwi_Handle __inst); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_family_c28_Hwi_Fxns__ ti_sysbios_family_c28_Hwi_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ extern xdc_Int ti_sysbios_family_c28_Hwi_Module_startup__E( xdc_Int state ); extern xdc_Int ti_sysbios_family_c28_Hwi_Module_startup__F( xdc_Int state ); /* Instance_init__E */ extern xdc_Int ti_sysbios_family_c28_Hwi_Instance_init__E(ti_sysbios_family_c28_Hwi_Object *__obj, xdc_Int intNum, ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn, const ti_sysbios_family_c28_Hwi_Params *__prms, xdc_runtime_Error_Block *__eb); /* Instance_finalize__E */ extern void ti_sysbios_family_c28_Hwi_Instance_finalize__E(ti_sysbios_family_c28_Hwi_Object *__obj, int __ec); /* create */ extern ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_create( xdc_Int intNum, ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn, const ti_sysbios_family_c28_Hwi_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_family_c28_Hwi_construct( ti_sysbios_family_c28_Hwi_Struct *__obj, xdc_Int intNum, ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn, const ti_sysbios_family_c28_Hwi_Params *__prms, xdc_runtime_Error_Block *__eb ); /* delete */ extern void ti_sysbios_family_c28_Hwi_delete(ti_sysbios_family_c28_Hwi_Handle *instp); /* destruct */ extern void ti_sysbios_family_c28_Hwi_destruct(ti_sysbios_family_c28_Hwi_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_family_c28_Hwi_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_family_c28_Hwi_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_family_c28_Hwi_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_family_c28_Hwi_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_family_c28_Hwi_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_family_c28_Hwi_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_family_c28_Hwi_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_family_c28_Hwi_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* getStackInfo__E */ extern xdc_Bool ti_sysbios_family_c28_Hwi_getStackInfo__E( ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth ); /* getCoreStackInfo__E */ extern xdc_Bool ti_sysbios_family_c28_Hwi_getCoreStackInfo__E( ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth, xdc_UInt coreId ); /* startup__E */ extern void ti_sysbios_family_c28_Hwi_startup__E( void ); /* switchFromBootStack__E */ extern void ti_sysbios_family_c28_Hwi_switchFromBootStack__E( void ); /* post__E */ extern void ti_sysbios_family_c28_Hwi_post__E( xdc_UInt intNum ); /* getTaskSP__E */ extern xdc_Char *ti_sysbios_family_c28_Hwi_getTaskSP__E( void ); /* getFunc__E */ extern ti_sysbios_interfaces_IHwi_FuncPtr ti_sysbios_family_c28_Hwi_getFunc__E( ti_sysbios_family_c28_Hwi_Handle __inst, xdc_UArg *arg ); /* setFunc__E */ extern void ti_sysbios_family_c28_Hwi_setFunc__E( ti_sysbios_family_c28_Hwi_Handle __inst, ti_sysbios_interfaces_IHwi_FuncPtr fxn, xdc_UArg arg ); /* getHookContext__E */ extern xdc_Ptr ti_sysbios_family_c28_Hwi_getHookContext__E( ti_sysbios_family_c28_Hwi_Handle __inst, xdc_Int id ); /* setHookContext__E */ extern void ti_sysbios_family_c28_Hwi_setHookContext__E( ti_sysbios_family_c28_Hwi_Handle __inst, xdc_Int id, xdc_Ptr hookContext ); /* getIrp__E */ extern ti_sysbios_interfaces_IHwi_Irp ti_sysbios_family_c28_Hwi_getIrp__E( ti_sysbios_family_c28_Hwi_Handle __inst ); /* plug__E */ extern void ti_sysbios_family_c28_Hwi_plug__E( xdc_UInt intNum, ti_sysbios_family_c28_Hwi_PlugFuncPtr fxn ); /* getHandle__E */ extern ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_getHandle__E( xdc_UInt intNum ); /* disableInterrupt__E */ extern xdc_UInt ti_sysbios_family_c28_Hwi_disableInterrupt__E( xdc_UInt intNum ); /* enableInterrupt__E */ extern xdc_UInt ti_sysbios_family_c28_Hwi_enableInterrupt__E( xdc_UInt intNum ); /* restoreInterrupt__E */ extern void ti_sysbios_family_c28_Hwi_restoreInterrupt__E( xdc_UInt intNum, xdc_UInt key ); /* clearInterrupt__E */ extern void ti_sysbios_family_c28_Hwi_clearInterrupt__E( xdc_UInt intNum ); /* disableIER__E */ extern xdc_Bits16 ti_sysbios_family_c28_Hwi_disableIER__E( xdc_Bits16 mask ); /* enableIER__E */ extern xdc_Bits16 ti_sysbios_family_c28_Hwi_enableIER__E( xdc_Bits16 mask ); /* restoreIER__E */ extern xdc_Bits16 ti_sysbios_family_c28_Hwi_restoreIER__E( xdc_Bits16 mask ); /* enablePIEIER__E */ extern xdc_Bits16 ti_sysbios_family_c28_Hwi_enablePIEIER__E( xdc_UInt groupNum, xdc_Bits16 pieMask ); /* disablePIEIER__E */ extern xdc_Bits16 ti_sysbios_family_c28_Hwi_disablePIEIER__E( xdc_UInt groupNum, xdc_Bits16 pieMask ); /* restorePIEIER__E */ extern xdc_Bits16 ti_sysbios_family_c28_Hwi_restorePIEIER__E( xdc_UInt groupNum, xdc_Bits16 pieMask ); /* getInterruptFlag__E */ extern xdc_Bits16 ti_sysbios_family_c28_Hwi_getInterruptFlag__E( xdc_UInt intNum ); /* reconfig__E */ extern void ti_sysbios_family_c28_Hwi_reconfig__E( ti_sysbios_family_c28_Hwi_Handle __inst, ti_sysbios_family_c28_Hwi_FuncPtr fxn, const ti_sysbios_family_c28_Hwi_Params *params ); /* postInit__I */ extern xdc_Int ti_sysbios_family_c28_Hwi_postInit__I( ti_sysbios_family_c28_Hwi_Object *hwi, xdc_runtime_Error_Block *eb ); /* getIFR__I */ extern xdc_Bits16 ti_sysbios_family_c28_Hwi_getIFR__I( void ); /* ack__I */ extern void ti_sysbios_family_c28_Hwi_ack__I( ti_sysbios_family_c28_Hwi_Handle hwi ); /* interruptReturn__I */ extern void ti_sysbios_family_c28_Hwi_interruptReturn__I( void ); /* getIERBit__I */ extern xdc_Bits16 ti_sysbios_family_c28_Hwi_getIERBit__I( xdc_UInt intNum ); /* dispatchC__I */ extern void ti_sysbios_family_c28_Hwi_dispatchC__I( xdc_Int intNum ); /* dispatchCore__I */ extern void ti_sysbios_family_c28_Hwi_dispatchCore__I( xdc_Int intNum ); /* switchAndDispatch__I */ extern void ti_sysbios_family_c28_Hwi_switchAndDispatch__I( xdc_Int intNum ); /* unPluggedInterrupt__I */ extern void ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I( void ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_IHwi_Module ti_sysbios_family_c28_Hwi_Module_upCast(void); static inline ti_sysbios_interfaces_IHwi_Module ti_sysbios_family_c28_Hwi_Module_upCast(void) { return (ti_sysbios_interfaces_IHwi_Module)&ti_sysbios_family_c28_Hwi_Module__FXNS__C; } /* Module_to_ti_sysbios_interfaces_IHwi */ /* Handle_upCast */ static inline ti_sysbios_interfaces_IHwi_Handle ti_sysbios_family_c28_Hwi_Handle_upCast(ti_sysbios_family_c28_Hwi_Handle i); static inline ti_sysbios_interfaces_IHwi_Handle ti_sysbios_family_c28_Hwi_Handle_upCast(ti_sysbios_family_c28_Hwi_Handle i) { return (ti_sysbios_interfaces_IHwi_Handle)i; } /* Handle_to_ti_sysbios_interfaces_IHwi */ /* Handle_downCast */ static inline ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_Handle_downCast(ti_sysbios_interfaces_IHwi_Handle i); static inline ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_Handle_downCast(ti_sysbios_interfaces_IHwi_Handle i) { ti_sysbios_interfaces_IHwi_Handle i2 = (ti_sysbios_interfaces_IHwi_Handle)i; return (const void*)i2->__fxns == (const void*)&ti_sysbios_family_c28_Hwi_Module__FXNS__C ? (ti_sysbios_family_c28_Hwi_Handle)i : (ti_sysbios_family_c28_Hwi_Handle)0; } /* Handle_from_ti_sysbios_interfaces_IHwi */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_family_c28_Hwi_Module__id ti_sysbios_family_c28_Hwi_Module_id(void); static inline CT__ti_sysbios_family_c28_Hwi_Module__id ti_sysbios_family_c28_Hwi_Module_id( void ) { return ti_sysbios_family_c28_Hwi_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_family_c28_Hwi_Module_hasMask(void); static inline xdc_Bool ti_sysbios_family_c28_Hwi_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_family_c28_Hwi_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_family_c28_Hwi_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_family_c28_Hwi_Module_getMask( void ) { return ti_sysbios_family_c28_Hwi_Module__diagsMask__C != 0 ? *ti_sysbios_family_c28_Hwi_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_family_c28_Hwi_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_family_c28_Hwi_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_family_c28_Hwi_Module__diagsMask__C != 0) { *ti_sysbios_family_c28_Hwi_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_family_c28_Hwi_Params_init(ti_sysbios_family_c28_Hwi_Params *prms); static inline void ti_sysbios_family_c28_Hwi_Params_init( ti_sysbios_family_c28_Hwi_Params *prms ) { if (prms) { ti_sysbios_family_c28_Hwi_Params__init__S(prms, 0, sizeof(ti_sysbios_family_c28_Hwi_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_family_c28_Hwi_Params_copy(ti_sysbios_family_c28_Hwi_Params *dst, const ti_sysbios_family_c28_Hwi_Params *src); static inline void ti_sysbios_family_c28_Hwi_Params_copy(ti_sysbios_family_c28_Hwi_Params *dst, const ti_sysbios_family_c28_Hwi_Params *src) { if (dst) { ti_sysbios_family_c28_Hwi_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_family_c28_Hwi_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_Object_get(ti_sysbios_family_c28_Hwi_Instance_State *oarr, int i); static inline ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_Object_get(ti_sysbios_family_c28_Hwi_Instance_State *oarr, int i) { return (ti_sysbios_family_c28_Hwi_Handle)ti_sysbios_family_c28_Hwi_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_Object_first(void); static inline ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_Object_first(void) { return (ti_sysbios_family_c28_Hwi_Handle)ti_sysbios_family_c28_Hwi_Object__first__S(); } /* Object_next */ static inline ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_Object_next(ti_sysbios_family_c28_Hwi_Object *obj); static inline ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_Object_next(ti_sysbios_family_c28_Hwi_Object *obj) { return (ti_sysbios_family_c28_Hwi_Handle)ti_sysbios_family_c28_Hwi_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_family_c28_Hwi_Handle_label(ti_sysbios_family_c28_Hwi_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_family_c28_Hwi_Handle_label(ti_sysbios_family_c28_Hwi_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_family_c28_Hwi_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_family_c28_Hwi_Handle_name(ti_sysbios_family_c28_Hwi_Handle inst); static inline xdc_String ti_sysbios_family_c28_Hwi_Handle_name(ti_sysbios_family_c28_Hwi_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_family_c28_Hwi_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_handle(ti_sysbios_family_c28_Hwi_Struct *str); static inline ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_handle(ti_sysbios_family_c28_Hwi_Struct *str) { return (ti_sysbios_family_c28_Hwi_Handle)str; } /* struct */ static inline ti_sysbios_family_c28_Hwi_Struct *ti_sysbios_family_c28_Hwi_struct(ti_sysbios_family_c28_Hwi_Handle inst); static inline ti_sysbios_family_c28_Hwi_Struct *ti_sysbios_family_c28_Hwi_struct(ti_sysbios_family_c28_Hwi_Handle inst) { return (ti_sysbios_family_c28_Hwi_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2013-2014, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ extern UInt ti_sysbios_family_c28_Hwi_enable__E(); extern UInt ti_sysbios_family_c28_Hwi_disable__E(); extern void ti_sysbios_family_c28_Hwi_restore__E(UInt key); /* * ======== Hwi_disable ======== */ inline UInt ti_sysbios_family_c28_Hwi_disable() { return (ti_sysbios_family_c28_Hwi_disable__E()); } /* * ======== Hwi_enable ======== */ inline UInt ti_sysbios_family_c28_Hwi_enable() { return (ti_sysbios_family_c28_Hwi_enable__E()); } /* * ======== Hwi_restore ======== */ inline void ti_sysbios_family_c28_Hwi_restore(UInt key) { ti_sysbios_family_c28_Hwi_restore__E(key); } /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct ti_sysbios_family_c28_Hwi_Module_State { xdc_Bits16 ierMask; xdc_Char *isrStack; xdc_Char *taskSP; __TA_ti_sysbios_family_c28_Hwi_Module_State__dispatchTable dispatchTable; ti_sysbios_family_c28_Hwi_Irp irp; xdc_Bool globalEnable; xdc_Bits16 shadowIER; xdc_Ptr isrStackBase; xdc_Ptr isrStackSize; }; /* Module__state__V */ extern struct ti_sysbios_family_c28_Hwi_Module_State__ ti_sysbios_family_c28_Hwi_Module__state__V; /* Object */ struct ti_sysbios_family_c28_Hwi_Object { const ti_sysbios_family_c28_Hwi_Fxns__ *__fxns; xdc_UInt intNum; xdc_Bool enableInt; xdc_Bool enableAck; xdc_Bits16 disableMask; xdc_Bits16 restoreMask; xdc_Bits16 ierBitMask; xdc_UArg arg; ti_sysbios_family_c28_Hwi_FuncPtr fxn; ti_sysbios_family_c28_Hwi_Irp irp; __TA_ti_sysbios_family_c28_Hwi_Instance_State__hookEnv hookEnv; }; /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_interfaces_IIntrinsicsSupport_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_UInt (*maxbit)(xdc_UInt bits); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base ti_sysbios_interfaces_IIntrinsicsSupport_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* Module_id */ static inline xdc_runtime_Types_ModuleId ti_sysbios_interfaces_IIntrinsicsSupport_Module_id(ti_sysbios_interfaces_IIntrinsicsSupport_Module mod); static inline xdc_runtime_Types_ModuleId ti_sysbios_interfaces_IIntrinsicsSupport_Module_id(ti_sysbios_interfaces_IIntrinsicsSupport_Module mod) { return mod->__sysp->__mid; } /* maxbit */ static inline xdc_UInt ti_sysbios_interfaces_IIntrinsicsSupport_maxbit(ti_sysbios_interfaces_IIntrinsicsSupport_Module __mod, xdc_UInt bits); static inline xdc_UInt ti_sysbios_interfaces_IIntrinsicsSupport_maxbit( ti_sysbios_interfaces_IIntrinsicsSupport_Module __mod, xdc_UInt bits ) { return __mod->maxbit(bits); } /* * ======== FUNCTION SELECTORS ======== */ /* These functions return function pointers for module and instance functions. * The functions accept modules and instances declared as types defined in this * interface, but they return functions defined for the actual objects passed * as parameters. These functions are not invoked by any generated code or * XDCtools internal code. */ /* maxbit_{FxnT,fxnP} */ typedef xdc_UInt (*ti_sysbios_interfaces_IIntrinsicsSupport_maxbit_FxnT)(xdc_UInt bits); static inline ti_sysbios_interfaces_IIntrinsicsSupport_maxbit_FxnT ti_sysbios_interfaces_IIntrinsicsSupport_maxbit_fxnP(ti_sysbios_interfaces_IIntrinsicsSupport_Module __mod); static inline ti_sysbios_interfaces_IIntrinsicsSupport_maxbit_FxnT ti_sysbios_interfaces_IIntrinsicsSupport_maxbit_fxnP(ti_sysbios_interfaces_IIntrinsicsSupport_Module __mod) { return (ti_sysbios_interfaces_IIntrinsicsSupport_maxbit_FxnT)__mod->maxbit; } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsEnabled; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsEnabled ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsIncluded; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsIncluded ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__gateObj; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__gateObj ti_sysbios_family_c28_IntrinsicsSupport_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__gatePrms; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__gatePrms ti_sysbios_family_c28_IntrinsicsSupport_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__id; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__id ti_sysbios_family_c28_IntrinsicsSupport_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerDefined; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerDefined ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerObj; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerObj ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn0; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn0 ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn1; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn1 ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn2; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn2 ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn4; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn4 ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn8; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn8 ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_family_c28_IntrinsicsSupport_Object__count; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Object__count ti_sysbios_family_c28_IntrinsicsSupport_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_family_c28_IntrinsicsSupport_Object__heap; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Object__heap ti_sysbios_family_c28_IntrinsicsSupport_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_family_c28_IntrinsicsSupport_Object__sizeof; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Object__sizeof ti_sysbios_family_c28_IntrinsicsSupport_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_family_c28_IntrinsicsSupport_Object__table; extern const CT__ti_sysbios_family_c28_IntrinsicsSupport_Object__table ti_sysbios_family_c28_IntrinsicsSupport_Object__table__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_family_c28_IntrinsicsSupport_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_UInt (*maxbit)(xdc_UInt bits); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_family_c28_IntrinsicsSupport_Fxns__ ti_sysbios_family_c28_IntrinsicsSupport_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_family_c28_IntrinsicsSupport_Module__startupDone__S( void ); /* maxbit__E */ extern xdc_UInt ti_sysbios_family_c28_IntrinsicsSupport_maxbit__E( xdc_UInt bits ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_IIntrinsicsSupport_Module ti_sysbios_family_c28_IntrinsicsSupport_Module_upCast(void); static inline ti_sysbios_interfaces_IIntrinsicsSupport_Module ti_sysbios_family_c28_IntrinsicsSupport_Module_upCast(void) { return (ti_sysbios_interfaces_IIntrinsicsSupport_Module)&ti_sysbios_family_c28_IntrinsicsSupport_Module__FXNS__C; } /* Module_to_ti_sysbios_interfaces_IIntrinsicsSupport */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__id ti_sysbios_family_c28_IntrinsicsSupport_Module_id(void); static inline CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__id ti_sysbios_family_c28_IntrinsicsSupport_Module_id( void ) { return ti_sysbios_family_c28_IntrinsicsSupport_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_family_c28_IntrinsicsSupport_Module_hasMask(void); static inline xdc_Bool ti_sysbios_family_c28_IntrinsicsSupport_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_family_c28_IntrinsicsSupport_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_family_c28_IntrinsicsSupport_Module_getMask( void ) { return ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask__C != 0 ? *ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_family_c28_IntrinsicsSupport_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_family_c28_IntrinsicsSupport_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask__C != 0) { *ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef void (*ti_sysbios_interfaces_ITaskSupport_FuncPtr)(void); /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_interfaces_ITaskSupport_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Ptr (*start)(xdc_Ptr curTask, ti_sysbios_interfaces_ITaskSupport_FuncPtr enter, ti_sysbios_interfaces_ITaskSupport_FuncPtr exit, xdc_runtime_Error_Block* eb); void (*swap)(xdc_Ptr* oldtskContext, xdc_Ptr* newtskContext); xdc_Bool (*checkStack)(xdc_Char* stack, xdc_SizeT size); xdc_SizeT (*stackUsed)(xdc_Char* stack, xdc_SizeT size); xdc_UInt (*getStackAlignment)(void); xdc_SizeT (*getDefaultStackSize)(void); xdc_Ptr (*getCheckValueAddr)(xdc_Ptr curTask); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base ti_sysbios_interfaces_ITaskSupport_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* Module_id */ static inline xdc_runtime_Types_ModuleId ti_sysbios_interfaces_ITaskSupport_Module_id(ti_sysbios_interfaces_ITaskSupport_Module mod); static inline xdc_runtime_Types_ModuleId ti_sysbios_interfaces_ITaskSupport_Module_id(ti_sysbios_interfaces_ITaskSupport_Module mod) { return mod->__sysp->__mid; } /* start */ static inline xdc_Ptr ti_sysbios_interfaces_ITaskSupport_start(ti_sysbios_interfaces_ITaskSupport_Module __mod, xdc_Ptr curTask, ti_sysbios_interfaces_ITaskSupport_FuncPtr enter, ti_sysbios_interfaces_ITaskSupport_FuncPtr exit, xdc_runtime_Error_Block *eb); static inline xdc_Ptr ti_sysbios_interfaces_ITaskSupport_start( ti_sysbios_interfaces_ITaskSupport_Module __mod, xdc_Ptr curTask, ti_sysbios_interfaces_ITaskSupport_FuncPtr enter, ti_sysbios_interfaces_ITaskSupport_FuncPtr exit, xdc_runtime_Error_Block *eb ) { return __mod->start(curTask, enter, exit, eb); } /* swap */ static inline void ti_sysbios_interfaces_ITaskSupport_swap(ti_sysbios_interfaces_ITaskSupport_Module __mod, xdc_Ptr *oldtskContext, xdc_Ptr *newtskContext); static inline void ti_sysbios_interfaces_ITaskSupport_swap( ti_sysbios_interfaces_ITaskSupport_Module __mod, xdc_Ptr *oldtskContext, xdc_Ptr *newtskContext ) { __mod->swap(oldtskContext, newtskContext); } /* checkStack */ static inline xdc_Bool ti_sysbios_interfaces_ITaskSupport_checkStack(ti_sysbios_interfaces_ITaskSupport_Module __mod, xdc_Char *stack, xdc_SizeT size); static inline xdc_Bool ti_sysbios_interfaces_ITaskSupport_checkStack( ti_sysbios_interfaces_ITaskSupport_Module __mod, xdc_Char *stack, xdc_SizeT size ) { return __mod->checkStack(stack, size); } /* stackUsed */ static inline xdc_SizeT ti_sysbios_interfaces_ITaskSupport_stackUsed(ti_sysbios_interfaces_ITaskSupport_Module __mod, xdc_Char *stack, xdc_SizeT size); static inline xdc_SizeT ti_sysbios_interfaces_ITaskSupport_stackUsed( ti_sysbios_interfaces_ITaskSupport_Module __mod, xdc_Char *stack, xdc_SizeT size ) { return __mod->stackUsed(stack, size); } /* getStackAlignment */ static inline xdc_UInt ti_sysbios_interfaces_ITaskSupport_getStackAlignment(ti_sysbios_interfaces_ITaskSupport_Module __mod); static inline xdc_UInt ti_sysbios_interfaces_ITaskSupport_getStackAlignment( ti_sysbios_interfaces_ITaskSupport_Module __mod ) { return __mod->getStackAlignment(); } /* getDefaultStackSize */ static inline xdc_SizeT ti_sysbios_interfaces_ITaskSupport_getDefaultStackSize(ti_sysbios_interfaces_ITaskSupport_Module __mod); static inline xdc_SizeT ti_sysbios_interfaces_ITaskSupport_getDefaultStackSize( ti_sysbios_interfaces_ITaskSupport_Module __mod ) { return __mod->getDefaultStackSize(); } /* getCheckValueAddr */ static inline xdc_Ptr ti_sysbios_interfaces_ITaskSupport_getCheckValueAddr(ti_sysbios_interfaces_ITaskSupport_Module __mod, xdc_Ptr curTask); static inline xdc_Ptr ti_sysbios_interfaces_ITaskSupport_getCheckValueAddr( ti_sysbios_interfaces_ITaskSupport_Module __mod, xdc_Ptr curTask ) { return __mod->getCheckValueAddr(curTask); } /* * ======== FUNCTION SELECTORS ======== */ /* These functions return function pointers for module and instance functions. * The functions accept modules and instances declared as types defined in this * interface, but they return functions defined for the actual objects passed * as parameters. These functions are not invoked by any generated code or * XDCtools internal code. */ /* start_{FxnT,fxnP} */ typedef xdc_Ptr (*ti_sysbios_interfaces_ITaskSupport_start_FxnT)(xdc_Ptr curTask, ti_sysbios_interfaces_ITaskSupport_FuncPtr enter, ti_sysbios_interfaces_ITaskSupport_FuncPtr exit, xdc_runtime_Error_Block* eb); static inline ti_sysbios_interfaces_ITaskSupport_start_FxnT ti_sysbios_interfaces_ITaskSupport_start_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod); static inline ti_sysbios_interfaces_ITaskSupport_start_FxnT ti_sysbios_interfaces_ITaskSupport_start_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod) { return (ti_sysbios_interfaces_ITaskSupport_start_FxnT)__mod->start; } /* swap_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ITaskSupport_swap_FxnT)(xdc_Ptr* oldtskContext, xdc_Ptr* newtskContext); static inline ti_sysbios_interfaces_ITaskSupport_swap_FxnT ti_sysbios_interfaces_ITaskSupport_swap_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod); static inline ti_sysbios_interfaces_ITaskSupport_swap_FxnT ti_sysbios_interfaces_ITaskSupport_swap_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod) { return (ti_sysbios_interfaces_ITaskSupport_swap_FxnT)__mod->swap; } /* checkStack_{FxnT,fxnP} */ typedef xdc_Bool (*ti_sysbios_interfaces_ITaskSupport_checkStack_FxnT)(xdc_Char* stack, xdc_SizeT size); static inline ti_sysbios_interfaces_ITaskSupport_checkStack_FxnT ti_sysbios_interfaces_ITaskSupport_checkStack_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod); static inline ti_sysbios_interfaces_ITaskSupport_checkStack_FxnT ti_sysbios_interfaces_ITaskSupport_checkStack_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod) { return (ti_sysbios_interfaces_ITaskSupport_checkStack_FxnT)__mod->checkStack; } /* stackUsed_{FxnT,fxnP} */ typedef xdc_SizeT (*ti_sysbios_interfaces_ITaskSupport_stackUsed_FxnT)(xdc_Char* stack, xdc_SizeT size); static inline ti_sysbios_interfaces_ITaskSupport_stackUsed_FxnT ti_sysbios_interfaces_ITaskSupport_stackUsed_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod); static inline ti_sysbios_interfaces_ITaskSupport_stackUsed_FxnT ti_sysbios_interfaces_ITaskSupport_stackUsed_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod) { return (ti_sysbios_interfaces_ITaskSupport_stackUsed_FxnT)__mod->stackUsed; } /* getStackAlignment_{FxnT,fxnP} */ typedef xdc_UInt (*ti_sysbios_interfaces_ITaskSupport_getStackAlignment_FxnT)(void); static inline ti_sysbios_interfaces_ITaskSupport_getStackAlignment_FxnT ti_sysbios_interfaces_ITaskSupport_getStackAlignment_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod); static inline ti_sysbios_interfaces_ITaskSupport_getStackAlignment_FxnT ti_sysbios_interfaces_ITaskSupport_getStackAlignment_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod) { return (ti_sysbios_interfaces_ITaskSupport_getStackAlignment_FxnT)__mod->getStackAlignment; } /* getDefaultStackSize_{FxnT,fxnP} */ typedef xdc_SizeT (*ti_sysbios_interfaces_ITaskSupport_getDefaultStackSize_FxnT)(void); static inline ti_sysbios_interfaces_ITaskSupport_getDefaultStackSize_FxnT ti_sysbios_interfaces_ITaskSupport_getDefaultStackSize_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod); static inline ti_sysbios_interfaces_ITaskSupport_getDefaultStackSize_FxnT ti_sysbios_interfaces_ITaskSupport_getDefaultStackSize_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod) { return (ti_sysbios_interfaces_ITaskSupport_getDefaultStackSize_FxnT)__mod->getDefaultStackSize; } /* getCheckValueAddr_{FxnT,fxnP} */ typedef xdc_Ptr (*ti_sysbios_interfaces_ITaskSupport_getCheckValueAddr_FxnT)(xdc_Ptr curTask); static inline ti_sysbios_interfaces_ITaskSupport_getCheckValueAddr_FxnT ti_sysbios_interfaces_ITaskSupport_getCheckValueAddr_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod); static inline ti_sysbios_interfaces_ITaskSupport_getCheckValueAddr_FxnT ti_sysbios_interfaces_ITaskSupport_getCheckValueAddr_fxnP(ti_sysbios_interfaces_ITaskSupport_Module __mod) { return (ti_sysbios_interfaces_ITaskSupport_getCheckValueAddr_FxnT)__mod->getCheckValueAddr; } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef ti_sysbios_interfaces_ITaskSupport_FuncPtr ti_sysbios_family_c28_TaskSupport_FuncPtr; /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_family_c28_TaskSupport_Module__diagsEnabled; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__diagsEnabled ti_sysbios_family_c28_TaskSupport_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_family_c28_TaskSupport_Module__diagsIncluded; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__diagsIncluded ti_sysbios_family_c28_TaskSupport_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_family_c28_TaskSupport_Module__diagsMask; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__diagsMask ti_sysbios_family_c28_TaskSupport_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_family_c28_TaskSupport_Module__gateObj; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__gateObj ti_sysbios_family_c28_TaskSupport_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_family_c28_TaskSupport_Module__gatePrms; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__gatePrms ti_sysbios_family_c28_TaskSupport_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_family_c28_TaskSupport_Module__id; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__id ti_sysbios_family_c28_TaskSupport_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_family_c28_TaskSupport_Module__loggerDefined; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerDefined ti_sysbios_family_c28_TaskSupport_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_family_c28_TaskSupport_Module__loggerObj; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerObj ti_sysbios_family_c28_TaskSupport_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn0; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn0 ti_sysbios_family_c28_TaskSupport_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn1; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn1 ti_sysbios_family_c28_TaskSupport_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn2; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn2 ti_sysbios_family_c28_TaskSupport_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn4; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn4 ti_sysbios_family_c28_TaskSupport_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn8; extern const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn8 ti_sysbios_family_c28_TaskSupport_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_family_c28_TaskSupport_Object__count; extern const CT__ti_sysbios_family_c28_TaskSupport_Object__count ti_sysbios_family_c28_TaskSupport_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_family_c28_TaskSupport_Object__heap; extern const CT__ti_sysbios_family_c28_TaskSupport_Object__heap ti_sysbios_family_c28_TaskSupport_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_family_c28_TaskSupport_Object__sizeof; extern const CT__ti_sysbios_family_c28_TaskSupport_Object__sizeof ti_sysbios_family_c28_TaskSupport_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_family_c28_TaskSupport_Object__table; extern const CT__ti_sysbios_family_c28_TaskSupport_Object__table ti_sysbios_family_c28_TaskSupport_Object__table__C; /* E_invalidStack */ typedef xdc_runtime_Error_Id CT__ti_sysbios_family_c28_TaskSupport_E_invalidStack; extern const CT__ti_sysbios_family_c28_TaskSupport_E_invalidStack ti_sysbios_family_c28_TaskSupport_E_invalidStack__C; /* defaultStackSize */ typedef xdc_SizeT CT__ti_sysbios_family_c28_TaskSupport_defaultStackSize; extern const CT__ti_sysbios_family_c28_TaskSupport_defaultStackSize ti_sysbios_family_c28_TaskSupport_defaultStackSize__C; /* stackAlignment */ typedef xdc_UInt CT__ti_sysbios_family_c28_TaskSupport_stackAlignment; extern const CT__ti_sysbios_family_c28_TaskSupport_stackAlignment ti_sysbios_family_c28_TaskSupport_stackAlignment__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_family_c28_TaskSupport_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Ptr (*start)(xdc_Ptr curTask, ti_sysbios_interfaces_ITaskSupport_FuncPtr enter, ti_sysbios_interfaces_ITaskSupport_FuncPtr exit, xdc_runtime_Error_Block* eb); void (*swap)(xdc_Ptr* oldtskContext, xdc_Ptr* newtskContext); xdc_Bool (*checkStack)(xdc_Char* stack, xdc_SizeT size); xdc_SizeT (*stackUsed)(xdc_Char* stack, xdc_SizeT size); xdc_UInt (*getStackAlignment)(void); xdc_SizeT (*getDefaultStackSize)(void); xdc_Ptr (*getCheckValueAddr)(xdc_Ptr curTask); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_family_c28_TaskSupport_Fxns__ ti_sysbios_family_c28_TaskSupport_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_family_c28_TaskSupport_Module__startupDone__S( void ); /* start__E */ extern xdc_Ptr ti_sysbios_family_c28_TaskSupport_start__E( xdc_Ptr curTask, ti_sysbios_interfaces_ITaskSupport_FuncPtr enter, ti_sysbios_interfaces_ITaskSupport_FuncPtr exit, xdc_runtime_Error_Block *eb ); /* swap__E */ extern void ti_sysbios_family_c28_TaskSupport_swap__E( xdc_Ptr *oldtskContext, xdc_Ptr *newtskContext ); /* checkStack__E */ extern xdc_Bool ti_sysbios_family_c28_TaskSupport_checkStack__E( xdc_Char *stack, xdc_SizeT size ); /* stackUsed__E */ extern xdc_SizeT ti_sysbios_family_c28_TaskSupport_stackUsed__E( xdc_Char *stack, xdc_SizeT size ); /* getStackAlignment__E */ extern xdc_UInt ti_sysbios_family_c28_TaskSupport_getStackAlignment__E( void ); /* getDefaultStackSize__E */ extern xdc_SizeT ti_sysbios_family_c28_TaskSupport_getDefaultStackSize__E( void ); /* getCheckValueAddr__E */ extern xdc_Ptr ti_sysbios_family_c28_TaskSupport_getCheckValueAddr__E( xdc_Ptr curTask ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_ITaskSupport_Module ti_sysbios_family_c28_TaskSupport_Module_upCast(void); static inline ti_sysbios_interfaces_ITaskSupport_Module ti_sysbios_family_c28_TaskSupport_Module_upCast(void) { return (ti_sysbios_interfaces_ITaskSupport_Module)&ti_sysbios_family_c28_TaskSupport_Module__FXNS__C; } /* Module_to_ti_sysbios_interfaces_ITaskSupport */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_family_c28_TaskSupport_Module__id ti_sysbios_family_c28_TaskSupport_Module_id(void); static inline CT__ti_sysbios_family_c28_TaskSupport_Module__id ti_sysbios_family_c28_TaskSupport_Module_id( void ) { return ti_sysbios_family_c28_TaskSupport_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_family_c28_TaskSupport_Module_hasMask(void); static inline xdc_Bool ti_sysbios_family_c28_TaskSupport_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_family_c28_TaskSupport_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_family_c28_TaskSupport_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_family_c28_TaskSupport_Module_getMask( void ) { return ti_sysbios_family_c28_TaskSupport_Module__diagsMask__C != 0 ? *ti_sysbios_family_c28_TaskSupport_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_family_c28_TaskSupport_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_family_c28_TaskSupport_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_family_c28_TaskSupport_Module__diagsMask__C != 0) { *ti_sysbios_family_c28_TaskSupport_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef void (*ti_sysbios_interfaces_ITimer_FuncPtr)(xdc_UArg __arg1); /* ANY */ /* StartMode */ enum ti_sysbios_interfaces_ITimer_StartMode { ti_sysbios_interfaces_ITimer_StartMode_AUTO, ti_sysbios_interfaces_ITimer_StartMode_USER }; typedef enum ti_sysbios_interfaces_ITimer_StartMode ti_sysbios_interfaces_ITimer_StartMode; /* RunMode */ enum ti_sysbios_interfaces_ITimer_RunMode { ti_sysbios_interfaces_ITimer_RunMode_CONTINUOUS, ti_sysbios_interfaces_ITimer_RunMode_ONESHOT, ti_sysbios_interfaces_ITimer_RunMode_DYNAMIC }; typedef enum ti_sysbios_interfaces_ITimer_RunMode ti_sysbios_interfaces_ITimer_RunMode; /* Status */ enum ti_sysbios_interfaces_ITimer_Status { ti_sysbios_interfaces_ITimer_Status_INUSE, ti_sysbios_interfaces_ITimer_Status_FREE }; typedef enum ti_sysbios_interfaces_ITimer_Status ti_sysbios_interfaces_ITimer_Status; /* PeriodType */ enum ti_sysbios_interfaces_ITimer_PeriodType { ti_sysbios_interfaces_ITimer_PeriodType_MICROSECS, ti_sysbios_interfaces_ITimer_PeriodType_COUNTS }; typedef enum ti_sysbios_interfaces_ITimer_PeriodType ti_sysbios_interfaces_ITimer_PeriodType; /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_interfaces_ITimer_Args__create { xdc_Int id; ti_sysbios_interfaces_ITimer_FuncPtr tickFxn; } ti_sysbios_interfaces_ITimer_Args__create; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_interfaces_ITimer_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; ti_sysbios_interfaces_ITimer_RunMode runMode; ti_sysbios_interfaces_ITimer_StartMode startMode; xdc_UArg arg; xdc_UInt32 period; ti_sysbios_interfaces_ITimer_PeriodType periodType; xdc_runtime_Types_FreqHz extFreq; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_interfaces_ITimer_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_UInt (*getNumTimers)(void); ti_sysbios_interfaces_ITimer_Status (*getStatus)(xdc_UInt id); void (*startup)(void); xdc_UInt32 (*getMaxTicks)(void* __inst); void (*setNextTick)(void* __inst, xdc_UInt32 ticks); void (*start)(void* __inst); void (*stop)(void* __inst); void (*setPeriod)(void* __inst, xdc_UInt32 period); xdc_Bool (*setPeriodMicroSecs)(void* __inst, xdc_UInt32 microsecs); xdc_UInt32 (*getPeriod)(void* __inst); xdc_UInt32 (*getCount)(void* __inst); void (*getFreq)(void* __inst, xdc_runtime_Types_FreqHz* freq); ti_sysbios_interfaces_ITimer_FuncPtr (*getFunc)(void* __inst, xdc_UArg* arg); void (*setFunc)(void* __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg); void (*trigger)(void* __inst, xdc_UInt32 cycles); xdc_UInt32 (*getExpiredCounts)(void* __inst); xdc_UInt32 (*getExpiredTicks)(void* __inst, xdc_UInt32 tickPeriod); xdc_UInt32 (*getCurrentTick)(void* __inst, xdc_Bool save); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base ti_sysbios_interfaces_ITimer_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* create */ extern ti_sysbios_interfaces_ITimer_Handle ti_sysbios_interfaces_ITimer_create(ti_sysbios_interfaces_ITimer_Module __mod, xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_interfaces_ITimer_Params *__prms, xdc_runtime_Error_Block *__eb); /* delete */ extern void ti_sysbios_interfaces_ITimer_delete(ti_sysbios_interfaces_ITimer_Handle *__inst); /* Handle_to_Module */ static inline ti_sysbios_interfaces_ITimer_Module ti_sysbios_interfaces_ITimer_Handle_to_Module(ti_sysbios_interfaces_ITimer_Handle inst); static inline ti_sysbios_interfaces_ITimer_Module ti_sysbios_interfaces_ITimer_Handle_to_Module(ti_sysbios_interfaces_ITimer_Handle inst) { return inst->__fxns; } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_interfaces_ITimer_Handle_label(ti_sysbios_interfaces_ITimer_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_interfaces_ITimer_Handle_label(ti_sysbios_interfaces_ITimer_Handle inst, xdc_runtime_Types_Label *lab) { return inst->__fxns->__sysp->__label(inst, lab); } /* Module_id */ static inline xdc_runtime_Types_ModuleId ti_sysbios_interfaces_ITimer_Module_id(ti_sysbios_interfaces_ITimer_Module mod); static inline xdc_runtime_Types_ModuleId ti_sysbios_interfaces_ITimer_Module_id(ti_sysbios_interfaces_ITimer_Module mod) { return mod->__sysp->__mid; } /* getNumTimers */ static inline xdc_UInt ti_sysbios_interfaces_ITimer_getNumTimers(ti_sysbios_interfaces_ITimer_Module __mod); static inline xdc_UInt ti_sysbios_interfaces_ITimer_getNumTimers( ti_sysbios_interfaces_ITimer_Module __mod ) { return __mod->getNumTimers(); } /* getStatus */ static inline ti_sysbios_interfaces_ITimer_Status ti_sysbios_interfaces_ITimer_getStatus(ti_sysbios_interfaces_ITimer_Module __mod, xdc_UInt id); static inline ti_sysbios_interfaces_ITimer_Status ti_sysbios_interfaces_ITimer_getStatus( ti_sysbios_interfaces_ITimer_Module __mod, xdc_UInt id ) { return __mod->getStatus(id); } /* startup */ static inline void ti_sysbios_interfaces_ITimer_startup(ti_sysbios_interfaces_ITimer_Module __mod); static inline void ti_sysbios_interfaces_ITimer_startup( ti_sysbios_interfaces_ITimer_Module __mod ) { __mod->startup(); } /* getMaxTicks */ static inline xdc_UInt32 ti_sysbios_interfaces_ITimer_getMaxTicks(ti_sysbios_interfaces_ITimer_Handle __inst); static inline xdc_UInt32 ti_sysbios_interfaces_ITimer_getMaxTicks( ti_sysbios_interfaces_ITimer_Handle __inst ) { return __inst->__fxns->getMaxTicks((void*)__inst); } /* setNextTick */ static inline void ti_sysbios_interfaces_ITimer_setNextTick(ti_sysbios_interfaces_ITimer_Handle __inst, xdc_UInt32 ticks); static inline void ti_sysbios_interfaces_ITimer_setNextTick( ti_sysbios_interfaces_ITimer_Handle __inst, xdc_UInt32 ticks ) { __inst->__fxns->setNextTick((void*)__inst, ticks); } /* start */ static inline void ti_sysbios_interfaces_ITimer_start(ti_sysbios_interfaces_ITimer_Handle __inst); static inline void ti_sysbios_interfaces_ITimer_start( ti_sysbios_interfaces_ITimer_Handle __inst ) { __inst->__fxns->start((void*)__inst); } /* stop */ static inline void ti_sysbios_interfaces_ITimer_stop(ti_sysbios_interfaces_ITimer_Handle __inst); static inline void ti_sysbios_interfaces_ITimer_stop( ti_sysbios_interfaces_ITimer_Handle __inst ) { __inst->__fxns->stop((void*)__inst); } /* setPeriod */ static inline void ti_sysbios_interfaces_ITimer_setPeriod(ti_sysbios_interfaces_ITimer_Handle __inst, xdc_UInt32 period); static inline void ti_sysbios_interfaces_ITimer_setPeriod( ti_sysbios_interfaces_ITimer_Handle __inst, xdc_UInt32 period ) { __inst->__fxns->setPeriod((void*)__inst, period); } /* setPeriodMicroSecs */ static inline xdc_Bool ti_sysbios_interfaces_ITimer_setPeriodMicroSecs(ti_sysbios_interfaces_ITimer_Handle __inst, xdc_UInt32 microsecs); static inline xdc_Bool ti_sysbios_interfaces_ITimer_setPeriodMicroSecs( ti_sysbios_interfaces_ITimer_Handle __inst, xdc_UInt32 microsecs ) { return __inst->__fxns->setPeriodMicroSecs((void*)__inst, microsecs); } /* getPeriod */ static inline xdc_UInt32 ti_sysbios_interfaces_ITimer_getPeriod(ti_sysbios_interfaces_ITimer_Handle __inst); static inline xdc_UInt32 ti_sysbios_interfaces_ITimer_getPeriod( ti_sysbios_interfaces_ITimer_Handle __inst ) { return __inst->__fxns->getPeriod((void*)__inst); } /* getCount */ static inline xdc_UInt32 ti_sysbios_interfaces_ITimer_getCount(ti_sysbios_interfaces_ITimer_Handle __inst); static inline xdc_UInt32 ti_sysbios_interfaces_ITimer_getCount( ti_sysbios_interfaces_ITimer_Handle __inst ) { return __inst->__fxns->getCount((void*)__inst); } /* getFreq */ static inline void ti_sysbios_interfaces_ITimer_getFreq(ti_sysbios_interfaces_ITimer_Handle __inst, xdc_runtime_Types_FreqHz *freq); static inline void ti_sysbios_interfaces_ITimer_getFreq( ti_sysbios_interfaces_ITimer_Handle __inst, xdc_runtime_Types_FreqHz *freq ) { __inst->__fxns->getFreq((void*)__inst, freq); } /* getFunc */ static inline ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_interfaces_ITimer_getFunc(ti_sysbios_interfaces_ITimer_Handle __inst, xdc_UArg *arg); static inline ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_interfaces_ITimer_getFunc( ti_sysbios_interfaces_ITimer_Handle __inst, xdc_UArg *arg ) { return __inst->__fxns->getFunc((void*)__inst, arg); } /* setFunc */ static inline void ti_sysbios_interfaces_ITimer_setFunc(ti_sysbios_interfaces_ITimer_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg); static inline void ti_sysbios_interfaces_ITimer_setFunc( ti_sysbios_interfaces_ITimer_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg ) { __inst->__fxns->setFunc((void*)__inst, fxn, arg); } /* trigger */ static inline void ti_sysbios_interfaces_ITimer_trigger(ti_sysbios_interfaces_ITimer_Handle __inst, xdc_UInt32 cycles); static inline void ti_sysbios_interfaces_ITimer_trigger( ti_sysbios_interfaces_ITimer_Handle __inst, xdc_UInt32 cycles ) { __inst->__fxns->trigger((void*)__inst, cycles); } /* getExpiredCounts */ static inline xdc_UInt32 ti_sysbios_interfaces_ITimer_getExpiredCounts(ti_sysbios_interfaces_ITimer_Handle __inst); static inline xdc_UInt32 ti_sysbios_interfaces_ITimer_getExpiredCounts( ti_sysbios_interfaces_ITimer_Handle __inst ) { return __inst->__fxns->getExpiredCounts((void*)__inst); } /* getExpiredTicks */ static inline xdc_UInt32 ti_sysbios_interfaces_ITimer_getExpiredTicks(ti_sysbios_interfaces_ITimer_Handle __inst, xdc_UInt32 tickPeriod); static inline xdc_UInt32 ti_sysbios_interfaces_ITimer_getExpiredTicks( ti_sysbios_interfaces_ITimer_Handle __inst, xdc_UInt32 tickPeriod ) { return __inst->__fxns->getExpiredTicks((void*)__inst, tickPeriod); } /* getCurrentTick */ static inline xdc_UInt32 ti_sysbios_interfaces_ITimer_getCurrentTick(ti_sysbios_interfaces_ITimer_Handle __inst, xdc_Bool save); static inline xdc_UInt32 ti_sysbios_interfaces_ITimer_getCurrentTick( ti_sysbios_interfaces_ITimer_Handle __inst, xdc_Bool save ) { return __inst->__fxns->getCurrentTick((void*)__inst, save); } /* * ======== FUNCTION SELECTORS ======== */ /* These functions return function pointers for module and instance functions. * The functions accept modules and instances declared as types defined in this * interface, but they return functions defined for the actual objects passed * as parameters. These functions are not invoked by any generated code or * XDCtools internal code. */ /* getNumTimers_{FxnT,fxnP} */ typedef xdc_UInt (*ti_sysbios_interfaces_ITimer_getNumTimers_FxnT)(void); static inline ti_sysbios_interfaces_ITimer_getNumTimers_FxnT ti_sysbios_interfaces_ITimer_getNumTimers_fxnP(ti_sysbios_interfaces_ITimer_Module __mod); static inline ti_sysbios_interfaces_ITimer_getNumTimers_FxnT ti_sysbios_interfaces_ITimer_getNumTimers_fxnP(ti_sysbios_interfaces_ITimer_Module __mod) { return (ti_sysbios_interfaces_ITimer_getNumTimers_FxnT)__mod->getNumTimers; } /* getStatus_{FxnT,fxnP} */ typedef ti_sysbios_interfaces_ITimer_Status (*ti_sysbios_interfaces_ITimer_getStatus_FxnT)(xdc_UInt id); static inline ti_sysbios_interfaces_ITimer_getStatus_FxnT ti_sysbios_interfaces_ITimer_getStatus_fxnP(ti_sysbios_interfaces_ITimer_Module __mod); static inline ti_sysbios_interfaces_ITimer_getStatus_FxnT ti_sysbios_interfaces_ITimer_getStatus_fxnP(ti_sysbios_interfaces_ITimer_Module __mod) { return (ti_sysbios_interfaces_ITimer_getStatus_FxnT)__mod->getStatus; } /* startup_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ITimer_startup_FxnT)(void); static inline ti_sysbios_interfaces_ITimer_startup_FxnT ti_sysbios_interfaces_ITimer_startup_fxnP(ti_sysbios_interfaces_ITimer_Module __mod); static inline ti_sysbios_interfaces_ITimer_startup_FxnT ti_sysbios_interfaces_ITimer_startup_fxnP(ti_sysbios_interfaces_ITimer_Module __mod) { return (ti_sysbios_interfaces_ITimer_startup_FxnT)__mod->startup; } /* getMaxTicks_{FxnT,fxnP} */ typedef xdc_UInt32 (*ti_sysbios_interfaces_ITimer_getMaxTicks_FxnT)(void *__inst); static inline ti_sysbios_interfaces_ITimer_getMaxTicks_FxnT ti_sysbios_interfaces_ITimer_getMaxTicks_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_getMaxTicks_FxnT ti_sysbios_interfaces_ITimer_getMaxTicks_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_getMaxTicks_FxnT)__inst->__fxns->getMaxTicks; } /* setNextTick_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ITimer_setNextTick_FxnT)(void *__inst, xdc_UInt32 ticks); static inline ti_sysbios_interfaces_ITimer_setNextTick_FxnT ti_sysbios_interfaces_ITimer_setNextTick_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_setNextTick_FxnT ti_sysbios_interfaces_ITimer_setNextTick_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_setNextTick_FxnT)__inst->__fxns->setNextTick; } /* start_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ITimer_start_FxnT)(void *__inst); static inline ti_sysbios_interfaces_ITimer_start_FxnT ti_sysbios_interfaces_ITimer_start_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_start_FxnT ti_sysbios_interfaces_ITimer_start_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_start_FxnT)__inst->__fxns->start; } /* stop_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ITimer_stop_FxnT)(void *__inst); static inline ti_sysbios_interfaces_ITimer_stop_FxnT ti_sysbios_interfaces_ITimer_stop_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_stop_FxnT ti_sysbios_interfaces_ITimer_stop_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_stop_FxnT)__inst->__fxns->stop; } /* setPeriod_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ITimer_setPeriod_FxnT)(void *__inst, xdc_UInt32 period); static inline ti_sysbios_interfaces_ITimer_setPeriod_FxnT ti_sysbios_interfaces_ITimer_setPeriod_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_setPeriod_FxnT ti_sysbios_interfaces_ITimer_setPeriod_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_setPeriod_FxnT)__inst->__fxns->setPeriod; } /* setPeriodMicroSecs_{FxnT,fxnP} */ typedef xdc_Bool (*ti_sysbios_interfaces_ITimer_setPeriodMicroSecs_FxnT)(void *__inst, xdc_UInt32 microsecs); static inline ti_sysbios_interfaces_ITimer_setPeriodMicroSecs_FxnT ti_sysbios_interfaces_ITimer_setPeriodMicroSecs_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_setPeriodMicroSecs_FxnT ti_sysbios_interfaces_ITimer_setPeriodMicroSecs_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_setPeriodMicroSecs_FxnT)__inst->__fxns->setPeriodMicroSecs; } /* getPeriod_{FxnT,fxnP} */ typedef xdc_UInt32 (*ti_sysbios_interfaces_ITimer_getPeriod_FxnT)(void *__inst); static inline ti_sysbios_interfaces_ITimer_getPeriod_FxnT ti_sysbios_interfaces_ITimer_getPeriod_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_getPeriod_FxnT ti_sysbios_interfaces_ITimer_getPeriod_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_getPeriod_FxnT)__inst->__fxns->getPeriod; } /* getCount_{FxnT,fxnP} */ typedef xdc_UInt32 (*ti_sysbios_interfaces_ITimer_getCount_FxnT)(void *__inst); static inline ti_sysbios_interfaces_ITimer_getCount_FxnT ti_sysbios_interfaces_ITimer_getCount_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_getCount_FxnT ti_sysbios_interfaces_ITimer_getCount_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_getCount_FxnT)__inst->__fxns->getCount; } /* getFreq_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ITimer_getFreq_FxnT)(void *__inst, xdc_runtime_Types_FreqHz* freq); static inline ti_sysbios_interfaces_ITimer_getFreq_FxnT ti_sysbios_interfaces_ITimer_getFreq_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_getFreq_FxnT ti_sysbios_interfaces_ITimer_getFreq_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_getFreq_FxnT)__inst->__fxns->getFreq; } /* getFunc_{FxnT,fxnP} */ typedef ti_sysbios_interfaces_ITimer_FuncPtr (*ti_sysbios_interfaces_ITimer_getFunc_FxnT)(void *__inst, xdc_UArg* arg); static inline ti_sysbios_interfaces_ITimer_getFunc_FxnT ti_sysbios_interfaces_ITimer_getFunc_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_getFunc_FxnT ti_sysbios_interfaces_ITimer_getFunc_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_getFunc_FxnT)__inst->__fxns->getFunc; } /* setFunc_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ITimer_setFunc_FxnT)(void *__inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg); static inline ti_sysbios_interfaces_ITimer_setFunc_FxnT ti_sysbios_interfaces_ITimer_setFunc_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_setFunc_FxnT ti_sysbios_interfaces_ITimer_setFunc_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_setFunc_FxnT)__inst->__fxns->setFunc; } /* trigger_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ITimer_trigger_FxnT)(void *__inst, xdc_UInt32 cycles); static inline ti_sysbios_interfaces_ITimer_trigger_FxnT ti_sysbios_interfaces_ITimer_trigger_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_trigger_FxnT ti_sysbios_interfaces_ITimer_trigger_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_trigger_FxnT)__inst->__fxns->trigger; } /* getExpiredCounts_{FxnT,fxnP} */ typedef xdc_UInt32 (*ti_sysbios_interfaces_ITimer_getExpiredCounts_FxnT)(void *__inst); static inline ti_sysbios_interfaces_ITimer_getExpiredCounts_FxnT ti_sysbios_interfaces_ITimer_getExpiredCounts_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_getExpiredCounts_FxnT ti_sysbios_interfaces_ITimer_getExpiredCounts_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_getExpiredCounts_FxnT)__inst->__fxns->getExpiredCounts; } /* getExpiredTicks_{FxnT,fxnP} */ typedef xdc_UInt32 (*ti_sysbios_interfaces_ITimer_getExpiredTicks_FxnT)(void *__inst, xdc_UInt32 tickPeriod); static inline ti_sysbios_interfaces_ITimer_getExpiredTicks_FxnT ti_sysbios_interfaces_ITimer_getExpiredTicks_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_getExpiredTicks_FxnT ti_sysbios_interfaces_ITimer_getExpiredTicks_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_getExpiredTicks_FxnT)__inst->__fxns->getExpiredTicks; } /* getCurrentTick_{FxnT,fxnP} */ typedef xdc_UInt32 (*ti_sysbios_interfaces_ITimer_getCurrentTick_FxnT)(void *__inst, xdc_Bool save); static inline ti_sysbios_interfaces_ITimer_getCurrentTick_FxnT ti_sysbios_interfaces_ITimer_getCurrentTick_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst); static inline ti_sysbios_interfaces_ITimer_getCurrentTick_FxnT ti_sysbios_interfaces_ITimer_getCurrentTick_fxnP(ti_sysbios_interfaces_ITimer_Handle __inst) { return (ti_sysbios_interfaces_ITimer_getCurrentTick_FxnT)__inst->__fxns->getCurrentTick; } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_family_c28_Timer_FuncPtr; /* ANY */ /* StartMode */ typedef ti_sysbios_interfaces_ITimer_StartMode ti_sysbios_family_c28_Timer_StartMode; /* RunMode */ typedef ti_sysbios_interfaces_ITimer_RunMode ti_sysbios_family_c28_Timer_RunMode; /* Status */ typedef ti_sysbios_interfaces_ITimer_Status ti_sysbios_family_c28_Timer_Status; /* PeriodType */ typedef ti_sysbios_interfaces_ITimer_PeriodType ti_sysbios_family_c28_Timer_PeriodType; /* MAX_PERIOD */ /* NUM_TIMER_DEVICES */ /* EmulationMode */ struct ti_sysbios_family_c28_Timer_EmulationMode { xdc_UInt free; xdc_UInt soft; }; /* StartMode_AUTO */ /* StartMode_USER */ /* RunMode_CONTINUOUS */ /* RunMode_ONESHOT */ /* RunMode_DYNAMIC */ /* Status_INUSE */ /* Status_FREE */ /* PeriodType_MICROSECS */ /* PeriodType_COUNTS */ /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_family_c28_Timer_Args__create { xdc_Int id; ti_sysbios_interfaces_ITimer_FuncPtr tickFxn; } ti_sysbios_family_c28_Timer_Args__create; /* * ======== INTERNAL DEFINITIONS ======== */ /* Module_State */ typedef ti_sysbios_family_c28_Timer_Handle __T1_ti_sysbios_family_c28_Timer_Module_State__staticTimers; typedef ti_sysbios_family_c28_Timer_Handle __ARRAY1_ti_sysbios_family_c28_Timer_Module_State__staticTimers[3]; typedef ti_sysbios_family_c28_Timer_Handle __CARRAY1_ti_sysbios_family_c28_Timer_Module_State__staticTimers[3]; typedef __ARRAY1_ti_sysbios_family_c28_Timer_Module_State__staticTimers __TA_ti_sysbios_family_c28_Timer_Module_State__staticTimers; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_family_c28_Timer_Module__diagsEnabled; extern const CT__ti_sysbios_family_c28_Timer_Module__diagsEnabled ti_sysbios_family_c28_Timer_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_family_c28_Timer_Module__diagsIncluded; extern const CT__ti_sysbios_family_c28_Timer_Module__diagsIncluded ti_sysbios_family_c28_Timer_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_family_c28_Timer_Module__diagsMask; extern const CT__ti_sysbios_family_c28_Timer_Module__diagsMask ti_sysbios_family_c28_Timer_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_family_c28_Timer_Module__gateObj; extern const CT__ti_sysbios_family_c28_Timer_Module__gateObj ti_sysbios_family_c28_Timer_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_family_c28_Timer_Module__gatePrms; extern const CT__ti_sysbios_family_c28_Timer_Module__gatePrms ti_sysbios_family_c28_Timer_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_family_c28_Timer_Module__id; extern const CT__ti_sysbios_family_c28_Timer_Module__id ti_sysbios_family_c28_Timer_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_family_c28_Timer_Module__loggerDefined; extern const CT__ti_sysbios_family_c28_Timer_Module__loggerDefined ti_sysbios_family_c28_Timer_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_family_c28_Timer_Module__loggerObj; extern const CT__ti_sysbios_family_c28_Timer_Module__loggerObj ti_sysbios_family_c28_Timer_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_family_c28_Timer_Module__loggerFxn0; extern const CT__ti_sysbios_family_c28_Timer_Module__loggerFxn0 ti_sysbios_family_c28_Timer_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_family_c28_Timer_Module__loggerFxn1; extern const CT__ti_sysbios_family_c28_Timer_Module__loggerFxn1 ti_sysbios_family_c28_Timer_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_family_c28_Timer_Module__loggerFxn2; extern const CT__ti_sysbios_family_c28_Timer_Module__loggerFxn2 ti_sysbios_family_c28_Timer_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_family_c28_Timer_Module__loggerFxn4; extern const CT__ti_sysbios_family_c28_Timer_Module__loggerFxn4 ti_sysbios_family_c28_Timer_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_family_c28_Timer_Module__loggerFxn8; extern const CT__ti_sysbios_family_c28_Timer_Module__loggerFxn8 ti_sysbios_family_c28_Timer_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_family_c28_Timer_Object__count; extern const CT__ti_sysbios_family_c28_Timer_Object__count ti_sysbios_family_c28_Timer_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_family_c28_Timer_Object__heap; extern const CT__ti_sysbios_family_c28_Timer_Object__heap ti_sysbios_family_c28_Timer_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_family_c28_Timer_Object__sizeof; extern const CT__ti_sysbios_family_c28_Timer_Object__sizeof ti_sysbios_family_c28_Timer_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_family_c28_Timer_Object__table; extern const CT__ti_sysbios_family_c28_Timer_Object__table ti_sysbios_family_c28_Timer_Object__table__C; /* A_invalidTimer */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_family_c28_Timer_A_invalidTimer; extern const CT__ti_sysbios_family_c28_Timer_A_invalidTimer ti_sysbios_family_c28_Timer_A_invalidTimer__C; /* E_notAvailable */ typedef xdc_runtime_Error_Id CT__ti_sysbios_family_c28_Timer_E_notAvailable; extern const CT__ti_sysbios_family_c28_Timer_E_notAvailable ti_sysbios_family_c28_Timer_E_notAvailable__C; /* A_invalidRunMode */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_family_c28_Timer_A_invalidRunMode; extern const CT__ti_sysbios_family_c28_Timer_A_invalidRunMode ti_sysbios_family_c28_Timer_A_invalidRunMode__C; /* A_invalidHwiMask */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_family_c28_Timer_A_invalidHwiMask; extern const CT__ti_sysbios_family_c28_Timer_A_invalidHwiMask ti_sysbios_family_c28_Timer_A_invalidHwiMask__C; /* E_cannotSupport */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_family_c28_Timer_E_cannotSupport; extern const CT__ti_sysbios_family_c28_Timer_E_cannotSupport ti_sysbios_family_c28_Timer_E_cannotSupport__C; /* anyMask */ typedef xdc_UInt CT__ti_sysbios_family_c28_Timer_anyMask; extern const CT__ti_sysbios_family_c28_Timer_anyMask ti_sysbios_family_c28_Timer_anyMask__C; /* startupNeeded */ typedef xdc_UInt CT__ti_sysbios_family_c28_Timer_startupNeeded; extern const CT__ti_sysbios_family_c28_Timer_startupNeeded ti_sysbios_family_c28_Timer_startupNeeded__C; /* intNumDef */ typedef xdc_UInt8 __T1_ti_sysbios_family_c28_Timer_intNumDef; typedef xdc_UInt8 __ARRAY1_ti_sysbios_family_c28_Timer_intNumDef[3]; typedef xdc_UInt8 __CARRAY1_ti_sysbios_family_c28_Timer_intNumDef[3]; typedef __CARRAY1_ti_sysbios_family_c28_Timer_intNumDef __TA_ti_sysbios_family_c28_Timer_intNumDef; typedef __CARRAY1_ti_sysbios_family_c28_Timer_intNumDef CT__ti_sysbios_family_c28_Timer_intNumDef; extern const CT__ti_sysbios_family_c28_Timer_intNumDef ti_sysbios_family_c28_Timer_intNumDef__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_family_c28_Timer_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; ti_sysbios_interfaces_ITimer_RunMode runMode; ti_sysbios_interfaces_ITimer_StartMode startMode; xdc_UArg arg; xdc_UInt32 period; ti_sysbios_interfaces_ITimer_PeriodType periodType; xdc_runtime_Types_FreqHz extFreq; ti_sysbios_family_c28_Timer_EmulationMode emulationModeInit; xdc_UInt16 prescale; ti_sysbios_family_c28_Hwi_Params *hwiParams; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_family_c28_Timer_Struct { const ti_sysbios_family_c28_Timer_Fxns__ *__fxns; xdc_Int __f0; ti_sysbios_family_c28_Timer_EmulationMode __f1; ti_sysbios_interfaces_ITimer_RunMode __f2; ti_sysbios_interfaces_ITimer_StartMode __f3; xdc_UInt32 __f4; ti_sysbios_interfaces_ITimer_PeriodType __f5; xdc_UInt16 __f6; xdc_UInt __f7; xdc_UArg __f8; ti_sysbios_family_c28_Hwi_FuncPtr __f9; xdc_runtime_Types_FreqHz __f10; ti_sysbios_family_c28_Hwi_Handle __f11; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_family_c28_Timer_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_UInt (*getNumTimers)(void); ti_sysbios_interfaces_ITimer_Status (*getStatus)(xdc_UInt id); void (*startup)(void); xdc_UInt32 (*getMaxTicks)(ti_sysbios_family_c28_Timer_Handle __inst); void (*setNextTick)(ti_sysbios_family_c28_Timer_Handle __inst, xdc_UInt32 ticks); void (*start)(ti_sysbios_family_c28_Timer_Handle __inst); void (*stop)(ti_sysbios_family_c28_Timer_Handle __inst); void (*setPeriod)(ti_sysbios_family_c28_Timer_Handle __inst, xdc_UInt32 period); xdc_Bool (*setPeriodMicroSecs)(ti_sysbios_family_c28_Timer_Handle __inst, xdc_UInt32 microsecs); xdc_UInt32 (*getPeriod)(ti_sysbios_family_c28_Timer_Handle __inst); xdc_UInt32 (*getCount)(ti_sysbios_family_c28_Timer_Handle __inst); void (*getFreq)(ti_sysbios_family_c28_Timer_Handle __inst, xdc_runtime_Types_FreqHz* freq); ti_sysbios_interfaces_ITimer_FuncPtr (*getFunc)(ti_sysbios_family_c28_Timer_Handle __inst, xdc_UArg* arg); void (*setFunc)(ti_sysbios_family_c28_Timer_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg); void (*trigger)(ti_sysbios_family_c28_Timer_Handle __inst, xdc_UInt32 cycles); xdc_UInt32 (*getExpiredCounts)(ti_sysbios_family_c28_Timer_Handle __inst); xdc_UInt32 (*getExpiredTicks)(ti_sysbios_family_c28_Timer_Handle __inst, xdc_UInt32 tickPeriod); xdc_UInt32 (*getCurrentTick)(ti_sysbios_family_c28_Timer_Handle __inst, xdc_Bool save); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_family_c28_Timer_Fxns__ ti_sysbios_family_c28_Timer_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ extern xdc_Int ti_sysbios_family_c28_Timer_Module_startup__E( xdc_Int state ); extern xdc_Int ti_sysbios_family_c28_Timer_Module_startup__F( xdc_Int state ); /* Instance_init__E */ extern xdc_Int ti_sysbios_family_c28_Timer_Instance_init__E(ti_sysbios_family_c28_Timer_Object *__obj, xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_family_c28_Timer_Params *__prms, xdc_runtime_Error_Block *__eb); /* Instance_finalize__E */ extern void ti_sysbios_family_c28_Timer_Instance_finalize__E(ti_sysbios_family_c28_Timer_Object *__obj, int __ec); /* create */ extern ti_sysbios_family_c28_Timer_Handle ti_sysbios_family_c28_Timer_create( xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_family_c28_Timer_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_family_c28_Timer_construct( ti_sysbios_family_c28_Timer_Struct *__obj, xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_family_c28_Timer_Params *__prms, xdc_runtime_Error_Block *__eb ); /* delete */ extern void ti_sysbios_family_c28_Timer_delete(ti_sysbios_family_c28_Timer_Handle *instp); /* destruct */ extern void ti_sysbios_family_c28_Timer_destruct(ti_sysbios_family_c28_Timer_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_family_c28_Timer_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_family_c28_Timer_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_family_c28_Timer_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_family_c28_Timer_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_family_c28_Timer_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_family_c28_Timer_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_family_c28_Timer_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_family_c28_Timer_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* getNumTimers__E */ extern xdc_UInt ti_sysbios_family_c28_Timer_getNumTimers__E( void ); /* getStatus__E */ extern ti_sysbios_interfaces_ITimer_Status ti_sysbios_family_c28_Timer_getStatus__E( xdc_UInt id ); /* startup__E */ extern void ti_sysbios_family_c28_Timer_startup__E( void ); /* getMaxTicks__E */ extern xdc_UInt32 ti_sysbios_family_c28_Timer_getMaxTicks__E( ti_sysbios_family_c28_Timer_Handle __inst ); /* setNextTick__E */ extern void ti_sysbios_family_c28_Timer_setNextTick__E( ti_sysbios_family_c28_Timer_Handle __inst, xdc_UInt32 ticks ); /* start__E */ extern void ti_sysbios_family_c28_Timer_start__E( ti_sysbios_family_c28_Timer_Handle __inst ); /* stop__E */ extern void ti_sysbios_family_c28_Timer_stop__E( ti_sysbios_family_c28_Timer_Handle __inst ); /* setPeriod__E */ extern void ti_sysbios_family_c28_Timer_setPeriod__E( ti_sysbios_family_c28_Timer_Handle __inst, xdc_UInt32 period ); /* setPeriodMicroSecs__E */ extern xdc_Bool ti_sysbios_family_c28_Timer_setPeriodMicroSecs__E( ti_sysbios_family_c28_Timer_Handle __inst, xdc_UInt32 microsecs ); /* getPeriod__E */ extern xdc_UInt32 ti_sysbios_family_c28_Timer_getPeriod__E( ti_sysbios_family_c28_Timer_Handle __inst ); /* getFreq__E */ extern void ti_sysbios_family_c28_Timer_getFreq__E( ti_sysbios_family_c28_Timer_Handle __inst, xdc_runtime_Types_FreqHz *freq ); /* getFunc__E */ extern ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_family_c28_Timer_getFunc__E( ti_sysbios_family_c28_Timer_Handle __inst, xdc_UArg *arg ); /* setFunc__E */ extern void ti_sysbios_family_c28_Timer_setFunc__E( ti_sysbios_family_c28_Timer_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg ); /* trigger__E */ extern void ti_sysbios_family_c28_Timer_trigger__E( ti_sysbios_family_c28_Timer_Handle __inst, xdc_UInt32 cycles ); /* getExpiredCounts__E */ extern xdc_UInt32 ti_sysbios_family_c28_Timer_getExpiredCounts__E( ti_sysbios_family_c28_Timer_Handle __inst ); /* getExpiredTicks__E */ extern xdc_UInt32 ti_sysbios_family_c28_Timer_getExpiredTicks__E( ti_sysbios_family_c28_Timer_Handle __inst, xdc_UInt32 tickPeriod ); /* getCurrentTick__E */ extern xdc_UInt32 ti_sysbios_family_c28_Timer_getCurrentTick__E( ti_sysbios_family_c28_Timer_Handle __inst, xdc_Bool save ); /* getCount__E */ extern xdc_UInt32 ti_sysbios_family_c28_Timer_getCount__E( ti_sysbios_family_c28_Timer_Handle __inst ); /* setPrescale__E */ extern void ti_sysbios_family_c28_Timer_setPrescale__E( ti_sysbios_family_c28_Timer_Handle __inst, xdc_UInt16 preScalar ); /* getPrescale__E */ extern xdc_UInt16 ti_sysbios_family_c28_Timer_getPrescale__E( ti_sysbios_family_c28_Timer_Handle __inst ); /* getPrescaleCount__E */ extern xdc_UInt16 ti_sysbios_family_c28_Timer_getPrescaleCount__E( ti_sysbios_family_c28_Timer_Handle __inst ); /* getExpiredCounts64__E */ extern void ti_sysbios_family_c28_Timer_getExpiredCounts64__E( ti_sysbios_family_c28_Timer_Handle __inst, xdc_runtime_Types_Timestamp64 *result ); /* reconfig__E */ extern void ti_sysbios_family_c28_Timer_reconfig__E( ti_sysbios_family_c28_Timer_Handle __inst, ti_sysbios_family_c28_Timer_FuncPtr tickFxn, const ti_sysbios_family_c28_Timer_Params *timerParams, xdc_runtime_Error_Block *eb ); /* postInit__I */ extern xdc_Int ti_sysbios_family_c28_Timer_postInit__I( ti_sysbios_family_c28_Timer_Object *timer, xdc_runtime_Error_Block *eb ); /* stopAndClear__I */ extern void ti_sysbios_family_c28_Timer_stopAndClear__I( ti_sysbios_family_c28_Timer_Object *timer ); /* checkOverflow__I */ extern xdc_Bool ti_sysbios_family_c28_Timer_checkOverflow__I( xdc_UInt32 a, xdc_UInt32 b ); /* oneShotStub__I */ extern void ti_sysbios_family_c28_Timer_oneShotStub__I( xdc_UArg arg ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_ITimer_Module ti_sysbios_family_c28_Timer_Module_upCast(void); static inline ti_sysbios_interfaces_ITimer_Module ti_sysbios_family_c28_Timer_Module_upCast(void) { return (ti_sysbios_interfaces_ITimer_Module)&ti_sysbios_family_c28_Timer_Module__FXNS__C; } /* Module_to_ti_sysbios_interfaces_ITimer */ /* Handle_upCast */ static inline ti_sysbios_interfaces_ITimer_Handle ti_sysbios_family_c28_Timer_Handle_upCast(ti_sysbios_family_c28_Timer_Handle i); static inline ti_sysbios_interfaces_ITimer_Handle ti_sysbios_family_c28_Timer_Handle_upCast(ti_sysbios_family_c28_Timer_Handle i) { return (ti_sysbios_interfaces_ITimer_Handle)i; } /* Handle_to_ti_sysbios_interfaces_ITimer */ /* Handle_downCast */ static inline ti_sysbios_family_c28_Timer_Handle ti_sysbios_family_c28_Timer_Handle_downCast(ti_sysbios_interfaces_ITimer_Handle i); static inline ti_sysbios_family_c28_Timer_Handle ti_sysbios_family_c28_Timer_Handle_downCast(ti_sysbios_interfaces_ITimer_Handle i) { ti_sysbios_interfaces_ITimer_Handle i2 = (ti_sysbios_interfaces_ITimer_Handle)i; return (const void*)i2->__fxns == (const void*)&ti_sysbios_family_c28_Timer_Module__FXNS__C ? (ti_sysbios_family_c28_Timer_Handle)i : (ti_sysbios_family_c28_Timer_Handle)0; } /* Handle_from_ti_sysbios_interfaces_ITimer */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_family_c28_Timer_Module__id ti_sysbios_family_c28_Timer_Module_id(void); static inline CT__ti_sysbios_family_c28_Timer_Module__id ti_sysbios_family_c28_Timer_Module_id( void ) { return ti_sysbios_family_c28_Timer_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_family_c28_Timer_Module_hasMask(void); static inline xdc_Bool ti_sysbios_family_c28_Timer_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_family_c28_Timer_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_family_c28_Timer_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_family_c28_Timer_Module_getMask( void ) { return ti_sysbios_family_c28_Timer_Module__diagsMask__C != 0 ? *ti_sysbios_family_c28_Timer_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_family_c28_Timer_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_family_c28_Timer_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_family_c28_Timer_Module__diagsMask__C != 0) { *ti_sysbios_family_c28_Timer_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_family_c28_Timer_Params_init(ti_sysbios_family_c28_Timer_Params *prms); static inline void ti_sysbios_family_c28_Timer_Params_init( ti_sysbios_family_c28_Timer_Params *prms ) { if (prms) { ti_sysbios_family_c28_Timer_Params__init__S(prms, 0, sizeof(ti_sysbios_family_c28_Timer_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_family_c28_Timer_Params_copy(ti_sysbios_family_c28_Timer_Params *dst, const ti_sysbios_family_c28_Timer_Params *src); static inline void ti_sysbios_family_c28_Timer_Params_copy(ti_sysbios_family_c28_Timer_Params *dst, const ti_sysbios_family_c28_Timer_Params *src) { if (dst) { ti_sysbios_family_c28_Timer_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_family_c28_Timer_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_family_c28_Timer_Handle ti_sysbios_family_c28_Timer_Object_get(ti_sysbios_family_c28_Timer_Instance_State *oarr, int i); static inline ti_sysbios_family_c28_Timer_Handle ti_sysbios_family_c28_Timer_Object_get(ti_sysbios_family_c28_Timer_Instance_State *oarr, int i) { return (ti_sysbios_family_c28_Timer_Handle)ti_sysbios_family_c28_Timer_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_family_c28_Timer_Handle ti_sysbios_family_c28_Timer_Object_first(void); static inline ti_sysbios_family_c28_Timer_Handle ti_sysbios_family_c28_Timer_Object_first(void) { return (ti_sysbios_family_c28_Timer_Handle)ti_sysbios_family_c28_Timer_Object__first__S(); } /* Object_next */ static inline ti_sysbios_family_c28_Timer_Handle ti_sysbios_family_c28_Timer_Object_next(ti_sysbios_family_c28_Timer_Object *obj); static inline ti_sysbios_family_c28_Timer_Handle ti_sysbios_family_c28_Timer_Object_next(ti_sysbios_family_c28_Timer_Object *obj) { return (ti_sysbios_family_c28_Timer_Handle)ti_sysbios_family_c28_Timer_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_family_c28_Timer_Handle_label(ti_sysbios_family_c28_Timer_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_family_c28_Timer_Handle_label(ti_sysbios_family_c28_Timer_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_family_c28_Timer_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_family_c28_Timer_Handle_name(ti_sysbios_family_c28_Timer_Handle inst); static inline xdc_String ti_sysbios_family_c28_Timer_Handle_name(ti_sysbios_family_c28_Timer_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_family_c28_Timer_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_family_c28_Timer_Handle ti_sysbios_family_c28_Timer_handle(ti_sysbios_family_c28_Timer_Struct *str); static inline ti_sysbios_family_c28_Timer_Handle ti_sysbios_family_c28_Timer_handle(ti_sysbios_family_c28_Timer_Struct *str) { return (ti_sysbios_family_c28_Timer_Handle)str; } /* struct */ static inline ti_sysbios_family_c28_Timer_Struct *ti_sysbios_family_c28_Timer_struct(ti_sysbios_family_c28_Timer_Handle inst); static inline ti_sysbios_family_c28_Timer_Struct *ti_sysbios_family_c28_Timer_struct(ti_sysbios_family_c28_Timer_Handle inst) { return (ti_sysbios_family_c28_Timer_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct ti_sysbios_family_c28_Timer_Module_State { xdc_Char availMask; __TA_ti_sysbios_family_c28_Timer_Module_State__staticTimers staticTimers; }; /* Module__state__V */ extern struct ti_sysbios_family_c28_Timer_Module_State__ ti_sysbios_family_c28_Timer_Module__state__V; /* Object */ struct ti_sysbios_family_c28_Timer_Object { const ti_sysbios_family_c28_Timer_Fxns__ *__fxns; xdc_Int id; ti_sysbios_family_c28_Timer_EmulationMode emulationModeInit; ti_sysbios_interfaces_ITimer_RunMode runMode; ti_sysbios_interfaces_ITimer_StartMode startMode; xdc_UInt32 period; ti_sysbios_interfaces_ITimer_PeriodType periodType; xdc_UInt16 prescale; xdc_UInt intNum; xdc_UArg arg; ti_sysbios_family_c28_Hwi_FuncPtr tickFxn; xdc_runtime_Types_FreqHz extFreq; ti_sysbios_family_c28_Hwi_Handle hwi; }; /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== module ti.sysbios.family.c28.f2837x.TimestampProvider ======== */ typedef struct ti_sysbios_family_c28_f2837x_TimestampProvider_Fxns__ ti_sysbios_family_c28_f2837x_TimestampProvider_Fxns__; typedef const struct ti_sysbios_family_c28_f2837x_TimestampProvider_Fxns__* ti_sysbios_family_c28_f2837x_TimestampProvider_Module; /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * CONVERTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * CONVERTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_ITimestampClient_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bits32 (*get32)(void); void (*get64)(xdc_runtime_Types_Timestamp64* result); void (*getFreq)(xdc_runtime_Types_FreqHz* freq); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base xdc_runtime_ITimestampClient_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* Module_id */ static inline xdc_runtime_Types_ModuleId xdc_runtime_ITimestampClient_Module_id(xdc_runtime_ITimestampClient_Module mod); static inline xdc_runtime_Types_ModuleId xdc_runtime_ITimestampClient_Module_id(xdc_runtime_ITimestampClient_Module mod) { return mod->__sysp->__mid; } /* get32 */ static inline xdc_Bits32 xdc_runtime_ITimestampClient_get32(xdc_runtime_ITimestampClient_Module mod); static inline xdc_Bits32 xdc_runtime_ITimestampClient_get32( xdc_runtime_ITimestampClient_Module mod ) { return mod->get32(); } /* get64 */ static inline void xdc_runtime_ITimestampClient_get64(xdc_runtime_ITimestampClient_Module mod, xdc_runtime_Types_Timestamp64 *result); static inline void xdc_runtime_ITimestampClient_get64( xdc_runtime_ITimestampClient_Module mod, xdc_runtime_Types_Timestamp64 *result ) { mod->get64(result); } /* getFreq */ static inline void xdc_runtime_ITimestampClient_getFreq(xdc_runtime_ITimestampClient_Module mod, xdc_runtime_Types_FreqHz *freq); static inline void xdc_runtime_ITimestampClient_getFreq( xdc_runtime_ITimestampClient_Module mod, xdc_runtime_Types_FreqHz *freq ) { mod->getFreq(freq); } /* * ======== FUNCTION SELECTORS ======== */ /* These functions return function pointers for module and instance functions. * The functions accept modules and instances declared as types defined in this * interface, but they return functions defined for the actual objects passed * as parameters. These functions are not invoked by any generated code or * XDCtools internal code. */ /* get32_{FxnT,fxnP} */ typedef xdc_Bits32 (*xdc_runtime_ITimestampClient_get32_FxnT)(void); static inline xdc_runtime_ITimestampClient_get32_FxnT xdc_runtime_ITimestampClient_get32_fxnP(xdc_runtime_ITimestampClient_Module mod); static inline xdc_runtime_ITimestampClient_get32_FxnT xdc_runtime_ITimestampClient_get32_fxnP(xdc_runtime_ITimestampClient_Module mod) { return (xdc_runtime_ITimestampClient_get32_FxnT)mod->get32; } /* get64_{FxnT,fxnP} */ typedef void (*xdc_runtime_ITimestampClient_get64_FxnT)(xdc_runtime_Types_Timestamp64* result); static inline xdc_runtime_ITimestampClient_get64_FxnT xdc_runtime_ITimestampClient_get64_fxnP(xdc_runtime_ITimestampClient_Module mod); static inline xdc_runtime_ITimestampClient_get64_FxnT xdc_runtime_ITimestampClient_get64_fxnP(xdc_runtime_ITimestampClient_Module mod) { return (xdc_runtime_ITimestampClient_get64_FxnT)mod->get64; } /* getFreq_{FxnT,fxnP} */ typedef void (*xdc_runtime_ITimestampClient_getFreq_FxnT)(xdc_runtime_Types_FreqHz* freq); static inline xdc_runtime_ITimestampClient_getFreq_FxnT xdc_runtime_ITimestampClient_getFreq_fxnP(xdc_runtime_ITimestampClient_Module mod); static inline xdc_runtime_ITimestampClient_getFreq_FxnT xdc_runtime_ITimestampClient_getFreq_fxnP(xdc_runtime_ITimestampClient_Module mod) { return (xdc_runtime_ITimestampClient_getFreq_FxnT)mod->getFreq; } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_ITimestampProvider_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bits32 (*get32)(void); void (*get64)(xdc_runtime_Types_Timestamp64* result); void (*getFreq)(xdc_runtime_Types_FreqHz* freq); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base xdc_runtime_ITimestampProvider_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* Module_id */ static inline xdc_runtime_Types_ModuleId xdc_runtime_ITimestampProvider_Module_id(xdc_runtime_ITimestampProvider_Module mod); static inline xdc_runtime_Types_ModuleId xdc_runtime_ITimestampProvider_Module_id(xdc_runtime_ITimestampProvider_Module mod) { return mod->__sysp->__mid; } /* get32 */ static inline xdc_Bits32 xdc_runtime_ITimestampProvider_get32(xdc_runtime_ITimestampProvider_Module mod); static inline xdc_Bits32 xdc_runtime_ITimestampProvider_get32( xdc_runtime_ITimestampProvider_Module mod ) { return mod->get32(); } /* get64 */ static inline void xdc_runtime_ITimestampProvider_get64(xdc_runtime_ITimestampProvider_Module mod, xdc_runtime_Types_Timestamp64 *result); static inline void xdc_runtime_ITimestampProvider_get64( xdc_runtime_ITimestampProvider_Module mod, xdc_runtime_Types_Timestamp64 *result ) { mod->get64(result); } /* getFreq */ static inline void xdc_runtime_ITimestampProvider_getFreq(xdc_runtime_ITimestampProvider_Module mod, xdc_runtime_Types_FreqHz *freq); static inline void xdc_runtime_ITimestampProvider_getFreq( xdc_runtime_ITimestampProvider_Module mod, xdc_runtime_Types_FreqHz *freq ) { mod->getFreq(freq); } /* * ======== FUNCTION SELECTORS ======== */ /* These functions return function pointers for module and instance functions. * The functions accept modules and instances declared as types defined in this * interface, but they return functions defined for the actual objects passed * as parameters. These functions are not invoked by any generated code or * XDCtools internal code. */ /* get32_{FxnT,fxnP} */ typedef xdc_Bits32 (*xdc_runtime_ITimestampProvider_get32_FxnT)(void); static inline xdc_runtime_ITimestampProvider_get32_FxnT xdc_runtime_ITimestampProvider_get32_fxnP(xdc_runtime_ITimestampProvider_Module mod); static inline xdc_runtime_ITimestampProvider_get32_FxnT xdc_runtime_ITimestampProvider_get32_fxnP(xdc_runtime_ITimestampProvider_Module mod) { return (xdc_runtime_ITimestampProvider_get32_FxnT)mod->get32; } /* get64_{FxnT,fxnP} */ typedef void (*xdc_runtime_ITimestampProvider_get64_FxnT)(xdc_runtime_Types_Timestamp64* result); static inline xdc_runtime_ITimestampProvider_get64_FxnT xdc_runtime_ITimestampProvider_get64_fxnP(xdc_runtime_ITimestampProvider_Module mod); static inline xdc_runtime_ITimestampProvider_get64_FxnT xdc_runtime_ITimestampProvider_get64_fxnP(xdc_runtime_ITimestampProvider_Module mod) { return (xdc_runtime_ITimestampProvider_get64_FxnT)mod->get64; } /* getFreq_{FxnT,fxnP} */ typedef void (*xdc_runtime_ITimestampProvider_getFreq_FxnT)(xdc_runtime_Types_FreqHz* freq); static inline xdc_runtime_ITimestampProvider_getFreq_FxnT xdc_runtime_ITimestampProvider_getFreq_fxnP(xdc_runtime_ITimestampProvider_Module mod); static inline xdc_runtime_ITimestampProvider_getFreq_FxnT xdc_runtime_ITimestampProvider_getFreq_fxnP(xdc_runtime_ITimestampProvider_Module mod) { return (xdc_runtime_ITimestampProvider_getFreq_FxnT)mod->getFreq; } /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_ITimestampClient_Module xdc_runtime_ITimestampProvider_Module_upCast(xdc_runtime_ITimestampProvider_Module m); static inline xdc_runtime_ITimestampClient_Module xdc_runtime_ITimestampProvider_Module_upCast(xdc_runtime_ITimestampProvider_Module m) { return(xdc_runtime_ITimestampClient_Module)m; } /* Module_to_xdc_runtime_ITimestampClient */ /* Module_downCast */ static inline xdc_runtime_ITimestampProvider_Module xdc_runtime_ITimestampProvider_Module_downCast(xdc_runtime_ITimestampClient_Module m); static inline xdc_runtime_ITimestampProvider_Module xdc_runtime_ITimestampProvider_Module_downCast(xdc_runtime_ITimestampClient_Module m) { const xdc_runtime_Types_Base* b; for (b = m->__base; b != 0; b = b->base) { if (b == &xdc_runtime_ITimestampProvider_Interface__BASE__C) { return (xdc_runtime_ITimestampProvider_Module)m; } } return 0; } /* Module_from_xdc_runtime_ITimestampClient */ /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_interfaces_ITimestamp_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bits32 (*get32)(void); void (*get64)(xdc_runtime_Types_Timestamp64* result); void (*getFreq)(xdc_runtime_Types_FreqHz* freq); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base ti_sysbios_interfaces_ITimestamp_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* Module_id */ static inline xdc_runtime_Types_ModuleId ti_sysbios_interfaces_ITimestamp_Module_id(ti_sysbios_interfaces_ITimestamp_Module mod); static inline xdc_runtime_Types_ModuleId ti_sysbios_interfaces_ITimestamp_Module_id(ti_sysbios_interfaces_ITimestamp_Module mod) { return mod->__sysp->__mid; } /* * ======== FUNCTION SELECTORS ======== */ /* These functions return function pointers for module and instance functions. * The functions accept modules and instances declared as types defined in this * interface, but they return functions defined for the actual objects passed * as parameters. These functions are not invoked by any generated code or * XDCtools internal code. */ /* get32_{FxnT,fxnP} */ typedef xdc_Bits32 (*ti_sysbios_interfaces_ITimestamp_get32_FxnT)(void); static inline ti_sysbios_interfaces_ITimestamp_get32_FxnT ti_sysbios_interfaces_ITimestamp_get32_fxnP(ti_sysbios_interfaces_ITimestamp_Module __mod); static inline ti_sysbios_interfaces_ITimestamp_get32_FxnT ti_sysbios_interfaces_ITimestamp_get32_fxnP(ti_sysbios_interfaces_ITimestamp_Module __mod) { return (ti_sysbios_interfaces_ITimestamp_get32_FxnT)__mod->get32; } /* get64_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ITimestamp_get64_FxnT)(xdc_runtime_Types_Timestamp64* result); static inline ti_sysbios_interfaces_ITimestamp_get64_FxnT ti_sysbios_interfaces_ITimestamp_get64_fxnP(ti_sysbios_interfaces_ITimestamp_Module __mod); static inline ti_sysbios_interfaces_ITimestamp_get64_FxnT ti_sysbios_interfaces_ITimestamp_get64_fxnP(ti_sysbios_interfaces_ITimestamp_Module __mod) { return (ti_sysbios_interfaces_ITimestamp_get64_FxnT)__mod->get64; } /* getFreq_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ITimestamp_getFreq_FxnT)(xdc_runtime_Types_FreqHz* freq); static inline ti_sysbios_interfaces_ITimestamp_getFreq_FxnT ti_sysbios_interfaces_ITimestamp_getFreq_fxnP(ti_sysbios_interfaces_ITimestamp_Module __mod); static inline ti_sysbios_interfaces_ITimestamp_getFreq_FxnT ti_sysbios_interfaces_ITimestamp_getFreq_fxnP(ti_sysbios_interfaces_ITimestamp_Module __mod) { return (ti_sysbios_interfaces_ITimestamp_getFreq_FxnT)__mod->getFreq; } /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_ITimestampProvider_Module ti_sysbios_interfaces_ITimestamp_Module_upCast(ti_sysbios_interfaces_ITimestamp_Module m); static inline xdc_runtime_ITimestampProvider_Module ti_sysbios_interfaces_ITimestamp_Module_upCast(ti_sysbios_interfaces_ITimestamp_Module m) { return(xdc_runtime_ITimestampProvider_Module)m; } /* Module_to_xdc_runtime_ITimestampProvider */ /* Module_downCast */ static inline ti_sysbios_interfaces_ITimestamp_Module ti_sysbios_interfaces_ITimestamp_Module_downCast(xdc_runtime_ITimestampProvider_Module m); static inline ti_sysbios_interfaces_ITimestamp_Module ti_sysbios_interfaces_ITimestamp_Module_downCast(xdc_runtime_ITimestampProvider_Module m) { const xdc_runtime_Types_Base* b; for (b = m->__base; b; b = b->base) { if (b == &ti_sysbios_interfaces_ITimestamp_Interface__BASE__C) { return (ti_sysbios_interfaces_ITimestamp_Module)m; } } return 0; } /* Module_from_xdc_runtime_ITimestampProvider */ /* Module_upCast2 */ static inline xdc_runtime_ITimestampClient_Module ti_sysbios_interfaces_ITimestamp_Module_upCast2(ti_sysbios_interfaces_ITimestamp_Module m); static inline xdc_runtime_ITimestampClient_Module ti_sysbios_interfaces_ITimestamp_Module_upCast2(ti_sysbios_interfaces_ITimestamp_Module m) { return(xdc_runtime_ITimestampClient_Module)m; } /* Module_to_xdc_runtime_ITimestampClient */ /* Module_downCast2 */ static inline ti_sysbios_interfaces_ITimestamp_Module ti_sysbios_interfaces_ITimestamp_Module_downCast2(xdc_runtime_ITimestampClient_Module m); static inline ti_sysbios_interfaces_ITimestamp_Module ti_sysbios_interfaces_ITimestamp_Module_downCast2(xdc_runtime_ITimestampClient_Module m) { const xdc_runtime_Types_Base* b; for (b = m->__base; b; b = b->base) { if (b == &ti_sysbios_interfaces_ITimestamp_Interface__BASE__C) { return (ti_sysbios_interfaces_ITimestamp_Module)m; } } return 0; } /* Module_from_xdc_runtime_ITimestampClient */ /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== INTERNAL DEFINITIONS ======== */ /* MIPCCOUNTERL */ /* MIPCCOUNTERH */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsEnabled; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsEnabled ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsIncluded; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsIncluded ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gateObj; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gateObj ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gatePrms; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gatePrms ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerDefined; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerDefined ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerObj; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerObj ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn0; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn0 ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn1; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn1 ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn2; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn2 ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn4; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn4 ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn8; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn8 ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Object__count; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Object__count ti_sysbios_family_c28_f2837x_TimestampProvider_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Object__heap; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Object__heap ti_sysbios_family_c28_f2837x_TimestampProvider_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Object__sizeof; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Object__sizeof ti_sysbios_family_c28_f2837x_TimestampProvider_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Object__table; extern const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Object__table ti_sysbios_family_c28_f2837x_TimestampProvider_Object__table__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_family_c28_f2837x_TimestampProvider_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bits32 (*get32)(void); void (*get64)(xdc_runtime_Types_Timestamp64* result); void (*getFreq)(xdc_runtime_Types_FreqHz* freq); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_family_c28_f2837x_TimestampProvider_Fxns__ ti_sysbios_family_c28_f2837x_TimestampProvider_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_family_c28_f2837x_TimestampProvider_Module__startupDone__S( void ); /* get32__E */ extern xdc_Bits32 ti_sysbios_family_c28_f2837x_TimestampProvider_get32__E( void ); /* get64__E */ extern void ti_sysbios_family_c28_f2837x_TimestampProvider_get64__E( xdc_runtime_Types_Timestamp64 *result ); /* getFreq__E */ extern void ti_sysbios_family_c28_f2837x_TimestampProvider_getFreq__E( xdc_runtime_Types_FreqHz *freq ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_ITimestamp_Module ti_sysbios_family_c28_f2837x_TimestampProvider_Module_upCast(void); static inline ti_sysbios_interfaces_ITimestamp_Module ti_sysbios_family_c28_f2837x_TimestampProvider_Module_upCast(void) { return (ti_sysbios_interfaces_ITimestamp_Module)&ti_sysbios_family_c28_f2837x_TimestampProvider_Module__FXNS__C; } /* Module_to_ti_sysbios_interfaces_ITimestamp */ /* Module_upCast2 */ static inline xdc_runtime_ITimestampProvider_Module ti_sysbios_family_c28_f2837x_TimestampProvider_Module_upCast2(void); static inline xdc_runtime_ITimestampProvider_Module ti_sysbios_family_c28_f2837x_TimestampProvider_Module_upCast2(void) { return (xdc_runtime_ITimestampProvider_Module)&ti_sysbios_family_c28_f2837x_TimestampProvider_Module__FXNS__C; } /* Module_to_xdc_runtime_ITimestampProvider */ /* Module_upCast3 */ static inline xdc_runtime_ITimestampClient_Module ti_sysbios_family_c28_f2837x_TimestampProvider_Module_upCast3(void); static inline xdc_runtime_ITimestampClient_Module ti_sysbios_family_c28_f2837x_TimestampProvider_Module_upCast3(void) { return (xdc_runtime_ITimestampClient_Module)&ti_sysbios_family_c28_f2837x_TimestampProvider_Module__FXNS__C; } /* Module_to_xdc_runtime_ITimestampClient */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id ti_sysbios_family_c28_f2837x_TimestampProvider_Module_id(void); static inline CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id ti_sysbios_family_c28_f2837x_TimestampProvider_Module_id( void ) { return ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_family_c28_f2837x_TimestampProvider_Module_hasMask(void); static inline xdc_Bool ti_sysbios_family_c28_f2837x_TimestampProvider_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_family_c28_f2837x_TimestampProvider_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_family_c28_f2837x_TimestampProvider_Module_getMask( void ) { return ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask__C != 0 ? *ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_family_c28_f2837x_TimestampProvider_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_family_c28_f2837x_TimestampProvider_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask__C != 0) { *ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== module ti.sysbios.gates.GateHwi ======== */ typedef struct ti_sysbios_gates_GateHwi_Fxns__ ti_sysbios_gates_GateHwi_Fxns__; typedef const struct ti_sysbios_gates_GateHwi_Fxns__* ti_sysbios_gates_GateHwi_Module; typedef struct ti_sysbios_gates_GateHwi_Params ti_sysbios_gates_GateHwi_Params; typedef struct ti_sysbios_gates_GateHwi_Object ti_sysbios_gates_GateHwi_Object; typedef struct ti_sysbios_gates_GateHwi_Struct ti_sysbios_gates_GateHwi_Struct; typedef ti_sysbios_gates_GateHwi_Object* ti_sysbios_gates_GateHwi_Handle; typedef struct ti_sysbios_gates_GateHwi_Object__ ti_sysbios_gates_GateHwi_Instance_State; typedef ti_sysbios_gates_GateHwi_Object* ti_sysbios_gates_GateHwi_Instance; /* * ======== module ti.sysbios.gates.GateAll ======== */ typedef struct ti_sysbios_gates_GateAll_Fxns__ ti_sysbios_gates_GateAll_Fxns__; typedef const struct ti_sysbios_gates_GateAll_Fxns__* ti_sysbios_gates_GateAll_Module; typedef struct ti_sysbios_gates_GateAll_Params ti_sysbios_gates_GateAll_Params; typedef struct ti_sysbios_gates_GateAll_Object ti_sysbios_gates_GateAll_Object; typedef struct ti_sysbios_gates_GateAll_Struct ti_sysbios_gates_GateAll_Struct; typedef ti_sysbios_gates_GateAll_Object* ti_sysbios_gates_GateAll_Handle; typedef struct ti_sysbios_gates_GateAll_Object__ ti_sysbios_gates_GateAll_Instance_State; typedef ti_sysbios_gates_GateAll_Object* ti_sysbios_gates_GateAll_Instance; /* * ======== module ti.sysbios.gates.GateSwi ======== */ typedef struct ti_sysbios_gates_GateSwi_Fxns__ ti_sysbios_gates_GateSwi_Fxns__; typedef const struct ti_sysbios_gates_GateSwi_Fxns__* ti_sysbios_gates_GateSwi_Module; typedef struct ti_sysbios_gates_GateSwi_Params ti_sysbios_gates_GateSwi_Params; typedef struct ti_sysbios_gates_GateSwi_Object ti_sysbios_gates_GateSwi_Object; typedef struct ti_sysbios_gates_GateSwi_Struct ti_sysbios_gates_GateSwi_Struct; typedef ti_sysbios_gates_GateSwi_Object* ti_sysbios_gates_GateSwi_Handle; typedef struct ti_sysbios_gates_GateSwi_Object__ ti_sysbios_gates_GateSwi_Instance_State; typedef ti_sysbios_gates_GateSwi_Object* ti_sysbios_gates_GateSwi_Instance; /* * ======== module ti.sysbios.gates.GateTask ======== */ typedef struct ti_sysbios_gates_GateTask_Fxns__ ti_sysbios_gates_GateTask_Fxns__; typedef const struct ti_sysbios_gates_GateTask_Fxns__* ti_sysbios_gates_GateTask_Module; typedef struct ti_sysbios_gates_GateTask_Params ti_sysbios_gates_GateTask_Params; typedef struct ti_sysbios_gates_GateTask_Object ti_sysbios_gates_GateTask_Object; typedef struct ti_sysbios_gates_GateTask_Struct ti_sysbios_gates_GateTask_Struct; typedef ti_sysbios_gates_GateTask_Object* ti_sysbios_gates_GateTask_Handle; typedef struct ti_sysbios_gates_GateTask_Object__ ti_sysbios_gates_GateTask_Instance_State; typedef ti_sysbios_gates_GateTask_Object* ti_sysbios_gates_GateTask_Instance; /* * ======== module ti.sysbios.gates.GateTest ======== */ typedef struct ti_sysbios_gates_GateTest_Fxns__ ti_sysbios_gates_GateTest_Fxns__; typedef const struct ti_sysbios_gates_GateTest_Fxns__* ti_sysbios_gates_GateTest_Module; typedef struct ti_sysbios_gates_GateTest_Params ti_sysbios_gates_GateTest_Params; typedef struct ti_sysbios_gates_GateTest_Object ti_sysbios_gates_GateTest_Object; typedef struct ti_sysbios_gates_GateTest_Struct ti_sysbios_gates_GateTest_Struct; typedef ti_sysbios_gates_GateTest_Object* ti_sysbios_gates_GateTest_Handle; typedef struct ti_sysbios_gates_GateTest_Object__ ti_sysbios_gates_GateTest_Instance_State; typedef ti_sysbios_gates_GateTest_Object* ti_sysbios_gates_GateTest_Instance; /* * ======== module ti.sysbios.gates.GateMutexPri ======== */ typedef struct ti_sysbios_gates_GateMutexPri_Fxns__ ti_sysbios_gates_GateMutexPri_Fxns__; typedef const struct ti_sysbios_gates_GateMutexPri_Fxns__* ti_sysbios_gates_GateMutexPri_Module; typedef struct ti_sysbios_gates_GateMutexPri_Params ti_sysbios_gates_GateMutexPri_Params; typedef struct ti_sysbios_gates_GateMutexPri_Object ti_sysbios_gates_GateMutexPri_Object; typedef struct ti_sysbios_gates_GateMutexPri_Struct ti_sysbios_gates_GateMutexPri_Struct; typedef ti_sysbios_gates_GateMutexPri_Object* ti_sysbios_gates_GateMutexPri_Handle; typedef struct ti_sysbios_gates_GateMutexPri_Object__ ti_sysbios_gates_GateMutexPri_Instance_State; typedef ti_sysbios_gates_GateMutexPri_Object* ti_sysbios_gates_GateMutexPri_Instance; /* * ======== module ti.sysbios.gates.GateMutex ======== */ typedef struct ti_sysbios_gates_GateMutex_Fxns__ ti_sysbios_gates_GateMutex_Fxns__; typedef const struct ti_sysbios_gates_GateMutex_Fxns__* ti_sysbios_gates_GateMutex_Module; typedef struct ti_sysbios_gates_GateMutex_Params ti_sysbios_gates_GateMutex_Params; typedef struct ti_sysbios_gates_GateMutex_Object ti_sysbios_gates_GateMutex_Object; typedef struct ti_sysbios_gates_GateMutex_Struct ti_sysbios_gates_GateMutex_Struct; typedef ti_sysbios_gates_GateMutex_Object* ti_sysbios_gates_GateMutex_Handle; typedef struct ti_sysbios_gates_GateMutex_Object__ ti_sysbios_gates_GateMutex_Instance_State; typedef ti_sysbios_gates_GateMutex_Object* ti_sysbios_gates_GateMutex_Instance; /* * ======== module ti.sysbios.gates.GateSpinlock ======== */ typedef struct ti_sysbios_gates_GateSpinlock_Fxns__ ti_sysbios_gates_GateSpinlock_Fxns__; typedef const struct ti_sysbios_gates_GateSpinlock_Fxns__* ti_sysbios_gates_GateSpinlock_Module; typedef struct ti_sysbios_gates_GateSpinlock_Params ti_sysbios_gates_GateSpinlock_Params; typedef struct ti_sysbios_gates_GateSpinlock_Object ti_sysbios_gates_GateSpinlock_Object; typedef struct ti_sysbios_gates_GateSpinlock_Struct ti_sysbios_gates_GateSpinlock_Struct; typedef ti_sysbios_gates_GateSpinlock_Object* ti_sysbios_gates_GateSpinlock_Handle; typedef struct ti_sysbios_gates_GateSpinlock_Object__ ti_sysbios_gates_GateSpinlock_Instance_State; typedef ti_sysbios_gates_GateSpinlock_Object* ti_sysbios_gates_GateSpinlock_Instance; /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Q_BLOCKING */ /* Q_PREEMPTING */ /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_gates_GateHwi_Module__diagsEnabled; extern const CT__ti_sysbios_gates_GateHwi_Module__diagsEnabled ti_sysbios_gates_GateHwi_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_gates_GateHwi_Module__diagsIncluded; extern const CT__ti_sysbios_gates_GateHwi_Module__diagsIncluded ti_sysbios_gates_GateHwi_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_gates_GateHwi_Module__diagsMask; extern const CT__ti_sysbios_gates_GateHwi_Module__diagsMask ti_sysbios_gates_GateHwi_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_gates_GateHwi_Module__gateObj; extern const CT__ti_sysbios_gates_GateHwi_Module__gateObj ti_sysbios_gates_GateHwi_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_gates_GateHwi_Module__gatePrms; extern const CT__ti_sysbios_gates_GateHwi_Module__gatePrms ti_sysbios_gates_GateHwi_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_gates_GateHwi_Module__id; extern const CT__ti_sysbios_gates_GateHwi_Module__id ti_sysbios_gates_GateHwi_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_gates_GateHwi_Module__loggerDefined; extern const CT__ti_sysbios_gates_GateHwi_Module__loggerDefined ti_sysbios_gates_GateHwi_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_gates_GateHwi_Module__loggerObj; extern const CT__ti_sysbios_gates_GateHwi_Module__loggerObj ti_sysbios_gates_GateHwi_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_gates_GateHwi_Module__loggerFxn0; extern const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn0 ti_sysbios_gates_GateHwi_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_gates_GateHwi_Module__loggerFxn1; extern const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn1 ti_sysbios_gates_GateHwi_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_gates_GateHwi_Module__loggerFxn2; extern const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn2 ti_sysbios_gates_GateHwi_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_gates_GateHwi_Module__loggerFxn4; extern const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn4 ti_sysbios_gates_GateHwi_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_gates_GateHwi_Module__loggerFxn8; extern const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn8 ti_sysbios_gates_GateHwi_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_gates_GateHwi_Object__count; extern const CT__ti_sysbios_gates_GateHwi_Object__count ti_sysbios_gates_GateHwi_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_gates_GateHwi_Object__heap; extern const CT__ti_sysbios_gates_GateHwi_Object__heap ti_sysbios_gates_GateHwi_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_gates_GateHwi_Object__sizeof; extern const CT__ti_sysbios_gates_GateHwi_Object__sizeof ti_sysbios_gates_GateHwi_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_gates_GateHwi_Object__table; extern const CT__ti_sysbios_gates_GateHwi_Object__table ti_sysbios_gates_GateHwi_Object__table__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_gates_GateHwi_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_gates_GateHwi_Struct { const ti_sysbios_gates_GateHwi_Fxns__ *__fxns; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_gates_GateHwi_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bool (*query)(xdc_Int qual); xdc_IArg (*enter)(ti_sysbios_gates_GateHwi_Handle __inst); void (*leave)(ti_sysbios_gates_GateHwi_Handle __inst, xdc_IArg key); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_gates_GateHwi_Fxns__ ti_sysbios_gates_GateHwi_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Instance_init__E */ extern void ti_sysbios_gates_GateHwi_Instance_init__E(ti_sysbios_gates_GateHwi_Object *__obj, const ti_sysbios_gates_GateHwi_Params *__prms); /* create */ extern ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_create( const ti_sysbios_gates_GateHwi_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_gates_GateHwi_construct( ti_sysbios_gates_GateHwi_Struct *__obj, const ti_sysbios_gates_GateHwi_Params *__prms ); /* delete */ extern void ti_sysbios_gates_GateHwi_delete(ti_sysbios_gates_GateHwi_Handle *instp); /* destruct */ extern void ti_sysbios_gates_GateHwi_destruct(ti_sysbios_gates_GateHwi_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_gates_GateHwi_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_gates_GateHwi_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_gates_GateHwi_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_gates_GateHwi_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_gates_GateHwi_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_gates_GateHwi_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_gates_GateHwi_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_gates_GateHwi_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* query__E */ extern xdc_Bool ti_sysbios_gates_GateHwi_query__E( xdc_Int qual ); /* enter__E */ extern xdc_IArg ti_sysbios_gates_GateHwi_enter__E( ti_sysbios_gates_GateHwi_Handle __inst ); /* leave__E */ extern void ti_sysbios_gates_GateHwi_leave__E( ti_sysbios_gates_GateHwi_Handle __inst, xdc_IArg key ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_IGateProvider_Module ti_sysbios_gates_GateHwi_Module_upCast(void); static inline xdc_runtime_IGateProvider_Module ti_sysbios_gates_GateHwi_Module_upCast(void) { return (xdc_runtime_IGateProvider_Module)&ti_sysbios_gates_GateHwi_Module__FXNS__C; } /* Module_to_xdc_runtime_IGateProvider */ /* Handle_upCast */ static inline xdc_runtime_IGateProvider_Handle ti_sysbios_gates_GateHwi_Handle_upCast(ti_sysbios_gates_GateHwi_Handle i); static inline xdc_runtime_IGateProvider_Handle ti_sysbios_gates_GateHwi_Handle_upCast(ti_sysbios_gates_GateHwi_Handle i) { return (xdc_runtime_IGateProvider_Handle)i; } /* Handle_to_xdc_runtime_IGateProvider */ /* Handle_downCast */ static inline ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_Handle_downCast(xdc_runtime_IGateProvider_Handle i); static inline ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_Handle_downCast(xdc_runtime_IGateProvider_Handle i) { xdc_runtime_IGateProvider_Handle i2 = (xdc_runtime_IGateProvider_Handle)i; return (const void*)i2->__fxns == (const void*)&ti_sysbios_gates_GateHwi_Module__FXNS__C ? (ti_sysbios_gates_GateHwi_Handle)i : (ti_sysbios_gates_GateHwi_Handle)0; } /* Handle_from_xdc_runtime_IGateProvider */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_gates_GateHwi_Module__id ti_sysbios_gates_GateHwi_Module_id(void); static inline CT__ti_sysbios_gates_GateHwi_Module__id ti_sysbios_gates_GateHwi_Module_id( void ) { return ti_sysbios_gates_GateHwi_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_gates_GateHwi_Module_hasMask(void); static inline xdc_Bool ti_sysbios_gates_GateHwi_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_gates_GateHwi_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_gates_GateHwi_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_gates_GateHwi_Module_getMask( void ) { return ti_sysbios_gates_GateHwi_Module__diagsMask__C != 0 ? *ti_sysbios_gates_GateHwi_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_gates_GateHwi_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_gates_GateHwi_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_gates_GateHwi_Module__diagsMask__C != 0) { *ti_sysbios_gates_GateHwi_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_gates_GateHwi_Params_init(ti_sysbios_gates_GateHwi_Params *prms); static inline void ti_sysbios_gates_GateHwi_Params_init( ti_sysbios_gates_GateHwi_Params *prms ) { if (prms) { ti_sysbios_gates_GateHwi_Params__init__S(prms, 0, sizeof(ti_sysbios_gates_GateHwi_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_gates_GateHwi_Params_copy(ti_sysbios_gates_GateHwi_Params *dst, const ti_sysbios_gates_GateHwi_Params *src); static inline void ti_sysbios_gates_GateHwi_Params_copy(ti_sysbios_gates_GateHwi_Params *dst, const ti_sysbios_gates_GateHwi_Params *src) { if (dst) { ti_sysbios_gates_GateHwi_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_gates_GateHwi_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_Object_get(ti_sysbios_gates_GateHwi_Instance_State *oarr, int i); static inline ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_Object_get(ti_sysbios_gates_GateHwi_Instance_State *oarr, int i) { return (ti_sysbios_gates_GateHwi_Handle)ti_sysbios_gates_GateHwi_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_Object_first(void); static inline ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_Object_first(void) { return (ti_sysbios_gates_GateHwi_Handle)ti_sysbios_gates_GateHwi_Object__first__S(); } /* Object_next */ static inline ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_Object_next(ti_sysbios_gates_GateHwi_Object *obj); static inline ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_Object_next(ti_sysbios_gates_GateHwi_Object *obj) { return (ti_sysbios_gates_GateHwi_Handle)ti_sysbios_gates_GateHwi_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_gates_GateHwi_Handle_label(ti_sysbios_gates_GateHwi_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_gates_GateHwi_Handle_label(ti_sysbios_gates_GateHwi_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_gates_GateHwi_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_gates_GateHwi_Handle_name(ti_sysbios_gates_GateHwi_Handle inst); static inline xdc_String ti_sysbios_gates_GateHwi_Handle_name(ti_sysbios_gates_GateHwi_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_gates_GateHwi_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_handle(ti_sysbios_gates_GateHwi_Struct *str); static inline ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_handle(ti_sysbios_gates_GateHwi_Struct *str) { return (ti_sysbios_gates_GateHwi_Handle)str; } /* struct */ static inline ti_sysbios_gates_GateHwi_Struct *ti_sysbios_gates_GateHwi_struct(ti_sysbios_gates_GateHwi_Handle inst); static inline ti_sysbios_gates_GateHwi_Struct *ti_sysbios_gates_GateHwi_struct(ti_sysbios_gates_GateHwi_Handle inst) { return (ti_sysbios_gates_GateHwi_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Object */ struct ti_sysbios_gates_GateHwi_Object { const ti_sysbios_gates_GateHwi_Fxns__ *__fxns; }; /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2012, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== module ti.sysbios.knl.Clock ======== */ typedef struct ti_sysbios_knl_Clock_Module_State ti_sysbios_knl_Clock_Module_State; typedef struct ti_sysbios_knl_Clock_Params ti_sysbios_knl_Clock_Params; typedef struct ti_sysbios_knl_Clock_Object ti_sysbios_knl_Clock_Object; typedef struct ti_sysbios_knl_Clock_Struct ti_sysbios_knl_Clock_Struct; typedef ti_sysbios_knl_Clock_Object* ti_sysbios_knl_Clock_Handle; typedef struct ti_sysbios_knl_Clock_Object__ ti_sysbios_knl_Clock_Instance_State; typedef ti_sysbios_knl_Clock_Object* ti_sysbios_knl_Clock_Instance; /* * ======== module ti.sysbios.knl.Idle ======== */ /* * ======== module ti.sysbios.knl.Intrinsics ======== */ typedef struct ti_sysbios_knl_Intrinsics_Fxns__ ti_sysbios_knl_Intrinsics_Fxns__; typedef const struct ti_sysbios_knl_Intrinsics_Fxns__* ti_sysbios_knl_Intrinsics_Module; /* * ======== module ti.sysbios.knl.Event ======== */ typedef struct ti_sysbios_knl_Event_PendElem ti_sysbios_knl_Event_PendElem; typedef struct ti_sysbios_knl_Event_Params ti_sysbios_knl_Event_Params; typedef struct ti_sysbios_knl_Event_Object ti_sysbios_knl_Event_Object; typedef struct ti_sysbios_knl_Event_Struct ti_sysbios_knl_Event_Struct; typedef ti_sysbios_knl_Event_Object* ti_sysbios_knl_Event_Handle; typedef struct ti_sysbios_knl_Event_Object__ ti_sysbios_knl_Event_Instance_State; typedef ti_sysbios_knl_Event_Object* ti_sysbios_knl_Event_Instance; /* * ======== module ti.sysbios.knl.Mailbox ======== */ typedef struct ti_sysbios_knl_Mailbox_MbxElem ti_sysbios_knl_Mailbox_MbxElem; typedef struct ti_sysbios_knl_Mailbox_Params ti_sysbios_knl_Mailbox_Params; typedef struct ti_sysbios_knl_Mailbox_Object ti_sysbios_knl_Mailbox_Object; typedef struct ti_sysbios_knl_Mailbox_Struct ti_sysbios_knl_Mailbox_Struct; typedef ti_sysbios_knl_Mailbox_Object* ti_sysbios_knl_Mailbox_Handle; typedef struct ti_sysbios_knl_Mailbox_Object__ ti_sysbios_knl_Mailbox_Instance_State; typedef ti_sysbios_knl_Mailbox_Object* ti_sysbios_knl_Mailbox_Instance; /* * ======== module ti.sysbios.knl.Queue ======== */ typedef struct ti_sysbios_knl_Queue_Elem ti_sysbios_knl_Queue_Elem; typedef struct ti_sysbios_knl_Queue_Params ti_sysbios_knl_Queue_Params; typedef struct ti_sysbios_knl_Queue_Object ti_sysbios_knl_Queue_Object; typedef struct ti_sysbios_knl_Queue_Struct ti_sysbios_knl_Queue_Struct; typedef ti_sysbios_knl_Queue_Object* ti_sysbios_knl_Queue_Handle; typedef struct ti_sysbios_knl_Queue_Object__ ti_sysbios_knl_Queue_Instance_State; typedef ti_sysbios_knl_Queue_Object* ti_sysbios_knl_Queue_Instance; /* * ======== module ti.sysbios.knl.Semaphore ======== */ typedef struct ti_sysbios_knl_Semaphore_PendElem ti_sysbios_knl_Semaphore_PendElem; typedef struct ti_sysbios_knl_Semaphore_Params ti_sysbios_knl_Semaphore_Params; typedef struct ti_sysbios_knl_Semaphore_Object ti_sysbios_knl_Semaphore_Object; typedef struct ti_sysbios_knl_Semaphore_Struct ti_sysbios_knl_Semaphore_Struct; typedef ti_sysbios_knl_Semaphore_Object* ti_sysbios_knl_Semaphore_Handle; typedef struct ti_sysbios_knl_Semaphore_Object__ ti_sysbios_knl_Semaphore_Instance_State; typedef ti_sysbios_knl_Semaphore_Object* ti_sysbios_knl_Semaphore_Instance; /* * ======== module ti.sysbios.knl.Swi ======== */ typedef struct ti_sysbios_knl_Swi_HookSet ti_sysbios_knl_Swi_HookSet; typedef struct ti_sysbios_knl_Swi_Struct2__ ti_sysbios_knl_Swi_Struct2__; typedef struct ti_sysbios_knl_Swi_Module_State ti_sysbios_knl_Swi_Module_State; typedef struct ti_sysbios_knl_Swi_Params ti_sysbios_knl_Swi_Params; typedef struct ti_sysbios_knl_Swi_Object ti_sysbios_knl_Swi_Object; typedef struct ti_sysbios_knl_Swi_Struct ti_sysbios_knl_Swi_Struct; typedef ti_sysbios_knl_Swi_Object* ti_sysbios_knl_Swi_Handle; typedef struct ti_sysbios_knl_Swi_Object__ ti_sysbios_knl_Swi_Instance_State; typedef ti_sysbios_knl_Swi_Object* ti_sysbios_knl_Swi_Instance; /* * ======== module ti.sysbios.knl.Task ======== */ typedef struct ti_sysbios_knl_Task_Stat ti_sysbios_knl_Task_Stat; typedef struct ti_sysbios_knl_Task_HookSet ti_sysbios_knl_Task_HookSet; typedef struct ti_sysbios_knl_Task_PendElem ti_sysbios_knl_Task_PendElem; typedef struct ti_sysbios_knl_Task_Module_State ti_sysbios_knl_Task_Module_State; typedef struct ti_sysbios_knl_Task_RunQEntry ti_sysbios_knl_Task_RunQEntry; typedef struct ti_sysbios_knl_Task_Module_StateSmp ti_sysbios_knl_Task_Module_StateSmp; typedef struct ti_sysbios_knl_Task_Params ti_sysbios_knl_Task_Params; typedef struct ti_sysbios_knl_Task_Object ti_sysbios_knl_Task_Object; typedef struct ti_sysbios_knl_Task_Struct ti_sysbios_knl_Task_Struct; typedef ti_sysbios_knl_Task_Object* ti_sysbios_knl_Task_Handle; typedef struct ti_sysbios_knl_Task_Object__ ti_sysbios_knl_Task_Instance_State; typedef ti_sysbios_knl_Task_Object* ti_sysbios_knl_Task_Instance; /* * ======== module ti.sysbios.knl.Clock_TimerProxy ======== */ typedef struct ti_sysbios_knl_Clock_TimerProxy_Fxns__ ti_sysbios_knl_Clock_TimerProxy_Fxns__; typedef const struct ti_sysbios_knl_Clock_TimerProxy_Fxns__* ti_sysbios_knl_Clock_TimerProxy_Module; typedef struct ti_sysbios_knl_Clock_TimerProxy_Params ti_sysbios_knl_Clock_TimerProxy_Params; typedef struct ti_sysbios_interfaces_ITimer___Object *ti_sysbios_knl_Clock_TimerProxy_Handle; /* * ======== module ti.sysbios.knl.Intrinsics_SupportProxy ======== */ typedef struct ti_sysbios_knl_Intrinsics_SupportProxy_Fxns__ ti_sysbios_knl_Intrinsics_SupportProxy_Fxns__; typedef const struct ti_sysbios_knl_Intrinsics_SupportProxy_Fxns__* ti_sysbios_knl_Intrinsics_SupportProxy_Module; /* * ======== module ti.sysbios.knl.Task_SupportProxy ======== */ typedef struct ti_sysbios_knl_Task_SupportProxy_Fxns__ ti_sysbios_knl_Task_SupportProxy_Fxns__; typedef const struct ti_sysbios_knl_Task_SupportProxy_Fxns__* ti_sysbios_knl_Task_SupportProxy_Module; /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Elem */ struct ti_sysbios_knl_Queue_Elem { ti_sysbios_knl_Queue_Elem *volatile next; ti_sysbios_knl_Queue_Elem *volatile prev; }; /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_knl_Queue_Module__diagsEnabled; extern const CT__ti_sysbios_knl_Queue_Module__diagsEnabled ti_sysbios_knl_Queue_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_knl_Queue_Module__diagsIncluded; extern const CT__ti_sysbios_knl_Queue_Module__diagsIncluded ti_sysbios_knl_Queue_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_knl_Queue_Module__diagsMask; extern const CT__ti_sysbios_knl_Queue_Module__diagsMask ti_sysbios_knl_Queue_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Queue_Module__gateObj; extern const CT__ti_sysbios_knl_Queue_Module__gateObj ti_sysbios_knl_Queue_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_knl_Queue_Module__gatePrms; extern const CT__ti_sysbios_knl_Queue_Module__gatePrms ti_sysbios_knl_Queue_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_knl_Queue_Module__id; extern const CT__ti_sysbios_knl_Queue_Module__id ti_sysbios_knl_Queue_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_knl_Queue_Module__loggerDefined; extern const CT__ti_sysbios_knl_Queue_Module__loggerDefined ti_sysbios_knl_Queue_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Queue_Module__loggerObj; extern const CT__ti_sysbios_knl_Queue_Module__loggerObj ti_sysbios_knl_Queue_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_knl_Queue_Module__loggerFxn0; extern const CT__ti_sysbios_knl_Queue_Module__loggerFxn0 ti_sysbios_knl_Queue_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_knl_Queue_Module__loggerFxn1; extern const CT__ti_sysbios_knl_Queue_Module__loggerFxn1 ti_sysbios_knl_Queue_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_knl_Queue_Module__loggerFxn2; extern const CT__ti_sysbios_knl_Queue_Module__loggerFxn2 ti_sysbios_knl_Queue_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_knl_Queue_Module__loggerFxn4; extern const CT__ti_sysbios_knl_Queue_Module__loggerFxn4 ti_sysbios_knl_Queue_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_knl_Queue_Module__loggerFxn8; extern const CT__ti_sysbios_knl_Queue_Module__loggerFxn8 ti_sysbios_knl_Queue_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_knl_Queue_Object__count; extern const CT__ti_sysbios_knl_Queue_Object__count ti_sysbios_knl_Queue_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_knl_Queue_Object__heap; extern const CT__ti_sysbios_knl_Queue_Object__heap ti_sysbios_knl_Queue_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_knl_Queue_Object__sizeof; extern const CT__ti_sysbios_knl_Queue_Object__sizeof ti_sysbios_knl_Queue_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_knl_Queue_Object__table; extern const CT__ti_sysbios_knl_Queue_Object__table ti_sysbios_knl_Queue_Object__table__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_knl_Queue_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_knl_Queue_Struct { ti_sysbios_knl_Queue_Elem __f0; xdc_runtime_Types_CordAddr __name; }; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Instance_init__E */ extern void ti_sysbios_knl_Queue_Instance_init__E(ti_sysbios_knl_Queue_Object *__obj, const ti_sysbios_knl_Queue_Params *__prms); /* create */ extern ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Queue_create( const ti_sysbios_knl_Queue_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_knl_Queue_construct( ti_sysbios_knl_Queue_Struct *__obj, const ti_sysbios_knl_Queue_Params *__prms ); /* delete */ extern void ti_sysbios_knl_Queue_delete(ti_sysbios_knl_Queue_Handle *instp); /* destruct */ extern void ti_sysbios_knl_Queue_destruct(ti_sysbios_knl_Queue_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_knl_Queue_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_knl_Queue_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_knl_Queue_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_knl_Queue_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_knl_Queue_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_knl_Queue_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_knl_Queue_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_knl_Queue_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* elemClear__E */ extern void ti_sysbios_knl_Queue_elemClear__E( ti_sysbios_knl_Queue_Elem *qelem ); /* insert__E */ extern void ti_sysbios_knl_Queue_insert__E( ti_sysbios_knl_Queue_Elem *qelem, ti_sysbios_knl_Queue_Elem *elem ); /* next__E */ extern xdc_Ptr ti_sysbios_knl_Queue_next__E( ti_sysbios_knl_Queue_Elem *qelem ); /* prev__E */ extern xdc_Ptr ti_sysbios_knl_Queue_prev__E( ti_sysbios_knl_Queue_Elem *qelem ); /* remove__E */ extern void ti_sysbios_knl_Queue_remove__E( ti_sysbios_knl_Queue_Elem *qelem ); /* isQueued__E */ extern xdc_Bool ti_sysbios_knl_Queue_isQueued__E( ti_sysbios_knl_Queue_Elem *qelem ); /* dequeue__E */ extern xdc_Ptr ti_sysbios_knl_Queue_dequeue__E( ti_sysbios_knl_Queue_Handle __inst ); /* empty__E */ extern xdc_Bool ti_sysbios_knl_Queue_empty__E( ti_sysbios_knl_Queue_Handle __inst ); /* enqueue__E */ extern void ti_sysbios_knl_Queue_enqueue__E( ti_sysbios_knl_Queue_Handle __inst, ti_sysbios_knl_Queue_Elem *elem ); /* get__E */ extern xdc_Ptr ti_sysbios_knl_Queue_get__E( ti_sysbios_knl_Queue_Handle __inst ); /* getTail__E */ extern xdc_Ptr ti_sysbios_knl_Queue_getTail__E( ti_sysbios_knl_Queue_Handle __inst ); /* head__E */ extern xdc_Ptr ti_sysbios_knl_Queue_head__E( ti_sysbios_knl_Queue_Handle __inst ); /* put__E */ extern void ti_sysbios_knl_Queue_put__E( ti_sysbios_knl_Queue_Handle __inst, ti_sysbios_knl_Queue_Elem *elem ); /* putHead__E */ extern void ti_sysbios_knl_Queue_putHead__E( ti_sysbios_knl_Queue_Handle __inst, ti_sysbios_knl_Queue_Elem *elem ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_knl_Queue_Module__id ti_sysbios_knl_Queue_Module_id(void); static inline CT__ti_sysbios_knl_Queue_Module__id ti_sysbios_knl_Queue_Module_id( void ) { return ti_sysbios_knl_Queue_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_knl_Queue_Module_hasMask(void); static inline xdc_Bool ti_sysbios_knl_Queue_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_knl_Queue_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_knl_Queue_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_knl_Queue_Module_getMask( void ) { return ti_sysbios_knl_Queue_Module__diagsMask__C != 0 ? *ti_sysbios_knl_Queue_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_knl_Queue_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_knl_Queue_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_knl_Queue_Module__diagsMask__C != 0) { *ti_sysbios_knl_Queue_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_knl_Queue_Params_init(ti_sysbios_knl_Queue_Params *prms); static inline void ti_sysbios_knl_Queue_Params_init( ti_sysbios_knl_Queue_Params *prms ) { if (prms) { ti_sysbios_knl_Queue_Params__init__S(prms, 0, sizeof(ti_sysbios_knl_Queue_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_knl_Queue_Params_copy(ti_sysbios_knl_Queue_Params *dst, const ti_sysbios_knl_Queue_Params *src); static inline void ti_sysbios_knl_Queue_Params_copy(ti_sysbios_knl_Queue_Params *dst, const ti_sysbios_knl_Queue_Params *src) { if (dst) { ti_sysbios_knl_Queue_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_knl_Queue_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Queue_Object_get(ti_sysbios_knl_Queue_Instance_State *oarr, int i); static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Queue_Object_get(ti_sysbios_knl_Queue_Instance_State *oarr, int i) { return (ti_sysbios_knl_Queue_Handle)ti_sysbios_knl_Queue_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Queue_Object_first(void); static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Queue_Object_first(void) { return (ti_sysbios_knl_Queue_Handle)ti_sysbios_knl_Queue_Object__first__S(); } /* Object_next */ static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Queue_Object_next(ti_sysbios_knl_Queue_Object *obj); static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Queue_Object_next(ti_sysbios_knl_Queue_Object *obj) { return (ti_sysbios_knl_Queue_Handle)ti_sysbios_knl_Queue_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_knl_Queue_Handle_label(ti_sysbios_knl_Queue_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_knl_Queue_Handle_label(ti_sysbios_knl_Queue_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_knl_Queue_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_knl_Queue_Handle_name(ti_sysbios_knl_Queue_Handle inst); static inline xdc_String ti_sysbios_knl_Queue_Handle_name(ti_sysbios_knl_Queue_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_knl_Queue_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Queue_handle(ti_sysbios_knl_Queue_Struct *str); static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Queue_handle(ti_sysbios_knl_Queue_Struct *str) { return (ti_sysbios_knl_Queue_Handle)str; } /* struct */ static inline ti_sysbios_knl_Queue_Struct *ti_sysbios_knl_Queue_struct(ti_sysbios_knl_Queue_Handle inst); static inline ti_sysbios_knl_Queue_Struct *ti_sysbios_knl_Queue_struct(ti_sysbios_knl_Queue_Handle inst) { return (ti_sysbios_knl_Queue_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Object */ struct ti_sysbios_knl_Queue_Object { ti_sysbios_knl_Queue_Elem elem; }; /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef void (*ti_sysbios_knl_Swi_FuncPtr)(xdc_UArg __arg1, xdc_UArg __arg2); /* HookSet */ struct ti_sysbios_knl_Swi_HookSet { void (*registerFxn)(xdc_Int __arg1); void (*createFxn)(ti_sysbios_knl_Swi_Handle __arg1, xdc_runtime_Error_Block* __arg2); void (*readyFxn)(ti_sysbios_knl_Swi_Handle __arg1); void (*beginFxn)(ti_sysbios_knl_Swi_Handle __arg1); void (*endFxn)(ti_sysbios_knl_Swi_Handle __arg1); void (*deleteFxn)(ti_sysbios_knl_Swi_Handle __arg1); }; /* Struct2__ */ typedef xdc_Ptr __T1_ti_sysbios_knl_Swi_Struct2____hookEnv; typedef xdc_Ptr *__ARRAY1_ti_sysbios_knl_Swi_Struct2____hookEnv; typedef const xdc_Ptr *__CARRAY1_ti_sysbios_knl_Swi_Struct2____hookEnv; typedef __CARRAY1_ti_sysbios_knl_Swi_Struct2____hookEnv __TA_ti_sysbios_knl_Swi_Struct2____hookEnv; struct ti_sysbios_knl_Swi_Struct2__ { ti_sysbios_knl_Queue_Elem qElem; ti_sysbios_knl_Swi_FuncPtr fxn; xdc_UArg arg0; xdc_UArg arg1; xdc_UInt priority; xdc_UInt mask; xdc_Bool posted; xdc_UInt initTrigger; xdc_UInt trigger; ti_sysbios_knl_Queue_Handle readyQ; __TA_ti_sysbios_knl_Swi_Struct2____hookEnv hookEnv; xdc_runtime_Types_CordAddr name; }; /* Struct2 */ typedef ti_sysbios_knl_Swi_Struct2__ ti_sysbios_knl_Swi_Struct2; /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_knl_Swi_Args__create { ti_sysbios_knl_Swi_FuncPtr swiFxn; } ti_sysbios_knl_Swi_Args__create; /* * ======== INTERNAL DEFINITIONS ======== */ /* Instance_State */ typedef xdc_Ptr __T1_ti_sysbios_knl_Swi_Instance_State__hookEnv; typedef xdc_Ptr *__ARRAY1_ti_sysbios_knl_Swi_Instance_State__hookEnv; typedef const xdc_Ptr *__CARRAY1_ti_sysbios_knl_Swi_Instance_State__hookEnv; typedef __ARRAY1_ti_sysbios_knl_Swi_Instance_State__hookEnv __TA_ti_sysbios_knl_Swi_Instance_State__hookEnv; /* Module_State */ typedef ti_sysbios_knl_Queue_Instance_State __T1_ti_sysbios_knl_Swi_Module_State__readyQ; typedef ti_sysbios_knl_Queue_Instance_State *__ARRAY1_ti_sysbios_knl_Swi_Module_State__readyQ; typedef const ti_sysbios_knl_Queue_Instance_State *__CARRAY1_ti_sysbios_knl_Swi_Module_State__readyQ; typedef __ARRAY1_ti_sysbios_knl_Swi_Module_State__readyQ __TA_ti_sysbios_knl_Swi_Module_State__readyQ; typedef ti_sysbios_knl_Swi_Handle __T1_ti_sysbios_knl_Swi_Module_State__constructedSwis; typedef ti_sysbios_knl_Swi_Handle *__ARRAY1_ti_sysbios_knl_Swi_Module_State__constructedSwis; typedef const ti_sysbios_knl_Swi_Handle *__CARRAY1_ti_sysbios_knl_Swi_Module_State__constructedSwis; typedef __ARRAY1_ti_sysbios_knl_Swi_Module_State__constructedSwis __TA_ti_sysbios_knl_Swi_Module_State__constructedSwis; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_knl_Swi_Module__diagsEnabled; extern const CT__ti_sysbios_knl_Swi_Module__diagsEnabled ti_sysbios_knl_Swi_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_knl_Swi_Module__diagsIncluded; extern const CT__ti_sysbios_knl_Swi_Module__diagsIncluded ti_sysbios_knl_Swi_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_knl_Swi_Module__diagsMask; extern const CT__ti_sysbios_knl_Swi_Module__diagsMask ti_sysbios_knl_Swi_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Swi_Module__gateObj; extern const CT__ti_sysbios_knl_Swi_Module__gateObj ti_sysbios_knl_Swi_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_knl_Swi_Module__gatePrms; extern const CT__ti_sysbios_knl_Swi_Module__gatePrms ti_sysbios_knl_Swi_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_knl_Swi_Module__id; extern const CT__ti_sysbios_knl_Swi_Module__id ti_sysbios_knl_Swi_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_knl_Swi_Module__loggerDefined; extern const CT__ti_sysbios_knl_Swi_Module__loggerDefined ti_sysbios_knl_Swi_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Swi_Module__loggerObj; extern const CT__ti_sysbios_knl_Swi_Module__loggerObj ti_sysbios_knl_Swi_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_knl_Swi_Module__loggerFxn0; extern const CT__ti_sysbios_knl_Swi_Module__loggerFxn0 ti_sysbios_knl_Swi_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_knl_Swi_Module__loggerFxn1; extern const CT__ti_sysbios_knl_Swi_Module__loggerFxn1 ti_sysbios_knl_Swi_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_knl_Swi_Module__loggerFxn2; extern const CT__ti_sysbios_knl_Swi_Module__loggerFxn2 ti_sysbios_knl_Swi_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_knl_Swi_Module__loggerFxn4; extern const CT__ti_sysbios_knl_Swi_Module__loggerFxn4 ti_sysbios_knl_Swi_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_knl_Swi_Module__loggerFxn8; extern const CT__ti_sysbios_knl_Swi_Module__loggerFxn8 ti_sysbios_knl_Swi_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_knl_Swi_Object__count; extern const CT__ti_sysbios_knl_Swi_Object__count ti_sysbios_knl_Swi_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_knl_Swi_Object__heap; extern const CT__ti_sysbios_knl_Swi_Object__heap ti_sysbios_knl_Swi_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_knl_Swi_Object__sizeof; extern const CT__ti_sysbios_knl_Swi_Object__sizeof ti_sysbios_knl_Swi_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_knl_Swi_Object__table; extern const CT__ti_sysbios_knl_Swi_Object__table ti_sysbios_knl_Swi_Object__table__C; /* LM_begin */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Swi_LM_begin; extern const CT__ti_sysbios_knl_Swi_LM_begin ti_sysbios_knl_Swi_LM_begin__C; /* LD_end */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Swi_LD_end; extern const CT__ti_sysbios_knl_Swi_LD_end ti_sysbios_knl_Swi_LD_end__C; /* LM_post */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Swi_LM_post; extern const CT__ti_sysbios_knl_Swi_LM_post ti_sysbios_knl_Swi_LM_post__C; /* A_swiDisabled */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Swi_A_swiDisabled; extern const CT__ti_sysbios_knl_Swi_A_swiDisabled ti_sysbios_knl_Swi_A_swiDisabled__C; /* A_badPriority */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Swi_A_badPriority; extern const CT__ti_sysbios_knl_Swi_A_badPriority ti_sysbios_knl_Swi_A_badPriority__C; /* numPriorities */ typedef xdc_UInt CT__ti_sysbios_knl_Swi_numPriorities; extern const CT__ti_sysbios_knl_Swi_numPriorities ti_sysbios_knl_Swi_numPriorities__C; /* hooks */ typedef ti_sysbios_knl_Swi_HookSet __T1_ti_sysbios_knl_Swi_hooks; typedef struct { int length; ti_sysbios_knl_Swi_HookSet *elem; } __ARRAY1_ti_sysbios_knl_Swi_hooks; typedef struct { int length; ti_sysbios_knl_Swi_HookSet const *elem; } __CARRAY1_ti_sysbios_knl_Swi_hooks; typedef __CARRAY1_ti_sysbios_knl_Swi_hooks __TA_ti_sysbios_knl_Swi_hooks; typedef __CARRAY1_ti_sysbios_knl_Swi_hooks CT__ti_sysbios_knl_Swi_hooks; extern const CT__ti_sysbios_knl_Swi_hooks ti_sysbios_knl_Swi_hooks__C; /* taskDisable */ typedef xdc_UInt (*CT__ti_sysbios_knl_Swi_taskDisable)(void); extern const CT__ti_sysbios_knl_Swi_taskDisable ti_sysbios_knl_Swi_taskDisable__C; /* taskRestore */ typedef void (*CT__ti_sysbios_knl_Swi_taskRestore)(xdc_UInt __arg1); extern const CT__ti_sysbios_knl_Swi_taskRestore ti_sysbios_knl_Swi_taskRestore__C; /* numConstructedSwis */ typedef xdc_UInt CT__ti_sysbios_knl_Swi_numConstructedSwis; extern const CT__ti_sysbios_knl_Swi_numConstructedSwis ti_sysbios_knl_Swi_numConstructedSwis__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_knl_Swi_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_UArg arg0; xdc_UArg arg1; xdc_UInt priority; xdc_UInt trigger; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_knl_Swi_Struct { ti_sysbios_knl_Queue_Elem __f0; ti_sysbios_knl_Swi_FuncPtr __f1; xdc_UArg __f2; xdc_UArg __f3; xdc_UInt __f4; xdc_UInt __f5; xdc_Bool __f6; xdc_UInt __f7; xdc_UInt __f8; ti_sysbios_knl_Queue_Handle __f9; __TA_ti_sysbios_knl_Swi_Instance_State__hookEnv __f10; xdc_runtime_Types_CordAddr __name; }; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ extern xdc_Int ti_sysbios_knl_Swi_Module_startup__E( xdc_Int state ); extern xdc_Int ti_sysbios_knl_Swi_Module_startup__F( xdc_Int state ); /* Instance_init__E */ extern xdc_Int ti_sysbios_knl_Swi_Instance_init__E(ti_sysbios_knl_Swi_Object *__obj, ti_sysbios_knl_Swi_FuncPtr swiFxn, const ti_sysbios_knl_Swi_Params *__prms, xdc_runtime_Error_Block *__eb); /* Instance_finalize__E */ extern void ti_sysbios_knl_Swi_Instance_finalize__E(ti_sysbios_knl_Swi_Object *__obj, int __ec); /* create */ extern ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_create( ti_sysbios_knl_Swi_FuncPtr swiFxn, const ti_sysbios_knl_Swi_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_knl_Swi_construct( ti_sysbios_knl_Swi_Struct *__obj, ti_sysbios_knl_Swi_FuncPtr swiFxn, const ti_sysbios_knl_Swi_Params *__prms, xdc_runtime_Error_Block *__eb ); /* delete */ extern void ti_sysbios_knl_Swi_delete(ti_sysbios_knl_Swi_Handle *instp); /* destruct */ extern void ti_sysbios_knl_Swi_destruct(ti_sysbios_knl_Swi_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_knl_Swi_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_knl_Swi_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_knl_Swi_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_knl_Swi_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_knl_Swi_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_knl_Swi_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_knl_Swi_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_knl_Swi_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* construct2__E */ extern ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_construct2__E( ti_sysbios_knl_Swi_Struct2 *swi, ti_sysbios_knl_Swi_FuncPtr swiFxn, const ti_sysbios_knl_Swi_Params *prms ); /* startup__E */ extern void ti_sysbios_knl_Swi_startup__E( void ); /* enabled__E */ extern xdc_Bool ti_sysbios_knl_Swi_enabled__E( void ); /* unlockSched__E */ extern void ti_sysbios_knl_Swi_unlockSched__E( void ); /* disable__E */ extern xdc_UInt ti_sysbios_knl_Swi_disable__E( void ); /* enable__E */ extern void ti_sysbios_knl_Swi_enable__E( void ); /* restore__E */ extern void ti_sysbios_knl_Swi_restore__E( xdc_UInt key ); /* restoreHwi__E */ extern void ti_sysbios_knl_Swi_restoreHwi__E( xdc_UInt key ); /* self__E */ extern ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_self__E( void ); /* getTrigger__E */ extern xdc_UInt ti_sysbios_knl_Swi_getTrigger__E( void ); /* raisePri__E */ extern xdc_UInt ti_sysbios_knl_Swi_raisePri__E( xdc_UInt priority ); /* restorePri__E */ extern void ti_sysbios_knl_Swi_restorePri__E( xdc_UInt key ); /* andn__E */ extern void ti_sysbios_knl_Swi_andn__E( ti_sysbios_knl_Swi_Handle __inst, xdc_UInt mask ); /* dec__E */ extern void ti_sysbios_knl_Swi_dec__E( ti_sysbios_knl_Swi_Handle __inst ); /* getHookContext__E */ extern xdc_Ptr ti_sysbios_knl_Swi_getHookContext__E( ti_sysbios_knl_Swi_Handle __inst, xdc_Int id ); /* setHookContext__E */ extern void ti_sysbios_knl_Swi_setHookContext__E( ti_sysbios_knl_Swi_Handle __inst, xdc_Int id, xdc_Ptr hookContext ); /* getPri__E */ extern xdc_UInt ti_sysbios_knl_Swi_getPri__E( ti_sysbios_knl_Swi_Handle __inst ); /* getFunc__E */ extern ti_sysbios_knl_Swi_FuncPtr ti_sysbios_knl_Swi_getFunc__E( ti_sysbios_knl_Swi_Handle __inst, xdc_UArg *arg0, xdc_UArg *arg1 ); /* getAttrs__E */ extern void ti_sysbios_knl_Swi_getAttrs__E( ti_sysbios_knl_Swi_Handle __inst, ti_sysbios_knl_Swi_FuncPtr *swiFxn, ti_sysbios_knl_Swi_Params *params ); /* setAttrs__E */ extern void ti_sysbios_knl_Swi_setAttrs__E( ti_sysbios_knl_Swi_Handle __inst, ti_sysbios_knl_Swi_FuncPtr swiFxn, ti_sysbios_knl_Swi_Params *params ); /* setPri__E */ extern void ti_sysbios_knl_Swi_setPri__E( ti_sysbios_knl_Swi_Handle __inst, xdc_UInt priority ); /* inc__E */ extern void ti_sysbios_knl_Swi_inc__E( ti_sysbios_knl_Swi_Handle __inst ); /* or__E */ extern void ti_sysbios_knl_Swi_or__E( ti_sysbios_knl_Swi_Handle __inst, xdc_UInt mask ); /* post__E */ extern void ti_sysbios_knl_Swi_post__E( ti_sysbios_knl_Swi_Handle __inst ); /* schedule__I */ extern void ti_sysbios_knl_Swi_schedule__I( void ); /* runLoop__I */ extern void ti_sysbios_knl_Swi_runLoop__I( void ); /* run__I */ extern void ti_sysbios_knl_Swi_run__I( ti_sysbios_knl_Swi_Object *swi ); /* postInit__I */ extern xdc_Int ti_sysbios_knl_Swi_postInit__I( ti_sysbios_knl_Swi_Object *swi, xdc_runtime_Error_Block *eb ); /* restoreSMP__I */ extern void ti_sysbios_knl_Swi_restoreSMP__I( void ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_knl_Swi_Module__id ti_sysbios_knl_Swi_Module_id(void); static inline CT__ti_sysbios_knl_Swi_Module__id ti_sysbios_knl_Swi_Module_id( void ) { return ti_sysbios_knl_Swi_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_knl_Swi_Module_hasMask(void); static inline xdc_Bool ti_sysbios_knl_Swi_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_knl_Swi_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_knl_Swi_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_knl_Swi_Module_getMask( void ) { return ti_sysbios_knl_Swi_Module__diagsMask__C != 0 ? *ti_sysbios_knl_Swi_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_knl_Swi_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_knl_Swi_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_knl_Swi_Module__diagsMask__C != 0) { *ti_sysbios_knl_Swi_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_knl_Swi_Params_init(ti_sysbios_knl_Swi_Params *prms); static inline void ti_sysbios_knl_Swi_Params_init( ti_sysbios_knl_Swi_Params *prms ) { if (prms) { ti_sysbios_knl_Swi_Params__init__S(prms, 0, sizeof(ti_sysbios_knl_Swi_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_knl_Swi_Params_copy(ti_sysbios_knl_Swi_Params *dst, const ti_sysbios_knl_Swi_Params *src); static inline void ti_sysbios_knl_Swi_Params_copy(ti_sysbios_knl_Swi_Params *dst, const ti_sysbios_knl_Swi_Params *src) { if (dst) { ti_sysbios_knl_Swi_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_knl_Swi_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_Object_get(ti_sysbios_knl_Swi_Instance_State *oarr, int i); static inline ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_Object_get(ti_sysbios_knl_Swi_Instance_State *oarr, int i) { return (ti_sysbios_knl_Swi_Handle)ti_sysbios_knl_Swi_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_Object_first(void); static inline ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_Object_first(void) { return (ti_sysbios_knl_Swi_Handle)ti_sysbios_knl_Swi_Object__first__S(); } /* Object_next */ static inline ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_Object_next(ti_sysbios_knl_Swi_Object *obj); static inline ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_Object_next(ti_sysbios_knl_Swi_Object *obj) { return (ti_sysbios_knl_Swi_Handle)ti_sysbios_knl_Swi_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_knl_Swi_Handle_label(ti_sysbios_knl_Swi_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_knl_Swi_Handle_label(ti_sysbios_knl_Swi_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_knl_Swi_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_knl_Swi_Handle_name(ti_sysbios_knl_Swi_Handle inst); static inline xdc_String ti_sysbios_knl_Swi_Handle_name(ti_sysbios_knl_Swi_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_knl_Swi_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_handle(ti_sysbios_knl_Swi_Struct *str); static inline ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_handle(ti_sysbios_knl_Swi_Struct *str) { return (ti_sysbios_knl_Swi_Handle)str; } /* struct */ static inline ti_sysbios_knl_Swi_Struct *ti_sysbios_knl_Swi_struct(ti_sysbios_knl_Swi_Handle inst); static inline ti_sysbios_knl_Swi_Struct *ti_sysbios_knl_Swi_struct(ti_sysbios_knl_Swi_Handle inst) { return (ti_sysbios_knl_Swi_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct ti_sysbios_knl_Swi_Module_State { volatile xdc_Bool locked; xdc_UInt curSet; xdc_UInt curTrigger; ti_sysbios_knl_Swi_Handle curSwi; ti_sysbios_knl_Queue_Handle curQ; __TA_ti_sysbios_knl_Swi_Module_State__readyQ readyQ; __TA_ti_sysbios_knl_Swi_Module_State__constructedSwis constructedSwis; }; /* Module__state__V */ extern struct ti_sysbios_knl_Swi_Module_State__ ti_sysbios_knl_Swi_Module__state__V; /* Object */ struct ti_sysbios_knl_Swi_Object { ti_sysbios_knl_Queue_Elem qElem; ti_sysbios_knl_Swi_FuncPtr fxn; xdc_UArg arg0; xdc_UArg arg1; xdc_UInt priority; xdc_UInt mask; xdc_Bool posted; xdc_UInt initTrigger; xdc_UInt trigger; ti_sysbios_knl_Queue_Handle readyQ; __TA_ti_sysbios_knl_Swi_Instance_State__hookEnv hookEnv; }; /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_knl_Clock_TimerProxy_FuncPtr; /* ANY */ /* StartMode */ typedef ti_sysbios_interfaces_ITimer_StartMode ti_sysbios_knl_Clock_TimerProxy_StartMode; /* RunMode */ typedef ti_sysbios_interfaces_ITimer_RunMode ti_sysbios_knl_Clock_TimerProxy_RunMode; /* Status */ typedef ti_sysbios_interfaces_ITimer_Status ti_sysbios_knl_Clock_TimerProxy_Status; /* PeriodType */ typedef ti_sysbios_interfaces_ITimer_PeriodType ti_sysbios_knl_Clock_TimerProxy_PeriodType; /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_knl_Clock_TimerProxy_Args__create { xdc_Int id; ti_sysbios_interfaces_ITimer_FuncPtr tickFxn; } ti_sysbios_knl_Clock_TimerProxy_Args__create; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_knl_Clock_TimerProxy_Module__diagsEnabled; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__diagsEnabled ti_sysbios_knl_Clock_TimerProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_knl_Clock_TimerProxy_Module__diagsIncluded; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__diagsIncluded ti_sysbios_knl_Clock_TimerProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_knl_Clock_TimerProxy_Module__diagsMask; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__diagsMask ti_sysbios_knl_Clock_TimerProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Clock_TimerProxy_Module__gateObj; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__gateObj ti_sysbios_knl_Clock_TimerProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_knl_Clock_TimerProxy_Module__gatePrms; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__gatePrms ti_sysbios_knl_Clock_TimerProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_knl_Clock_TimerProxy_Module__id; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__id ti_sysbios_knl_Clock_TimerProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerDefined; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerDefined ti_sysbios_knl_Clock_TimerProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerObj; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerObj ti_sysbios_knl_Clock_TimerProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn0; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn0 ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn1; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn1 ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn2; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn2 ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn4; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn4 ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn8; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn8 ti_sysbios_knl_Clock_TimerProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_knl_Clock_TimerProxy_Object__count; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Object__count ti_sysbios_knl_Clock_TimerProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_knl_Clock_TimerProxy_Object__heap; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Object__heap ti_sysbios_knl_Clock_TimerProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_knl_Clock_TimerProxy_Object__sizeof; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Object__sizeof ti_sysbios_knl_Clock_TimerProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_knl_Clock_TimerProxy_Object__table; extern const CT__ti_sysbios_knl_Clock_TimerProxy_Object__table ti_sysbios_knl_Clock_TimerProxy_Object__table__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_knl_Clock_TimerProxy_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; ti_sysbios_interfaces_ITimer_RunMode runMode; ti_sysbios_interfaces_ITimer_StartMode startMode; xdc_UArg arg; xdc_UInt32 period; ti_sysbios_interfaces_ITimer_PeriodType periodType; xdc_runtime_Types_FreqHz extFreq; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_knl_Clock_TimerProxy_Struct { const ti_sysbios_knl_Clock_TimerProxy_Fxns__ *__fxns; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_knl_Clock_TimerProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_UInt (*getNumTimers)(void); ti_sysbios_interfaces_ITimer_Status (*getStatus)(xdc_UInt id); void (*startup)(void); xdc_UInt32 (*getMaxTicks)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst); void (*setNextTick)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 ticks); void (*start)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst); void (*stop)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst); void (*setPeriod)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 period); xdc_Bool (*setPeriodMicroSecs)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 microsecs); xdc_UInt32 (*getPeriod)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst); xdc_UInt32 (*getCount)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst); void (*getFreq)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_runtime_Types_FreqHz* freq); ti_sysbios_interfaces_ITimer_FuncPtr (*getFunc)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UArg* arg); void (*setFunc)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg); void (*trigger)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 cycles); xdc_UInt32 (*getExpiredCounts)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst); xdc_UInt32 (*getExpiredTicks)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 tickPeriod); xdc_UInt32 (*getCurrentTick)(ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_Bool save); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_knl_Clock_TimerProxy_Fxns__ ti_sysbios_knl_Clock_TimerProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* create */ extern ti_sysbios_knl_Clock_TimerProxy_Handle ti_sysbios_knl_Clock_TimerProxy_create( xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_knl_Clock_TimerProxy_Params *__prms, xdc_runtime_Error_Block *__eb ); /* delete */ extern void ti_sysbios_knl_Clock_TimerProxy_delete(ti_sysbios_knl_Clock_TimerProxy_Handle *instp); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_knl_Clock_TimerProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_knl_Clock_TimerProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_knl_Clock_TimerProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_knl_Clock_TimerProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_knl_Clock_TimerProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool ti_sysbios_knl_Clock_TimerProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr ti_sysbios_knl_Clock_TimerProxy_Proxy__delegate__S( void ); /* getNumTimers__E */ extern xdc_UInt ti_sysbios_knl_Clock_TimerProxy_getNumTimers__E( void ); /* getStatus__E */ extern ti_sysbios_interfaces_ITimer_Status ti_sysbios_knl_Clock_TimerProxy_getStatus__E( xdc_UInt id ); /* startup__E */ extern void ti_sysbios_knl_Clock_TimerProxy_startup__E( void ); /* getMaxTicks__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ); /* setNextTick__E */ extern void ti_sysbios_knl_Clock_TimerProxy_setNextTick__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 ticks ); /* start__E */ extern void ti_sysbios_knl_Clock_TimerProxy_start__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ); /* stop__E */ extern void ti_sysbios_knl_Clock_TimerProxy_stop__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ); /* setPeriod__E */ extern void ti_sysbios_knl_Clock_TimerProxy_setPeriod__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 period ); /* setPeriodMicroSecs__E */ extern xdc_Bool ti_sysbios_knl_Clock_TimerProxy_setPeriodMicroSecs__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 microsecs ); /* getPeriod__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getPeriod__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ); /* getCount__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getCount__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ); /* getFreq__E */ extern void ti_sysbios_knl_Clock_TimerProxy_getFreq__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_runtime_Types_FreqHz *freq ); /* getFunc__E */ extern ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_knl_Clock_TimerProxy_getFunc__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UArg *arg ); /* setFunc__E */ extern void ti_sysbios_knl_Clock_TimerProxy_setFunc__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg ); /* trigger__E */ extern void ti_sysbios_knl_Clock_TimerProxy_trigger__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 cycles ); /* getExpiredCounts__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getExpiredCounts__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ); /* getExpiredTicks__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 tickPeriod ); /* getCurrentTick__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_Bool save ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_ITimer_Module ti_sysbios_knl_Clock_TimerProxy_Module_upCast(void); static inline ti_sysbios_interfaces_ITimer_Module ti_sysbios_knl_Clock_TimerProxy_Module_upCast(void) { return (ti_sysbios_interfaces_ITimer_Module)ti_sysbios_knl_Clock_TimerProxy_Proxy__delegate__S(); } /* Module_to_ti_sysbios_interfaces_ITimer */ /* Handle_upCast */ static inline ti_sysbios_interfaces_ITimer_Handle ti_sysbios_knl_Clock_TimerProxy_Handle_upCast(ti_sysbios_knl_Clock_TimerProxy_Handle i); static inline ti_sysbios_interfaces_ITimer_Handle ti_sysbios_knl_Clock_TimerProxy_Handle_upCast(ti_sysbios_knl_Clock_TimerProxy_Handle i) { return (ti_sysbios_interfaces_ITimer_Handle)i; } /* Handle_to_ti_sysbios_interfaces_ITimer */ /* Handle_downCast */ static inline ti_sysbios_knl_Clock_TimerProxy_Handle ti_sysbios_knl_Clock_TimerProxy_Handle_downCast(ti_sysbios_interfaces_ITimer_Handle i); static inline ti_sysbios_knl_Clock_TimerProxy_Handle ti_sysbios_knl_Clock_TimerProxy_Handle_downCast(ti_sysbios_interfaces_ITimer_Handle i) { ti_sysbios_interfaces_ITimer_Handle i2 = (ti_sysbios_interfaces_ITimer_Handle)i; if (ti_sysbios_knl_Clock_TimerProxy_Proxy__abstract__S()) { return (ti_sysbios_knl_Clock_TimerProxy_Handle)i; } return (const void*)i2->__fxns == (const void*)ti_sysbios_knl_Clock_TimerProxy_Proxy__delegate__S() ? (ti_sysbios_knl_Clock_TimerProxy_Handle)i : (ti_sysbios_knl_Clock_TimerProxy_Handle)0; } /* Handle_from_ti_sysbios_interfaces_ITimer */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_knl_Clock_TimerProxy_Module__id ti_sysbios_knl_Clock_TimerProxy_Module_id(void); static inline CT__ti_sysbios_knl_Clock_TimerProxy_Module__id ti_sysbios_knl_Clock_TimerProxy_Module_id( void ) { return ti_sysbios_knl_Clock_TimerProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* Params_init */ static inline void ti_sysbios_knl_Clock_TimerProxy_Params_init(ti_sysbios_knl_Clock_TimerProxy_Params *prms); static inline void ti_sysbios_knl_Clock_TimerProxy_Params_init( ti_sysbios_knl_Clock_TimerProxy_Params *prms ) { if (prms) { ti_sysbios_knl_Clock_TimerProxy_Params__init__S(prms, 0, sizeof(ti_sysbios_knl_Clock_TimerProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_knl_Clock_TimerProxy_Params_copy(ti_sysbios_knl_Clock_TimerProxy_Params *dst, const ti_sysbios_knl_Clock_TimerProxy_Params *src); static inline void ti_sysbios_knl_Clock_TimerProxy_Params_copy(ti_sysbios_knl_Clock_TimerProxy_Params *dst, const ti_sysbios_knl_Clock_TimerProxy_Params *src) { if (dst) { ti_sysbios_knl_Clock_TimerProxy_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_knl_Clock_TimerProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* TickSource */ enum ti_sysbios_knl_Clock_TickSource { ti_sysbios_knl_Clock_TickSource_TIMER, ti_sysbios_knl_Clock_TickSource_USER, ti_sysbios_knl_Clock_TickSource_NULL }; typedef enum ti_sysbios_knl_Clock_TickSource ti_sysbios_knl_Clock_TickSource; /* TickMode */ enum ti_sysbios_knl_Clock_TickMode { ti_sysbios_knl_Clock_TickMode_PERIODIC, ti_sysbios_knl_Clock_TickMode_DYNAMIC }; typedef enum ti_sysbios_knl_Clock_TickMode ti_sysbios_knl_Clock_TickMode; /* FuncPtr */ typedef void (*ti_sysbios_knl_Clock_FuncPtr)(xdc_UArg __arg1); /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_knl_Clock_Args__create { ti_sysbios_knl_Clock_FuncPtr clockFxn; xdc_UInt timeout; } ti_sysbios_knl_Clock_Args__create; /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_knl_Clock_Module__diagsEnabled; extern const CT__ti_sysbios_knl_Clock_Module__diagsEnabled ti_sysbios_knl_Clock_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_knl_Clock_Module__diagsIncluded; extern const CT__ti_sysbios_knl_Clock_Module__diagsIncluded ti_sysbios_knl_Clock_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_knl_Clock_Module__diagsMask; extern const CT__ti_sysbios_knl_Clock_Module__diagsMask ti_sysbios_knl_Clock_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Clock_Module__gateObj; extern const CT__ti_sysbios_knl_Clock_Module__gateObj ti_sysbios_knl_Clock_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_knl_Clock_Module__gatePrms; extern const CT__ti_sysbios_knl_Clock_Module__gatePrms ti_sysbios_knl_Clock_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_knl_Clock_Module__id; extern const CT__ti_sysbios_knl_Clock_Module__id ti_sysbios_knl_Clock_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_knl_Clock_Module__loggerDefined; extern const CT__ti_sysbios_knl_Clock_Module__loggerDefined ti_sysbios_knl_Clock_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Clock_Module__loggerObj; extern const CT__ti_sysbios_knl_Clock_Module__loggerObj ti_sysbios_knl_Clock_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_knl_Clock_Module__loggerFxn0; extern const CT__ti_sysbios_knl_Clock_Module__loggerFxn0 ti_sysbios_knl_Clock_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_knl_Clock_Module__loggerFxn1; extern const CT__ti_sysbios_knl_Clock_Module__loggerFxn1 ti_sysbios_knl_Clock_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_knl_Clock_Module__loggerFxn2; extern const CT__ti_sysbios_knl_Clock_Module__loggerFxn2 ti_sysbios_knl_Clock_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_knl_Clock_Module__loggerFxn4; extern const CT__ti_sysbios_knl_Clock_Module__loggerFxn4 ti_sysbios_knl_Clock_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_knl_Clock_Module__loggerFxn8; extern const CT__ti_sysbios_knl_Clock_Module__loggerFxn8 ti_sysbios_knl_Clock_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_knl_Clock_Object__count; extern const CT__ti_sysbios_knl_Clock_Object__count ti_sysbios_knl_Clock_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_knl_Clock_Object__heap; extern const CT__ti_sysbios_knl_Clock_Object__heap ti_sysbios_knl_Clock_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_knl_Clock_Object__sizeof; extern const CT__ti_sysbios_knl_Clock_Object__sizeof ti_sysbios_knl_Clock_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_knl_Clock_Object__table; extern const CT__ti_sysbios_knl_Clock_Object__table ti_sysbios_knl_Clock_Object__table__C; /* LW_delayed */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Clock_LW_delayed; extern const CT__ti_sysbios_knl_Clock_LW_delayed ti_sysbios_knl_Clock_LW_delayed__C; /* LM_tick */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Clock_LM_tick; extern const CT__ti_sysbios_knl_Clock_LM_tick ti_sysbios_knl_Clock_LM_tick__C; /* LM_begin */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Clock_LM_begin; extern const CT__ti_sysbios_knl_Clock_LM_begin ti_sysbios_knl_Clock_LM_begin__C; /* A_clockDisabled */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Clock_A_clockDisabled; extern const CT__ti_sysbios_knl_Clock_A_clockDisabled ti_sysbios_knl_Clock_A_clockDisabled__C; /* A_badThreadType */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Clock_A_badThreadType; extern const CT__ti_sysbios_knl_Clock_A_badThreadType ti_sysbios_knl_Clock_A_badThreadType__C; /* serviceMargin */ typedef xdc_UInt32 CT__ti_sysbios_knl_Clock_serviceMargin; extern const CT__ti_sysbios_knl_Clock_serviceMargin ti_sysbios_knl_Clock_serviceMargin__C; /* tickSource */ typedef ti_sysbios_knl_Clock_TickSource CT__ti_sysbios_knl_Clock_tickSource; extern const CT__ti_sysbios_knl_Clock_tickSource ti_sysbios_knl_Clock_tickSource__C; /* tickMode */ typedef ti_sysbios_knl_Clock_TickMode CT__ti_sysbios_knl_Clock_tickMode; extern const CT__ti_sysbios_knl_Clock_tickMode ti_sysbios_knl_Clock_tickMode__C; /* timerId */ typedef xdc_UInt CT__ti_sysbios_knl_Clock_timerId; extern const CT__ti_sysbios_knl_Clock_timerId ti_sysbios_knl_Clock_timerId__C; /* tickPeriod */ typedef xdc_UInt32 CT__ti_sysbios_knl_Clock_tickPeriod; extern const CT__ti_sysbios_knl_Clock_tickPeriod ti_sysbios_knl_Clock_tickPeriod__C; /* doTickFunc */ typedef void (*CT__ti_sysbios_knl_Clock_doTickFunc)(xdc_UArg __arg1); extern const CT__ti_sysbios_knl_Clock_doTickFunc ti_sysbios_knl_Clock_doTickFunc__C; /* triggerClock */ typedef ti_sysbios_knl_Clock_Handle CT__ti_sysbios_knl_Clock_triggerClock; extern const CT__ti_sysbios_knl_Clock_triggerClock ti_sysbios_knl_Clock_triggerClock__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_knl_Clock_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_Bool startFlag; xdc_UInt32 period; xdc_UArg arg; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_knl_Clock_Struct { ti_sysbios_knl_Queue_Elem __f0; xdc_UInt32 __f1; xdc_UInt32 __f2; xdc_UInt32 __f3; volatile xdc_Bool __f4; ti_sysbios_knl_Clock_FuncPtr __f5; xdc_UArg __f6; xdc_runtime_Types_CordAddr __name; }; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ extern xdc_Int ti_sysbios_knl_Clock_Module_startup__E( xdc_Int state ); extern xdc_Int ti_sysbios_knl_Clock_Module_startup__F( xdc_Int state ); /* Instance_init__E */ extern void ti_sysbios_knl_Clock_Instance_init__E(ti_sysbios_knl_Clock_Object *__obj, ti_sysbios_knl_Clock_FuncPtr clockFxn, xdc_UInt timeout, const ti_sysbios_knl_Clock_Params *__prms); /* Instance_finalize__E */ extern void ti_sysbios_knl_Clock_Instance_finalize__E(ti_sysbios_knl_Clock_Object *__obj); /* create */ extern ti_sysbios_knl_Clock_Handle ti_sysbios_knl_Clock_create( ti_sysbios_knl_Clock_FuncPtr clockFxn, xdc_UInt timeout, const ti_sysbios_knl_Clock_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_knl_Clock_construct( ti_sysbios_knl_Clock_Struct *__obj, ti_sysbios_knl_Clock_FuncPtr clockFxn, xdc_UInt timeout, const ti_sysbios_knl_Clock_Params *__prms ); /* delete */ extern void ti_sysbios_knl_Clock_delete(ti_sysbios_knl_Clock_Handle *instp); /* destruct */ extern void ti_sysbios_knl_Clock_destruct(ti_sysbios_knl_Clock_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_knl_Clock_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_knl_Clock_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_knl_Clock_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_knl_Clock_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_knl_Clock_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_knl_Clock_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_knl_Clock_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_knl_Clock_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* getTicks__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_getTicks__E( void ); /* getTimerHandle__E */ extern ti_sysbios_knl_Clock_TimerProxy_Handle ti_sysbios_knl_Clock_getTimerHandle__E( void ); /* setTicks__E */ extern void ti_sysbios_knl_Clock_setTicks__E( xdc_UInt32 ticks ); /* tickStop__E */ extern void ti_sysbios_knl_Clock_tickStop__E( void ); /* tickReconfig__E */ extern xdc_Bool ti_sysbios_knl_Clock_tickReconfig__E( void ); /* tickStart__E */ extern void ti_sysbios_knl_Clock_tickStart__E( void ); /* tick__E */ extern void ti_sysbios_knl_Clock_tick__E( void ); /* workFunc__E */ extern void ti_sysbios_knl_Clock_workFunc__E( xdc_UArg arg0, xdc_UArg arg1 ); /* workFuncDynamic__E */ extern void ti_sysbios_knl_Clock_workFuncDynamic__E( xdc_UArg arg0, xdc_UArg arg1 ); /* logTick__E */ extern void ti_sysbios_knl_Clock_logTick__E( void ); /* getCompletedTicks__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_getCompletedTicks__E( void ); /* getTickPeriod__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_getTickPeriod__E( void ); /* getTicksUntilInterrupt__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_getTicksUntilInterrupt__E( void ); /* getTicksUntilTimeout__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_getTicksUntilTimeout__E( void ); /* walkQueueDynamic__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_walkQueueDynamic__E( xdc_Bool service, xdc_UInt32 tick ); /* walkQueuePeriodic__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_walkQueuePeriodic__E( void ); /* scheduleNextTick__E */ extern void ti_sysbios_knl_Clock_scheduleNextTick__E( xdc_UInt32 deltaTicks, xdc_UInt32 absTick ); /* addI__E */ extern void ti_sysbios_knl_Clock_addI__E( ti_sysbios_knl_Clock_Handle __inst, ti_sysbios_knl_Clock_FuncPtr clockFxn, xdc_UInt32 timeout, xdc_UArg arg ); /* removeI__E */ extern void ti_sysbios_knl_Clock_removeI__E( ti_sysbios_knl_Clock_Handle __inst ); /* start__E */ extern void ti_sysbios_knl_Clock_start__E( ti_sysbios_knl_Clock_Handle __inst ); /* startI__E */ extern void ti_sysbios_knl_Clock_startI__E( ti_sysbios_knl_Clock_Handle __inst ); /* stop__E */ extern void ti_sysbios_knl_Clock_stop__E( ti_sysbios_knl_Clock_Handle __inst ); /* setPeriod__E */ extern void ti_sysbios_knl_Clock_setPeriod__E( ti_sysbios_knl_Clock_Handle __inst, xdc_UInt32 period ); /* setTimeout__E */ extern void ti_sysbios_knl_Clock_setTimeout__E( ti_sysbios_knl_Clock_Handle __inst, xdc_UInt32 timeout ); /* setFunc__E */ extern void ti_sysbios_knl_Clock_setFunc__E( ti_sysbios_knl_Clock_Handle __inst, ti_sysbios_knl_Clock_FuncPtr fxn, xdc_UArg arg ); /* getPeriod__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_getPeriod__E( ti_sysbios_knl_Clock_Handle __inst ); /* getTimeout__E */ extern xdc_UInt32 ti_sysbios_knl_Clock_getTimeout__E( ti_sysbios_knl_Clock_Handle __inst ); /* isActive__E */ extern xdc_Bool ti_sysbios_knl_Clock_isActive__E( ti_sysbios_knl_Clock_Handle __inst ); /* doTick__I */ extern void ti_sysbios_knl_Clock_doTick__I( xdc_UArg arg ); /* triggerFunc__I */ extern void ti_sysbios_knl_Clock_triggerFunc__I( xdc_UArg arg ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_knl_Clock_Module__id ti_sysbios_knl_Clock_Module_id(void); static inline CT__ti_sysbios_knl_Clock_Module__id ti_sysbios_knl_Clock_Module_id( void ) { return ti_sysbios_knl_Clock_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_knl_Clock_Module_hasMask(void); static inline xdc_Bool ti_sysbios_knl_Clock_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_knl_Clock_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_knl_Clock_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_knl_Clock_Module_getMask( void ) { return ti_sysbios_knl_Clock_Module__diagsMask__C != 0 ? *ti_sysbios_knl_Clock_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_knl_Clock_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_knl_Clock_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_knl_Clock_Module__diagsMask__C != 0) { *ti_sysbios_knl_Clock_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_knl_Clock_Params_init(ti_sysbios_knl_Clock_Params *prms); static inline void ti_sysbios_knl_Clock_Params_init( ti_sysbios_knl_Clock_Params *prms ) { if (prms) { ti_sysbios_knl_Clock_Params__init__S(prms, 0, sizeof(ti_sysbios_knl_Clock_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_knl_Clock_Params_copy(ti_sysbios_knl_Clock_Params *dst, const ti_sysbios_knl_Clock_Params *src); static inline void ti_sysbios_knl_Clock_Params_copy(ti_sysbios_knl_Clock_Params *dst, const ti_sysbios_knl_Clock_Params *src) { if (dst) { ti_sysbios_knl_Clock_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_knl_Clock_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_knl_Clock_Handle ti_sysbios_knl_Clock_Object_get(ti_sysbios_knl_Clock_Instance_State *oarr, int i); static inline ti_sysbios_knl_Clock_Handle ti_sysbios_knl_Clock_Object_get(ti_sysbios_knl_Clock_Instance_State *oarr, int i) { return (ti_sysbios_knl_Clock_Handle)ti_sysbios_knl_Clock_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_knl_Clock_Handle ti_sysbios_knl_Clock_Object_first(void); static inline ti_sysbios_knl_Clock_Handle ti_sysbios_knl_Clock_Object_first(void) { return (ti_sysbios_knl_Clock_Handle)ti_sysbios_knl_Clock_Object__first__S(); } /* Object_next */ static inline ti_sysbios_knl_Clock_Handle ti_sysbios_knl_Clock_Object_next(ti_sysbios_knl_Clock_Object *obj); static inline ti_sysbios_knl_Clock_Handle ti_sysbios_knl_Clock_Object_next(ti_sysbios_knl_Clock_Object *obj) { return (ti_sysbios_knl_Clock_Handle)ti_sysbios_knl_Clock_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_knl_Clock_Handle_label(ti_sysbios_knl_Clock_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_knl_Clock_Handle_label(ti_sysbios_knl_Clock_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_knl_Clock_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_knl_Clock_Handle_name(ti_sysbios_knl_Clock_Handle inst); static inline xdc_String ti_sysbios_knl_Clock_Handle_name(ti_sysbios_knl_Clock_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_knl_Clock_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_knl_Clock_Handle ti_sysbios_knl_Clock_handle(ti_sysbios_knl_Clock_Struct *str); static inline ti_sysbios_knl_Clock_Handle ti_sysbios_knl_Clock_handle(ti_sysbios_knl_Clock_Struct *str) { return (ti_sysbios_knl_Clock_Handle)str; } /* struct */ static inline ti_sysbios_knl_Clock_Struct *ti_sysbios_knl_Clock_struct(ti_sysbios_knl_Clock_Handle inst); static inline ti_sysbios_knl_Clock_Struct *ti_sysbios_knl_Clock_struct(ti_sysbios_knl_Clock_Handle inst) { return (ti_sysbios_knl_Clock_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct ti_sysbios_knl_Clock_Module_State { volatile xdc_UInt32 ticks; xdc_UInt swiCount; ti_sysbios_knl_Clock_TimerProxy_Handle timer; ti_sysbios_knl_Swi_Handle swi; volatile xdc_UInt numTickSkip; xdc_UInt32 nextScheduledTick; xdc_UInt32 maxSkippable; xdc_Bool inWorkFunc; xdc_Bool startDuringWorkFunc; xdc_Bool ticking; char __dummy; }; /* Module__state__V */ extern struct ti_sysbios_knl_Clock_Module_State__ ti_sysbios_knl_Clock_Module__state__V; /* Object */ struct ti_sysbios_knl_Clock_Object { ti_sysbios_knl_Queue_Elem elem; xdc_UInt32 timeout; xdc_UInt32 currTimeout; xdc_UInt32 period; volatile xdc_Bool active; ti_sysbios_knl_Clock_FuncPtr fxn; xdc_UArg arg; }; /* Module_State_clockQ */ extern const xdc_SizeT ti_sysbios_knl_Clock_Module_State_clockQ__O; static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Clock_Module_State_clockQ(); static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Clock_Module_State_clockQ() { return (ti_sysbios_knl_Queue_Handle)(((char*)&ti_sysbios_knl_Clock_Module__state__V) + ti_sysbios_knl_Clock_Module_State_clockQ__O); } /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef ti_sysbios_interfaces_ITaskSupport_FuncPtr ti_sysbios_knl_Task_SupportProxy_FuncPtr; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_knl_Task_SupportProxy_Module__diagsEnabled; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__diagsEnabled ti_sysbios_knl_Task_SupportProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_knl_Task_SupportProxy_Module__diagsIncluded; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__diagsIncluded ti_sysbios_knl_Task_SupportProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_knl_Task_SupportProxy_Module__diagsMask; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__diagsMask ti_sysbios_knl_Task_SupportProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Task_SupportProxy_Module__gateObj; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__gateObj ti_sysbios_knl_Task_SupportProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_knl_Task_SupportProxy_Module__gatePrms; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__gatePrms ti_sysbios_knl_Task_SupportProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_knl_Task_SupportProxy_Module__id; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__id ti_sysbios_knl_Task_SupportProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerDefined; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerDefined ti_sysbios_knl_Task_SupportProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerObj; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerObj ti_sysbios_knl_Task_SupportProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn0; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn0 ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn1; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn1 ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn2; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn2 ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn4; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn4 ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn8; extern const CT__ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn8 ti_sysbios_knl_Task_SupportProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_knl_Task_SupportProxy_Object__count; extern const CT__ti_sysbios_knl_Task_SupportProxy_Object__count ti_sysbios_knl_Task_SupportProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_knl_Task_SupportProxy_Object__heap; extern const CT__ti_sysbios_knl_Task_SupportProxy_Object__heap ti_sysbios_knl_Task_SupportProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_knl_Task_SupportProxy_Object__sizeof; extern const CT__ti_sysbios_knl_Task_SupportProxy_Object__sizeof ti_sysbios_knl_Task_SupportProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_knl_Task_SupportProxy_Object__table; extern const CT__ti_sysbios_knl_Task_SupportProxy_Object__table ti_sysbios_knl_Task_SupportProxy_Object__table__C; /* defaultStackSize */ typedef xdc_SizeT CT__ti_sysbios_knl_Task_SupportProxy_defaultStackSize; extern const CT__ti_sysbios_knl_Task_SupportProxy_defaultStackSize ti_sysbios_knl_Task_SupportProxy_defaultStackSize__C; /* stackAlignment */ typedef xdc_UInt CT__ti_sysbios_knl_Task_SupportProxy_stackAlignment; extern const CT__ti_sysbios_knl_Task_SupportProxy_stackAlignment ti_sysbios_knl_Task_SupportProxy_stackAlignment__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_knl_Task_SupportProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Ptr (*start)(xdc_Ptr curTask, ti_sysbios_interfaces_ITaskSupport_FuncPtr enter, ti_sysbios_interfaces_ITaskSupport_FuncPtr exit, xdc_runtime_Error_Block* eb); void (*swap)(xdc_Ptr* oldtskContext, xdc_Ptr* newtskContext); xdc_Bool (*checkStack)(xdc_Char* stack, xdc_SizeT size); xdc_SizeT (*stackUsed)(xdc_Char* stack, xdc_SizeT size); xdc_UInt (*getStackAlignment)(void); xdc_SizeT (*getDefaultStackSize)(void); xdc_Ptr (*getCheckValueAddr)(xdc_Ptr curTask); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_knl_Task_SupportProxy_Fxns__ ti_sysbios_knl_Task_SupportProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_knl_Task_SupportProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_knl_Task_SupportProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_knl_Task_SupportProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_knl_Task_SupportProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_knl_Task_SupportProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool ti_sysbios_knl_Task_SupportProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr ti_sysbios_knl_Task_SupportProxy_Proxy__delegate__S( void ); /* start__E */ extern xdc_Ptr ti_sysbios_knl_Task_SupportProxy_start__E( xdc_Ptr curTask, ti_sysbios_interfaces_ITaskSupport_FuncPtr enter, ti_sysbios_interfaces_ITaskSupport_FuncPtr exit, xdc_runtime_Error_Block *eb ); /* swap__E */ extern void ti_sysbios_knl_Task_SupportProxy_swap__E( xdc_Ptr *oldtskContext, xdc_Ptr *newtskContext ); /* checkStack__E */ extern xdc_Bool ti_sysbios_knl_Task_SupportProxy_checkStack__E( xdc_Char *stack, xdc_SizeT size ); /* stackUsed__E */ extern xdc_SizeT ti_sysbios_knl_Task_SupportProxy_stackUsed__E( xdc_Char *stack, xdc_SizeT size ); /* getStackAlignment__E */ extern xdc_UInt ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E( void ); /* getDefaultStackSize__E */ extern xdc_SizeT ti_sysbios_knl_Task_SupportProxy_getDefaultStackSize__E( void ); /* getCheckValueAddr__E */ extern xdc_Ptr ti_sysbios_knl_Task_SupportProxy_getCheckValueAddr__E( xdc_Ptr curTask ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_ITaskSupport_Module ti_sysbios_knl_Task_SupportProxy_Module_upCast(void); static inline ti_sysbios_interfaces_ITaskSupport_Module ti_sysbios_knl_Task_SupportProxy_Module_upCast(void) { return (ti_sysbios_interfaces_ITaskSupport_Module)ti_sysbios_knl_Task_SupportProxy_Proxy__delegate__S(); } /* Module_to_ti_sysbios_interfaces_ITaskSupport */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_knl_Task_SupportProxy_Module__id ti_sysbios_knl_Task_SupportProxy_Module_id(void); static inline CT__ti_sysbios_knl_Task_SupportProxy_Module__id ti_sysbios_knl_Task_SupportProxy_Module_id( void ) { return ti_sysbios_knl_Task_SupportProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef void (*ti_sysbios_knl_Task_FuncPtr)(xdc_UArg __arg1, xdc_UArg __arg2); /* AllBlockedFuncPtr */ typedef void (*ti_sysbios_knl_Task_AllBlockedFuncPtr)(void); /* ModStateCheckValueFuncPtr */ typedef xdc_UInt32 (*ti_sysbios_knl_Task_ModStateCheckValueFuncPtr)(ti_sysbios_knl_Task_Module_State* __arg1); /* ModStateCheckFuncPtr */ typedef xdc_Int (*ti_sysbios_knl_Task_ModStateCheckFuncPtr)(ti_sysbios_knl_Task_Module_State* __arg1, xdc_UInt32 __arg2); /* ObjectCheckValueFuncPtr */ typedef xdc_UInt32 (*ti_sysbios_knl_Task_ObjectCheckValueFuncPtr)(ti_sysbios_knl_Task_Handle __arg1); /* ObjectCheckFuncPtr */ typedef xdc_Int (*ti_sysbios_knl_Task_ObjectCheckFuncPtr)(ti_sysbios_knl_Task_Handle __arg1, xdc_UInt32 __arg2); /* Mode */ enum ti_sysbios_knl_Task_Mode { ti_sysbios_knl_Task_Mode_RUNNING, ti_sysbios_knl_Task_Mode_READY, ti_sysbios_knl_Task_Mode_BLOCKED, ti_sysbios_knl_Task_Mode_TERMINATED, ti_sysbios_knl_Task_Mode_INACTIVE }; typedef enum ti_sysbios_knl_Task_Mode ti_sysbios_knl_Task_Mode; /* Stat */ struct ti_sysbios_knl_Task_Stat { xdc_Int priority; xdc_Ptr stack; xdc_SizeT stackSize; xdc_runtime_IHeap_Handle stackHeap; xdc_Ptr env; ti_sysbios_knl_Task_Mode mode; xdc_Ptr sp; xdc_SizeT used; }; /* HookSet */ struct ti_sysbios_knl_Task_HookSet { void (*registerFxn)(xdc_Int __arg1); void (*createFxn)(ti_sysbios_knl_Task_Handle __arg1, xdc_runtime_Error_Block* __arg2); void (*readyFxn)(ti_sysbios_knl_Task_Handle __arg1); void (*switchFxn)(ti_sysbios_knl_Task_Handle __arg1, ti_sysbios_knl_Task_Handle __arg2); void (*exitFxn)(ti_sysbios_knl_Task_Handle __arg1); void (*deleteFxn)(ti_sysbios_knl_Task_Handle __arg1); }; /* AFFINITY_NONE */ /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_knl_Task_Args__create { ti_sysbios_knl_Task_FuncPtr fxn; } ti_sysbios_knl_Task_Args__create; /* * ======== INTERNAL DEFINITIONS ======== */ /* PendElem */ struct ti_sysbios_knl_Task_PendElem { ti_sysbios_knl_Queue_Elem qElem; ti_sysbios_knl_Task_Handle task; ti_sysbios_knl_Clock_Handle clock; }; /* Instance_State */ typedef xdc_Char __T1_ti_sysbios_knl_Task_Instance_State__stack; typedef xdc_Char *__ARRAY1_ti_sysbios_knl_Task_Instance_State__stack; typedef const xdc_Char *__CARRAY1_ti_sysbios_knl_Task_Instance_State__stack; typedef __ARRAY1_ti_sysbios_knl_Task_Instance_State__stack __TA_ti_sysbios_knl_Task_Instance_State__stack; typedef xdc_Ptr __T1_ti_sysbios_knl_Task_Instance_State__hookEnv; typedef xdc_Ptr *__ARRAY1_ti_sysbios_knl_Task_Instance_State__hookEnv; typedef const xdc_Ptr *__CARRAY1_ti_sysbios_knl_Task_Instance_State__hookEnv; typedef __ARRAY1_ti_sysbios_knl_Task_Instance_State__hookEnv __TA_ti_sysbios_knl_Task_Instance_State__hookEnv; /* Module_State */ typedef ti_sysbios_knl_Queue_Instance_State __T1_ti_sysbios_knl_Task_Module_State__readyQ; typedef ti_sysbios_knl_Queue_Instance_State *__ARRAY1_ti_sysbios_knl_Task_Module_State__readyQ; typedef const ti_sysbios_knl_Queue_Instance_State *__CARRAY1_ti_sysbios_knl_Task_Module_State__readyQ; typedef __ARRAY1_ti_sysbios_knl_Task_Module_State__readyQ __TA_ti_sysbios_knl_Task_Module_State__readyQ; typedef volatile xdc_UInt __T1_ti_sysbios_knl_Task_Module_State__smpCurSet; typedef volatile xdc_UInt *__ARRAY1_ti_sysbios_knl_Task_Module_State__smpCurSet; typedef const volatile xdc_UInt *__CARRAY1_ti_sysbios_knl_Task_Module_State__smpCurSet; typedef __ARRAY1_ti_sysbios_knl_Task_Module_State__smpCurSet __TA_ti_sysbios_knl_Task_Module_State__smpCurSet; typedef volatile xdc_UInt __T1_ti_sysbios_knl_Task_Module_State__smpCurMask; typedef volatile xdc_UInt *__ARRAY1_ti_sysbios_knl_Task_Module_State__smpCurMask; typedef const volatile xdc_UInt *__CARRAY1_ti_sysbios_knl_Task_Module_State__smpCurMask; typedef __ARRAY1_ti_sysbios_knl_Task_Module_State__smpCurMask __TA_ti_sysbios_knl_Task_Module_State__smpCurMask; typedef ti_sysbios_knl_Task_Handle __T1_ti_sysbios_knl_Task_Module_State__smpCurTask; typedef ti_sysbios_knl_Task_Handle *__ARRAY1_ti_sysbios_knl_Task_Module_State__smpCurTask; typedef const ti_sysbios_knl_Task_Handle *__CARRAY1_ti_sysbios_knl_Task_Module_State__smpCurTask; typedef __ARRAY1_ti_sysbios_knl_Task_Module_State__smpCurTask __TA_ti_sysbios_knl_Task_Module_State__smpCurTask; typedef ti_sysbios_knl_Queue_Handle __T1_ti_sysbios_knl_Task_Module_State__smpReadyQ; typedef ti_sysbios_knl_Queue_Handle *__ARRAY1_ti_sysbios_knl_Task_Module_State__smpReadyQ; typedef const ti_sysbios_knl_Queue_Handle *__CARRAY1_ti_sysbios_knl_Task_Module_State__smpReadyQ; typedef __ARRAY1_ti_sysbios_knl_Task_Module_State__smpReadyQ __TA_ti_sysbios_knl_Task_Module_State__smpReadyQ; typedef ti_sysbios_knl_Task_Handle __T1_ti_sysbios_knl_Task_Module_State__idleTask; typedef ti_sysbios_knl_Task_Handle *__ARRAY1_ti_sysbios_knl_Task_Module_State__idleTask; typedef const ti_sysbios_knl_Task_Handle *__CARRAY1_ti_sysbios_knl_Task_Module_State__idleTask; typedef __ARRAY1_ti_sysbios_knl_Task_Module_State__idleTask __TA_ti_sysbios_knl_Task_Module_State__idleTask; typedef ti_sysbios_knl_Task_Handle __T1_ti_sysbios_knl_Task_Module_State__constructedTasks; typedef ti_sysbios_knl_Task_Handle *__ARRAY1_ti_sysbios_knl_Task_Module_State__constructedTasks; typedef const ti_sysbios_knl_Task_Handle *__CARRAY1_ti_sysbios_knl_Task_Module_State__constructedTasks; typedef __ARRAY1_ti_sysbios_knl_Task_Module_State__constructedTasks __TA_ti_sysbios_knl_Task_Module_State__constructedTasks; /* RunQEntry */ struct ti_sysbios_knl_Task_RunQEntry { ti_sysbios_knl_Queue_Elem elem; xdc_UInt coreId; xdc_Int priority; }; /* Module_StateSmp */ typedef volatile ti_sysbios_knl_Task_RunQEntry __T1_ti_sysbios_knl_Task_Module_StateSmp__smpRunQ; typedef volatile ti_sysbios_knl_Task_RunQEntry *__ARRAY1_ti_sysbios_knl_Task_Module_StateSmp__smpRunQ; typedef const volatile ti_sysbios_knl_Task_RunQEntry *__CARRAY1_ti_sysbios_knl_Task_Module_StateSmp__smpRunQ; typedef __ARRAY1_ti_sysbios_knl_Task_Module_StateSmp__smpRunQ __TA_ti_sysbios_knl_Task_Module_StateSmp__smpRunQ; struct ti_sysbios_knl_Task_Module_StateSmp { ti_sysbios_knl_Queue_Object *sortedRunQ; __TA_ti_sysbios_knl_Task_Module_StateSmp__smpRunQ smpRunQ; }; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_knl_Task_Module__diagsEnabled; extern const CT__ti_sysbios_knl_Task_Module__diagsEnabled ti_sysbios_knl_Task_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_knl_Task_Module__diagsIncluded; extern const CT__ti_sysbios_knl_Task_Module__diagsIncluded ti_sysbios_knl_Task_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_knl_Task_Module__diagsMask; extern const CT__ti_sysbios_knl_Task_Module__diagsMask ti_sysbios_knl_Task_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Task_Module__gateObj; extern const CT__ti_sysbios_knl_Task_Module__gateObj ti_sysbios_knl_Task_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_knl_Task_Module__gatePrms; extern const CT__ti_sysbios_knl_Task_Module__gatePrms ti_sysbios_knl_Task_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_knl_Task_Module__id; extern const CT__ti_sysbios_knl_Task_Module__id ti_sysbios_knl_Task_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_knl_Task_Module__loggerDefined; extern const CT__ti_sysbios_knl_Task_Module__loggerDefined ti_sysbios_knl_Task_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Task_Module__loggerObj; extern const CT__ti_sysbios_knl_Task_Module__loggerObj ti_sysbios_knl_Task_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_knl_Task_Module__loggerFxn0; extern const CT__ti_sysbios_knl_Task_Module__loggerFxn0 ti_sysbios_knl_Task_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_knl_Task_Module__loggerFxn1; extern const CT__ti_sysbios_knl_Task_Module__loggerFxn1 ti_sysbios_knl_Task_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_knl_Task_Module__loggerFxn2; extern const CT__ti_sysbios_knl_Task_Module__loggerFxn2 ti_sysbios_knl_Task_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_knl_Task_Module__loggerFxn4; extern const CT__ti_sysbios_knl_Task_Module__loggerFxn4 ti_sysbios_knl_Task_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_knl_Task_Module__loggerFxn8; extern const CT__ti_sysbios_knl_Task_Module__loggerFxn8 ti_sysbios_knl_Task_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_knl_Task_Object__count; extern const CT__ti_sysbios_knl_Task_Object__count ti_sysbios_knl_Task_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_knl_Task_Object__heap; extern const CT__ti_sysbios_knl_Task_Object__heap ti_sysbios_knl_Task_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_knl_Task_Object__sizeof; extern const CT__ti_sysbios_knl_Task_Object__sizeof ti_sysbios_knl_Task_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_knl_Task_Object__table; extern const CT__ti_sysbios_knl_Task_Object__table ti_sysbios_knl_Task_Object__table__C; /* LM_switch */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Task_LM_switch; extern const CT__ti_sysbios_knl_Task_LM_switch ti_sysbios_knl_Task_LM_switch__C; /* LM_sleep */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Task_LM_sleep; extern const CT__ti_sysbios_knl_Task_LM_sleep ti_sysbios_knl_Task_LM_sleep__C; /* LD_ready */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Task_LD_ready; extern const CT__ti_sysbios_knl_Task_LD_ready ti_sysbios_knl_Task_LD_ready__C; /* LD_block */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Task_LD_block; extern const CT__ti_sysbios_knl_Task_LD_block ti_sysbios_knl_Task_LD_block__C; /* LM_yield */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Task_LM_yield; extern const CT__ti_sysbios_knl_Task_LM_yield ti_sysbios_knl_Task_LM_yield__C; /* LM_setPri */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Task_LM_setPri; extern const CT__ti_sysbios_knl_Task_LM_setPri ti_sysbios_knl_Task_LM_setPri__C; /* LD_exit */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Task_LD_exit; extern const CT__ti_sysbios_knl_Task_LD_exit ti_sysbios_knl_Task_LD_exit__C; /* LM_setAffinity */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Task_LM_setAffinity; extern const CT__ti_sysbios_knl_Task_LM_setAffinity ti_sysbios_knl_Task_LM_setAffinity__C; /* LM_schedule */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Task_LM_schedule; extern const CT__ti_sysbios_knl_Task_LM_schedule ti_sysbios_knl_Task_LM_schedule__C; /* LM_noWork */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Task_LM_noWork; extern const CT__ti_sysbios_knl_Task_LM_noWork ti_sysbios_knl_Task_LM_noWork__C; /* E_stackOverflow */ typedef xdc_runtime_Error_Id CT__ti_sysbios_knl_Task_E_stackOverflow; extern const CT__ti_sysbios_knl_Task_E_stackOverflow ti_sysbios_knl_Task_E_stackOverflow__C; /* E_spOutOfBounds */ typedef xdc_runtime_Error_Id CT__ti_sysbios_knl_Task_E_spOutOfBounds; extern const CT__ti_sysbios_knl_Task_E_spOutOfBounds ti_sysbios_knl_Task_E_spOutOfBounds__C; /* E_deleteNotAllowed */ typedef xdc_runtime_Error_Id CT__ti_sysbios_knl_Task_E_deleteNotAllowed; extern const CT__ti_sysbios_knl_Task_E_deleteNotAllowed ti_sysbios_knl_Task_E_deleteNotAllowed__C; /* E_moduleStateCheckFailed */ typedef xdc_runtime_Error_Id CT__ti_sysbios_knl_Task_E_moduleStateCheckFailed; extern const CT__ti_sysbios_knl_Task_E_moduleStateCheckFailed ti_sysbios_knl_Task_E_moduleStateCheckFailed__C; /* E_objectCheckFailed */ typedef xdc_runtime_Error_Id CT__ti_sysbios_knl_Task_E_objectCheckFailed; extern const CT__ti_sysbios_knl_Task_E_objectCheckFailed ti_sysbios_knl_Task_E_objectCheckFailed__C; /* A_badThreadType */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Task_A_badThreadType; extern const CT__ti_sysbios_knl_Task_A_badThreadType ti_sysbios_knl_Task_A_badThreadType__C; /* A_badTaskState */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Task_A_badTaskState; extern const CT__ti_sysbios_knl_Task_A_badTaskState ti_sysbios_knl_Task_A_badTaskState__C; /* A_noPendElem */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Task_A_noPendElem; extern const CT__ti_sysbios_knl_Task_A_noPendElem ti_sysbios_knl_Task_A_noPendElem__C; /* A_taskDisabled */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Task_A_taskDisabled; extern const CT__ti_sysbios_knl_Task_A_taskDisabled ti_sysbios_knl_Task_A_taskDisabled__C; /* A_badPriority */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Task_A_badPriority; extern const CT__ti_sysbios_knl_Task_A_badPriority ti_sysbios_knl_Task_A_badPriority__C; /* A_badTimeout */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Task_A_badTimeout; extern const CT__ti_sysbios_knl_Task_A_badTimeout ti_sysbios_knl_Task_A_badTimeout__C; /* A_badAffinity */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Task_A_badAffinity; extern const CT__ti_sysbios_knl_Task_A_badAffinity ti_sysbios_knl_Task_A_badAffinity__C; /* A_sleepTaskDisabled */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Task_A_sleepTaskDisabled; extern const CT__ti_sysbios_knl_Task_A_sleepTaskDisabled ti_sysbios_knl_Task_A_sleepTaskDisabled__C; /* A_invalidCoreId */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Task_A_invalidCoreId; extern const CT__ti_sysbios_knl_Task_A_invalidCoreId ti_sysbios_knl_Task_A_invalidCoreId__C; /* numPriorities */ typedef xdc_UInt CT__ti_sysbios_knl_Task_numPriorities; extern const CT__ti_sysbios_knl_Task_numPriorities ti_sysbios_knl_Task_numPriorities__C; /* defaultStackSize */ typedef xdc_SizeT CT__ti_sysbios_knl_Task_defaultStackSize; extern const CT__ti_sysbios_knl_Task_defaultStackSize ti_sysbios_knl_Task_defaultStackSize__C; /* defaultStackHeap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_knl_Task_defaultStackHeap; extern const CT__ti_sysbios_knl_Task_defaultStackHeap ti_sysbios_knl_Task_defaultStackHeap__C; /* allBlockedFunc */ typedef ti_sysbios_knl_Task_AllBlockedFuncPtr CT__ti_sysbios_knl_Task_allBlockedFunc; extern const CT__ti_sysbios_knl_Task_allBlockedFunc ti_sysbios_knl_Task_allBlockedFunc__C; /* initStackFlag */ typedef xdc_Bool CT__ti_sysbios_knl_Task_initStackFlag; extern const CT__ti_sysbios_knl_Task_initStackFlag ti_sysbios_knl_Task_initStackFlag__C; /* checkStackFlag */ typedef xdc_Bool CT__ti_sysbios_knl_Task_checkStackFlag; extern const CT__ti_sysbios_knl_Task_checkStackFlag ti_sysbios_knl_Task_checkStackFlag__C; /* deleteTerminatedTasks */ typedef xdc_Bool CT__ti_sysbios_knl_Task_deleteTerminatedTasks; extern const CT__ti_sysbios_knl_Task_deleteTerminatedTasks ti_sysbios_knl_Task_deleteTerminatedTasks__C; /* hooks */ typedef ti_sysbios_knl_Task_HookSet __T1_ti_sysbios_knl_Task_hooks; typedef struct { int length; ti_sysbios_knl_Task_HookSet *elem; } __ARRAY1_ti_sysbios_knl_Task_hooks; typedef struct { int length; ti_sysbios_knl_Task_HookSet const *elem; } __CARRAY1_ti_sysbios_knl_Task_hooks; typedef __CARRAY1_ti_sysbios_knl_Task_hooks __TA_ti_sysbios_knl_Task_hooks; typedef __CARRAY1_ti_sysbios_knl_Task_hooks CT__ti_sysbios_knl_Task_hooks; extern const CT__ti_sysbios_knl_Task_hooks ti_sysbios_knl_Task_hooks__C; /* moduleStateCheckFxn */ typedef ti_sysbios_knl_Task_ModStateCheckFuncPtr CT__ti_sysbios_knl_Task_moduleStateCheckFxn; extern const CT__ti_sysbios_knl_Task_moduleStateCheckFxn ti_sysbios_knl_Task_moduleStateCheckFxn__C; /* moduleStateCheckValueFxn */ typedef ti_sysbios_knl_Task_ModStateCheckValueFuncPtr CT__ti_sysbios_knl_Task_moduleStateCheckValueFxn; extern const CT__ti_sysbios_knl_Task_moduleStateCheckValueFxn ti_sysbios_knl_Task_moduleStateCheckValueFxn__C; /* moduleStateCheckFlag */ typedef xdc_Bool CT__ti_sysbios_knl_Task_moduleStateCheckFlag; extern const CT__ti_sysbios_knl_Task_moduleStateCheckFlag ti_sysbios_knl_Task_moduleStateCheckFlag__C; /* objectCheckFxn */ typedef ti_sysbios_knl_Task_ObjectCheckFuncPtr CT__ti_sysbios_knl_Task_objectCheckFxn; extern const CT__ti_sysbios_knl_Task_objectCheckFxn ti_sysbios_knl_Task_objectCheckFxn__C; /* objectCheckValueFxn */ typedef ti_sysbios_knl_Task_ObjectCheckValueFuncPtr CT__ti_sysbios_knl_Task_objectCheckValueFxn; extern const CT__ti_sysbios_knl_Task_objectCheckValueFxn ti_sysbios_knl_Task_objectCheckValueFxn__C; /* objectCheckFlag */ typedef xdc_Bool CT__ti_sysbios_knl_Task_objectCheckFlag; extern const CT__ti_sysbios_knl_Task_objectCheckFlag ti_sysbios_knl_Task_objectCheckFlag__C; /* numConstructedTasks */ typedef xdc_UInt CT__ti_sysbios_knl_Task_numConstructedTasks; extern const CT__ti_sysbios_knl_Task_numConstructedTasks ti_sysbios_knl_Task_numConstructedTasks__C; /* startupHookFunc */ typedef void (*CT__ti_sysbios_knl_Task_startupHookFunc)(void); extern const CT__ti_sysbios_knl_Task_startupHookFunc ti_sysbios_knl_Task_startupHookFunc__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_knl_Task_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_UArg arg0; xdc_UArg arg1; xdc_Int priority; xdc_Ptr stack; xdc_SizeT stackSize; xdc_runtime_IHeap_Handle stackHeap; xdc_Ptr env; xdc_Bool vitalTaskFlag; xdc_UInt affinity; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_knl_Task_Struct { ti_sysbios_knl_Queue_Elem __f0; volatile xdc_Int __f1; xdc_UInt __f2; xdc_Ptr __f3; ti_sysbios_knl_Task_Mode __f4; ti_sysbios_knl_Task_PendElem *__f5; xdc_SizeT __f6; __TA_ti_sysbios_knl_Task_Instance_State__stack __f7; xdc_runtime_IHeap_Handle __f8; ti_sysbios_knl_Task_FuncPtr __f9; xdc_UArg __f10; xdc_UArg __f11; xdc_Ptr __f12; __TA_ti_sysbios_knl_Task_Instance_State__hookEnv __f13; xdc_Bool __f14; ti_sysbios_knl_Queue_Handle __f15; xdc_UInt __f16; xdc_UInt __f17; xdc_runtime_Types_CordAddr __name; }; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ extern xdc_Int ti_sysbios_knl_Task_Module_startup__E( xdc_Int state ); extern xdc_Int ti_sysbios_knl_Task_Module_startup__F( xdc_Int state ); /* Instance_init__E */ extern xdc_Int ti_sysbios_knl_Task_Instance_init__E(ti_sysbios_knl_Task_Object *__obj, ti_sysbios_knl_Task_FuncPtr fxn, const ti_sysbios_knl_Task_Params *__prms, xdc_runtime_Error_Block *__eb); /* Instance_finalize__E */ extern void ti_sysbios_knl_Task_Instance_finalize__E(ti_sysbios_knl_Task_Object *__obj, int __ec); /* create */ extern ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_create( ti_sysbios_knl_Task_FuncPtr fxn, const ti_sysbios_knl_Task_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_knl_Task_construct( ti_sysbios_knl_Task_Struct *__obj, ti_sysbios_knl_Task_FuncPtr fxn, const ti_sysbios_knl_Task_Params *__prms, xdc_runtime_Error_Block *__eb ); /* delete */ extern void ti_sysbios_knl_Task_delete(ti_sysbios_knl_Task_Handle *instp); /* destruct */ extern void ti_sysbios_knl_Task_destruct(ti_sysbios_knl_Task_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_knl_Task_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_knl_Task_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_knl_Task_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_knl_Task_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_knl_Task_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_knl_Task_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_knl_Task_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_knl_Task_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* startup__E */ extern void ti_sysbios_knl_Task_startup__E( void ); /* enabled__E */ extern xdc_Bool ti_sysbios_knl_Task_enabled__E( void ); /* unlockSched__E */ extern void ti_sysbios_knl_Task_unlockSched__E( void ); /* disable__E */ extern xdc_UInt ti_sysbios_knl_Task_disable__E( void ); /* enable__E */ extern void ti_sysbios_knl_Task_enable__E( void ); /* restore__E */ extern void ti_sysbios_knl_Task_restore__E( xdc_UInt key ); /* restoreHwi__E */ extern void ti_sysbios_knl_Task_restoreHwi__E( xdc_UInt key ); /* self__E */ extern ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_self__E( void ); /* checkStacks__E */ extern void ti_sysbios_knl_Task_checkStacks__E( ti_sysbios_knl_Task_Handle oldTask, ti_sysbios_knl_Task_Handle newTask ); /* exit__E */ extern void ti_sysbios_knl_Task_exit__E( void ); /* sleep__E */ extern void ti_sysbios_knl_Task_sleep__E( xdc_UInt32 nticks ); /* yield__E */ extern void ti_sysbios_knl_Task_yield__E( void ); /* getIdleTask__E */ extern ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_getIdleTask__E( void ); /* getIdleTaskHandle__E */ extern ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_getIdleTaskHandle__E( xdc_UInt coreId ); /* startCore__E */ extern void ti_sysbios_knl_Task_startCore__E( xdc_UInt coreId ); /* getArg0__E */ extern xdc_UArg ti_sysbios_knl_Task_getArg0__E( ti_sysbios_knl_Task_Handle __inst ); /* getArg1__E */ extern xdc_UArg ti_sysbios_knl_Task_getArg1__E( ti_sysbios_knl_Task_Handle __inst ); /* getEnv__E */ extern xdc_Ptr ti_sysbios_knl_Task_getEnv__E( ti_sysbios_knl_Task_Handle __inst ); /* getFunc__E */ extern ti_sysbios_knl_Task_FuncPtr ti_sysbios_knl_Task_getFunc__E( ti_sysbios_knl_Task_Handle __inst, xdc_UArg *arg0, xdc_UArg *arg1 ); /* getHookContext__E */ extern xdc_Ptr ti_sysbios_knl_Task_getHookContext__E( ti_sysbios_knl_Task_Handle __inst, xdc_Int id ); /* getPri__E */ extern xdc_Int ti_sysbios_knl_Task_getPri__E( ti_sysbios_knl_Task_Handle __inst ); /* setArg0__E */ extern void ti_sysbios_knl_Task_setArg0__E( ti_sysbios_knl_Task_Handle __inst, xdc_UArg arg ); /* setArg1__E */ extern void ti_sysbios_knl_Task_setArg1__E( ti_sysbios_knl_Task_Handle __inst, xdc_UArg arg ); /* setEnv__E */ extern void ti_sysbios_knl_Task_setEnv__E( ti_sysbios_knl_Task_Handle __inst, xdc_Ptr env ); /* setHookContext__E */ extern void ti_sysbios_knl_Task_setHookContext__E( ti_sysbios_knl_Task_Handle __inst, xdc_Int id, xdc_Ptr hookContext ); /* setPri__E */ extern xdc_UInt ti_sysbios_knl_Task_setPri__E( ti_sysbios_knl_Task_Handle __inst, xdc_Int newpri ); /* stat__E */ extern void ti_sysbios_knl_Task_stat__E( ti_sysbios_knl_Task_Handle __inst, ti_sysbios_knl_Task_Stat *statbuf ); /* getMode__E */ extern ti_sysbios_knl_Task_Mode ti_sysbios_knl_Task_getMode__E( ti_sysbios_knl_Task_Handle __inst ); /* setAffinity__E */ extern xdc_UInt ti_sysbios_knl_Task_setAffinity__E( ti_sysbios_knl_Task_Handle __inst, xdc_UInt coreId ); /* getAffinity__E */ extern xdc_UInt ti_sysbios_knl_Task_getAffinity__E( ti_sysbios_knl_Task_Handle __inst ); /* block__E */ extern void ti_sysbios_knl_Task_block__E( ti_sysbios_knl_Task_Handle __inst ); /* unblock__E */ extern void ti_sysbios_knl_Task_unblock__E( ti_sysbios_knl_Task_Handle __inst ); /* blockI__E */ extern void ti_sysbios_knl_Task_blockI__E( ti_sysbios_knl_Task_Handle __inst ); /* unblockI__E */ extern void ti_sysbios_knl_Task_unblockI__E( ti_sysbios_knl_Task_Handle __inst, xdc_UInt hwiKey ); /* schedule__I */ extern void ti_sysbios_knl_Task_schedule__I( void ); /* enter__I */ extern void ti_sysbios_knl_Task_enter__I( void ); /* sleepTimeout__I */ extern void ti_sysbios_knl_Task_sleepTimeout__I( xdc_UArg arg ); /* postInit__I */ extern xdc_Int ti_sysbios_knl_Task_postInit__I( ti_sysbios_knl_Task_Object *task, xdc_runtime_Error_Block *eb ); /* allBlockedFunction__I */ extern void ti_sysbios_knl_Task_allBlockedFunction__I( void ); /* deleteTerminatedTasksFunc__I */ extern void ti_sysbios_knl_Task_deleteTerminatedTasksFunc__I( void ); /* processVitalTaskFlag__I */ extern void ti_sysbios_knl_Task_processVitalTaskFlag__I( ti_sysbios_knl_Task_Object *task ); /* moduleStateCheck__I */ extern xdc_Int ti_sysbios_knl_Task_moduleStateCheck__I( ti_sysbios_knl_Task_Module_State *moduleState, xdc_UInt32 checkValue ); /* getModuleStateCheckValue__I */ extern xdc_UInt32 ti_sysbios_knl_Task_getModuleStateCheckValue__I( ti_sysbios_knl_Task_Module_State *moduleState ); /* objectCheck__I */ extern xdc_Int ti_sysbios_knl_Task_objectCheck__I( ti_sysbios_knl_Task_Handle handle, xdc_UInt32 checkValue ); /* getObjectCheckValue__I */ extern xdc_UInt32 ti_sysbios_knl_Task_getObjectCheckValue__I( ti_sysbios_knl_Task_Handle handle ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_knl_Task_Module__id ti_sysbios_knl_Task_Module_id(void); static inline CT__ti_sysbios_knl_Task_Module__id ti_sysbios_knl_Task_Module_id( void ) { return ti_sysbios_knl_Task_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_knl_Task_Module_hasMask(void); static inline xdc_Bool ti_sysbios_knl_Task_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_knl_Task_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_knl_Task_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_knl_Task_Module_getMask( void ) { return ti_sysbios_knl_Task_Module__diagsMask__C != 0 ? *ti_sysbios_knl_Task_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_knl_Task_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_knl_Task_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_knl_Task_Module__diagsMask__C != 0) { *ti_sysbios_knl_Task_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_knl_Task_Params_init(ti_sysbios_knl_Task_Params *prms); static inline void ti_sysbios_knl_Task_Params_init( ti_sysbios_knl_Task_Params *prms ) { if (prms) { ti_sysbios_knl_Task_Params__init__S(prms, 0, sizeof(ti_sysbios_knl_Task_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_knl_Task_Params_copy(ti_sysbios_knl_Task_Params *dst, const ti_sysbios_knl_Task_Params *src); static inline void ti_sysbios_knl_Task_Params_copy(ti_sysbios_knl_Task_Params *dst, const ti_sysbios_knl_Task_Params *src) { if (dst) { ti_sysbios_knl_Task_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_knl_Task_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_Object_get(ti_sysbios_knl_Task_Instance_State *oarr, int i); static inline ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_Object_get(ti_sysbios_knl_Task_Instance_State *oarr, int i) { return (ti_sysbios_knl_Task_Handle)ti_sysbios_knl_Task_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_Object_first(void); static inline ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_Object_first(void) { return (ti_sysbios_knl_Task_Handle)ti_sysbios_knl_Task_Object__first__S(); } /* Object_next */ static inline ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_Object_next(ti_sysbios_knl_Task_Object *obj); static inline ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_Object_next(ti_sysbios_knl_Task_Object *obj) { return (ti_sysbios_knl_Task_Handle)ti_sysbios_knl_Task_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_knl_Task_Handle_label(ti_sysbios_knl_Task_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_knl_Task_Handle_label(ti_sysbios_knl_Task_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_knl_Task_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_knl_Task_Handle_name(ti_sysbios_knl_Task_Handle inst); static inline xdc_String ti_sysbios_knl_Task_Handle_name(ti_sysbios_knl_Task_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_knl_Task_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_handle(ti_sysbios_knl_Task_Struct *str); static inline ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_handle(ti_sysbios_knl_Task_Struct *str) { return (ti_sysbios_knl_Task_Handle)str; } /* struct */ static inline ti_sysbios_knl_Task_Struct *ti_sysbios_knl_Task_struct(ti_sysbios_knl_Task_Handle inst); static inline ti_sysbios_knl_Task_Struct *ti_sysbios_knl_Task_struct(ti_sysbios_knl_Task_Handle inst) { return (ti_sysbios_knl_Task_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2012-2014, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * ======== Task_selfMacro ======== */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct ti_sysbios_knl_Task_Module_State { volatile xdc_Bool locked; volatile xdc_UInt curSet; xdc_Bool workFlag; xdc_UInt vitalTasks; ti_sysbios_knl_Task_Handle curTask; ti_sysbios_knl_Queue_Handle curQ; __TA_ti_sysbios_knl_Task_Module_State__readyQ readyQ; __TA_ti_sysbios_knl_Task_Module_State__smpCurSet smpCurSet; __TA_ti_sysbios_knl_Task_Module_State__smpCurMask smpCurMask; __TA_ti_sysbios_knl_Task_Module_State__smpCurTask smpCurTask; __TA_ti_sysbios_knl_Task_Module_State__smpReadyQ smpReadyQ; __TA_ti_sysbios_knl_Task_Module_State__idleTask idleTask; __TA_ti_sysbios_knl_Task_Module_State__constructedTasks constructedTasks; char __dummy; }; /* Module__state__V */ extern struct ti_sysbios_knl_Task_Module_State__ ti_sysbios_knl_Task_Module__state__V; /* Object */ struct ti_sysbios_knl_Task_Object { ti_sysbios_knl_Queue_Elem qElem; volatile xdc_Int priority; xdc_UInt mask; xdc_Ptr context; ti_sysbios_knl_Task_Mode mode; ti_sysbios_knl_Task_PendElem *pendElem; xdc_SizeT stackSize; __TA_ti_sysbios_knl_Task_Instance_State__stack stack; xdc_runtime_IHeap_Handle stackHeap; ti_sysbios_knl_Task_FuncPtr fxn; xdc_UArg arg0; xdc_UArg arg1; xdc_Ptr env; __TA_ti_sysbios_knl_Task_Instance_State__hookEnv hookEnv; xdc_Bool vitalTaskFlag; ti_sysbios_knl_Queue_Handle readyQ; xdc_UInt curCoreId; xdc_UInt affinity; }; /* Module_State_inactiveQ */ extern const xdc_SizeT ti_sysbios_knl_Task_Module_State_inactiveQ__O; static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Task_Module_State_inactiveQ(); static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Task_Module_State_inactiveQ() { return (ti_sysbios_knl_Queue_Handle)(((char*)&ti_sysbios_knl_Task_Module__state__V) + ti_sysbios_knl_Task_Module_State_inactiveQ__O); } /* Module_State_terminatedQ */ extern const xdc_SizeT ti_sysbios_knl_Task_Module_State_terminatedQ__O; static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Task_Module_State_terminatedQ(); static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Task_Module_State_terminatedQ() { return (ti_sysbios_knl_Queue_Handle)(((char*)&ti_sysbios_knl_Task_Module__state__V) + ti_sysbios_knl_Task_Module_State_terminatedQ__O); } /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2012, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Id_00 */ /* Id_01 */ /* Id_02 */ /* Id_03 */ /* Id_04 */ /* Id_05 */ /* Id_06 */ /* Id_07 */ /* Id_08 */ /* Id_09 */ /* Id_10 */ /* Id_11 */ /* Id_12 */ /* Id_13 */ /* Id_14 */ /* Id_15 */ /* Id_16 */ /* Id_17 */ /* Id_18 */ /* Id_19 */ /* Id_20 */ /* Id_21 */ /* Id_22 */ /* Id_23 */ /* Id_24 */ /* Id_25 */ /* Id_26 */ /* Id_27 */ /* Id_28 */ /* Id_29 */ /* Id_30 */ /* Id_31 */ /* Id_NONE */ /* * ======== INTERNAL DEFINITIONS ======== */ /* PendState */ enum ti_sysbios_knl_Event_PendState { ti_sysbios_knl_Event_PendState_TIMEOUT = 0, ti_sysbios_knl_Event_PendState_POSTED = 1, ti_sysbios_knl_Event_PendState_CLOCK_WAIT = 2, ti_sysbios_knl_Event_PendState_WAIT_FOREVER = 3 }; typedef enum ti_sysbios_knl_Event_PendState ti_sysbios_knl_Event_PendState; /* PendElem */ struct ti_sysbios_knl_Event_PendElem { ti_sysbios_knl_Task_PendElem tpElem; ti_sysbios_knl_Event_PendState pendState; xdc_UInt matchingEvents; xdc_UInt andMask; xdc_UInt orMask; }; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_knl_Event_Module__diagsEnabled; extern const CT__ti_sysbios_knl_Event_Module__diagsEnabled ti_sysbios_knl_Event_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_knl_Event_Module__diagsIncluded; extern const CT__ti_sysbios_knl_Event_Module__diagsIncluded ti_sysbios_knl_Event_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_knl_Event_Module__diagsMask; extern const CT__ti_sysbios_knl_Event_Module__diagsMask ti_sysbios_knl_Event_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Event_Module__gateObj; extern const CT__ti_sysbios_knl_Event_Module__gateObj ti_sysbios_knl_Event_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_knl_Event_Module__gatePrms; extern const CT__ti_sysbios_knl_Event_Module__gatePrms ti_sysbios_knl_Event_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_knl_Event_Module__id; extern const CT__ti_sysbios_knl_Event_Module__id ti_sysbios_knl_Event_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_knl_Event_Module__loggerDefined; extern const CT__ti_sysbios_knl_Event_Module__loggerDefined ti_sysbios_knl_Event_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Event_Module__loggerObj; extern const CT__ti_sysbios_knl_Event_Module__loggerObj ti_sysbios_knl_Event_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_knl_Event_Module__loggerFxn0; extern const CT__ti_sysbios_knl_Event_Module__loggerFxn0 ti_sysbios_knl_Event_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_knl_Event_Module__loggerFxn1; extern const CT__ti_sysbios_knl_Event_Module__loggerFxn1 ti_sysbios_knl_Event_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_knl_Event_Module__loggerFxn2; extern const CT__ti_sysbios_knl_Event_Module__loggerFxn2 ti_sysbios_knl_Event_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_knl_Event_Module__loggerFxn4; extern const CT__ti_sysbios_knl_Event_Module__loggerFxn4 ti_sysbios_knl_Event_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_knl_Event_Module__loggerFxn8; extern const CT__ti_sysbios_knl_Event_Module__loggerFxn8 ti_sysbios_knl_Event_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_knl_Event_Object__count; extern const CT__ti_sysbios_knl_Event_Object__count ti_sysbios_knl_Event_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_knl_Event_Object__heap; extern const CT__ti_sysbios_knl_Event_Object__heap ti_sysbios_knl_Event_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_knl_Event_Object__sizeof; extern const CT__ti_sysbios_knl_Event_Object__sizeof ti_sysbios_knl_Event_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_knl_Event_Object__table; extern const CT__ti_sysbios_knl_Event_Object__table ti_sysbios_knl_Event_Object__table__C; /* LM_post */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Event_LM_post; extern const CT__ti_sysbios_knl_Event_LM_post ti_sysbios_knl_Event_LM_post__C; /* LM_pend */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Event_LM_pend; extern const CT__ti_sysbios_knl_Event_LM_pend ti_sysbios_knl_Event_LM_pend__C; /* A_nullEventMasks */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Event_A_nullEventMasks; extern const CT__ti_sysbios_knl_Event_A_nullEventMasks ti_sysbios_knl_Event_A_nullEventMasks__C; /* A_nullEventId */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Event_A_nullEventId; extern const CT__ti_sysbios_knl_Event_A_nullEventId ti_sysbios_knl_Event_A_nullEventId__C; /* A_eventInUse */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Event_A_eventInUse; extern const CT__ti_sysbios_knl_Event_A_eventInUse ti_sysbios_knl_Event_A_eventInUse__C; /* A_badContext */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Event_A_badContext; extern const CT__ti_sysbios_knl_Event_A_badContext ti_sysbios_knl_Event_A_badContext__C; /* A_pendTaskDisabled */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Event_A_pendTaskDisabled; extern const CT__ti_sysbios_knl_Event_A_pendTaskDisabled ti_sysbios_knl_Event_A_pendTaskDisabled__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_knl_Event_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_knl_Event_Struct { volatile xdc_UInt __f0; ti_sysbios_knl_Queue_Struct __f1; xdc_runtime_Types_CordAddr __name; }; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Instance_init__E */ extern void ti_sysbios_knl_Event_Instance_init__E(ti_sysbios_knl_Event_Object *__obj, const ti_sysbios_knl_Event_Params *__prms); /* create */ extern ti_sysbios_knl_Event_Handle ti_sysbios_knl_Event_create( const ti_sysbios_knl_Event_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_knl_Event_construct( ti_sysbios_knl_Event_Struct *__obj, const ti_sysbios_knl_Event_Params *__prms ); /* delete */ extern void ti_sysbios_knl_Event_delete(ti_sysbios_knl_Event_Handle *instp); /* destruct */ extern void ti_sysbios_knl_Event_destruct(ti_sysbios_knl_Event_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_knl_Event_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_knl_Event_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_knl_Event_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_knl_Event_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_knl_Event_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_knl_Event_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_knl_Event_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_knl_Event_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* pend__E */ extern xdc_UInt ti_sysbios_knl_Event_pend__E( ti_sysbios_knl_Event_Handle __inst, xdc_UInt andMask, xdc_UInt orMask, xdc_UInt32 timeout ); /* post__E */ extern void ti_sysbios_knl_Event_post__E( ti_sysbios_knl_Event_Handle __inst, xdc_UInt eventMask ); /* getPostedEvents__E */ extern xdc_UInt ti_sysbios_knl_Event_getPostedEvents__E( ti_sysbios_knl_Event_Handle __inst ); /* sync__E */ extern void ti_sysbios_knl_Event_sync__E( ti_sysbios_knl_Event_Handle __inst, xdc_UInt eventId, xdc_UInt count ); /* pendTimeout__I */ extern void ti_sysbios_knl_Event_pendTimeout__I( xdc_UArg arg ); /* checkEvents__I */ extern xdc_UInt ti_sysbios_knl_Event_checkEvents__I( ti_sysbios_knl_Event_Object *event, xdc_UInt andMask, xdc_UInt orMask ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_knl_Event_Module__id ti_sysbios_knl_Event_Module_id(void); static inline CT__ti_sysbios_knl_Event_Module__id ti_sysbios_knl_Event_Module_id( void ) { return ti_sysbios_knl_Event_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_knl_Event_Module_hasMask(void); static inline xdc_Bool ti_sysbios_knl_Event_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_knl_Event_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_knl_Event_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_knl_Event_Module_getMask( void ) { return ti_sysbios_knl_Event_Module__diagsMask__C != 0 ? *ti_sysbios_knl_Event_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_knl_Event_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_knl_Event_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_knl_Event_Module__diagsMask__C != 0) { *ti_sysbios_knl_Event_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_knl_Event_Params_init(ti_sysbios_knl_Event_Params *prms); static inline void ti_sysbios_knl_Event_Params_init( ti_sysbios_knl_Event_Params *prms ) { if (prms) { ti_sysbios_knl_Event_Params__init__S(prms, 0, sizeof(ti_sysbios_knl_Event_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_knl_Event_Params_copy(ti_sysbios_knl_Event_Params *dst, const ti_sysbios_knl_Event_Params *src); static inline void ti_sysbios_knl_Event_Params_copy(ti_sysbios_knl_Event_Params *dst, const ti_sysbios_knl_Event_Params *src) { if (dst) { ti_sysbios_knl_Event_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_knl_Event_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_knl_Event_Handle ti_sysbios_knl_Event_Object_get(ti_sysbios_knl_Event_Instance_State *oarr, int i); static inline ti_sysbios_knl_Event_Handle ti_sysbios_knl_Event_Object_get(ti_sysbios_knl_Event_Instance_State *oarr, int i) { return (ti_sysbios_knl_Event_Handle)ti_sysbios_knl_Event_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_knl_Event_Handle ti_sysbios_knl_Event_Object_first(void); static inline ti_sysbios_knl_Event_Handle ti_sysbios_knl_Event_Object_first(void) { return (ti_sysbios_knl_Event_Handle)ti_sysbios_knl_Event_Object__first__S(); } /* Object_next */ static inline ti_sysbios_knl_Event_Handle ti_sysbios_knl_Event_Object_next(ti_sysbios_knl_Event_Object *obj); static inline ti_sysbios_knl_Event_Handle ti_sysbios_knl_Event_Object_next(ti_sysbios_knl_Event_Object *obj) { return (ti_sysbios_knl_Event_Handle)ti_sysbios_knl_Event_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_knl_Event_Handle_label(ti_sysbios_knl_Event_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_knl_Event_Handle_label(ti_sysbios_knl_Event_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_knl_Event_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_knl_Event_Handle_name(ti_sysbios_knl_Event_Handle inst); static inline xdc_String ti_sysbios_knl_Event_Handle_name(ti_sysbios_knl_Event_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_knl_Event_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_knl_Event_Handle ti_sysbios_knl_Event_handle(ti_sysbios_knl_Event_Struct *str); static inline ti_sysbios_knl_Event_Handle ti_sysbios_knl_Event_handle(ti_sysbios_knl_Event_Struct *str) { return (ti_sysbios_knl_Event_Handle)str; } /* struct */ static inline ti_sysbios_knl_Event_Struct *ti_sysbios_knl_Event_struct(ti_sysbios_knl_Event_Handle inst); static inline ti_sysbios_knl_Event_Struct *ti_sysbios_knl_Event_struct(ti_sysbios_knl_Event_Handle inst) { return (ti_sysbios_knl_Event_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2012-2014, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * ======== STATE STRUCTURES ======== */ /* Object */ struct ti_sysbios_knl_Event_Object { volatile xdc_UInt postedEvents; char __dummy; }; /* Instance_State_pendQ */ extern const xdc_SizeT ti_sysbios_knl_Event_Instance_State_pendQ__O; static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Event_Instance_State_pendQ(ti_sysbios_knl_Event_Object *obj); static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Event_Instance_State_pendQ(ti_sysbios_knl_Event_Object *obj) { return (ti_sysbios_knl_Queue_Handle)(((char*)obj) + ti_sysbios_knl_Event_Instance_State_pendQ__O); } /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Mode */ enum ti_sysbios_knl_Semaphore_Mode { ti_sysbios_knl_Semaphore_Mode_COUNTING = 0x0, ti_sysbios_knl_Semaphore_Mode_BINARY = 0x1, ti_sysbios_knl_Semaphore_Mode_COUNTING_PRIORITY = 0x2, ti_sysbios_knl_Semaphore_Mode_BINARY_PRIORITY = 0x3 }; typedef enum ti_sysbios_knl_Semaphore_Mode ti_sysbios_knl_Semaphore_Mode; /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_knl_Semaphore_Args__create { xdc_Int count; } ti_sysbios_knl_Semaphore_Args__create; /* * ======== INTERNAL DEFINITIONS ======== */ /* PendState */ enum ti_sysbios_knl_Semaphore_PendState { ti_sysbios_knl_Semaphore_PendState_TIMEOUT = 0, ti_sysbios_knl_Semaphore_PendState_POSTED = 1, ti_sysbios_knl_Semaphore_PendState_CLOCK_WAIT = 2, ti_sysbios_knl_Semaphore_PendState_WAIT_FOREVER = 3 }; typedef enum ti_sysbios_knl_Semaphore_PendState ti_sysbios_knl_Semaphore_PendState; /* PendElem */ struct ti_sysbios_knl_Semaphore_PendElem { ti_sysbios_knl_Task_PendElem tpElem; ti_sysbios_knl_Semaphore_PendState pendState; }; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_knl_Semaphore_Module__diagsEnabled; extern const CT__ti_sysbios_knl_Semaphore_Module__diagsEnabled ti_sysbios_knl_Semaphore_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_knl_Semaphore_Module__diagsIncluded; extern const CT__ti_sysbios_knl_Semaphore_Module__diagsIncluded ti_sysbios_knl_Semaphore_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_knl_Semaphore_Module__diagsMask; extern const CT__ti_sysbios_knl_Semaphore_Module__diagsMask ti_sysbios_knl_Semaphore_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Semaphore_Module__gateObj; extern const CT__ti_sysbios_knl_Semaphore_Module__gateObj ti_sysbios_knl_Semaphore_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_knl_Semaphore_Module__gatePrms; extern const CT__ti_sysbios_knl_Semaphore_Module__gatePrms ti_sysbios_knl_Semaphore_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_knl_Semaphore_Module__id; extern const CT__ti_sysbios_knl_Semaphore_Module__id ti_sysbios_knl_Semaphore_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_knl_Semaphore_Module__loggerDefined; extern const CT__ti_sysbios_knl_Semaphore_Module__loggerDefined ti_sysbios_knl_Semaphore_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Semaphore_Module__loggerObj; extern const CT__ti_sysbios_knl_Semaphore_Module__loggerObj ti_sysbios_knl_Semaphore_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_knl_Semaphore_Module__loggerFxn0; extern const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn0 ti_sysbios_knl_Semaphore_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_knl_Semaphore_Module__loggerFxn1; extern const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn1 ti_sysbios_knl_Semaphore_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_knl_Semaphore_Module__loggerFxn2; extern const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn2 ti_sysbios_knl_Semaphore_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_knl_Semaphore_Module__loggerFxn4; extern const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn4 ti_sysbios_knl_Semaphore_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_knl_Semaphore_Module__loggerFxn8; extern const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn8 ti_sysbios_knl_Semaphore_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_knl_Semaphore_Object__count; extern const CT__ti_sysbios_knl_Semaphore_Object__count ti_sysbios_knl_Semaphore_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_knl_Semaphore_Object__heap; extern const CT__ti_sysbios_knl_Semaphore_Object__heap ti_sysbios_knl_Semaphore_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_knl_Semaphore_Object__sizeof; extern const CT__ti_sysbios_knl_Semaphore_Object__sizeof ti_sysbios_knl_Semaphore_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_knl_Semaphore_Object__table; extern const CT__ti_sysbios_knl_Semaphore_Object__table ti_sysbios_knl_Semaphore_Object__table__C; /* LM_post */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Semaphore_LM_post; extern const CT__ti_sysbios_knl_Semaphore_LM_post ti_sysbios_knl_Semaphore_LM_post__C; /* LM_pend */ typedef xdc_runtime_Log_Event CT__ti_sysbios_knl_Semaphore_LM_pend; extern const CT__ti_sysbios_knl_Semaphore_LM_pend ti_sysbios_knl_Semaphore_LM_pend__C; /* A_noEvents */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Semaphore_A_noEvents; extern const CT__ti_sysbios_knl_Semaphore_A_noEvents ti_sysbios_knl_Semaphore_A_noEvents__C; /* A_invTimeout */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Semaphore_A_invTimeout; extern const CT__ti_sysbios_knl_Semaphore_A_invTimeout ti_sysbios_knl_Semaphore_A_invTimeout__C; /* A_badContext */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Semaphore_A_badContext; extern const CT__ti_sysbios_knl_Semaphore_A_badContext ti_sysbios_knl_Semaphore_A_badContext__C; /* A_overflow */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Semaphore_A_overflow; extern const CT__ti_sysbios_knl_Semaphore_A_overflow ti_sysbios_knl_Semaphore_A_overflow__C; /* A_pendTaskDisabled */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_knl_Semaphore_A_pendTaskDisabled; extern const CT__ti_sysbios_knl_Semaphore_A_pendTaskDisabled ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C; /* supportsEvents */ typedef xdc_Bool CT__ti_sysbios_knl_Semaphore_supportsEvents; extern const CT__ti_sysbios_knl_Semaphore_supportsEvents ti_sysbios_knl_Semaphore_supportsEvents__C; /* supportsPriority */ typedef xdc_Bool CT__ti_sysbios_knl_Semaphore_supportsPriority; extern const CT__ti_sysbios_knl_Semaphore_supportsPriority ti_sysbios_knl_Semaphore_supportsPriority__C; /* eventPost */ typedef void (*CT__ti_sysbios_knl_Semaphore_eventPost)(ti_sysbios_knl_Event_Handle __arg1, xdc_UInt __arg2); extern const CT__ti_sysbios_knl_Semaphore_eventPost ti_sysbios_knl_Semaphore_eventPost__C; /* eventSync */ typedef void (*CT__ti_sysbios_knl_Semaphore_eventSync)(ti_sysbios_knl_Event_Handle __arg1, xdc_UInt __arg2, xdc_UInt __arg3); extern const CT__ti_sysbios_knl_Semaphore_eventSync ti_sysbios_knl_Semaphore_eventSync__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_knl_Semaphore_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; ti_sysbios_knl_Event_Handle event; xdc_UInt eventId; ti_sysbios_knl_Semaphore_Mode mode; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_knl_Semaphore_Struct { ti_sysbios_knl_Event_Handle __f0; xdc_UInt __f1; ti_sysbios_knl_Semaphore_Mode __f2; volatile xdc_UInt16 __f3; ti_sysbios_knl_Queue_Struct __f4; xdc_runtime_Types_CordAddr __name; }; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Instance_init__E */ extern void ti_sysbios_knl_Semaphore_Instance_init__E(ti_sysbios_knl_Semaphore_Object *__obj, xdc_Int count, const ti_sysbios_knl_Semaphore_Params *__prms); /* Instance_finalize__E */ extern void ti_sysbios_knl_Semaphore_Instance_finalize__E(ti_sysbios_knl_Semaphore_Object *__obj); /* create */ extern ti_sysbios_knl_Semaphore_Handle ti_sysbios_knl_Semaphore_create( xdc_Int count, const ti_sysbios_knl_Semaphore_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_knl_Semaphore_construct( ti_sysbios_knl_Semaphore_Struct *__obj, xdc_Int count, const ti_sysbios_knl_Semaphore_Params *__prms ); /* delete */ extern void ti_sysbios_knl_Semaphore_delete(ti_sysbios_knl_Semaphore_Handle *instp); /* destruct */ extern void ti_sysbios_knl_Semaphore_destruct(ti_sysbios_knl_Semaphore_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_knl_Semaphore_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_knl_Semaphore_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_knl_Semaphore_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_knl_Semaphore_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_knl_Semaphore_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_knl_Semaphore_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_knl_Semaphore_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_knl_Semaphore_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* getCount__E */ extern xdc_Int ti_sysbios_knl_Semaphore_getCount__E( ti_sysbios_knl_Semaphore_Handle __inst ); /* pend__E */ extern xdc_Bool ti_sysbios_knl_Semaphore_pend__E( ti_sysbios_knl_Semaphore_Handle __inst, xdc_UInt32 timeout ); /* post__E */ extern void ti_sysbios_knl_Semaphore_post__E( ti_sysbios_knl_Semaphore_Handle __inst ); /* registerEvent__E */ extern void ti_sysbios_knl_Semaphore_registerEvent__E( ti_sysbios_knl_Semaphore_Handle __inst, ti_sysbios_knl_Event_Handle event, xdc_UInt eventId ); /* reset__E */ extern void ti_sysbios_knl_Semaphore_reset__E( ti_sysbios_knl_Semaphore_Handle __inst, xdc_Int count ); /* pendTimeout__I */ extern void ti_sysbios_knl_Semaphore_pendTimeout__I( xdc_UArg arg ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_knl_Semaphore_Module__id ti_sysbios_knl_Semaphore_Module_id(void); static inline CT__ti_sysbios_knl_Semaphore_Module__id ti_sysbios_knl_Semaphore_Module_id( void ) { return ti_sysbios_knl_Semaphore_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_knl_Semaphore_Module_hasMask(void); static inline xdc_Bool ti_sysbios_knl_Semaphore_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_knl_Semaphore_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_knl_Semaphore_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_knl_Semaphore_Module_getMask( void ) { return ti_sysbios_knl_Semaphore_Module__diagsMask__C != 0 ? *ti_sysbios_knl_Semaphore_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_knl_Semaphore_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_knl_Semaphore_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_knl_Semaphore_Module__diagsMask__C != 0) { *ti_sysbios_knl_Semaphore_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_knl_Semaphore_Params_init(ti_sysbios_knl_Semaphore_Params *prms); static inline void ti_sysbios_knl_Semaphore_Params_init( ti_sysbios_knl_Semaphore_Params *prms ) { if (prms) { ti_sysbios_knl_Semaphore_Params__init__S(prms, 0, sizeof(ti_sysbios_knl_Semaphore_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_knl_Semaphore_Params_copy(ti_sysbios_knl_Semaphore_Params *dst, const ti_sysbios_knl_Semaphore_Params *src); static inline void ti_sysbios_knl_Semaphore_Params_copy(ti_sysbios_knl_Semaphore_Params *dst, const ti_sysbios_knl_Semaphore_Params *src) { if (dst) { ti_sysbios_knl_Semaphore_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_knl_Semaphore_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_knl_Semaphore_Handle ti_sysbios_knl_Semaphore_Object_get(ti_sysbios_knl_Semaphore_Instance_State *oarr, int i); static inline ti_sysbios_knl_Semaphore_Handle ti_sysbios_knl_Semaphore_Object_get(ti_sysbios_knl_Semaphore_Instance_State *oarr, int i) { return (ti_sysbios_knl_Semaphore_Handle)ti_sysbios_knl_Semaphore_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_knl_Semaphore_Handle ti_sysbios_knl_Semaphore_Object_first(void); static inline ti_sysbios_knl_Semaphore_Handle ti_sysbios_knl_Semaphore_Object_first(void) { return (ti_sysbios_knl_Semaphore_Handle)ti_sysbios_knl_Semaphore_Object__first__S(); } /* Object_next */ static inline ti_sysbios_knl_Semaphore_Handle ti_sysbios_knl_Semaphore_Object_next(ti_sysbios_knl_Semaphore_Object *obj); static inline ti_sysbios_knl_Semaphore_Handle ti_sysbios_knl_Semaphore_Object_next(ti_sysbios_knl_Semaphore_Object *obj) { return (ti_sysbios_knl_Semaphore_Handle)ti_sysbios_knl_Semaphore_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_knl_Semaphore_Handle_label(ti_sysbios_knl_Semaphore_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_knl_Semaphore_Handle_label(ti_sysbios_knl_Semaphore_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_knl_Semaphore_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_knl_Semaphore_Handle_name(ti_sysbios_knl_Semaphore_Handle inst); static inline xdc_String ti_sysbios_knl_Semaphore_Handle_name(ti_sysbios_knl_Semaphore_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_knl_Semaphore_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_knl_Semaphore_Handle ti_sysbios_knl_Semaphore_handle(ti_sysbios_knl_Semaphore_Struct *str); static inline ti_sysbios_knl_Semaphore_Handle ti_sysbios_knl_Semaphore_handle(ti_sysbios_knl_Semaphore_Struct *str) { return (ti_sysbios_knl_Semaphore_Handle)str; } /* struct */ static inline ti_sysbios_knl_Semaphore_Struct *ti_sysbios_knl_Semaphore_struct(ti_sysbios_knl_Semaphore_Handle inst); static inline ti_sysbios_knl_Semaphore_Struct *ti_sysbios_knl_Semaphore_struct(ti_sysbios_knl_Semaphore_Handle inst) { return (ti_sysbios_knl_Semaphore_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Object */ struct ti_sysbios_knl_Semaphore_Object { ti_sysbios_knl_Event_Handle event; xdc_UInt eventId; ti_sysbios_knl_Semaphore_Mode mode; volatile xdc_UInt16 count; char __dummy; }; /* Instance_State_pendQ */ extern const xdc_SizeT ti_sysbios_knl_Semaphore_Instance_State_pendQ__O; static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Semaphore_Instance_State_pendQ(ti_sysbios_knl_Semaphore_Object *obj); static inline ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Semaphore_Instance_State_pendQ(ti_sysbios_knl_Semaphore_Object *obj) { return (ti_sysbios_knl_Queue_Handle)(((char*)obj) + ti_sysbios_knl_Semaphore_Instance_State_pendQ__O); } /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Q_BLOCKING */ /* Q_PREEMPTING */ /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_gates_GateMutex_Module__diagsEnabled; extern const CT__ti_sysbios_gates_GateMutex_Module__diagsEnabled ti_sysbios_gates_GateMutex_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_gates_GateMutex_Module__diagsIncluded; extern const CT__ti_sysbios_gates_GateMutex_Module__diagsIncluded ti_sysbios_gates_GateMutex_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_gates_GateMutex_Module__diagsMask; extern const CT__ti_sysbios_gates_GateMutex_Module__diagsMask ti_sysbios_gates_GateMutex_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_gates_GateMutex_Module__gateObj; extern const CT__ti_sysbios_gates_GateMutex_Module__gateObj ti_sysbios_gates_GateMutex_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_gates_GateMutex_Module__gatePrms; extern const CT__ti_sysbios_gates_GateMutex_Module__gatePrms ti_sysbios_gates_GateMutex_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_gates_GateMutex_Module__id; extern const CT__ti_sysbios_gates_GateMutex_Module__id ti_sysbios_gates_GateMutex_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_gates_GateMutex_Module__loggerDefined; extern const CT__ti_sysbios_gates_GateMutex_Module__loggerDefined ti_sysbios_gates_GateMutex_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_gates_GateMutex_Module__loggerObj; extern const CT__ti_sysbios_gates_GateMutex_Module__loggerObj ti_sysbios_gates_GateMutex_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_gates_GateMutex_Module__loggerFxn0; extern const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn0 ti_sysbios_gates_GateMutex_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_gates_GateMutex_Module__loggerFxn1; extern const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn1 ti_sysbios_gates_GateMutex_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_gates_GateMutex_Module__loggerFxn2; extern const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn2 ti_sysbios_gates_GateMutex_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_gates_GateMutex_Module__loggerFxn4; extern const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn4 ti_sysbios_gates_GateMutex_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_gates_GateMutex_Module__loggerFxn8; extern const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn8 ti_sysbios_gates_GateMutex_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_gates_GateMutex_Object__count; extern const CT__ti_sysbios_gates_GateMutex_Object__count ti_sysbios_gates_GateMutex_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_gates_GateMutex_Object__heap; extern const CT__ti_sysbios_gates_GateMutex_Object__heap ti_sysbios_gates_GateMutex_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_gates_GateMutex_Object__sizeof; extern const CT__ti_sysbios_gates_GateMutex_Object__sizeof ti_sysbios_gates_GateMutex_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_gates_GateMutex_Object__table; extern const CT__ti_sysbios_gates_GateMutex_Object__table ti_sysbios_gates_GateMutex_Object__table__C; /* A_badContext */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_gates_GateMutex_A_badContext; extern const CT__ti_sysbios_gates_GateMutex_A_badContext ti_sysbios_gates_GateMutex_A_badContext__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_gates_GateMutex_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_gates_GateMutex_Struct { const ti_sysbios_gates_GateMutex_Fxns__ *__fxns; ti_sysbios_knl_Task_Handle __f0; ti_sysbios_knl_Semaphore_Struct __f1; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_gates_GateMutex_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bool (*query)(xdc_Int qual); xdc_IArg (*enter)(ti_sysbios_gates_GateMutex_Handle __inst); void (*leave)(ti_sysbios_gates_GateMutex_Handle __inst, xdc_IArg key); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_gates_GateMutex_Fxns__ ti_sysbios_gates_GateMutex_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Instance_init__E */ extern void ti_sysbios_gates_GateMutex_Instance_init__E(ti_sysbios_gates_GateMutex_Object *__obj, const ti_sysbios_gates_GateMutex_Params *__prms); /* Instance_finalize__E */ extern void ti_sysbios_gates_GateMutex_Instance_finalize__E(ti_sysbios_gates_GateMutex_Object *__obj); /* create */ extern ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_create( const ti_sysbios_gates_GateMutex_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_gates_GateMutex_construct( ti_sysbios_gates_GateMutex_Struct *__obj, const ti_sysbios_gates_GateMutex_Params *__prms ); /* delete */ extern void ti_sysbios_gates_GateMutex_delete(ti_sysbios_gates_GateMutex_Handle *instp); /* destruct */ extern void ti_sysbios_gates_GateMutex_destruct(ti_sysbios_gates_GateMutex_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_gates_GateMutex_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_gates_GateMutex_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_gates_GateMutex_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_gates_GateMutex_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_gates_GateMutex_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_gates_GateMutex_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_gates_GateMutex_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_gates_GateMutex_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* query__E */ extern xdc_Bool ti_sysbios_gates_GateMutex_query__E( xdc_Int qual ); /* enter__E */ extern xdc_IArg ti_sysbios_gates_GateMutex_enter__E( ti_sysbios_gates_GateMutex_Handle __inst ); /* leave__E */ extern void ti_sysbios_gates_GateMutex_leave__E( ti_sysbios_gates_GateMutex_Handle __inst, xdc_IArg key ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_IGateProvider_Module ti_sysbios_gates_GateMutex_Module_upCast(void); static inline xdc_runtime_IGateProvider_Module ti_sysbios_gates_GateMutex_Module_upCast(void) { return (xdc_runtime_IGateProvider_Module)&ti_sysbios_gates_GateMutex_Module__FXNS__C; } /* Module_to_xdc_runtime_IGateProvider */ /* Handle_upCast */ static inline xdc_runtime_IGateProvider_Handle ti_sysbios_gates_GateMutex_Handle_upCast(ti_sysbios_gates_GateMutex_Handle i); static inline xdc_runtime_IGateProvider_Handle ti_sysbios_gates_GateMutex_Handle_upCast(ti_sysbios_gates_GateMutex_Handle i) { return (xdc_runtime_IGateProvider_Handle)i; } /* Handle_to_xdc_runtime_IGateProvider */ /* Handle_downCast */ static inline ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_Handle_downCast(xdc_runtime_IGateProvider_Handle i); static inline ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_Handle_downCast(xdc_runtime_IGateProvider_Handle i) { xdc_runtime_IGateProvider_Handle i2 = (xdc_runtime_IGateProvider_Handle)i; return (const void*)i2->__fxns == (const void*)&ti_sysbios_gates_GateMutex_Module__FXNS__C ? (ti_sysbios_gates_GateMutex_Handle)i : (ti_sysbios_gates_GateMutex_Handle)0; } /* Handle_from_xdc_runtime_IGateProvider */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_gates_GateMutex_Module__id ti_sysbios_gates_GateMutex_Module_id(void); static inline CT__ti_sysbios_gates_GateMutex_Module__id ti_sysbios_gates_GateMutex_Module_id( void ) { return ti_sysbios_gates_GateMutex_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_gates_GateMutex_Module_hasMask(void); static inline xdc_Bool ti_sysbios_gates_GateMutex_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_gates_GateMutex_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_gates_GateMutex_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_gates_GateMutex_Module_getMask( void ) { return ti_sysbios_gates_GateMutex_Module__diagsMask__C != 0 ? *ti_sysbios_gates_GateMutex_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_gates_GateMutex_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_gates_GateMutex_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_gates_GateMutex_Module__diagsMask__C != 0) { *ti_sysbios_gates_GateMutex_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_gates_GateMutex_Params_init(ti_sysbios_gates_GateMutex_Params *prms); static inline void ti_sysbios_gates_GateMutex_Params_init( ti_sysbios_gates_GateMutex_Params *prms ) { if (prms) { ti_sysbios_gates_GateMutex_Params__init__S(prms, 0, sizeof(ti_sysbios_gates_GateMutex_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_gates_GateMutex_Params_copy(ti_sysbios_gates_GateMutex_Params *dst, const ti_sysbios_gates_GateMutex_Params *src); static inline void ti_sysbios_gates_GateMutex_Params_copy(ti_sysbios_gates_GateMutex_Params *dst, const ti_sysbios_gates_GateMutex_Params *src) { if (dst) { ti_sysbios_gates_GateMutex_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_gates_GateMutex_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_Object_get(ti_sysbios_gates_GateMutex_Instance_State *oarr, int i); static inline ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_Object_get(ti_sysbios_gates_GateMutex_Instance_State *oarr, int i) { return (ti_sysbios_gates_GateMutex_Handle)ti_sysbios_gates_GateMutex_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_Object_first(void); static inline ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_Object_first(void) { return (ti_sysbios_gates_GateMutex_Handle)ti_sysbios_gates_GateMutex_Object__first__S(); } /* Object_next */ static inline ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_Object_next(ti_sysbios_gates_GateMutex_Object *obj); static inline ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_Object_next(ti_sysbios_gates_GateMutex_Object *obj) { return (ti_sysbios_gates_GateMutex_Handle)ti_sysbios_gates_GateMutex_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_gates_GateMutex_Handle_label(ti_sysbios_gates_GateMutex_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_gates_GateMutex_Handle_label(ti_sysbios_gates_GateMutex_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_gates_GateMutex_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_gates_GateMutex_Handle_name(ti_sysbios_gates_GateMutex_Handle inst); static inline xdc_String ti_sysbios_gates_GateMutex_Handle_name(ti_sysbios_gates_GateMutex_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_gates_GateMutex_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_handle(ti_sysbios_gates_GateMutex_Struct *str); static inline ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_handle(ti_sysbios_gates_GateMutex_Struct *str) { return (ti_sysbios_gates_GateMutex_Handle)str; } /* struct */ static inline ti_sysbios_gates_GateMutex_Struct *ti_sysbios_gates_GateMutex_struct(ti_sysbios_gates_GateMutex_Handle inst); static inline ti_sysbios_gates_GateMutex_Struct *ti_sysbios_gates_GateMutex_struct(ti_sysbios_gates_GateMutex_Handle inst) { return (ti_sysbios_gates_GateMutex_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Object */ struct ti_sysbios_gates_GateMutex_Object { const ti_sysbios_gates_GateMutex_Fxns__ *__fxns; ti_sysbios_knl_Task_Handle owner; char __dummy; }; /* Instance_State_sem */ extern const xdc_SizeT ti_sysbios_gates_GateMutex_Instance_State_sem__O; static inline ti_sysbios_knl_Semaphore_Handle ti_sysbios_gates_GateMutex_Instance_State_sem(ti_sysbios_gates_GateMutex_Object *obj); static inline ti_sysbios_knl_Semaphore_Handle ti_sysbios_gates_GateMutex_Instance_State_sem(ti_sysbios_gates_GateMutex_Object *obj) { return (ti_sysbios_knl_Semaphore_Handle)(((char*)obj) + ti_sysbios_gates_GateMutex_Instance_State_sem__O); } /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2012, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== module ti.sysbios.hal.Cache ======== */ typedef struct ti_sysbios_hal_Cache_Fxns__ ti_sysbios_hal_Cache_Fxns__; typedef const struct ti_sysbios_hal_Cache_Fxns__* ti_sysbios_hal_Cache_Module; /* * ======== module ti.sysbios.hal.CacheNull ======== */ typedef struct ti_sysbios_hal_CacheNull_Fxns__ ti_sysbios_hal_CacheNull_Fxns__; typedef const struct ti_sysbios_hal_CacheNull_Fxns__* ti_sysbios_hal_CacheNull_Module; /* * ======== module ti.sysbios.hal.Core ======== */ typedef struct ti_sysbios_hal_Core_Fxns__ ti_sysbios_hal_Core_Fxns__; typedef const struct ti_sysbios_hal_Core_Fxns__* ti_sysbios_hal_Core_Module; /* * ======== module ti.sysbios.hal.CoreNull ======== */ typedef struct ti_sysbios_hal_CoreNull_Fxns__ ti_sysbios_hal_CoreNull_Fxns__; typedef const struct ti_sysbios_hal_CoreNull_Fxns__* ti_sysbios_hal_CoreNull_Module; /* * ======== module ti.sysbios.hal.Hwi ======== */ typedef struct ti_sysbios_hal_Hwi_Fxns__ ti_sysbios_hal_Hwi_Fxns__; typedef const struct ti_sysbios_hal_Hwi_Fxns__* ti_sysbios_hal_Hwi_Module; typedef struct ti_sysbios_hal_Hwi_Params ti_sysbios_hal_Hwi_Params; typedef struct ti_sysbios_hal_Hwi_Object ti_sysbios_hal_Hwi_Object; typedef struct ti_sysbios_hal_Hwi_Struct ti_sysbios_hal_Hwi_Struct; typedef ti_sysbios_hal_Hwi_Object* ti_sysbios_hal_Hwi_Handle; typedef struct ti_sysbios_hal_Hwi_Object__ ti_sysbios_hal_Hwi_Instance_State; typedef ti_sysbios_hal_Hwi_Object* ti_sysbios_hal_Hwi_Instance; /* * ======== module ti.sysbios.hal.Power ======== */ typedef struct ti_sysbios_hal_Power_Fxns__ ti_sysbios_hal_Power_Fxns__; typedef const struct ti_sysbios_hal_Power_Fxns__* ti_sysbios_hal_Power_Module; /* * ======== module ti.sysbios.hal.PowerNull ======== */ typedef struct ti_sysbios_hal_PowerNull_Fxns__ ti_sysbios_hal_PowerNull_Fxns__; typedef const struct ti_sysbios_hal_PowerNull_Fxns__* ti_sysbios_hal_PowerNull_Module; /* * ======== module ti.sysbios.hal.Seconds ======== */ typedef struct ti_sysbios_hal_Seconds_Fxns__ ti_sysbios_hal_Seconds_Fxns__; typedef const struct ti_sysbios_hal_Seconds_Fxns__* ti_sysbios_hal_Seconds_Module; /* * ======== module ti.sysbios.hal.SecondsCallback ======== */ typedef struct ti_sysbios_hal_SecondsCallback_Fxns__ ti_sysbios_hal_SecondsCallback_Fxns__; typedef const struct ti_sysbios_hal_SecondsCallback_Fxns__* ti_sysbios_hal_SecondsCallback_Module; /* * ======== module ti.sysbios.hal.SecondsClock ======== */ typedef struct ti_sysbios_hal_SecondsClock_Module_State ti_sysbios_hal_SecondsClock_Module_State; typedef struct ti_sysbios_hal_SecondsClock_Fxns__ ti_sysbios_hal_SecondsClock_Fxns__; typedef const struct ti_sysbios_hal_SecondsClock_Fxns__* ti_sysbios_hal_SecondsClock_Module; /* * ======== module ti.sysbios.hal.Timer ======== */ typedef struct ti_sysbios_hal_Timer_Fxns__ ti_sysbios_hal_Timer_Fxns__; typedef const struct ti_sysbios_hal_Timer_Fxns__* ti_sysbios_hal_Timer_Module; typedef struct ti_sysbios_hal_Timer_Params ti_sysbios_hal_Timer_Params; typedef struct ti_sysbios_hal_Timer_Object ti_sysbios_hal_Timer_Object; typedef struct ti_sysbios_hal_Timer_Struct ti_sysbios_hal_Timer_Struct; typedef ti_sysbios_hal_Timer_Object* ti_sysbios_hal_Timer_Handle; typedef struct ti_sysbios_hal_Timer_Object__ ti_sysbios_hal_Timer_Instance_State; typedef ti_sysbios_hal_Timer_Object* ti_sysbios_hal_Timer_Instance; /* * ======== module ti.sysbios.hal.TimerNull ======== */ typedef struct ti_sysbios_hal_TimerNull_Fxns__ ti_sysbios_hal_TimerNull_Fxns__; typedef const struct ti_sysbios_hal_TimerNull_Fxns__* ti_sysbios_hal_TimerNull_Module; typedef struct ti_sysbios_hal_TimerNull_Params ti_sysbios_hal_TimerNull_Params; typedef struct ti_sysbios_hal_TimerNull_Object ti_sysbios_hal_TimerNull_Object; typedef struct ti_sysbios_hal_TimerNull_Struct ti_sysbios_hal_TimerNull_Struct; typedef ti_sysbios_hal_TimerNull_Object* ti_sysbios_hal_TimerNull_Handle; typedef struct ti_sysbios_hal_TimerNull_Object__ ti_sysbios_hal_TimerNull_Instance_State; typedef ti_sysbios_hal_TimerNull_Object* ti_sysbios_hal_TimerNull_Instance; /* * ======== module ti.sysbios.hal.Cache_CacheProxy ======== */ typedef struct ti_sysbios_hal_Cache_CacheProxy_Fxns__ ti_sysbios_hal_Cache_CacheProxy_Fxns__; typedef const struct ti_sysbios_hal_Cache_CacheProxy_Fxns__* ti_sysbios_hal_Cache_CacheProxy_Module; /* * ======== module ti.sysbios.hal.Core_CoreProxy ======== */ typedef struct ti_sysbios_hal_Core_CoreProxy_Fxns__ ti_sysbios_hal_Core_CoreProxy_Fxns__; typedef const struct ti_sysbios_hal_Core_CoreProxy_Fxns__* ti_sysbios_hal_Core_CoreProxy_Module; /* * ======== module ti.sysbios.hal.Hwi_HwiProxy ======== */ typedef struct ti_sysbios_hal_Hwi_HwiProxy_Fxns__ ti_sysbios_hal_Hwi_HwiProxy_Fxns__; typedef const struct ti_sysbios_hal_Hwi_HwiProxy_Fxns__* ti_sysbios_hal_Hwi_HwiProxy_Module; typedef struct ti_sysbios_hal_Hwi_HwiProxy_Params ti_sysbios_hal_Hwi_HwiProxy_Params; typedef struct ti_sysbios_interfaces_IHwi___Object *ti_sysbios_hal_Hwi_HwiProxy_Handle; /* * ======== module ti.sysbios.hal.Power_PowerProxy ======== */ typedef struct ti_sysbios_hal_Power_PowerProxy_Fxns__ ti_sysbios_hal_Power_PowerProxy_Fxns__; typedef const struct ti_sysbios_hal_Power_PowerProxy_Fxns__* ti_sysbios_hal_Power_PowerProxy_Module; /* * ======== module ti.sysbios.hal.Seconds_SecondsProxy ======== */ typedef struct ti_sysbios_hal_Seconds_SecondsProxy_Fxns__ ti_sysbios_hal_Seconds_SecondsProxy_Fxns__; typedef const struct ti_sysbios_hal_Seconds_SecondsProxy_Fxns__* ti_sysbios_hal_Seconds_SecondsProxy_Module; /* * ======== module ti.sysbios.hal.Timer_TimerProxy ======== */ typedef struct ti_sysbios_hal_Timer_TimerProxy_Fxns__ ti_sysbios_hal_Timer_TimerProxy_Fxns__; typedef const struct ti_sysbios_hal_Timer_TimerProxy_Fxns__* ti_sysbios_hal_Timer_TimerProxy_Module; typedef struct ti_sysbios_hal_Timer_TimerProxy_Params ti_sysbios_hal_Timer_TimerProxy_Params; typedef struct ti_sysbios_interfaces_ITimer___Object *ti_sysbios_hal_Timer_TimerProxy_Handle; /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef ti_sysbios_interfaces_IHwi_FuncPtr ti_sysbios_hal_Hwi_HwiProxy_FuncPtr; /* Irp */ typedef ti_sysbios_interfaces_IHwi_Irp ti_sysbios_hal_Hwi_HwiProxy_Irp; /* HookSet */ typedef ti_sysbios_interfaces_IHwi_HookSet ti_sysbios_hal_Hwi_HwiProxy_HookSet; /* MaskingOption */ typedef ti_sysbios_interfaces_IHwi_MaskingOption ti_sysbios_hal_Hwi_HwiProxy_MaskingOption; /* StackInfo */ typedef ti_sysbios_interfaces_IHwi_StackInfo ti_sysbios_hal_Hwi_HwiProxy_StackInfo; /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_hal_Hwi_HwiProxy_Args__create { xdc_Int intNum; ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn; } ti_sysbios_hal_Hwi_HwiProxy_Args__create; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_hal_Hwi_HwiProxy_Module__diagsEnabled; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__diagsEnabled ti_sysbios_hal_Hwi_HwiProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_hal_Hwi_HwiProxy_Module__diagsIncluded; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__diagsIncluded ti_sysbios_hal_Hwi_HwiProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_hal_Hwi_HwiProxy_Module__diagsMask; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__diagsMask ti_sysbios_hal_Hwi_HwiProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_hal_Hwi_HwiProxy_Module__gateObj; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__gateObj ti_sysbios_hal_Hwi_HwiProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_hal_Hwi_HwiProxy_Module__gatePrms; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__gatePrms ti_sysbios_hal_Hwi_HwiProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_hal_Hwi_HwiProxy_Module__id; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__id ti_sysbios_hal_Hwi_HwiProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerDefined; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerDefined ti_sysbios_hal_Hwi_HwiProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerObj; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerObj ti_sysbios_hal_Hwi_HwiProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn0; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn0 ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn1; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn1 ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn2; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn2 ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn4; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn4 ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn8; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn8 ti_sysbios_hal_Hwi_HwiProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_hal_Hwi_HwiProxy_Object__count; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Object__count ti_sysbios_hal_Hwi_HwiProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_hal_Hwi_HwiProxy_Object__heap; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Object__heap ti_sysbios_hal_Hwi_HwiProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_hal_Hwi_HwiProxy_Object__sizeof; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Object__sizeof ti_sysbios_hal_Hwi_HwiProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_hal_Hwi_HwiProxy_Object__table; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_Object__table ti_sysbios_hal_Hwi_HwiProxy_Object__table__C; /* dispatcherAutoNestingSupport */ typedef xdc_Bool CT__ti_sysbios_hal_Hwi_HwiProxy_dispatcherAutoNestingSupport; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_dispatcherAutoNestingSupport ti_sysbios_hal_Hwi_HwiProxy_dispatcherAutoNestingSupport__C; /* dispatcherSwiSupport */ typedef xdc_Bool CT__ti_sysbios_hal_Hwi_HwiProxy_dispatcherSwiSupport; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_dispatcherSwiSupport ti_sysbios_hal_Hwi_HwiProxy_dispatcherSwiSupport__C; /* dispatcherTaskSupport */ typedef xdc_Bool CT__ti_sysbios_hal_Hwi_HwiProxy_dispatcherTaskSupport; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_dispatcherTaskSupport ti_sysbios_hal_Hwi_HwiProxy_dispatcherTaskSupport__C; /* dispatcherIrpTrackingSupport */ typedef xdc_Bool CT__ti_sysbios_hal_Hwi_HwiProxy_dispatcherIrpTrackingSupport; extern const CT__ti_sysbios_hal_Hwi_HwiProxy_dispatcherIrpTrackingSupport ti_sysbios_hal_Hwi_HwiProxy_dispatcherIrpTrackingSupport__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_hal_Hwi_HwiProxy_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; ti_sysbios_interfaces_IHwi_MaskingOption maskSetting; xdc_UArg arg; xdc_Bool enableInt; xdc_Int eventId; xdc_Int priority; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_hal_Hwi_HwiProxy_Struct { const ti_sysbios_hal_Hwi_HwiProxy_Fxns__ *__fxns; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_hal_Hwi_HwiProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bool (*getStackInfo)(ti_sysbios_interfaces_IHwi_StackInfo* stkInfo, xdc_Bool computeStackDepth); xdc_Bool (*getCoreStackInfo)(ti_sysbios_interfaces_IHwi_StackInfo* stkInfo, xdc_Bool computeStackDepth, xdc_UInt coreId); void (*startup)(void); xdc_UInt (*disable)(void); xdc_UInt (*enable)(void); void (*restore)(xdc_UInt key); void (*switchFromBootStack)(void); void (*post)(xdc_UInt intNum); xdc_Char *(*getTaskSP)(void); xdc_UInt (*disableInterrupt)(xdc_UInt intNum); xdc_UInt (*enableInterrupt)(xdc_UInt intNum); void (*restoreInterrupt)(xdc_UInt intNum, xdc_UInt key); void (*clearInterrupt)(xdc_UInt intNum); ti_sysbios_interfaces_IHwi_FuncPtr (*getFunc)(ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, xdc_UArg* arg); void (*setFunc)(ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, ti_sysbios_interfaces_IHwi_FuncPtr fxn, xdc_UArg arg); xdc_Ptr (*getHookContext)(ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, xdc_Int id); void (*setHookContext)(ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, xdc_Int id, xdc_Ptr hookContext); ti_sysbios_interfaces_IHwi_Irp (*getIrp)(ti_sysbios_hal_Hwi_HwiProxy_Handle __inst); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_hal_Hwi_HwiProxy_Fxns__ ti_sysbios_hal_Hwi_HwiProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* create */ extern ti_sysbios_hal_Hwi_HwiProxy_Handle ti_sysbios_hal_Hwi_HwiProxy_create( xdc_Int intNum, ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn, const ti_sysbios_hal_Hwi_HwiProxy_Params *__prms, xdc_runtime_Error_Block *__eb ); /* delete */ extern void ti_sysbios_hal_Hwi_HwiProxy_delete(ti_sysbios_hal_Hwi_HwiProxy_Handle *instp); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_hal_Hwi_HwiProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_hal_Hwi_HwiProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_hal_Hwi_HwiProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_hal_Hwi_HwiProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_hal_Hwi_HwiProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool ti_sysbios_hal_Hwi_HwiProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr ti_sysbios_hal_Hwi_HwiProxy_Proxy__delegate__S( void ); /* getStackInfo__E */ extern xdc_Bool ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E( ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth ); /* getCoreStackInfo__E */ extern xdc_Bool ti_sysbios_hal_Hwi_HwiProxy_getCoreStackInfo__E( ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth, xdc_UInt coreId ); /* startup__E */ extern void ti_sysbios_hal_Hwi_HwiProxy_startup__E( void ); /* disable__E */ extern xdc_UInt ti_sysbios_hal_Hwi_HwiProxy_disable__E( void ); /* enable__E */ extern xdc_UInt ti_sysbios_hal_Hwi_HwiProxy_enable__E( void ); /* restore__E */ extern void ti_sysbios_hal_Hwi_HwiProxy_restore__E( xdc_UInt key ); /* switchFromBootStack__E */ extern void ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E( void ); /* post__E */ extern void ti_sysbios_hal_Hwi_HwiProxy_post__E( xdc_UInt intNum ); /* getTaskSP__E */ extern xdc_Char *ti_sysbios_hal_Hwi_HwiProxy_getTaskSP__E( void ); /* disableInterrupt__E */ extern xdc_UInt ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E( xdc_UInt intNum ); /* enableInterrupt__E */ extern xdc_UInt ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E( xdc_UInt intNum ); /* restoreInterrupt__E */ extern void ti_sysbios_hal_Hwi_HwiProxy_restoreInterrupt__E( xdc_UInt intNum, xdc_UInt key ); /* clearInterrupt__E */ extern void ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E( xdc_UInt intNum ); /* getFunc__E */ extern ti_sysbios_interfaces_IHwi_FuncPtr ti_sysbios_hal_Hwi_HwiProxy_getFunc__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, xdc_UArg *arg ); /* setFunc__E */ extern void ti_sysbios_hal_Hwi_HwiProxy_setFunc__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, ti_sysbios_interfaces_IHwi_FuncPtr fxn, xdc_UArg arg ); /* getHookContext__E */ extern xdc_Ptr ti_sysbios_hal_Hwi_HwiProxy_getHookContext__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, xdc_Int id ); /* setHookContext__E */ extern void ti_sysbios_hal_Hwi_HwiProxy_setHookContext__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, xdc_Int id, xdc_Ptr hookContext ); /* getIrp__E */ extern ti_sysbios_interfaces_IHwi_Irp ti_sysbios_hal_Hwi_HwiProxy_getIrp__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_IHwi_Module ti_sysbios_hal_Hwi_HwiProxy_Module_upCast(void); static inline ti_sysbios_interfaces_IHwi_Module ti_sysbios_hal_Hwi_HwiProxy_Module_upCast(void) { return (ti_sysbios_interfaces_IHwi_Module)ti_sysbios_hal_Hwi_HwiProxy_Proxy__delegate__S(); } /* Module_to_ti_sysbios_interfaces_IHwi */ /* Handle_upCast */ static inline ti_sysbios_interfaces_IHwi_Handle ti_sysbios_hal_Hwi_HwiProxy_Handle_upCast(ti_sysbios_hal_Hwi_HwiProxy_Handle i); static inline ti_sysbios_interfaces_IHwi_Handle ti_sysbios_hal_Hwi_HwiProxy_Handle_upCast(ti_sysbios_hal_Hwi_HwiProxy_Handle i) { return (ti_sysbios_interfaces_IHwi_Handle)i; } /* Handle_to_ti_sysbios_interfaces_IHwi */ /* Handle_downCast */ static inline ti_sysbios_hal_Hwi_HwiProxy_Handle ti_sysbios_hal_Hwi_HwiProxy_Handle_downCast(ti_sysbios_interfaces_IHwi_Handle i); static inline ti_sysbios_hal_Hwi_HwiProxy_Handle ti_sysbios_hal_Hwi_HwiProxy_Handle_downCast(ti_sysbios_interfaces_IHwi_Handle i) { ti_sysbios_interfaces_IHwi_Handle i2 = (ti_sysbios_interfaces_IHwi_Handle)i; if (ti_sysbios_hal_Hwi_HwiProxy_Proxy__abstract__S()) { return (ti_sysbios_hal_Hwi_HwiProxy_Handle)i; } return (const void*)i2->__fxns == (const void*)ti_sysbios_hal_Hwi_HwiProxy_Proxy__delegate__S() ? (ti_sysbios_hal_Hwi_HwiProxy_Handle)i : (ti_sysbios_hal_Hwi_HwiProxy_Handle)0; } /* Handle_from_ti_sysbios_interfaces_IHwi */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_hal_Hwi_HwiProxy_Module__id ti_sysbios_hal_Hwi_HwiProxy_Module_id(void); static inline CT__ti_sysbios_hal_Hwi_HwiProxy_Module__id ti_sysbios_hal_Hwi_HwiProxy_Module_id( void ) { return ti_sysbios_hal_Hwi_HwiProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* Params_init */ static inline void ti_sysbios_hal_Hwi_HwiProxy_Params_init(ti_sysbios_hal_Hwi_HwiProxy_Params *prms); static inline void ti_sysbios_hal_Hwi_HwiProxy_Params_init( ti_sysbios_hal_Hwi_HwiProxy_Params *prms ) { if (prms) { ti_sysbios_hal_Hwi_HwiProxy_Params__init__S(prms, 0, sizeof(ti_sysbios_hal_Hwi_HwiProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_hal_Hwi_HwiProxy_Params_copy(ti_sysbios_hal_Hwi_HwiProxy_Params *dst, const ti_sysbios_hal_Hwi_HwiProxy_Params *src); static inline void ti_sysbios_hal_Hwi_HwiProxy_Params_copy(ti_sysbios_hal_Hwi_HwiProxy_Params *dst, const ti_sysbios_hal_Hwi_HwiProxy_Params *src) { if (dst) { ti_sysbios_hal_Hwi_HwiProxy_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_hal_Hwi_HwiProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef ti_sysbios_interfaces_IHwi_FuncPtr ti_sysbios_hal_Hwi_FuncPtr; /* Irp */ typedef ti_sysbios_interfaces_IHwi_Irp ti_sysbios_hal_Hwi_Irp; /* HookSet */ typedef ti_sysbios_interfaces_IHwi_HookSet ti_sysbios_hal_Hwi_HookSet; /* MaskingOption */ typedef ti_sysbios_interfaces_IHwi_MaskingOption ti_sysbios_hal_Hwi_MaskingOption; /* StackInfo */ typedef ti_sysbios_interfaces_IHwi_StackInfo ti_sysbios_hal_Hwi_StackInfo; /* MaskingOption_NONE */ /* MaskingOption_ALL */ /* MaskingOption_SELF */ /* MaskingOption_BITMASK */ /* MaskingOption_LOWER */ /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_hal_Hwi_Args__create { xdc_Int intNum; ti_sysbios_hal_Hwi_FuncPtr hwiFxn; } ti_sysbios_hal_Hwi_Args__create; /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_hal_Hwi_Module__diagsEnabled; extern const CT__ti_sysbios_hal_Hwi_Module__diagsEnabled ti_sysbios_hal_Hwi_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_hal_Hwi_Module__diagsIncluded; extern const CT__ti_sysbios_hal_Hwi_Module__diagsIncluded ti_sysbios_hal_Hwi_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_hal_Hwi_Module__diagsMask; extern const CT__ti_sysbios_hal_Hwi_Module__diagsMask ti_sysbios_hal_Hwi_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_hal_Hwi_Module__gateObj; extern const CT__ti_sysbios_hal_Hwi_Module__gateObj ti_sysbios_hal_Hwi_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_hal_Hwi_Module__gatePrms; extern const CT__ti_sysbios_hal_Hwi_Module__gatePrms ti_sysbios_hal_Hwi_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_hal_Hwi_Module__id; extern const CT__ti_sysbios_hal_Hwi_Module__id ti_sysbios_hal_Hwi_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_hal_Hwi_Module__loggerDefined; extern const CT__ti_sysbios_hal_Hwi_Module__loggerDefined ti_sysbios_hal_Hwi_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_hal_Hwi_Module__loggerObj; extern const CT__ti_sysbios_hal_Hwi_Module__loggerObj ti_sysbios_hal_Hwi_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_hal_Hwi_Module__loggerFxn0; extern const CT__ti_sysbios_hal_Hwi_Module__loggerFxn0 ti_sysbios_hal_Hwi_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_hal_Hwi_Module__loggerFxn1; extern const CT__ti_sysbios_hal_Hwi_Module__loggerFxn1 ti_sysbios_hal_Hwi_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_hal_Hwi_Module__loggerFxn2; extern const CT__ti_sysbios_hal_Hwi_Module__loggerFxn2 ti_sysbios_hal_Hwi_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_hal_Hwi_Module__loggerFxn4; extern const CT__ti_sysbios_hal_Hwi_Module__loggerFxn4 ti_sysbios_hal_Hwi_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_hal_Hwi_Module__loggerFxn8; extern const CT__ti_sysbios_hal_Hwi_Module__loggerFxn8 ti_sysbios_hal_Hwi_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_hal_Hwi_Object__count; extern const CT__ti_sysbios_hal_Hwi_Object__count ti_sysbios_hal_Hwi_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_hal_Hwi_Object__heap; extern const CT__ti_sysbios_hal_Hwi_Object__heap ti_sysbios_hal_Hwi_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_hal_Hwi_Object__sizeof; extern const CT__ti_sysbios_hal_Hwi_Object__sizeof ti_sysbios_hal_Hwi_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_hal_Hwi_Object__table; extern const CT__ti_sysbios_hal_Hwi_Object__table ti_sysbios_hal_Hwi_Object__table__C; /* dispatcherAutoNestingSupport */ typedef xdc_Bool CT__ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport; extern const CT__ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport__C; /* dispatcherSwiSupport */ typedef xdc_Bool CT__ti_sysbios_hal_Hwi_dispatcherSwiSupport; extern const CT__ti_sysbios_hal_Hwi_dispatcherSwiSupport ti_sysbios_hal_Hwi_dispatcherSwiSupport__C; /* dispatcherTaskSupport */ typedef xdc_Bool CT__ti_sysbios_hal_Hwi_dispatcherTaskSupport; extern const CT__ti_sysbios_hal_Hwi_dispatcherTaskSupport ti_sysbios_hal_Hwi_dispatcherTaskSupport__C; /* dispatcherIrpTrackingSupport */ typedef xdc_Bool CT__ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport; extern const CT__ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport__C; /* E_stackOverflow */ typedef xdc_runtime_Error_Id CT__ti_sysbios_hal_Hwi_E_stackOverflow; extern const CT__ti_sysbios_hal_Hwi_E_stackOverflow ti_sysbios_hal_Hwi_E_stackOverflow__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_hal_Hwi_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; ti_sysbios_interfaces_IHwi_MaskingOption maskSetting; xdc_UArg arg; xdc_Bool enableInt; xdc_Int eventId; xdc_Int priority; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_hal_Hwi_Struct { const ti_sysbios_hal_Hwi_Fxns__ *__fxns; ti_sysbios_hal_Hwi_HwiProxy_Handle __f0; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_hal_Hwi_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bool (*getStackInfo)(ti_sysbios_interfaces_IHwi_StackInfo* stkInfo, xdc_Bool computeStackDepth); xdc_Bool (*getCoreStackInfo)(ti_sysbios_interfaces_IHwi_StackInfo* stkInfo, xdc_Bool computeStackDepth, xdc_UInt coreId); void (*startup)(void); xdc_UInt (*disable)(void); xdc_UInt (*enable)(void); void (*restore)(xdc_UInt key); void (*switchFromBootStack)(void); void (*post)(xdc_UInt intNum); xdc_Char *(*getTaskSP)(void); xdc_UInt (*disableInterrupt)(xdc_UInt intNum); xdc_UInt (*enableInterrupt)(xdc_UInt intNum); void (*restoreInterrupt)(xdc_UInt intNum, xdc_UInt key); void (*clearInterrupt)(xdc_UInt intNum); ti_sysbios_interfaces_IHwi_FuncPtr (*getFunc)(ti_sysbios_hal_Hwi_Handle __inst, xdc_UArg* arg); void (*setFunc)(ti_sysbios_hal_Hwi_Handle __inst, ti_sysbios_interfaces_IHwi_FuncPtr fxn, xdc_UArg arg); xdc_Ptr (*getHookContext)(ti_sysbios_hal_Hwi_Handle __inst, xdc_Int id); void (*setHookContext)(ti_sysbios_hal_Hwi_Handle __inst, xdc_Int id, xdc_Ptr hookContext); ti_sysbios_interfaces_IHwi_Irp (*getIrp)(ti_sysbios_hal_Hwi_Handle __inst); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_hal_Hwi_Fxns__ ti_sysbios_hal_Hwi_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ extern xdc_Int ti_sysbios_hal_Hwi_Module_startup__E( xdc_Int state ); extern xdc_Int ti_sysbios_hal_Hwi_Module_startup__F( xdc_Int state ); /* Instance_init__E */ extern xdc_Int ti_sysbios_hal_Hwi_Instance_init__E(ti_sysbios_hal_Hwi_Object *__obj, xdc_Int intNum, ti_sysbios_hal_Hwi_FuncPtr hwiFxn, const ti_sysbios_hal_Hwi_Params *__prms, xdc_runtime_Error_Block *__eb); /* Instance_finalize__E */ extern void ti_sysbios_hal_Hwi_Instance_finalize__E(ti_sysbios_hal_Hwi_Object *__obj, int __ec); /* create */ extern ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_create( xdc_Int intNum, ti_sysbios_hal_Hwi_FuncPtr hwiFxn, const ti_sysbios_hal_Hwi_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_hal_Hwi_construct( ti_sysbios_hal_Hwi_Struct *__obj, xdc_Int intNum, ti_sysbios_hal_Hwi_FuncPtr hwiFxn, const ti_sysbios_hal_Hwi_Params *__prms, xdc_runtime_Error_Block *__eb ); /* delete */ extern void ti_sysbios_hal_Hwi_delete(ti_sysbios_hal_Hwi_Handle *instp); /* destruct */ extern void ti_sysbios_hal_Hwi_destruct(ti_sysbios_hal_Hwi_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_hal_Hwi_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_hal_Hwi_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_hal_Hwi_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_hal_Hwi_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_hal_Hwi_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_hal_Hwi_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_hal_Hwi_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_hal_Hwi_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* getStackInfo__E */ extern xdc_Bool ti_sysbios_hal_Hwi_getStackInfo__E( ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth ); /* getCoreStackInfo__E */ extern xdc_Bool ti_sysbios_hal_Hwi_getCoreStackInfo__E( ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth, xdc_UInt coreId ); /* startup__E */ extern void ti_sysbios_hal_Hwi_startup__E( void ); /* switchFromBootStack__E */ extern void ti_sysbios_hal_Hwi_switchFromBootStack__E( void ); /* post__E */ extern void ti_sysbios_hal_Hwi_post__E( xdc_UInt intNum ); /* getTaskSP__E */ extern xdc_Char *ti_sysbios_hal_Hwi_getTaskSP__E( void ); /* disableInterrupt__E */ extern xdc_UInt ti_sysbios_hal_Hwi_disableInterrupt__E( xdc_UInt intNum ); /* enableInterrupt__E */ extern xdc_UInt ti_sysbios_hal_Hwi_enableInterrupt__E( xdc_UInt intNum ); /* restoreInterrupt__E */ extern void ti_sysbios_hal_Hwi_restoreInterrupt__E( xdc_UInt intNum, xdc_UInt key ); /* clearInterrupt__E */ extern void ti_sysbios_hal_Hwi_clearInterrupt__E( xdc_UInt intNum ); /* getFunc__E */ extern ti_sysbios_interfaces_IHwi_FuncPtr ti_sysbios_hal_Hwi_getFunc__E( ti_sysbios_hal_Hwi_Handle __inst, xdc_UArg *arg ); /* setFunc__E */ extern void ti_sysbios_hal_Hwi_setFunc__E( ti_sysbios_hal_Hwi_Handle __inst, ti_sysbios_interfaces_IHwi_FuncPtr fxn, xdc_UArg arg ); /* getIrp__E */ extern ti_sysbios_interfaces_IHwi_Irp ti_sysbios_hal_Hwi_getIrp__E( ti_sysbios_hal_Hwi_Handle __inst ); /* getHookContext__E */ extern xdc_Ptr ti_sysbios_hal_Hwi_getHookContext__E( ti_sysbios_hal_Hwi_Handle __inst, xdc_Int id ); /* setHookContext__E */ extern void ti_sysbios_hal_Hwi_setHookContext__E( ti_sysbios_hal_Hwi_Handle __inst, xdc_Int id, xdc_Ptr hookContext ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_IHwi_Module ti_sysbios_hal_Hwi_Module_upCast(void); static inline ti_sysbios_interfaces_IHwi_Module ti_sysbios_hal_Hwi_Module_upCast(void) { return (ti_sysbios_interfaces_IHwi_Module)&ti_sysbios_hal_Hwi_Module__FXNS__C; } /* Module_to_ti_sysbios_interfaces_IHwi */ /* Handle_upCast */ static inline ti_sysbios_interfaces_IHwi_Handle ti_sysbios_hal_Hwi_Handle_upCast(ti_sysbios_hal_Hwi_Handle i); static inline ti_sysbios_interfaces_IHwi_Handle ti_sysbios_hal_Hwi_Handle_upCast(ti_sysbios_hal_Hwi_Handle i) { return (ti_sysbios_interfaces_IHwi_Handle)i; } /* Handle_to_ti_sysbios_interfaces_IHwi */ /* Handle_downCast */ static inline ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_Handle_downCast(ti_sysbios_interfaces_IHwi_Handle i); static inline ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_Handle_downCast(ti_sysbios_interfaces_IHwi_Handle i) { ti_sysbios_interfaces_IHwi_Handle i2 = (ti_sysbios_interfaces_IHwi_Handle)i; return (const void*)i2->__fxns == (const void*)&ti_sysbios_hal_Hwi_Module__FXNS__C ? (ti_sysbios_hal_Hwi_Handle)i : (ti_sysbios_hal_Hwi_Handle)0; } /* Handle_from_ti_sysbios_interfaces_IHwi */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_hal_Hwi_Module__id ti_sysbios_hal_Hwi_Module_id(void); static inline CT__ti_sysbios_hal_Hwi_Module__id ti_sysbios_hal_Hwi_Module_id( void ) { return ti_sysbios_hal_Hwi_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_hal_Hwi_Module_hasMask(void); static inline xdc_Bool ti_sysbios_hal_Hwi_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_hal_Hwi_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_hal_Hwi_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_hal_Hwi_Module_getMask( void ) { return ti_sysbios_hal_Hwi_Module__diagsMask__C != 0 ? *ti_sysbios_hal_Hwi_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_hal_Hwi_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_hal_Hwi_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_hal_Hwi_Module__diagsMask__C != 0) { *ti_sysbios_hal_Hwi_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_hal_Hwi_Params_init(ti_sysbios_hal_Hwi_Params *prms); static inline void ti_sysbios_hal_Hwi_Params_init( ti_sysbios_hal_Hwi_Params *prms ) { if (prms) { ti_sysbios_hal_Hwi_Params__init__S(prms, 0, sizeof(ti_sysbios_hal_Hwi_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_hal_Hwi_Params_copy(ti_sysbios_hal_Hwi_Params *dst, const ti_sysbios_hal_Hwi_Params *src); static inline void ti_sysbios_hal_Hwi_Params_copy(ti_sysbios_hal_Hwi_Params *dst, const ti_sysbios_hal_Hwi_Params *src) { if (dst) { ti_sysbios_hal_Hwi_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_hal_Hwi_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_Object_get(ti_sysbios_hal_Hwi_Instance_State *oarr, int i); static inline ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_Object_get(ti_sysbios_hal_Hwi_Instance_State *oarr, int i) { return (ti_sysbios_hal_Hwi_Handle)ti_sysbios_hal_Hwi_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_Object_first(void); static inline ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_Object_first(void) { return (ti_sysbios_hal_Hwi_Handle)ti_sysbios_hal_Hwi_Object__first__S(); } /* Object_next */ static inline ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_Object_next(ti_sysbios_hal_Hwi_Object *obj); static inline ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_Object_next(ti_sysbios_hal_Hwi_Object *obj) { return (ti_sysbios_hal_Hwi_Handle)ti_sysbios_hal_Hwi_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_hal_Hwi_Handle_label(ti_sysbios_hal_Hwi_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_hal_Hwi_Handle_label(ti_sysbios_hal_Hwi_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_hal_Hwi_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_hal_Hwi_Handle_name(ti_sysbios_hal_Hwi_Handle inst); static inline xdc_String ti_sysbios_hal_Hwi_Handle_name(ti_sysbios_hal_Hwi_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_hal_Hwi_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_handle(ti_sysbios_hal_Hwi_Struct *str); static inline ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_handle(ti_sysbios_hal_Hwi_Struct *str) { return (ti_sysbios_hal_Hwi_Handle)str; } /* struct */ static inline ti_sysbios_hal_Hwi_Struct *ti_sysbios_hal_Hwi_struct(ti_sysbios_hal_Hwi_Handle inst); static inline ti_sysbios_hal_Hwi_Struct *ti_sysbios_hal_Hwi_struct(ti_sysbios_hal_Hwi_Handle inst) { return (ti_sysbios_hal_Hwi_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2015-2017, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * Use intrinsics for ALL C6x and ARM 32bit targets (excluding arm M3) */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ extern UInt ti_sysbios_family_c28_Hwi_enable__E(); extern UInt ti_sysbios_family_c28_Hwi_disable__E(); extern void ti_sysbios_family_c28_Hwi_restore__E(UInt key); /* * ======== Hwi_disable ======== */ inline UInt ti_sysbios_hal_Hwi_disable() { return (ti_sysbios_family_c28_Hwi_disable__E()); } /* * ======== Hwi_enable ======== */ inline UInt ti_sysbios_hal_Hwi_enable() { return (ti_sysbios_family_c28_Hwi_enable__E()); } /* * ======== Hwi_restore ======== */ inline void ti_sysbios_hal_Hwi_restore(UInt key) { ti_sysbios_family_c28_Hwi_restore__E(key); } /* * ======== STATE STRUCTURES ======== */ /* Object */ struct ti_sysbios_hal_Hwi_Object { const ti_sysbios_hal_Hwi_Fxns__ *__fxns; ti_sysbios_hal_Hwi_HwiProxy_Handle pi; }; /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_hal_Timer_TimerProxy_FuncPtr; /* ANY */ /* StartMode */ typedef ti_sysbios_interfaces_ITimer_StartMode ti_sysbios_hal_Timer_TimerProxy_StartMode; /* RunMode */ typedef ti_sysbios_interfaces_ITimer_RunMode ti_sysbios_hal_Timer_TimerProxy_RunMode; /* Status */ typedef ti_sysbios_interfaces_ITimer_Status ti_sysbios_hal_Timer_TimerProxy_Status; /* PeriodType */ typedef ti_sysbios_interfaces_ITimer_PeriodType ti_sysbios_hal_Timer_TimerProxy_PeriodType; /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_hal_Timer_TimerProxy_Args__create { xdc_Int id; ti_sysbios_interfaces_ITimer_FuncPtr tickFxn; } ti_sysbios_hal_Timer_TimerProxy_Args__create; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_hal_Timer_TimerProxy_Module__diagsEnabled; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__diagsEnabled ti_sysbios_hal_Timer_TimerProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_hal_Timer_TimerProxy_Module__diagsIncluded; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__diagsIncluded ti_sysbios_hal_Timer_TimerProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_hal_Timer_TimerProxy_Module__diagsMask; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__diagsMask ti_sysbios_hal_Timer_TimerProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_hal_Timer_TimerProxy_Module__gateObj; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__gateObj ti_sysbios_hal_Timer_TimerProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_hal_Timer_TimerProxy_Module__gatePrms; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__gatePrms ti_sysbios_hal_Timer_TimerProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_hal_Timer_TimerProxy_Module__id; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__id ti_sysbios_hal_Timer_TimerProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerDefined; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerDefined ti_sysbios_hal_Timer_TimerProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerObj; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerObj ti_sysbios_hal_Timer_TimerProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn0; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn0 ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn1; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn1 ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn2; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn2 ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn4; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn4 ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn8; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn8 ti_sysbios_hal_Timer_TimerProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_hal_Timer_TimerProxy_Object__count; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Object__count ti_sysbios_hal_Timer_TimerProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_hal_Timer_TimerProxy_Object__heap; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Object__heap ti_sysbios_hal_Timer_TimerProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_hal_Timer_TimerProxy_Object__sizeof; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Object__sizeof ti_sysbios_hal_Timer_TimerProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_hal_Timer_TimerProxy_Object__table; extern const CT__ti_sysbios_hal_Timer_TimerProxy_Object__table ti_sysbios_hal_Timer_TimerProxy_Object__table__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_hal_Timer_TimerProxy_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; ti_sysbios_interfaces_ITimer_RunMode runMode; ti_sysbios_interfaces_ITimer_StartMode startMode; xdc_UArg arg; xdc_UInt32 period; ti_sysbios_interfaces_ITimer_PeriodType periodType; xdc_runtime_Types_FreqHz extFreq; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_hal_Timer_TimerProxy_Struct { const ti_sysbios_hal_Timer_TimerProxy_Fxns__ *__fxns; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_hal_Timer_TimerProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_UInt (*getNumTimers)(void); ti_sysbios_interfaces_ITimer_Status (*getStatus)(xdc_UInt id); void (*startup)(void); xdc_UInt32 (*getMaxTicks)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst); void (*setNextTick)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 ticks); void (*start)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst); void (*stop)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst); void (*setPeriod)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 period); xdc_Bool (*setPeriodMicroSecs)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 microsecs); xdc_UInt32 (*getPeriod)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst); xdc_UInt32 (*getCount)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst); void (*getFreq)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_runtime_Types_FreqHz* freq); ti_sysbios_interfaces_ITimer_FuncPtr (*getFunc)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UArg* arg); void (*setFunc)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg); void (*trigger)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 cycles); xdc_UInt32 (*getExpiredCounts)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst); xdc_UInt32 (*getExpiredTicks)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 tickPeriod); xdc_UInt32 (*getCurrentTick)(ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_Bool save); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_hal_Timer_TimerProxy_Fxns__ ti_sysbios_hal_Timer_TimerProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* create */ extern ti_sysbios_hal_Timer_TimerProxy_Handle ti_sysbios_hal_Timer_TimerProxy_create( xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_hal_Timer_TimerProxy_Params *__prms, xdc_runtime_Error_Block *__eb ); /* delete */ extern void ti_sysbios_hal_Timer_TimerProxy_delete(ti_sysbios_hal_Timer_TimerProxy_Handle *instp); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_hal_Timer_TimerProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_hal_Timer_TimerProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_hal_Timer_TimerProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_hal_Timer_TimerProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_hal_Timer_TimerProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_hal_Timer_TimerProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool ti_sysbios_hal_Timer_TimerProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr ti_sysbios_hal_Timer_TimerProxy_Proxy__delegate__S( void ); /* getNumTimers__E */ extern xdc_UInt ti_sysbios_hal_Timer_TimerProxy_getNumTimers__E( void ); /* getStatus__E */ extern ti_sysbios_interfaces_ITimer_Status ti_sysbios_hal_Timer_TimerProxy_getStatus__E( xdc_UInt id ); /* startup__E */ extern void ti_sysbios_hal_Timer_TimerProxy_startup__E( void ); /* getMaxTicks__E */ extern xdc_UInt32 ti_sysbios_hal_Timer_TimerProxy_getMaxTicks__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst ); /* setNextTick__E */ extern void ti_sysbios_hal_Timer_TimerProxy_setNextTick__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 ticks ); /* start__E */ extern void ti_sysbios_hal_Timer_TimerProxy_start__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst ); /* stop__E */ extern void ti_sysbios_hal_Timer_TimerProxy_stop__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst ); /* setPeriod__E */ extern void ti_sysbios_hal_Timer_TimerProxy_setPeriod__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 period ); /* setPeriodMicroSecs__E */ extern xdc_Bool ti_sysbios_hal_Timer_TimerProxy_setPeriodMicroSecs__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 microsecs ); /* getPeriod__E */ extern xdc_UInt32 ti_sysbios_hal_Timer_TimerProxy_getPeriod__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst ); /* getCount__E */ extern xdc_UInt32 ti_sysbios_hal_Timer_TimerProxy_getCount__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst ); /* getFreq__E */ extern void ti_sysbios_hal_Timer_TimerProxy_getFreq__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_runtime_Types_FreqHz *freq ); /* getFunc__E */ extern ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_hal_Timer_TimerProxy_getFunc__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UArg *arg ); /* setFunc__E */ extern void ti_sysbios_hal_Timer_TimerProxy_setFunc__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg ); /* trigger__E */ extern void ti_sysbios_hal_Timer_TimerProxy_trigger__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 cycles ); /* getExpiredCounts__E */ extern xdc_UInt32 ti_sysbios_hal_Timer_TimerProxy_getExpiredCounts__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst ); /* getExpiredTicks__E */ extern xdc_UInt32 ti_sysbios_hal_Timer_TimerProxy_getExpiredTicks__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 tickPeriod ); /* getCurrentTick__E */ extern xdc_UInt32 ti_sysbios_hal_Timer_TimerProxy_getCurrentTick__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_Bool save ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_ITimer_Module ti_sysbios_hal_Timer_TimerProxy_Module_upCast(void); static inline ti_sysbios_interfaces_ITimer_Module ti_sysbios_hal_Timer_TimerProxy_Module_upCast(void) { return (ti_sysbios_interfaces_ITimer_Module)ti_sysbios_hal_Timer_TimerProxy_Proxy__delegate__S(); } /* Module_to_ti_sysbios_interfaces_ITimer */ /* Handle_upCast */ static inline ti_sysbios_interfaces_ITimer_Handle ti_sysbios_hal_Timer_TimerProxy_Handle_upCast(ti_sysbios_hal_Timer_TimerProxy_Handle i); static inline ti_sysbios_interfaces_ITimer_Handle ti_sysbios_hal_Timer_TimerProxy_Handle_upCast(ti_sysbios_hal_Timer_TimerProxy_Handle i) { return (ti_sysbios_interfaces_ITimer_Handle)i; } /* Handle_to_ti_sysbios_interfaces_ITimer */ /* Handle_downCast */ static inline ti_sysbios_hal_Timer_TimerProxy_Handle ti_sysbios_hal_Timer_TimerProxy_Handle_downCast(ti_sysbios_interfaces_ITimer_Handle i); static inline ti_sysbios_hal_Timer_TimerProxy_Handle ti_sysbios_hal_Timer_TimerProxy_Handle_downCast(ti_sysbios_interfaces_ITimer_Handle i) { ti_sysbios_interfaces_ITimer_Handle i2 = (ti_sysbios_interfaces_ITimer_Handle)i; if (ti_sysbios_hal_Timer_TimerProxy_Proxy__abstract__S()) { return (ti_sysbios_hal_Timer_TimerProxy_Handle)i; } return (const void*)i2->__fxns == (const void*)ti_sysbios_hal_Timer_TimerProxy_Proxy__delegate__S() ? (ti_sysbios_hal_Timer_TimerProxy_Handle)i : (ti_sysbios_hal_Timer_TimerProxy_Handle)0; } /* Handle_from_ti_sysbios_interfaces_ITimer */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_hal_Timer_TimerProxy_Module__id ti_sysbios_hal_Timer_TimerProxy_Module_id(void); static inline CT__ti_sysbios_hal_Timer_TimerProxy_Module__id ti_sysbios_hal_Timer_TimerProxy_Module_id( void ) { return ti_sysbios_hal_Timer_TimerProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* Params_init */ static inline void ti_sysbios_hal_Timer_TimerProxy_Params_init(ti_sysbios_hal_Timer_TimerProxy_Params *prms); static inline void ti_sysbios_hal_Timer_TimerProxy_Params_init( ti_sysbios_hal_Timer_TimerProxy_Params *prms ) { if (prms) { ti_sysbios_hal_Timer_TimerProxy_Params__init__S(prms, 0, sizeof(ti_sysbios_hal_Timer_TimerProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_hal_Timer_TimerProxy_Params_copy(ti_sysbios_hal_Timer_TimerProxy_Params *dst, const ti_sysbios_hal_Timer_TimerProxy_Params *src); static inline void ti_sysbios_hal_Timer_TimerProxy_Params_copy(ti_sysbios_hal_Timer_TimerProxy_Params *dst, const ti_sysbios_hal_Timer_TimerProxy_Params *src) { if (dst) { ti_sysbios_hal_Timer_TimerProxy_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_hal_Timer_TimerProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_hal_Timer_FuncPtr; /* ANY */ /* StartMode */ typedef ti_sysbios_interfaces_ITimer_StartMode ti_sysbios_hal_Timer_StartMode; /* RunMode */ typedef ti_sysbios_interfaces_ITimer_RunMode ti_sysbios_hal_Timer_RunMode; /* Status */ typedef ti_sysbios_interfaces_ITimer_Status ti_sysbios_hal_Timer_Status; /* PeriodType */ typedef ti_sysbios_interfaces_ITimer_PeriodType ti_sysbios_hal_Timer_PeriodType; /* StartMode_AUTO */ /* StartMode_USER */ /* RunMode_CONTINUOUS */ /* RunMode_ONESHOT */ /* RunMode_DYNAMIC */ /* Status_INUSE */ /* Status_FREE */ /* PeriodType_MICROSECS */ /* PeriodType_COUNTS */ /* * ======== CREATE ARGS ======== */ /* Args__create */ typedef struct ti_sysbios_hal_Timer_Args__create { xdc_Int id; ti_sysbios_hal_Timer_FuncPtr tickFxn; } ti_sysbios_hal_Timer_Args__create; /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_hal_Timer_Module__diagsEnabled; extern const CT__ti_sysbios_hal_Timer_Module__diagsEnabled ti_sysbios_hal_Timer_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_hal_Timer_Module__diagsIncluded; extern const CT__ti_sysbios_hal_Timer_Module__diagsIncluded ti_sysbios_hal_Timer_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_hal_Timer_Module__diagsMask; extern const CT__ti_sysbios_hal_Timer_Module__diagsMask ti_sysbios_hal_Timer_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_hal_Timer_Module__gateObj; extern const CT__ti_sysbios_hal_Timer_Module__gateObj ti_sysbios_hal_Timer_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_hal_Timer_Module__gatePrms; extern const CT__ti_sysbios_hal_Timer_Module__gatePrms ti_sysbios_hal_Timer_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_hal_Timer_Module__id; extern const CT__ti_sysbios_hal_Timer_Module__id ti_sysbios_hal_Timer_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_hal_Timer_Module__loggerDefined; extern const CT__ti_sysbios_hal_Timer_Module__loggerDefined ti_sysbios_hal_Timer_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_hal_Timer_Module__loggerObj; extern const CT__ti_sysbios_hal_Timer_Module__loggerObj ti_sysbios_hal_Timer_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_hal_Timer_Module__loggerFxn0; extern const CT__ti_sysbios_hal_Timer_Module__loggerFxn0 ti_sysbios_hal_Timer_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_hal_Timer_Module__loggerFxn1; extern const CT__ti_sysbios_hal_Timer_Module__loggerFxn1 ti_sysbios_hal_Timer_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_hal_Timer_Module__loggerFxn2; extern const CT__ti_sysbios_hal_Timer_Module__loggerFxn2 ti_sysbios_hal_Timer_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_hal_Timer_Module__loggerFxn4; extern const CT__ti_sysbios_hal_Timer_Module__loggerFxn4 ti_sysbios_hal_Timer_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_hal_Timer_Module__loggerFxn8; extern const CT__ti_sysbios_hal_Timer_Module__loggerFxn8 ti_sysbios_hal_Timer_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_hal_Timer_Object__count; extern const CT__ti_sysbios_hal_Timer_Object__count ti_sysbios_hal_Timer_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_hal_Timer_Object__heap; extern const CT__ti_sysbios_hal_Timer_Object__heap ti_sysbios_hal_Timer_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_hal_Timer_Object__sizeof; extern const CT__ti_sysbios_hal_Timer_Object__sizeof ti_sysbios_hal_Timer_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_hal_Timer_Object__table; extern const CT__ti_sysbios_hal_Timer_Object__table ti_sysbios_hal_Timer_Object__table__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_hal_Timer_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; ti_sysbios_interfaces_ITimer_RunMode runMode; ti_sysbios_interfaces_ITimer_StartMode startMode; xdc_UArg arg; xdc_UInt32 period; ti_sysbios_interfaces_ITimer_PeriodType periodType; xdc_runtime_Types_FreqHz extFreq; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_hal_Timer_Struct { const ti_sysbios_hal_Timer_Fxns__ *__fxns; ti_sysbios_hal_Timer_TimerProxy_Handle __f0; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_hal_Timer_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_UInt (*getNumTimers)(void); ti_sysbios_interfaces_ITimer_Status (*getStatus)(xdc_UInt id); void (*startup)(void); xdc_UInt32 (*getMaxTicks)(ti_sysbios_hal_Timer_Handle __inst); void (*setNextTick)(ti_sysbios_hal_Timer_Handle __inst, xdc_UInt32 ticks); void (*start)(ti_sysbios_hal_Timer_Handle __inst); void (*stop)(ti_sysbios_hal_Timer_Handle __inst); void (*setPeriod)(ti_sysbios_hal_Timer_Handle __inst, xdc_UInt32 period); xdc_Bool (*setPeriodMicroSecs)(ti_sysbios_hal_Timer_Handle __inst, xdc_UInt32 microsecs); xdc_UInt32 (*getPeriod)(ti_sysbios_hal_Timer_Handle __inst); xdc_UInt32 (*getCount)(ti_sysbios_hal_Timer_Handle __inst); void (*getFreq)(ti_sysbios_hal_Timer_Handle __inst, xdc_runtime_Types_FreqHz* freq); ti_sysbios_interfaces_ITimer_FuncPtr (*getFunc)(ti_sysbios_hal_Timer_Handle __inst, xdc_UArg* arg); void (*setFunc)(ti_sysbios_hal_Timer_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg); void (*trigger)(ti_sysbios_hal_Timer_Handle __inst, xdc_UInt32 cycles); xdc_UInt32 (*getExpiredCounts)(ti_sysbios_hal_Timer_Handle __inst); xdc_UInt32 (*getExpiredTicks)(ti_sysbios_hal_Timer_Handle __inst, xdc_UInt32 tickPeriod); xdc_UInt32 (*getCurrentTick)(ti_sysbios_hal_Timer_Handle __inst, xdc_Bool save); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_hal_Timer_Fxns__ ti_sysbios_hal_Timer_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ extern xdc_Int ti_sysbios_hal_Timer_Module_startup__E( xdc_Int state ); extern xdc_Int ti_sysbios_hal_Timer_Module_startup__F( xdc_Int state ); /* Instance_init__E */ extern xdc_Int ti_sysbios_hal_Timer_Instance_init__E(ti_sysbios_hal_Timer_Object *__obj, xdc_Int id, ti_sysbios_hal_Timer_FuncPtr tickFxn, const ti_sysbios_hal_Timer_Params *__prms, xdc_runtime_Error_Block *__eb); /* Instance_finalize__E */ extern void ti_sysbios_hal_Timer_Instance_finalize__E(ti_sysbios_hal_Timer_Object *__obj, int __ec); /* create */ extern ti_sysbios_hal_Timer_Handle ti_sysbios_hal_Timer_create( xdc_Int id, ti_sysbios_hal_Timer_FuncPtr tickFxn, const ti_sysbios_hal_Timer_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_hal_Timer_construct( ti_sysbios_hal_Timer_Struct *__obj, xdc_Int id, ti_sysbios_hal_Timer_FuncPtr tickFxn, const ti_sysbios_hal_Timer_Params *__prms, xdc_runtime_Error_Block *__eb ); /* delete */ extern void ti_sysbios_hal_Timer_delete(ti_sysbios_hal_Timer_Handle *instp); /* destruct */ extern void ti_sysbios_hal_Timer_destruct(ti_sysbios_hal_Timer_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_hal_Timer_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_hal_Timer_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_hal_Timer_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_hal_Timer_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_hal_Timer_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_hal_Timer_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_hal_Timer_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_hal_Timer_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* getNumTimers__E */ extern xdc_UInt ti_sysbios_hal_Timer_getNumTimers__E( void ); /* getStatus__E */ extern ti_sysbios_interfaces_ITimer_Status ti_sysbios_hal_Timer_getStatus__E( xdc_UInt id ); /* startup__E */ extern void ti_sysbios_hal_Timer_startup__E( void ); /* getMaxTicks__E */ extern xdc_UInt32 ti_sysbios_hal_Timer_getMaxTicks__E( ti_sysbios_hal_Timer_Handle __inst ); /* setNextTick__E */ extern void ti_sysbios_hal_Timer_setNextTick__E( ti_sysbios_hal_Timer_Handle __inst, xdc_UInt32 ticks ); /* start__E */ extern void ti_sysbios_hal_Timer_start__E( ti_sysbios_hal_Timer_Handle __inst ); /* stop__E */ extern void ti_sysbios_hal_Timer_stop__E( ti_sysbios_hal_Timer_Handle __inst ); /* setPeriod__E */ extern void ti_sysbios_hal_Timer_setPeriod__E( ti_sysbios_hal_Timer_Handle __inst, xdc_UInt32 period ); /* setPeriodMicroSecs__E */ extern xdc_Bool ti_sysbios_hal_Timer_setPeriodMicroSecs__E( ti_sysbios_hal_Timer_Handle __inst, xdc_UInt32 microsecs ); /* getPeriod__E */ extern xdc_UInt32 ti_sysbios_hal_Timer_getPeriod__E( ti_sysbios_hal_Timer_Handle __inst ); /* getCount__E */ extern xdc_UInt32 ti_sysbios_hal_Timer_getCount__E( ti_sysbios_hal_Timer_Handle __inst ); /* getFreq__E */ extern void ti_sysbios_hal_Timer_getFreq__E( ti_sysbios_hal_Timer_Handle __inst, xdc_runtime_Types_FreqHz *freq ); /* getFunc__E */ extern ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_hal_Timer_getFunc__E( ti_sysbios_hal_Timer_Handle __inst, xdc_UArg *arg ); /* setFunc__E */ extern void ti_sysbios_hal_Timer_setFunc__E( ti_sysbios_hal_Timer_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg ); /* trigger__E */ extern void ti_sysbios_hal_Timer_trigger__E( ti_sysbios_hal_Timer_Handle __inst, xdc_UInt32 cycles ); /* getExpiredCounts__E */ extern xdc_UInt32 ti_sysbios_hal_Timer_getExpiredCounts__E( ti_sysbios_hal_Timer_Handle __inst ); /* getExpiredTicks__E */ extern xdc_UInt32 ti_sysbios_hal_Timer_getExpiredTicks__E( ti_sysbios_hal_Timer_Handle __inst, xdc_UInt32 tickPeriod ); /* getCurrentTick__E */ extern xdc_UInt32 ti_sysbios_hal_Timer_getCurrentTick__E( ti_sysbios_hal_Timer_Handle __inst, xdc_Bool save ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_ITimer_Module ti_sysbios_hal_Timer_Module_upCast(void); static inline ti_sysbios_interfaces_ITimer_Module ti_sysbios_hal_Timer_Module_upCast(void) { return (ti_sysbios_interfaces_ITimer_Module)&ti_sysbios_hal_Timer_Module__FXNS__C; } /* Module_to_ti_sysbios_interfaces_ITimer */ /* Handle_upCast */ static inline ti_sysbios_interfaces_ITimer_Handle ti_sysbios_hal_Timer_Handle_upCast(ti_sysbios_hal_Timer_Handle i); static inline ti_sysbios_interfaces_ITimer_Handle ti_sysbios_hal_Timer_Handle_upCast(ti_sysbios_hal_Timer_Handle i) { return (ti_sysbios_interfaces_ITimer_Handle)i; } /* Handle_to_ti_sysbios_interfaces_ITimer */ /* Handle_downCast */ static inline ti_sysbios_hal_Timer_Handle ti_sysbios_hal_Timer_Handle_downCast(ti_sysbios_interfaces_ITimer_Handle i); static inline ti_sysbios_hal_Timer_Handle ti_sysbios_hal_Timer_Handle_downCast(ti_sysbios_interfaces_ITimer_Handle i) { ti_sysbios_interfaces_ITimer_Handle i2 = (ti_sysbios_interfaces_ITimer_Handle)i; return (const void*)i2->__fxns == (const void*)&ti_sysbios_hal_Timer_Module__FXNS__C ? (ti_sysbios_hal_Timer_Handle)i : (ti_sysbios_hal_Timer_Handle)0; } /* Handle_from_ti_sysbios_interfaces_ITimer */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_hal_Timer_Module__id ti_sysbios_hal_Timer_Module_id(void); static inline CT__ti_sysbios_hal_Timer_Module__id ti_sysbios_hal_Timer_Module_id( void ) { return ti_sysbios_hal_Timer_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_hal_Timer_Module_hasMask(void); static inline xdc_Bool ti_sysbios_hal_Timer_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_hal_Timer_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_hal_Timer_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_hal_Timer_Module_getMask( void ) { return ti_sysbios_hal_Timer_Module__diagsMask__C != 0 ? *ti_sysbios_hal_Timer_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_hal_Timer_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_hal_Timer_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_hal_Timer_Module__diagsMask__C != 0) { *ti_sysbios_hal_Timer_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_hal_Timer_Params_init(ti_sysbios_hal_Timer_Params *prms); static inline void ti_sysbios_hal_Timer_Params_init( ti_sysbios_hal_Timer_Params *prms ) { if (prms) { ti_sysbios_hal_Timer_Params__init__S(prms, 0, sizeof(ti_sysbios_hal_Timer_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_hal_Timer_Params_copy(ti_sysbios_hal_Timer_Params *dst, const ti_sysbios_hal_Timer_Params *src); static inline void ti_sysbios_hal_Timer_Params_copy(ti_sysbios_hal_Timer_Params *dst, const ti_sysbios_hal_Timer_Params *src) { if (dst) { ti_sysbios_hal_Timer_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_hal_Timer_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_hal_Timer_Handle ti_sysbios_hal_Timer_Object_get(ti_sysbios_hal_Timer_Instance_State *oarr, int i); static inline ti_sysbios_hal_Timer_Handle ti_sysbios_hal_Timer_Object_get(ti_sysbios_hal_Timer_Instance_State *oarr, int i) { return (ti_sysbios_hal_Timer_Handle)ti_sysbios_hal_Timer_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_hal_Timer_Handle ti_sysbios_hal_Timer_Object_first(void); static inline ti_sysbios_hal_Timer_Handle ti_sysbios_hal_Timer_Object_first(void) { return (ti_sysbios_hal_Timer_Handle)ti_sysbios_hal_Timer_Object__first__S(); } /* Object_next */ static inline ti_sysbios_hal_Timer_Handle ti_sysbios_hal_Timer_Object_next(ti_sysbios_hal_Timer_Object *obj); static inline ti_sysbios_hal_Timer_Handle ti_sysbios_hal_Timer_Object_next(ti_sysbios_hal_Timer_Object *obj) { return (ti_sysbios_hal_Timer_Handle)ti_sysbios_hal_Timer_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_hal_Timer_Handle_label(ti_sysbios_hal_Timer_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_hal_Timer_Handle_label(ti_sysbios_hal_Timer_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_hal_Timer_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_hal_Timer_Handle_name(ti_sysbios_hal_Timer_Handle inst); static inline xdc_String ti_sysbios_hal_Timer_Handle_name(ti_sysbios_hal_Timer_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_hal_Timer_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_hal_Timer_Handle ti_sysbios_hal_Timer_handle(ti_sysbios_hal_Timer_Struct *str); static inline ti_sysbios_hal_Timer_Handle ti_sysbios_hal_Timer_handle(ti_sysbios_hal_Timer_Struct *str) { return (ti_sysbios_hal_Timer_Handle)str; } /* struct */ static inline ti_sysbios_hal_Timer_Struct *ti_sysbios_hal_Timer_struct(ti_sysbios_hal_Timer_Handle inst); static inline ti_sysbios_hal_Timer_Struct *ti_sysbios_hal_Timer_struct(ti_sysbios_hal_Timer_Handle inst) { return (ti_sysbios_hal_Timer_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Object */ struct ti_sysbios_hal_Timer_Object { const ti_sysbios_hal_Timer_Fxns__ *__fxns; ti_sysbios_hal_Timer_TimerProxy_Handle pi; }; /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== module ti.sysbios.heaps.HeapBuf ======== */ typedef struct ti_sysbios_heaps_HeapBuf_ExtendedStats ti_sysbios_heaps_HeapBuf_ExtendedStats; typedef struct ti_sysbios_heaps_HeapBuf_Module_State ti_sysbios_heaps_HeapBuf_Module_State; typedef struct ti_sysbios_heaps_HeapBuf_Fxns__ ti_sysbios_heaps_HeapBuf_Fxns__; typedef const struct ti_sysbios_heaps_HeapBuf_Fxns__* ti_sysbios_heaps_HeapBuf_Module; typedef struct ti_sysbios_heaps_HeapBuf_Params ti_sysbios_heaps_HeapBuf_Params; typedef struct ti_sysbios_heaps_HeapBuf_Object ti_sysbios_heaps_HeapBuf_Object; typedef struct ti_sysbios_heaps_HeapBuf_Struct ti_sysbios_heaps_HeapBuf_Struct; typedef ti_sysbios_heaps_HeapBuf_Object* ti_sysbios_heaps_HeapBuf_Handle; typedef struct ti_sysbios_heaps_HeapBuf_Object__ ti_sysbios_heaps_HeapBuf_Instance_State; typedef ti_sysbios_heaps_HeapBuf_Object* ti_sysbios_heaps_HeapBuf_Instance; /* * ======== module ti.sysbios.heaps.HeapMem ======== */ typedef struct ti_sysbios_heaps_HeapMem_ExtendedStats ti_sysbios_heaps_HeapMem_ExtendedStats; typedef struct ti_sysbios_heaps_HeapMem_Header ti_sysbios_heaps_HeapMem_Header; typedef struct ti_sysbios_heaps_HeapMem_Fxns__ ti_sysbios_heaps_HeapMem_Fxns__; typedef const struct ti_sysbios_heaps_HeapMem_Fxns__* ti_sysbios_heaps_HeapMem_Module; typedef struct ti_sysbios_heaps_HeapMem_Params ti_sysbios_heaps_HeapMem_Params; typedef struct ti_sysbios_heaps_HeapMem_Object ti_sysbios_heaps_HeapMem_Object; typedef struct ti_sysbios_heaps_HeapMem_Struct ti_sysbios_heaps_HeapMem_Struct; typedef ti_sysbios_heaps_HeapMem_Object* ti_sysbios_heaps_HeapMem_Handle; typedef struct ti_sysbios_heaps_HeapMem_Object__ ti_sysbios_heaps_HeapMem_Instance_State; typedef ti_sysbios_heaps_HeapMem_Object* ti_sysbios_heaps_HeapMem_Instance; /* * ======== module ti.sysbios.heaps.HeapMultiBuf ======== */ typedef struct ti_sysbios_heaps_HeapMultiBuf_AddrPair ti_sysbios_heaps_HeapMultiBuf_AddrPair; typedef struct ti_sysbios_heaps_HeapMultiBuf_Fxns__ ti_sysbios_heaps_HeapMultiBuf_Fxns__; typedef const struct ti_sysbios_heaps_HeapMultiBuf_Fxns__* ti_sysbios_heaps_HeapMultiBuf_Module; typedef struct ti_sysbios_heaps_HeapMultiBuf_Params ti_sysbios_heaps_HeapMultiBuf_Params; typedef struct ti_sysbios_heaps_HeapMultiBuf_Object ti_sysbios_heaps_HeapMultiBuf_Object; typedef struct ti_sysbios_heaps_HeapMultiBuf_Struct ti_sysbios_heaps_HeapMultiBuf_Struct; typedef ti_sysbios_heaps_HeapMultiBuf_Object* ti_sysbios_heaps_HeapMultiBuf_Handle; typedef struct ti_sysbios_heaps_HeapMultiBuf_Object__ ti_sysbios_heaps_HeapMultiBuf_Instance_State; typedef ti_sysbios_heaps_HeapMultiBuf_Object* ti_sysbios_heaps_HeapMultiBuf_Instance; /* * ======== module ti.sysbios.heaps.HeapNull ======== */ typedef struct ti_sysbios_heaps_HeapNull_Fxns__ ti_sysbios_heaps_HeapNull_Fxns__; typedef const struct ti_sysbios_heaps_HeapNull_Fxns__* ti_sysbios_heaps_HeapNull_Module; typedef struct ti_sysbios_heaps_HeapNull_Params ti_sysbios_heaps_HeapNull_Params; typedef struct ti_sysbios_heaps_HeapNull_Object ti_sysbios_heaps_HeapNull_Object; typedef struct ti_sysbios_heaps_HeapNull_Struct ti_sysbios_heaps_HeapNull_Struct; typedef ti_sysbios_heaps_HeapNull_Object* ti_sysbios_heaps_HeapNull_Handle; typedef struct ti_sysbios_heaps_HeapNull_Object__ ti_sysbios_heaps_HeapNull_Instance_State; typedef ti_sysbios_heaps_HeapNull_Object* ti_sysbios_heaps_HeapNull_Instance; /* * ======== module ti.sysbios.heaps.HeapTrack ======== */ typedef struct ti_sysbios_heaps_HeapTrack_Tracker ti_sysbios_heaps_HeapTrack_Tracker; typedef struct ti_sysbios_heaps_HeapTrack_Fxns__ ti_sysbios_heaps_HeapTrack_Fxns__; typedef const struct ti_sysbios_heaps_HeapTrack_Fxns__* ti_sysbios_heaps_HeapTrack_Module; typedef struct ti_sysbios_heaps_HeapTrack_Params ti_sysbios_heaps_HeapTrack_Params; typedef struct ti_sysbios_heaps_HeapTrack_Object ti_sysbios_heaps_HeapTrack_Object; typedef struct ti_sysbios_heaps_HeapTrack_Struct ti_sysbios_heaps_HeapTrack_Struct; typedef ti_sysbios_heaps_HeapTrack_Object* ti_sysbios_heaps_HeapTrack_Handle; typedef struct ti_sysbios_heaps_HeapTrack_Object__ ti_sysbios_heaps_HeapTrack_Instance_State; typedef ti_sysbios_heaps_HeapTrack_Object* ti_sysbios_heaps_HeapTrack_Instance; /* * ======== module ti.sysbios.heaps.HeapCallback ======== */ typedef struct ti_sysbios_heaps_HeapCallback_Fxns__ ti_sysbios_heaps_HeapCallback_Fxns__; typedef const struct ti_sysbios_heaps_HeapCallback_Fxns__* ti_sysbios_heaps_HeapCallback_Module; typedef struct ti_sysbios_heaps_HeapCallback_Params ti_sysbios_heaps_HeapCallback_Params; typedef struct ti_sysbios_heaps_HeapCallback_Object ti_sysbios_heaps_HeapCallback_Object; typedef struct ti_sysbios_heaps_HeapCallback_Struct ti_sysbios_heaps_HeapCallback_Struct; typedef ti_sysbios_heaps_HeapCallback_Object* ti_sysbios_heaps_HeapCallback_Handle; typedef struct ti_sysbios_heaps_HeapCallback_Object__ ti_sysbios_heaps_HeapCallback_Instance_State; typedef ti_sysbios_heaps_HeapCallback_Object* ti_sysbios_heaps_HeapCallback_Instance; /* * ======== module ti.sysbios.heaps.HeapMem_Module_GateProxy ======== */ typedef struct ti_sysbios_heaps_HeapMem_Module_GateProxy_Fxns__ ti_sysbios_heaps_HeapMem_Module_GateProxy_Fxns__; typedef const struct ti_sysbios_heaps_HeapMem_Module_GateProxy_Fxns__* ti_sysbios_heaps_HeapMem_Module_GateProxy_Module; typedef struct ti_sysbios_heaps_HeapMem_Module_GateProxy_Params ti_sysbios_heaps_HeapMem_Module_GateProxy_Params; typedef struct xdc_runtime_IGateProvider___Object *ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle; /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Q_BLOCKING */ /* Q_PREEMPTING */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__diagsEnabled; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__diagsEnabled ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__diagsIncluded; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__diagsIncluded ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__diagsMask; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__diagsMask ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__gateObj; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__gateObj ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__gatePrms; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__gatePrms ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__id; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__id ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerDefined; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerDefined ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerObj; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerObj ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn0; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn0 ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn1; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn1 ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn2; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn2 ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn4; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn4 ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn8; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn8 ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__count; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__count ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__heap; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__heap ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__sizeof; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__sizeof ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__table; extern const CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__table ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__table__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_heaps_HeapMem_Module_GateProxy_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_heaps_HeapMem_Module_GateProxy_Struct { const ti_sysbios_heaps_HeapMem_Module_GateProxy_Fxns__ *__fxns; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_heaps_HeapMem_Module_GateProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bool (*query)(xdc_Int qual); xdc_IArg (*enter)(ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle __inst); void (*leave)(ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle __inst, xdc_IArg key); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_heaps_HeapMem_Module_GateProxy_Fxns__ ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* create */ extern ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle ti_sysbios_heaps_HeapMem_Module_GateProxy_create( const ti_sysbios_heaps_HeapMem_Module_GateProxy_Params *__prms, xdc_runtime_Error_Block *__eb ); /* delete */ extern void ti_sysbios_heaps_HeapMem_Module_GateProxy_delete(ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle *instp); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool ti_sysbios_heaps_HeapMem_Module_GateProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr ti_sysbios_heaps_HeapMem_Module_GateProxy_Proxy__delegate__S( void ); /* query__E */ extern xdc_Bool ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E( xdc_Int qual ); /* enter__E */ extern xdc_IArg ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E( ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle __inst ); /* leave__E */ extern void ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E( ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle __inst, xdc_IArg key ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_IGateProvider_Module ti_sysbios_heaps_HeapMem_Module_GateProxy_Module_upCast(void); static inline xdc_runtime_IGateProvider_Module ti_sysbios_heaps_HeapMem_Module_GateProxy_Module_upCast(void) { return (xdc_runtime_IGateProvider_Module)ti_sysbios_heaps_HeapMem_Module_GateProxy_Proxy__delegate__S(); } /* Module_to_xdc_runtime_IGateProvider */ /* Handle_upCast */ static inline xdc_runtime_IGateProvider_Handle ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle_upCast(ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle i); static inline xdc_runtime_IGateProvider_Handle ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle_upCast(ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle i) { return (xdc_runtime_IGateProvider_Handle)i; } /* Handle_to_xdc_runtime_IGateProvider */ /* Handle_downCast */ static inline ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle_downCast(xdc_runtime_IGateProvider_Handle i); static inline ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle_downCast(xdc_runtime_IGateProvider_Handle i) { xdc_runtime_IGateProvider_Handle i2 = (xdc_runtime_IGateProvider_Handle)i; if (ti_sysbios_heaps_HeapMem_Module_GateProxy_Proxy__abstract__S()) { return (ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle)i; } return (const void*)i2->__fxns == (const void*)ti_sysbios_heaps_HeapMem_Module_GateProxy_Proxy__delegate__S() ? (ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle)i : (ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle)0; } /* Handle_from_xdc_runtime_IGateProvider */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__id ti_sysbios_heaps_HeapMem_Module_GateProxy_Module_id(void); static inline CT__ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__id ti_sysbios_heaps_HeapMem_Module_GateProxy_Module_id( void ) { return ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* Params_init */ static inline void ti_sysbios_heaps_HeapMem_Module_GateProxy_Params_init(ti_sysbios_heaps_HeapMem_Module_GateProxy_Params *prms); static inline void ti_sysbios_heaps_HeapMem_Module_GateProxy_Params_init( ti_sysbios_heaps_HeapMem_Module_GateProxy_Params *prms ) { if (prms) { ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S(prms, 0, sizeof(ti_sysbios_heaps_HeapMem_Module_GateProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_heaps_HeapMem_Module_GateProxy_Params_copy(ti_sysbios_heaps_HeapMem_Module_GateProxy_Params *dst, const ti_sysbios_heaps_HeapMem_Module_GateProxy_Params *src); static inline void ti_sysbios_heaps_HeapMem_Module_GateProxy_Params_copy(ti_sysbios_heaps_HeapMem_Module_GateProxy_Params *dst, const ti_sysbios_heaps_HeapMem_Module_GateProxy_Params *src) { if (dst) { ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_heaps_HeapMem_Module_GateProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* ExtendedStats */ struct ti_sysbios_heaps_HeapMem_ExtendedStats { xdc_Ptr buf; xdc_SizeT size; }; /* * ======== INTERNAL DEFINITIONS ======== */ /* Header */ struct ti_sysbios_heaps_HeapMem_Header { ti_sysbios_heaps_HeapMem_Header *next; xdc_runtime_Memory_Size size; }; /* Instance_State */ typedef xdc_Char __T1_ti_sysbios_heaps_HeapMem_Instance_State__buf; typedef xdc_Char *__ARRAY1_ti_sysbios_heaps_HeapMem_Instance_State__buf; typedef const xdc_Char *__CARRAY1_ti_sysbios_heaps_HeapMem_Instance_State__buf; typedef __ARRAY1_ti_sysbios_heaps_HeapMem_Instance_State__buf __TA_ti_sysbios_heaps_HeapMem_Instance_State__buf; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_heaps_HeapMem_Module__diagsEnabled; extern const CT__ti_sysbios_heaps_HeapMem_Module__diagsEnabled ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_heaps_HeapMem_Module__diagsIncluded; extern const CT__ti_sysbios_heaps_HeapMem_Module__diagsIncluded ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_heaps_HeapMem_Module__diagsMask; extern const CT__ti_sysbios_heaps_HeapMem_Module__diagsMask ti_sysbios_heaps_HeapMem_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_heaps_HeapMem_Module__gateObj; extern const CT__ti_sysbios_heaps_HeapMem_Module__gateObj ti_sysbios_heaps_HeapMem_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_heaps_HeapMem_Module__gatePrms; extern const CT__ti_sysbios_heaps_HeapMem_Module__gatePrms ti_sysbios_heaps_HeapMem_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_heaps_HeapMem_Module__id; extern const CT__ti_sysbios_heaps_HeapMem_Module__id ti_sysbios_heaps_HeapMem_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_heaps_HeapMem_Module__loggerDefined; extern const CT__ti_sysbios_heaps_HeapMem_Module__loggerDefined ti_sysbios_heaps_HeapMem_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_heaps_HeapMem_Module__loggerObj; extern const CT__ti_sysbios_heaps_HeapMem_Module__loggerObj ti_sysbios_heaps_HeapMem_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn0; extern const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn0 ti_sysbios_heaps_HeapMem_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn1; extern const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn1 ti_sysbios_heaps_HeapMem_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn2; extern const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn2 ti_sysbios_heaps_HeapMem_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn4; extern const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn4 ti_sysbios_heaps_HeapMem_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn8; extern const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn8 ti_sysbios_heaps_HeapMem_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_heaps_HeapMem_Object__count; extern const CT__ti_sysbios_heaps_HeapMem_Object__count ti_sysbios_heaps_HeapMem_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_heaps_HeapMem_Object__heap; extern const CT__ti_sysbios_heaps_HeapMem_Object__heap ti_sysbios_heaps_HeapMem_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_heaps_HeapMem_Object__sizeof; extern const CT__ti_sysbios_heaps_HeapMem_Object__sizeof ti_sysbios_heaps_HeapMem_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_heaps_HeapMem_Object__table; extern const CT__ti_sysbios_heaps_HeapMem_Object__table ti_sysbios_heaps_HeapMem_Object__table__C; /* A_zeroBlock */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_heaps_HeapMem_A_zeroBlock; extern const CT__ti_sysbios_heaps_HeapMem_A_zeroBlock ti_sysbios_heaps_HeapMem_A_zeroBlock__C; /* A_heapSize */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_heaps_HeapMem_A_heapSize; extern const CT__ti_sysbios_heaps_HeapMem_A_heapSize ti_sysbios_heaps_HeapMem_A_heapSize__C; /* A_align */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_heaps_HeapMem_A_align; extern const CT__ti_sysbios_heaps_HeapMem_A_align ti_sysbios_heaps_HeapMem_A_align__C; /* E_memory */ typedef xdc_runtime_Error_Id CT__ti_sysbios_heaps_HeapMem_E_memory; extern const CT__ti_sysbios_heaps_HeapMem_E_memory ti_sysbios_heaps_HeapMem_E_memory__C; /* A_invalidFree */ typedef xdc_runtime_Assert_Id CT__ti_sysbios_heaps_HeapMem_A_invalidFree; extern const CT__ti_sysbios_heaps_HeapMem_A_invalidFree ti_sysbios_heaps_HeapMem_A_invalidFree__C; /* primaryHeapBaseAddr */ typedef xdc_Char *CT__ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr; extern const CT__ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C; /* primaryHeapEndAddr */ typedef xdc_Char *CT__ti_sysbios_heaps_HeapMem_primaryHeapEndAddr; extern const CT__ti_sysbios_heaps_HeapMem_primaryHeapEndAddr ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C; /* reqAlign */ typedef xdc_SizeT CT__ti_sysbios_heaps_HeapMem_reqAlign; extern const CT__ti_sysbios_heaps_HeapMem_reqAlign ti_sysbios_heaps_HeapMem_reqAlign__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct ti_sysbios_heaps_HeapMem_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_SizeT minBlockAlign; xdc_Ptr buf; xdc_runtime_Memory_Size size; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct ti_sysbios_heaps_HeapMem_Struct { const ti_sysbios_heaps_HeapMem_Fxns__ *__fxns; xdc_runtime_Memory_Size __f0; __TA_ti_sysbios_heaps_HeapMem_Instance_State__buf __f1; ti_sysbios_heaps_HeapMem_Header __f2; xdc_SizeT __f3; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_heaps_HeapMem_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Ptr (*alloc)(ti_sysbios_heaps_HeapMem_Handle __inst, xdc_SizeT size, xdc_SizeT align, xdc_runtime_Error_Block* eb); void (*free)(ti_sysbios_heaps_HeapMem_Handle __inst, xdc_Ptr block, xdc_SizeT size); xdc_Bool (*isBlocking)(ti_sysbios_heaps_HeapMem_Handle __inst); void (*getStats)(ti_sysbios_heaps_HeapMem_Handle __inst, xdc_runtime_Memory_Stats* stats); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_heaps_HeapMem_Fxns__ ti_sysbios_heaps_HeapMem_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Instance_init__E */ extern void ti_sysbios_heaps_HeapMem_Instance_init__E(ti_sysbios_heaps_HeapMem_Object *__obj, const ti_sysbios_heaps_HeapMem_Params *__prms); /* create */ extern ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_create( const ti_sysbios_heaps_HeapMem_Params *__prms, xdc_runtime_Error_Block *__eb ); /* construct */ extern void ti_sysbios_heaps_HeapMem_construct( ti_sysbios_heaps_HeapMem_Struct *__obj, const ti_sysbios_heaps_HeapMem_Params *__prms ); /* delete */ extern void ti_sysbios_heaps_HeapMem_delete(ti_sysbios_heaps_HeapMem_Handle *instp); /* destruct */ extern void ti_sysbios_heaps_HeapMem_destruct(ti_sysbios_heaps_HeapMem_Struct *obj); /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_heaps_HeapMem_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_heaps_HeapMem_Module__startupDone__S( void ); /* Object__create__S */ extern xdc_Ptr ti_sysbios_heaps_HeapMem_Object__create__S( xdc_CPtr __aa, const xdc_UChar *__pa, xdc_SizeT __psz, xdc_runtime_Error_Block *__eb ); /* Object__delete__S */ extern void ti_sysbios_heaps_HeapMem_Object__delete__S( xdc_Ptr instp ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_heaps_HeapMem_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_heaps_HeapMem_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_heaps_HeapMem_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_heaps_HeapMem_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* enter__E */ extern xdc_IArg ti_sysbios_heaps_HeapMem_enter__E( void ); /* leave__E */ extern void ti_sysbios_heaps_HeapMem_leave__E( xdc_IArg key ); /* alloc__E */ extern xdc_Ptr ti_sysbios_heaps_HeapMem_alloc__E( ti_sysbios_heaps_HeapMem_Handle __inst, xdc_SizeT size, xdc_SizeT align, xdc_runtime_Error_Block *eb ); /* allocUnprotected__E */ extern xdc_Ptr ti_sysbios_heaps_HeapMem_allocUnprotected__E( ti_sysbios_heaps_HeapMem_Handle __inst, xdc_SizeT size, xdc_SizeT align ); /* free__E */ extern void ti_sysbios_heaps_HeapMem_free__E( ti_sysbios_heaps_HeapMem_Handle __inst, xdc_Ptr block, xdc_SizeT size ); /* freeUnprotected__E */ extern void ti_sysbios_heaps_HeapMem_freeUnprotected__E( ti_sysbios_heaps_HeapMem_Handle __inst, xdc_Ptr block, xdc_SizeT size ); /* isBlocking__E */ extern xdc_Bool ti_sysbios_heaps_HeapMem_isBlocking__E( ti_sysbios_heaps_HeapMem_Handle __inst ); /* getStats__E */ extern void ti_sysbios_heaps_HeapMem_getStats__E( ti_sysbios_heaps_HeapMem_Handle __inst, xdc_runtime_Memory_Stats *stats ); /* restore__E */ extern void ti_sysbios_heaps_HeapMem_restore__E( ti_sysbios_heaps_HeapMem_Handle __inst ); /* getExtendedStats__E */ extern void ti_sysbios_heaps_HeapMem_getExtendedStats__E( ti_sysbios_heaps_HeapMem_Handle __inst, ti_sysbios_heaps_HeapMem_ExtendedStats *stats ); /* init__I */ extern void ti_sysbios_heaps_HeapMem_init__I( void ); /* initPrimary__I */ extern void ti_sysbios_heaps_HeapMem_initPrimary__I( void ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_IHeap_Module ti_sysbios_heaps_HeapMem_Module_upCast(void); static inline xdc_runtime_IHeap_Module ti_sysbios_heaps_HeapMem_Module_upCast(void) { return (xdc_runtime_IHeap_Module)&ti_sysbios_heaps_HeapMem_Module__FXNS__C; } /* Module_to_xdc_runtime_IHeap */ /* Handle_upCast */ static inline xdc_runtime_IHeap_Handle ti_sysbios_heaps_HeapMem_Handle_upCast(ti_sysbios_heaps_HeapMem_Handle i); static inline xdc_runtime_IHeap_Handle ti_sysbios_heaps_HeapMem_Handle_upCast(ti_sysbios_heaps_HeapMem_Handle i) { return (xdc_runtime_IHeap_Handle)i; } /* Handle_to_xdc_runtime_IHeap */ /* Handle_downCast */ static inline ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_Handle_downCast(xdc_runtime_IHeap_Handle i); static inline ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_Handle_downCast(xdc_runtime_IHeap_Handle i) { xdc_runtime_IHeap_Handle i2 = (xdc_runtime_IHeap_Handle)i; return (const void*)i2->__fxns == (const void*)&ti_sysbios_heaps_HeapMem_Module__FXNS__C ? (ti_sysbios_heaps_HeapMem_Handle)i : (ti_sysbios_heaps_HeapMem_Handle)0; } /* Handle_from_xdc_runtime_IHeap */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_heaps_HeapMem_Module__id ti_sysbios_heaps_HeapMem_Module_id(void); static inline CT__ti_sysbios_heaps_HeapMem_Module__id ti_sysbios_heaps_HeapMem_Module_id( void ) { return ti_sysbios_heaps_HeapMem_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_heaps_HeapMem_Module_hasMask(void); static inline xdc_Bool ti_sysbios_heaps_HeapMem_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_heaps_HeapMem_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_heaps_HeapMem_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_heaps_HeapMem_Module_getMask( void ) { return ti_sysbios_heaps_HeapMem_Module__diagsMask__C != 0 ? *ti_sysbios_heaps_HeapMem_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_heaps_HeapMem_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_heaps_HeapMem_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_heaps_HeapMem_Module__diagsMask__C != 0) { *ti_sysbios_heaps_HeapMem_Module__diagsMask__C = mask; } } /* Params_init */ static inline void ti_sysbios_heaps_HeapMem_Params_init(ti_sysbios_heaps_HeapMem_Params *prms); static inline void ti_sysbios_heaps_HeapMem_Params_init( ti_sysbios_heaps_HeapMem_Params *prms ) { if (prms) { ti_sysbios_heaps_HeapMem_Params__init__S(prms, 0, sizeof(ti_sysbios_heaps_HeapMem_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void ti_sysbios_heaps_HeapMem_Params_copy(ti_sysbios_heaps_HeapMem_Params *dst, const ti_sysbios_heaps_HeapMem_Params *src); static inline void ti_sysbios_heaps_HeapMem_Params_copy(ti_sysbios_heaps_HeapMem_Params *dst, const ti_sysbios_heaps_HeapMem_Params *src) { if (dst) { ti_sysbios_heaps_HeapMem_Params__init__S(dst, (const void *)src, sizeof(ti_sysbios_heaps_HeapMem_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Object_count */ /* Object_sizeof */ /* Object_get */ static inline ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_Object_get(ti_sysbios_heaps_HeapMem_Instance_State *oarr, int i); static inline ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_Object_get(ti_sysbios_heaps_HeapMem_Instance_State *oarr, int i) { return (ti_sysbios_heaps_HeapMem_Handle)ti_sysbios_heaps_HeapMem_Object__get__S(oarr, i); } /* Object_first */ static inline ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_Object_first(void); static inline ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_Object_first(void) { return (ti_sysbios_heaps_HeapMem_Handle)ti_sysbios_heaps_HeapMem_Object__first__S(); } /* Object_next */ static inline ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_Object_next(ti_sysbios_heaps_HeapMem_Object *obj); static inline ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_Object_next(ti_sysbios_heaps_HeapMem_Object *obj) { return (ti_sysbios_heaps_HeapMem_Handle)ti_sysbios_heaps_HeapMem_Object__next__S(obj); } /* Handle_label */ static inline xdc_runtime_Types_Label *ti_sysbios_heaps_HeapMem_Handle_label(ti_sysbios_heaps_HeapMem_Handle inst, xdc_runtime_Types_Label *lab); static inline xdc_runtime_Types_Label *ti_sysbios_heaps_HeapMem_Handle_label(ti_sysbios_heaps_HeapMem_Handle inst, xdc_runtime_Types_Label *lab) { return ti_sysbios_heaps_HeapMem_Handle__label__S(inst, lab); } /* Handle_name */ static inline xdc_String ti_sysbios_heaps_HeapMem_Handle_name(ti_sysbios_heaps_HeapMem_Handle inst); static inline xdc_String ti_sysbios_heaps_HeapMem_Handle_name(ti_sysbios_heaps_HeapMem_Handle inst) { xdc_runtime_Types_Label lab; return ti_sysbios_heaps_HeapMem_Handle__label__S(inst, &lab)->iname; } /* handle */ static inline ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_handle(ti_sysbios_heaps_HeapMem_Struct *str); static inline ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_handle(ti_sysbios_heaps_HeapMem_Struct *str) { return (ti_sysbios_heaps_HeapMem_Handle)str; } /* struct */ static inline ti_sysbios_heaps_HeapMem_Struct *ti_sysbios_heaps_HeapMem_struct(ti_sysbios_heaps_HeapMem_Handle inst); static inline ti_sysbios_heaps_HeapMem_Struct *ti_sysbios_heaps_HeapMem_struct(ti_sysbios_heaps_HeapMem_Handle inst) { return (ti_sysbios_heaps_HeapMem_Struct*)inst; } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Object */ struct ti_sysbios_heaps_HeapMem_Object { const ti_sysbios_heaps_HeapMem_Fxns__ *__fxns; xdc_runtime_Memory_Size align; __TA_ti_sysbios_heaps_HeapMem_Instance_State__buf buf; ti_sysbios_heaps_HeapMem_Header head; xdc_SizeT minBlockAlign; }; /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef void (*ti_sysbios_knl_Idle_FuncPtr)(void); /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_knl_Idle_Module__diagsEnabled; extern const CT__ti_sysbios_knl_Idle_Module__diagsEnabled ti_sysbios_knl_Idle_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_knl_Idle_Module__diagsIncluded; extern const CT__ti_sysbios_knl_Idle_Module__diagsIncluded ti_sysbios_knl_Idle_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_knl_Idle_Module__diagsMask; extern const CT__ti_sysbios_knl_Idle_Module__diagsMask ti_sysbios_knl_Idle_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Idle_Module__gateObj; extern const CT__ti_sysbios_knl_Idle_Module__gateObj ti_sysbios_knl_Idle_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_knl_Idle_Module__gatePrms; extern const CT__ti_sysbios_knl_Idle_Module__gatePrms ti_sysbios_knl_Idle_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_knl_Idle_Module__id; extern const CT__ti_sysbios_knl_Idle_Module__id ti_sysbios_knl_Idle_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_knl_Idle_Module__loggerDefined; extern const CT__ti_sysbios_knl_Idle_Module__loggerDefined ti_sysbios_knl_Idle_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Idle_Module__loggerObj; extern const CT__ti_sysbios_knl_Idle_Module__loggerObj ti_sysbios_knl_Idle_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_knl_Idle_Module__loggerFxn0; extern const CT__ti_sysbios_knl_Idle_Module__loggerFxn0 ti_sysbios_knl_Idle_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_knl_Idle_Module__loggerFxn1; extern const CT__ti_sysbios_knl_Idle_Module__loggerFxn1 ti_sysbios_knl_Idle_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_knl_Idle_Module__loggerFxn2; extern const CT__ti_sysbios_knl_Idle_Module__loggerFxn2 ti_sysbios_knl_Idle_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_knl_Idle_Module__loggerFxn4; extern const CT__ti_sysbios_knl_Idle_Module__loggerFxn4 ti_sysbios_knl_Idle_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_knl_Idle_Module__loggerFxn8; extern const CT__ti_sysbios_knl_Idle_Module__loggerFxn8 ti_sysbios_knl_Idle_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_knl_Idle_Object__count; extern const CT__ti_sysbios_knl_Idle_Object__count ti_sysbios_knl_Idle_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_knl_Idle_Object__heap; extern const CT__ti_sysbios_knl_Idle_Object__heap ti_sysbios_knl_Idle_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_knl_Idle_Object__sizeof; extern const CT__ti_sysbios_knl_Idle_Object__sizeof ti_sysbios_knl_Idle_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_knl_Idle_Object__table; extern const CT__ti_sysbios_knl_Idle_Object__table ti_sysbios_knl_Idle_Object__table__C; /* funcList */ typedef ti_sysbios_knl_Idle_FuncPtr __T1_ti_sysbios_knl_Idle_funcList; typedef struct { int length; ti_sysbios_knl_Idle_FuncPtr *elem; } __ARRAY1_ti_sysbios_knl_Idle_funcList; typedef struct { int length; ti_sysbios_knl_Idle_FuncPtr const *elem; } __CARRAY1_ti_sysbios_knl_Idle_funcList; typedef __CARRAY1_ti_sysbios_knl_Idle_funcList __TA_ti_sysbios_knl_Idle_funcList; typedef __CARRAY1_ti_sysbios_knl_Idle_funcList CT__ti_sysbios_knl_Idle_funcList; extern const CT__ti_sysbios_knl_Idle_funcList ti_sysbios_knl_Idle_funcList__C; /* coreList */ typedef xdc_UInt __T1_ti_sysbios_knl_Idle_coreList; typedef struct { int length; xdc_UInt *elem; } __ARRAY1_ti_sysbios_knl_Idle_coreList; typedef struct { int length; xdc_UInt const *elem; } __CARRAY1_ti_sysbios_knl_Idle_coreList; typedef __CARRAY1_ti_sysbios_knl_Idle_coreList __TA_ti_sysbios_knl_Idle_coreList; typedef __CARRAY1_ti_sysbios_knl_Idle_coreList CT__ti_sysbios_knl_Idle_coreList; extern const CT__ti_sysbios_knl_Idle_coreList ti_sysbios_knl_Idle_coreList__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_knl_Idle_Module__startupDone__S( void ); /* loop__E */ extern void ti_sysbios_knl_Idle_loop__E( xdc_UArg arg1, xdc_UArg arg2 ); /* run__E */ extern void ti_sysbios_knl_Idle_run__E( void ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_knl_Idle_Module__id ti_sysbios_knl_Idle_Module_id(void); static inline CT__ti_sysbios_knl_Idle_Module__id ti_sysbios_knl_Idle_Module_id( void ) { return ti_sysbios_knl_Idle_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_knl_Idle_Module_hasMask(void); static inline xdc_Bool ti_sysbios_knl_Idle_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_knl_Idle_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_knl_Idle_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_knl_Idle_Module_getMask( void ) { return ti_sysbios_knl_Idle_Module__diagsMask__C != 0 ? *ti_sysbios_knl_Idle_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_knl_Idle_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_knl_Idle_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_knl_Idle_Module__diagsMask__C != 0) { *ti_sysbios_knl_Idle_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2012, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__diagsEnabled; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__diagsEnabled ti_sysbios_knl_Intrinsics_SupportProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__diagsIncluded; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__diagsIncluded ti_sysbios_knl_Intrinsics_SupportProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__diagsMask; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__diagsMask ti_sysbios_knl_Intrinsics_SupportProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__gateObj; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__gateObj ti_sysbios_knl_Intrinsics_SupportProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__gatePrms; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__gatePrms ti_sysbios_knl_Intrinsics_SupportProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__id; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__id ti_sysbios_knl_Intrinsics_SupportProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerDefined; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerDefined ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerObj; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerObj ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn0; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn0 ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn1; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn1 ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn2; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn2 ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn4; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn4 ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn8; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn8 ti_sysbios_knl_Intrinsics_SupportProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_knl_Intrinsics_SupportProxy_Object__count; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Object__count ti_sysbios_knl_Intrinsics_SupportProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_knl_Intrinsics_SupportProxy_Object__heap; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Object__heap ti_sysbios_knl_Intrinsics_SupportProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_knl_Intrinsics_SupportProxy_Object__sizeof; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Object__sizeof ti_sysbios_knl_Intrinsics_SupportProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_knl_Intrinsics_SupportProxy_Object__table; extern const CT__ti_sysbios_knl_Intrinsics_SupportProxy_Object__table ti_sysbios_knl_Intrinsics_SupportProxy_Object__table__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_knl_Intrinsics_SupportProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_UInt (*maxbit)(xdc_UInt bits); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_knl_Intrinsics_SupportProxy_Fxns__ ti_sysbios_knl_Intrinsics_SupportProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_knl_Intrinsics_SupportProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_knl_Intrinsics_SupportProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_knl_Intrinsics_SupportProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_knl_Intrinsics_SupportProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_knl_Intrinsics_SupportProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_knl_Intrinsics_SupportProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool ti_sysbios_knl_Intrinsics_SupportProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr ti_sysbios_knl_Intrinsics_SupportProxy_Proxy__delegate__S( void ); /* maxbit__E */ extern xdc_UInt ti_sysbios_knl_Intrinsics_SupportProxy_maxbit__E( xdc_UInt bits ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_IIntrinsicsSupport_Module ti_sysbios_knl_Intrinsics_SupportProxy_Module_upCast(void); static inline ti_sysbios_interfaces_IIntrinsicsSupport_Module ti_sysbios_knl_Intrinsics_SupportProxy_Module_upCast(void) { return (ti_sysbios_interfaces_IIntrinsicsSupport_Module)ti_sysbios_knl_Intrinsics_SupportProxy_Proxy__delegate__S(); } /* Module_to_ti_sysbios_interfaces_IIntrinsicsSupport */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__id ti_sysbios_knl_Intrinsics_SupportProxy_Module_id(void); static inline CT__ti_sysbios_knl_Intrinsics_SupportProxy_Module__id ti_sysbios_knl_Intrinsics_SupportProxy_Module_id( void ) { return ti_sysbios_knl_Intrinsics_SupportProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_knl_Intrinsics_Module__diagsEnabled; extern const CT__ti_sysbios_knl_Intrinsics_Module__diagsEnabled ti_sysbios_knl_Intrinsics_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_knl_Intrinsics_Module__diagsIncluded; extern const CT__ti_sysbios_knl_Intrinsics_Module__diagsIncluded ti_sysbios_knl_Intrinsics_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_knl_Intrinsics_Module__diagsMask; extern const CT__ti_sysbios_knl_Intrinsics_Module__diagsMask ti_sysbios_knl_Intrinsics_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Intrinsics_Module__gateObj; extern const CT__ti_sysbios_knl_Intrinsics_Module__gateObj ti_sysbios_knl_Intrinsics_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_knl_Intrinsics_Module__gatePrms; extern const CT__ti_sysbios_knl_Intrinsics_Module__gatePrms ti_sysbios_knl_Intrinsics_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_knl_Intrinsics_Module__id; extern const CT__ti_sysbios_knl_Intrinsics_Module__id ti_sysbios_knl_Intrinsics_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_knl_Intrinsics_Module__loggerDefined; extern const CT__ti_sysbios_knl_Intrinsics_Module__loggerDefined ti_sysbios_knl_Intrinsics_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_knl_Intrinsics_Module__loggerObj; extern const CT__ti_sysbios_knl_Intrinsics_Module__loggerObj ti_sysbios_knl_Intrinsics_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn0; extern const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn0 ti_sysbios_knl_Intrinsics_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn1; extern const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn1 ti_sysbios_knl_Intrinsics_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn2; extern const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn2 ti_sysbios_knl_Intrinsics_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn4; extern const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn4 ti_sysbios_knl_Intrinsics_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn8; extern const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn8 ti_sysbios_knl_Intrinsics_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_knl_Intrinsics_Object__count; extern const CT__ti_sysbios_knl_Intrinsics_Object__count ti_sysbios_knl_Intrinsics_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_knl_Intrinsics_Object__heap; extern const CT__ti_sysbios_knl_Intrinsics_Object__heap ti_sysbios_knl_Intrinsics_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_knl_Intrinsics_Object__sizeof; extern const CT__ti_sysbios_knl_Intrinsics_Object__sizeof ti_sysbios_knl_Intrinsics_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_knl_Intrinsics_Object__table; extern const CT__ti_sysbios_knl_Intrinsics_Object__table ti_sysbios_knl_Intrinsics_Object__table__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_knl_Intrinsics_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_UInt (*maxbit)(xdc_UInt bits); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_knl_Intrinsics_Fxns__ ti_sysbios_knl_Intrinsics_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_knl_Intrinsics_Module__startupDone__S( void ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_IIntrinsicsSupport_Module ti_sysbios_knl_Intrinsics_Module_upCast(void); static inline ti_sysbios_interfaces_IIntrinsicsSupport_Module ti_sysbios_knl_Intrinsics_Module_upCast(void) { return (ti_sysbios_interfaces_IIntrinsicsSupport_Module)&ti_sysbios_knl_Intrinsics_Module__FXNS__C; } /* Module_to_ti_sysbios_interfaces_IIntrinsicsSupport */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_knl_Intrinsics_Module__id ti_sysbios_knl_Intrinsics_Module_id(void); static inline CT__ti_sysbios_knl_Intrinsics_Module__id ti_sysbios_knl_Intrinsics_Module_id( void ) { return ti_sysbios_knl_Intrinsics_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_knl_Intrinsics_Module_hasMask(void); static inline xdc_Bool ti_sysbios_knl_Intrinsics_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_knl_Intrinsics_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_knl_Intrinsics_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_knl_Intrinsics_Module_getMask( void ) { return ti_sysbios_knl_Intrinsics_Module__diagsMask__C != 0 ? *ti_sysbios_knl_Intrinsics_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_knl_Intrinsics_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_knl_Intrinsics_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_knl_Intrinsics_Module__diagsMask__C != 0) { *ti_sysbios_knl_Intrinsics_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2015-2017, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * Use intrinsics for ALL C6x and ARM 32bit targets (excluding arm M3) */ extern UInt ti_sysbios_family_c28_IntrinsicsSupport_maxbit__E(UInt bits); /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== module ti.sysbios.utils.Load ======== */ typedef struct ti_sysbios_utils_Load_Stat ti_sysbios_utils_Load_Stat; typedef struct ti_sysbios_utils_Load_HookContext ti_sysbios_utils_Load_HookContext; typedef struct ti_sysbios_utils_Load_Module_State ti_sysbios_utils_Load_Module_State; /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * CREATE ARGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* FuncPtr */ typedef void (*ti_sysbios_utils_Load_FuncPtr)(void); /* Stat */ struct ti_sysbios_utils_Load_Stat { xdc_UInt32 threadTime; xdc_UInt32 totalTime; }; /* * ======== INTERNAL DEFINITIONS ======== */ /* HookContext */ struct ti_sysbios_utils_Load_HookContext { ti_sysbios_knl_Queue_Elem qElem; xdc_UInt32 totalTimeElapsed; xdc_UInt32 totalTime; xdc_UInt32 nextTotalTime; xdc_UInt32 timeOfLastUpdate; xdc_Ptr threadHandle; }; /* Module_State */ typedef xdc_UInt32 __T1_ti_sysbios_utils_Load_Module_State__taskStartTime; typedef xdc_UInt32 *__ARRAY1_ti_sysbios_utils_Load_Module_State__taskStartTime; typedef const xdc_UInt32 *__CARRAY1_ti_sysbios_utils_Load_Module_State__taskStartTime; typedef __ARRAY1_ti_sysbios_utils_Load_Module_State__taskStartTime __TA_ti_sysbios_utils_Load_Module_State__taskStartTime; typedef ti_sysbios_knl_Task_Handle __T1_ti_sysbios_utils_Load_Module_State__runningTask; typedef ti_sysbios_knl_Task_Handle *__ARRAY1_ti_sysbios_utils_Load_Module_State__runningTask; typedef const ti_sysbios_knl_Task_Handle *__CARRAY1_ti_sysbios_utils_Load_Module_State__runningTask; typedef __ARRAY1_ti_sysbios_utils_Load_Module_State__runningTask __TA_ti_sysbios_utils_Load_Module_State__runningTask; typedef ti_sysbios_utils_Load_HookContext __T1_ti_sysbios_utils_Load_Module_State__taskEnv; typedef ti_sysbios_utils_Load_HookContext *__ARRAY1_ti_sysbios_utils_Load_Module_State__taskEnv; typedef const ti_sysbios_utils_Load_HookContext *__CARRAY1_ti_sysbios_utils_Load_Module_State__taskEnv; typedef __ARRAY1_ti_sysbios_utils_Load_Module_State__taskEnv __TA_ti_sysbios_utils_Load_Module_State__taskEnv; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_utils_Load_Module__diagsEnabled; extern const CT__ti_sysbios_utils_Load_Module__diagsEnabled ti_sysbios_utils_Load_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_utils_Load_Module__diagsIncluded; extern const CT__ti_sysbios_utils_Load_Module__diagsIncluded ti_sysbios_utils_Load_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_utils_Load_Module__diagsMask; extern const CT__ti_sysbios_utils_Load_Module__diagsMask ti_sysbios_utils_Load_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_utils_Load_Module__gateObj; extern const CT__ti_sysbios_utils_Load_Module__gateObj ti_sysbios_utils_Load_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_utils_Load_Module__gatePrms; extern const CT__ti_sysbios_utils_Load_Module__gatePrms ti_sysbios_utils_Load_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_utils_Load_Module__id; extern const CT__ti_sysbios_utils_Load_Module__id ti_sysbios_utils_Load_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_utils_Load_Module__loggerDefined; extern const CT__ti_sysbios_utils_Load_Module__loggerDefined ti_sysbios_utils_Load_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_utils_Load_Module__loggerObj; extern const CT__ti_sysbios_utils_Load_Module__loggerObj ti_sysbios_utils_Load_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_utils_Load_Module__loggerFxn0; extern const CT__ti_sysbios_utils_Load_Module__loggerFxn0 ti_sysbios_utils_Load_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_utils_Load_Module__loggerFxn1; extern const CT__ti_sysbios_utils_Load_Module__loggerFxn1 ti_sysbios_utils_Load_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_utils_Load_Module__loggerFxn2; extern const CT__ti_sysbios_utils_Load_Module__loggerFxn2 ti_sysbios_utils_Load_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_utils_Load_Module__loggerFxn4; extern const CT__ti_sysbios_utils_Load_Module__loggerFxn4 ti_sysbios_utils_Load_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_utils_Load_Module__loggerFxn8; extern const CT__ti_sysbios_utils_Load_Module__loggerFxn8 ti_sysbios_utils_Load_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_utils_Load_Object__count; extern const CT__ti_sysbios_utils_Load_Object__count ti_sysbios_utils_Load_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_utils_Load_Object__heap; extern const CT__ti_sysbios_utils_Load_Object__heap ti_sysbios_utils_Load_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_utils_Load_Object__sizeof; extern const CT__ti_sysbios_utils_Load_Object__sizeof ti_sysbios_utils_Load_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_utils_Load_Object__table; extern const CT__ti_sysbios_utils_Load_Object__table ti_sysbios_utils_Load_Object__table__C; /* LS_cpuLoad */ typedef xdc_runtime_Log_Event CT__ti_sysbios_utils_Load_LS_cpuLoad; extern const CT__ti_sysbios_utils_Load_LS_cpuLoad ti_sysbios_utils_Load_LS_cpuLoad__C; /* LS_hwiLoad */ typedef xdc_runtime_Log_Event CT__ti_sysbios_utils_Load_LS_hwiLoad; extern const CT__ti_sysbios_utils_Load_LS_hwiLoad ti_sysbios_utils_Load_LS_hwiLoad__C; /* LS_swiLoad */ typedef xdc_runtime_Log_Event CT__ti_sysbios_utils_Load_LS_swiLoad; extern const CT__ti_sysbios_utils_Load_LS_swiLoad ti_sysbios_utils_Load_LS_swiLoad__C; /* LS_taskLoad */ typedef xdc_runtime_Log_Event CT__ti_sysbios_utils_Load_LS_taskLoad; extern const CT__ti_sysbios_utils_Load_LS_taskLoad ti_sysbios_utils_Load_LS_taskLoad__C; /* postUpdate */ typedef ti_sysbios_utils_Load_FuncPtr CT__ti_sysbios_utils_Load_postUpdate; extern const CT__ti_sysbios_utils_Load_postUpdate ti_sysbios_utils_Load_postUpdate__C; /* updateInIdle */ typedef xdc_Bool CT__ti_sysbios_utils_Load_updateInIdle; extern const CT__ti_sysbios_utils_Load_updateInIdle ti_sysbios_utils_Load_updateInIdle__C; /* windowInMs */ typedef xdc_UInt CT__ti_sysbios_utils_Load_windowInMs; extern const CT__ti_sysbios_utils_Load_windowInMs ti_sysbios_utils_Load_windowInMs__C; /* hwiEnabled */ typedef xdc_Bool CT__ti_sysbios_utils_Load_hwiEnabled; extern const CT__ti_sysbios_utils_Load_hwiEnabled ti_sysbios_utils_Load_hwiEnabled__C; /* swiEnabled */ typedef xdc_Bool CT__ti_sysbios_utils_Load_swiEnabled; extern const CT__ti_sysbios_utils_Load_swiEnabled ti_sysbios_utils_Load_swiEnabled__C; /* taskEnabled */ typedef xdc_Bool CT__ti_sysbios_utils_Load_taskEnabled; extern const CT__ti_sysbios_utils_Load_taskEnabled ti_sysbios_utils_Load_taskEnabled__C; /* autoAddTasks */ typedef xdc_Bool CT__ti_sysbios_utils_Load_autoAddTasks; extern const CT__ti_sysbios_utils_Load_autoAddTasks ti_sysbios_utils_Load_autoAddTasks__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_utils_Load_Module__startupDone__S( void ); /* getTaskLoad__E */ extern xdc_Bool ti_sysbios_utils_Load_getTaskLoad__E( ti_sysbios_knl_Task_Handle task, ti_sysbios_utils_Load_Stat *stat ); /* update__E */ extern void ti_sysbios_utils_Load_update__E( void ); /* updateCPULoad__E */ extern void ti_sysbios_utils_Load_updateCPULoad__E( void ); /* updateLoads__E */ extern void ti_sysbios_utils_Load_updateLoads__E( void ); /* updateContextsAndPost__E */ extern void ti_sysbios_utils_Load_updateContextsAndPost__E( void ); /* updateCurrentThreadTime__E */ extern void ti_sysbios_utils_Load_updateCurrentThreadTime__E( void ); /* updateThreadContexts__E */ extern void ti_sysbios_utils_Load_updateThreadContexts__E( void ); /* reset__E */ extern void ti_sysbios_utils_Load_reset__E( void ); /* getGlobalSwiLoad__E */ extern xdc_Bool ti_sysbios_utils_Load_getGlobalSwiLoad__E( ti_sysbios_utils_Load_Stat *stat ); /* getGlobalHwiLoad__E */ extern xdc_Bool ti_sysbios_utils_Load_getGlobalHwiLoad__E( ti_sysbios_utils_Load_Stat *stat ); /* getCPULoad__E */ extern xdc_UInt32 ti_sysbios_utils_Load_getCPULoad__E( void ); /* calculateLoad__E */ extern xdc_UInt32 ti_sysbios_utils_Load_calculateLoad__E( ti_sysbios_utils_Load_Stat *stat ); /* setMinIdle__E */ extern xdc_UInt32 ti_sysbios_utils_Load_setMinIdle__E( xdc_UInt32 newMinIdleTime ); /* addTask__E */ extern void ti_sysbios_utils_Load_addTask__E( ti_sysbios_knl_Task_Handle task, ti_sysbios_utils_Load_HookContext *env ); /* removeTask__E */ extern xdc_Bool ti_sysbios_utils_Load_removeTask__E( ti_sysbios_knl_Task_Handle task ); /* idleFxn__E */ extern void ti_sysbios_utils_Load_idleFxn__E( void ); /* idleFxnPwr__E */ extern void ti_sysbios_utils_Load_idleFxnPwr__E( void ); /* startup__E */ extern void ti_sysbios_utils_Load_startup__E( void ); /* taskCreateHook__E */ extern void ti_sysbios_utils_Load_taskCreateHook__E( ti_sysbios_knl_Task_Handle task, xdc_runtime_Error_Block *eb ); /* taskDeleteHook__E */ extern void ti_sysbios_utils_Load_taskDeleteHook__E( ti_sysbios_knl_Task_Handle task ); /* taskSwitchHook__E */ extern void ti_sysbios_utils_Load_taskSwitchHook__E( ti_sysbios_knl_Task_Handle curTask, ti_sysbios_knl_Task_Handle nextTask ); /* swiBeginHook__E */ extern void ti_sysbios_utils_Load_swiBeginHook__E( ti_sysbios_knl_Swi_Handle swi ); /* swiEndHook__E */ extern void ti_sysbios_utils_Load_swiEndHook__E( ti_sysbios_knl_Swi_Handle swi ); /* hwiBeginHook__E */ extern void ti_sysbios_utils_Load_hwiBeginHook__E( ti_sysbios_interfaces_IHwi_Handle hwi ); /* hwiEndHook__E */ extern void ti_sysbios_utils_Load_hwiEndHook__E( ti_sysbios_interfaces_IHwi_Handle hwi ); /* taskRegHook__E */ extern void ti_sysbios_utils_Load_taskRegHook__E( xdc_Int id ); /* logLoads__I */ extern void ti_sysbios_utils_Load_logLoads__I( void ); /* logCPULoad__I */ extern void ti_sysbios_utils_Load_logCPULoad__I( void ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_utils_Load_Module__id ti_sysbios_utils_Load_Module_id(void); static inline CT__ti_sysbios_utils_Load_Module__id ti_sysbios_utils_Load_Module_id( void ) { return ti_sysbios_utils_Load_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_utils_Load_Module_hasMask(void); static inline xdc_Bool ti_sysbios_utils_Load_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_utils_Load_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_utils_Load_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_utils_Load_Module_getMask( void ) { return ti_sysbios_utils_Load_Module__diagsMask__C != 0 ? *ti_sysbios_utils_Load_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_utils_Load_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_utils_Load_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_utils_Load_Module__diagsMask__C != 0) { *ti_sysbios_utils_Load_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct ti_sysbios_utils_Load_Module_State { xdc_Int taskHId; __TA_ti_sysbios_utils_Load_Module_State__taskStartTime taskStartTime; xdc_UInt32 timeElapsed; __TA_ti_sysbios_utils_Load_Module_State__runningTask runningTask; xdc_Bool firstSwitchDone; xdc_UInt32 swiStartTime; ti_sysbios_utils_Load_HookContext swiEnv; __TA_ti_sysbios_utils_Load_Module_State__taskEnv taskEnv; xdc_UInt32 swiCnt; xdc_UInt32 hwiStartTime; ti_sysbios_utils_Load_HookContext hwiEnv; xdc_UInt32 hwiCnt; xdc_UInt32 timeSlotCnt; xdc_UInt32 minLoop; xdc_UInt32 minIdle; xdc_UInt32 t0; xdc_UInt32 idleCnt; xdc_UInt32 cpuLoad; xdc_UInt32 taskEnvLen; xdc_UInt32 taskNum; xdc_Bool powerEnabled; xdc_UInt32 idleStartTime; xdc_UInt32 busyStartTime; xdc_UInt32 busyTime; char __dummy; }; /* Module__state__V */ extern struct ti_sysbios_utils_Load_Module_State__ ti_sysbios_utils_Load_Module__state__V; /* Module_State_taskList */ extern const xdc_SizeT ti_sysbios_utils_Load_Module_State_taskList__O; static inline ti_sysbios_knl_Queue_Handle ti_sysbios_utils_Load_Module_State_taskList(); static inline ti_sysbios_knl_Queue_Handle ti_sysbios_utils_Load_Module_State_taskList() { return (ti_sysbios_knl_Queue_Handle)(((char*)&ti_sysbios_utils_Load_Module__state__V) + ti_sysbios_utils_Load_Module_State_taskList__O); } /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== INTERNAL DEFINITIONS ======== */ /* ObjDesc */ struct xdc_runtime_Core_ObjDesc { xdc_CPtr fxnTab; xdc_runtime_Types_Link *modLink; xdc_SizeT objAlign; xdc_runtime_IHeap_Handle objHeap; xdc_SizeT objName; xdc_SizeT objSize; xdc_CPtr prmsInit; xdc_SizeT prmsSize; }; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Core_Module__diagsEnabled; extern const CT__xdc_runtime_Core_Module__diagsEnabled xdc_runtime_Core_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Core_Module__diagsIncluded; extern const CT__xdc_runtime_Core_Module__diagsIncluded xdc_runtime_Core_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Core_Module__diagsMask; extern const CT__xdc_runtime_Core_Module__diagsMask xdc_runtime_Core_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Core_Module__gateObj; extern const CT__xdc_runtime_Core_Module__gateObj xdc_runtime_Core_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Core_Module__gatePrms; extern const CT__xdc_runtime_Core_Module__gatePrms xdc_runtime_Core_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Core_Module__id; extern const CT__xdc_runtime_Core_Module__id xdc_runtime_Core_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Core_Module__loggerDefined; extern const CT__xdc_runtime_Core_Module__loggerDefined xdc_runtime_Core_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Core_Module__loggerObj; extern const CT__xdc_runtime_Core_Module__loggerObj xdc_runtime_Core_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Core_Module__loggerFxn0; extern const CT__xdc_runtime_Core_Module__loggerFxn0 xdc_runtime_Core_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Core_Module__loggerFxn1; extern const CT__xdc_runtime_Core_Module__loggerFxn1 xdc_runtime_Core_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Core_Module__loggerFxn2; extern const CT__xdc_runtime_Core_Module__loggerFxn2 xdc_runtime_Core_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Core_Module__loggerFxn4; extern const CT__xdc_runtime_Core_Module__loggerFxn4 xdc_runtime_Core_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Core_Module__loggerFxn8; extern const CT__xdc_runtime_Core_Module__loggerFxn8 xdc_runtime_Core_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Core_Object__count; extern const CT__xdc_runtime_Core_Object__count xdc_runtime_Core_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Core_Object__heap; extern const CT__xdc_runtime_Core_Object__heap xdc_runtime_Core_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Core_Object__sizeof; extern const CT__xdc_runtime_Core_Object__sizeof xdc_runtime_Core_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Core_Object__table; extern const CT__xdc_runtime_Core_Object__table xdc_runtime_Core_Object__table__C; /* A_initializedParams */ typedef xdc_runtime_Assert_Id CT__xdc_runtime_Core_A_initializedParams; extern const CT__xdc_runtime_Core_A_initializedParams xdc_runtime_Core_A_initializedParams__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Core_Module__startupDone__S( void ); /* allocObject__I */ extern xdc_Ptr xdc_runtime_Core_allocObject__I( const xdc_runtime_Core_ObjDesc *od, xdc_runtime_Error_Block *eb ); /* assignLabel__I */ extern void xdc_runtime_Core_assignLabel__I( xdc_runtime_Types_Label *lab, xdc_runtime_Text_CordAddr iname, xdc_Bool named ); /* assignParams__I */ extern void xdc_runtime_Core_assignParams__I( xdc_Ptr dstPrms, xdc_CPtr srcPrms, xdc_SizeT mpsz, xdc_SizeT ipsz ); /* createObject__I */ extern xdc_Ptr xdc_runtime_Core_createObject__I( const xdc_runtime_Core_ObjDesc *od, xdc_Ptr curObj, xdc_Ptr resPrms, xdc_CPtr argPrms, xdc_SizeT argPrmsSize, xdc_runtime_Error_Block *eb ); /* constructObject__I */ extern xdc_Ptr xdc_runtime_Core_constructObject__I( const xdc_runtime_Core_ObjDesc *od, xdc_Ptr curObj, xdc_Ptr resPrms, xdc_CPtr argPrms, xdc_SizeT argPrmsSize, xdc_runtime_Error_Block *eb ); /* deleteObject__I */ extern void xdc_runtime_Core_deleteObject__I( const xdc_runtime_Core_ObjDesc *od, xdc_Ptr curObj, xdc_Fxn finalFxn, xdc_Int istat, xdc_Bool consFlg ); /* delistObject__I */ extern void xdc_runtime_Core_delistObject__I( const xdc_runtime_Core_ObjDesc *od, xdc_Ptr curObj ); /* destructObject__I */ extern void xdc_runtime_Core_destructObject__I( const xdc_runtime_Core_ObjDesc *od, xdc_Ptr curObj, xdc_Fxn finalFxn, xdc_Int istat, xdc_Bool consFlg ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Core_Module__id xdc_runtime_Core_Module_id(void); static inline CT__xdc_runtime_Core_Module__id xdc_runtime_Core_Module_id( void ) { return xdc_runtime_Core_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Core_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Core_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Core_Module__diagsMask__C != (CT__xdc_runtime_Core_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Core_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Core_Module_getMask(void) { return (xdc_runtime_Core_Module__diagsMask__C != (CT__xdc_runtime_Core_Module__diagsMask)0) ? *xdc_runtime_Core_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Core_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Core_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Core_Module__diagsMask__C != (CT__xdc_runtime_Core_Module__diagsMask)0) { *xdc_runtime_Core_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Defaults_Module__diagsEnabled; extern const CT__xdc_runtime_Defaults_Module__diagsEnabled xdc_runtime_Defaults_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Defaults_Module__diagsIncluded; extern const CT__xdc_runtime_Defaults_Module__diagsIncluded xdc_runtime_Defaults_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Defaults_Module__diagsMask; extern const CT__xdc_runtime_Defaults_Module__diagsMask xdc_runtime_Defaults_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Defaults_Module__gateObj; extern const CT__xdc_runtime_Defaults_Module__gateObj xdc_runtime_Defaults_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Defaults_Module__gatePrms; extern const CT__xdc_runtime_Defaults_Module__gatePrms xdc_runtime_Defaults_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Defaults_Module__id; extern const CT__xdc_runtime_Defaults_Module__id xdc_runtime_Defaults_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Defaults_Module__loggerDefined; extern const CT__xdc_runtime_Defaults_Module__loggerDefined xdc_runtime_Defaults_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Defaults_Module__loggerObj; extern const CT__xdc_runtime_Defaults_Module__loggerObj xdc_runtime_Defaults_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Defaults_Module__loggerFxn0; extern const CT__xdc_runtime_Defaults_Module__loggerFxn0 xdc_runtime_Defaults_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Defaults_Module__loggerFxn1; extern const CT__xdc_runtime_Defaults_Module__loggerFxn1 xdc_runtime_Defaults_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Defaults_Module__loggerFxn2; extern const CT__xdc_runtime_Defaults_Module__loggerFxn2 xdc_runtime_Defaults_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Defaults_Module__loggerFxn4; extern const CT__xdc_runtime_Defaults_Module__loggerFxn4 xdc_runtime_Defaults_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Defaults_Module__loggerFxn8; extern const CT__xdc_runtime_Defaults_Module__loggerFxn8 xdc_runtime_Defaults_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Defaults_Object__count; extern const CT__xdc_runtime_Defaults_Object__count xdc_runtime_Defaults_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Defaults_Object__heap; extern const CT__xdc_runtime_Defaults_Object__heap xdc_runtime_Defaults_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Defaults_Object__sizeof; extern const CT__xdc_runtime_Defaults_Object__sizeof xdc_runtime_Defaults_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Defaults_Object__table; extern const CT__xdc_runtime_Defaults_Object__table xdc_runtime_Defaults_Object__table__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Defaults_Module__startupDone__S( void ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Defaults_Module__id xdc_runtime_Defaults_Module_id(void); static inline CT__xdc_runtime_Defaults_Module__id xdc_runtime_Defaults_Module_id( void ) { return xdc_runtime_Defaults_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Defaults_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Defaults_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Defaults_Module__diagsMask__C != (CT__xdc_runtime_Defaults_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Defaults_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Defaults_Module_getMask(void) { return (xdc_runtime_Defaults_Module__diagsMask__C != (CT__xdc_runtime_Defaults_Module__diagsMask)0) ? *xdc_runtime_Defaults_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Defaults_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Defaults_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Defaults_Module__diagsMask__C != (CT__xdc_runtime_Defaults_Module__diagsMask)0) { *xdc_runtime_Defaults_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ typedef xdc_runtime_Types_GateRef xdc_runtime_Gate_Ref; /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Gate_Module__diagsEnabled; extern const CT__xdc_runtime_Gate_Module__diagsEnabled xdc_runtime_Gate_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Gate_Module__diagsIncluded; extern const CT__xdc_runtime_Gate_Module__diagsIncluded xdc_runtime_Gate_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Gate_Module__diagsMask; extern const CT__xdc_runtime_Gate_Module__diagsMask xdc_runtime_Gate_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Gate_Module__gateObj; extern const CT__xdc_runtime_Gate_Module__gateObj xdc_runtime_Gate_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Gate_Module__gatePrms; extern const CT__xdc_runtime_Gate_Module__gatePrms xdc_runtime_Gate_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Gate_Module__id; extern const CT__xdc_runtime_Gate_Module__id xdc_runtime_Gate_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Gate_Module__loggerDefined; extern const CT__xdc_runtime_Gate_Module__loggerDefined xdc_runtime_Gate_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Gate_Module__loggerObj; extern const CT__xdc_runtime_Gate_Module__loggerObj xdc_runtime_Gate_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Gate_Module__loggerFxn0; extern const CT__xdc_runtime_Gate_Module__loggerFxn0 xdc_runtime_Gate_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Gate_Module__loggerFxn1; extern const CT__xdc_runtime_Gate_Module__loggerFxn1 xdc_runtime_Gate_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Gate_Module__loggerFxn2; extern const CT__xdc_runtime_Gate_Module__loggerFxn2 xdc_runtime_Gate_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Gate_Module__loggerFxn4; extern const CT__xdc_runtime_Gate_Module__loggerFxn4 xdc_runtime_Gate_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Gate_Module__loggerFxn8; extern const CT__xdc_runtime_Gate_Module__loggerFxn8 xdc_runtime_Gate_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Gate_Object__count; extern const CT__xdc_runtime_Gate_Object__count xdc_runtime_Gate_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Gate_Object__heap; extern const CT__xdc_runtime_Gate_Object__heap xdc_runtime_Gate_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Gate_Object__sizeof; extern const CT__xdc_runtime_Gate_Object__sizeof xdc_runtime_Gate_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Gate_Object__table; extern const CT__xdc_runtime_Gate_Object__table xdc_runtime_Gate_Object__table__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Gate_Module__startupDone__S( void ); /* enterSystem__E */ extern xdc_IArg xdc_runtime_Gate_enterSystem__E( void ); /* leaveSystem__E */ extern void xdc_runtime_Gate_leaveSystem__E( xdc_IArg key ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Gate_Module__id xdc_runtime_Gate_Module_id(void); static inline CT__xdc_runtime_Gate_Module__id xdc_runtime_Gate_Module_id( void ) { return xdc_runtime_Gate_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Gate_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Gate_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Gate_Module__diagsMask__C != (CT__xdc_runtime_Gate_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Gate_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Gate_Module_getMask(void) { return (xdc_runtime_Gate_Module__diagsMask__C != (CT__xdc_runtime_Gate_Module__diagsMask)0) ? *xdc_runtime_Gate_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Gate_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Gate_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Gate_Module__diagsMask__C != (CT__xdc_runtime_Gate_Module__diagsMask)0) { *xdc_runtime_Gate_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * ======== Registry__prologue.h ======== */ /* nothing needed */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Result */ enum xdc_runtime_Registry_Result { xdc_runtime_Registry_SUCCESS, xdc_runtime_Registry_ALLOC_FAILED, xdc_runtime_Registry_ALREADY_ADDED, xdc_runtime_Registry_ALL_IDS_USED }; typedef enum xdc_runtime_Registry_Result xdc_runtime_Registry_Result; /* Desc */ typedef xdc_runtime_Types_RegDesc xdc_runtime_Registry_Desc; /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Registry_Module__diagsEnabled; extern const CT__xdc_runtime_Registry_Module__diagsEnabled xdc_runtime_Registry_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Registry_Module__diagsIncluded; extern const CT__xdc_runtime_Registry_Module__diagsIncluded xdc_runtime_Registry_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Registry_Module__diagsMask; extern const CT__xdc_runtime_Registry_Module__diagsMask xdc_runtime_Registry_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Registry_Module__gateObj; extern const CT__xdc_runtime_Registry_Module__gateObj xdc_runtime_Registry_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Registry_Module__gatePrms; extern const CT__xdc_runtime_Registry_Module__gatePrms xdc_runtime_Registry_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Registry_Module__id; extern const CT__xdc_runtime_Registry_Module__id xdc_runtime_Registry_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Registry_Module__loggerDefined; extern const CT__xdc_runtime_Registry_Module__loggerDefined xdc_runtime_Registry_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Registry_Module__loggerObj; extern const CT__xdc_runtime_Registry_Module__loggerObj xdc_runtime_Registry_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Registry_Module__loggerFxn0; extern const CT__xdc_runtime_Registry_Module__loggerFxn0 xdc_runtime_Registry_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Registry_Module__loggerFxn1; extern const CT__xdc_runtime_Registry_Module__loggerFxn1 xdc_runtime_Registry_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Registry_Module__loggerFxn2; extern const CT__xdc_runtime_Registry_Module__loggerFxn2 xdc_runtime_Registry_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Registry_Module__loggerFxn4; extern const CT__xdc_runtime_Registry_Module__loggerFxn4 xdc_runtime_Registry_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Registry_Module__loggerFxn8; extern const CT__xdc_runtime_Registry_Module__loggerFxn8 xdc_runtime_Registry_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Registry_Object__count; extern const CT__xdc_runtime_Registry_Object__count xdc_runtime_Registry_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Registry_Object__heap; extern const CT__xdc_runtime_Registry_Object__heap xdc_runtime_Registry_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Registry_Object__sizeof; extern const CT__xdc_runtime_Registry_Object__sizeof xdc_runtime_Registry_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Registry_Object__table; extern const CT__xdc_runtime_Registry_Object__table xdc_runtime_Registry_Object__table__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Registry_Module__startupDone__S( void ); /* addModule__E */ extern xdc_runtime_Registry_Result xdc_runtime_Registry_addModule__E( xdc_runtime_Registry_Desc *desc, xdc_CString modName ); /* findByName__E */ extern xdc_runtime_Registry_Desc *xdc_runtime_Registry_findByName__E( xdc_CString modName ); /* findByNamePattern__E */ extern xdc_runtime_Registry_Desc *xdc_runtime_Registry_findByNamePattern__E( xdc_CString namePat, xdc_UShort len, xdc_runtime_Registry_Desc *prev ); /* findById__E */ extern xdc_runtime_Registry_Desc *xdc_runtime_Registry_findById__E( xdc_runtime_Types_ModuleId mid ); /* getMask__E */ extern xdc_Bool xdc_runtime_Registry_getMask__E( xdc_CString name, xdc_runtime_Types_DiagsMask *mask ); /* isMember__E */ extern xdc_Bool xdc_runtime_Registry_isMember__E( xdc_runtime_Types_ModuleId mid ); /* getNextModule__E */ extern xdc_runtime_Registry_Desc *xdc_runtime_Registry_getNextModule__E( xdc_runtime_Registry_Desc *desc ); /* getModuleName__E */ extern xdc_CString xdc_runtime_Registry_getModuleName__E( xdc_runtime_Registry_Desc *desc ); /* getModuleId__E */ extern xdc_runtime_Types_ModuleId xdc_runtime_Registry_getModuleId__E( xdc_runtime_Registry_Desc *desc ); /* findByNameInList__I */ extern xdc_runtime_Registry_Desc *xdc_runtime_Registry_findByNameInList__I( xdc_CString name, xdc_runtime_Registry_Desc *listHead ); /* newModule__I */ extern void xdc_runtime_Registry_newModule__I( xdc_runtime_Registry_Desc *desc, xdc_CString modName ); /* matchPattern__I */ extern xdc_Bool xdc_runtime_Registry_matchPattern__I( xdc_CString pattern, xdc_UShort len, xdc_CString modName ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Registry_Module__id xdc_runtime_Registry_Module_id(void); static inline CT__xdc_runtime_Registry_Module__id xdc_runtime_Registry_Module_id( void ) { return xdc_runtime_Registry_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Registry_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Registry_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Registry_Module__diagsMask__C != (CT__xdc_runtime_Registry_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Registry_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Registry_Module_getMask(void) { return (xdc_runtime_Registry_Module__diagsMask__C != (CT__xdc_runtime_Registry_Module__diagsMask)0) ? *xdc_runtime_Registry_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Registry_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Registry_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Registry_Module__diagsMask__C != (CT__xdc_runtime_Registry_Module__diagsMask)0) { *xdc_runtime_Registry_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2008-2017 Texas Instruments Incorporated * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * ======== Registry__epilogue.h ======== */ /* short name alias to make command lines and makefiles easier */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct xdc_runtime_Registry_Module_State { xdc_runtime_Registry_Desc *listHead; xdc_runtime_Types_ModuleId curId; }; /* Module__state__V */ extern struct xdc_runtime_Registry_Module_State__ xdc_runtime_Registry_Module__state__V; /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* DONE */ /* NOTDONE */ /* InitFxn */ typedef void (*xdc_runtime_Startup_InitFxn)(void); /* * ======== INTERNAL DEFINITIONS ======== */ /* execImplFxn */ extern void xdc_runtime_Startup_exec__I(void); /* SFxn */ typedef xdc_Int (*xdc_runtime_Startup_SFxn)(xdc_Int arg1); /* IdMap */ struct xdc_runtime_Startup_IdMap { xdc_UInt ind; xdc_runtime_Types_ModuleId modId; }; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Startup_Module__diagsEnabled; extern const CT__xdc_runtime_Startup_Module__diagsEnabled xdc_runtime_Startup_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Startup_Module__diagsIncluded; extern const CT__xdc_runtime_Startup_Module__diagsIncluded xdc_runtime_Startup_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Startup_Module__diagsMask; extern const CT__xdc_runtime_Startup_Module__diagsMask xdc_runtime_Startup_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Startup_Module__gateObj; extern const CT__xdc_runtime_Startup_Module__gateObj xdc_runtime_Startup_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Startup_Module__gatePrms; extern const CT__xdc_runtime_Startup_Module__gatePrms xdc_runtime_Startup_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Startup_Module__id; extern const CT__xdc_runtime_Startup_Module__id xdc_runtime_Startup_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Startup_Module__loggerDefined; extern const CT__xdc_runtime_Startup_Module__loggerDefined xdc_runtime_Startup_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Startup_Module__loggerObj; extern const CT__xdc_runtime_Startup_Module__loggerObj xdc_runtime_Startup_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Startup_Module__loggerFxn0; extern const CT__xdc_runtime_Startup_Module__loggerFxn0 xdc_runtime_Startup_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Startup_Module__loggerFxn1; extern const CT__xdc_runtime_Startup_Module__loggerFxn1 xdc_runtime_Startup_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Startup_Module__loggerFxn2; extern const CT__xdc_runtime_Startup_Module__loggerFxn2 xdc_runtime_Startup_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Startup_Module__loggerFxn4; extern const CT__xdc_runtime_Startup_Module__loggerFxn4 xdc_runtime_Startup_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Startup_Module__loggerFxn8; extern const CT__xdc_runtime_Startup_Module__loggerFxn8 xdc_runtime_Startup_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Startup_Object__count; extern const CT__xdc_runtime_Startup_Object__count xdc_runtime_Startup_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Startup_Object__heap; extern const CT__xdc_runtime_Startup_Object__heap xdc_runtime_Startup_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Startup_Object__sizeof; extern const CT__xdc_runtime_Startup_Object__sizeof xdc_runtime_Startup_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Startup_Object__table; extern const CT__xdc_runtime_Startup_Object__table xdc_runtime_Startup_Object__table__C; /* maxPasses */ typedef xdc_Int CT__xdc_runtime_Startup_maxPasses; extern const CT__xdc_runtime_Startup_maxPasses xdc_runtime_Startup_maxPasses__C; /* firstFxns */ typedef xdc_runtime_Startup_InitFxn __T1_xdc_runtime_Startup_firstFxns; typedef struct { int length; xdc_runtime_Startup_InitFxn *elem; } ARRAY1_xdc_runtime_Startup_firstFxns; typedef struct { int length; xdc_runtime_Startup_InitFxn const *elem; } CARRAY1_xdc_runtime_Startup_firstFxns; typedef CARRAY1_xdc_runtime_Startup_firstFxns __TA_xdc_runtime_Startup_firstFxns; typedef CARRAY1_xdc_runtime_Startup_firstFxns CT__xdc_runtime_Startup_firstFxns; extern const CT__xdc_runtime_Startup_firstFxns xdc_runtime_Startup_firstFxns__C; /* lastFxns */ typedef xdc_runtime_Startup_InitFxn __T1_xdc_runtime_Startup_lastFxns; typedef struct { int length; xdc_runtime_Startup_InitFxn *elem; } ARRAY1_xdc_runtime_Startup_lastFxns; typedef struct { int length; xdc_runtime_Startup_InitFxn const *elem; } CARRAY1_xdc_runtime_Startup_lastFxns; typedef CARRAY1_xdc_runtime_Startup_lastFxns __TA_xdc_runtime_Startup_lastFxns; typedef CARRAY1_xdc_runtime_Startup_lastFxns CT__xdc_runtime_Startup_lastFxns; extern const CT__xdc_runtime_Startup_lastFxns xdc_runtime_Startup_lastFxns__C; /* startModsFxn */ typedef void (*CT__xdc_runtime_Startup_startModsFxn)(xdc_Int arg1[], xdc_Int arg2); extern const CT__xdc_runtime_Startup_startModsFxn xdc_runtime_Startup_startModsFxn__C; /* execImpl */ typedef void (*CT__xdc_runtime_Startup_execImpl)(void); extern const CT__xdc_runtime_Startup_execImpl xdc_runtime_Startup_execImpl__C; /* sfxnTab */ typedef xdc_runtime_Startup_SFxn __T1_xdc_runtime_Startup_sfxnTab; typedef xdc_runtime_Startup_SFxn *ARRAY1_xdc_runtime_Startup_sfxnTab; typedef const xdc_runtime_Startup_SFxn *CARRAY1_xdc_runtime_Startup_sfxnTab; typedef CARRAY1_xdc_runtime_Startup_sfxnTab __TA_xdc_runtime_Startup_sfxnTab; typedef CARRAY1_xdc_runtime_Startup_sfxnTab CT__xdc_runtime_Startup_sfxnTab; extern const CT__xdc_runtime_Startup_sfxnTab xdc_runtime_Startup_sfxnTab__C; /* sfxnRts */ typedef xdc_Bool __T1_xdc_runtime_Startup_sfxnRts; typedef xdc_Bool *ARRAY1_xdc_runtime_Startup_sfxnRts; typedef const xdc_Bool *CARRAY1_xdc_runtime_Startup_sfxnRts; typedef CARRAY1_xdc_runtime_Startup_sfxnRts __TA_xdc_runtime_Startup_sfxnRts; typedef CARRAY1_xdc_runtime_Startup_sfxnRts CT__xdc_runtime_Startup_sfxnRts; extern const CT__xdc_runtime_Startup_sfxnRts xdc_runtime_Startup_sfxnRts__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Startup_Module__startupDone__S( void ); /* exec__E */ extern void xdc_runtime_Startup_exec__E( void ); /* rtsDone__E */ extern xdc_Bool xdc_runtime_Startup_rtsDone__E( void ); /* reset__I */ extern void xdc_runtime_Startup_reset__I( void ); /* startMods__I */ extern void xdc_runtime_Startup_startMods__I( xdc_Int state[], xdc_Int len ); /* getState__I */ extern xdc_Int xdc_runtime_Startup_getState__I( xdc_runtime_Types_ModuleId id ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Startup_Module__id xdc_runtime_Startup_Module_id(void); static inline CT__xdc_runtime_Startup_Module__id xdc_runtime_Startup_Module_id( void ) { return xdc_runtime_Startup_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Startup_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Startup_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Startup_Module__diagsMask__C != (CT__xdc_runtime_Startup_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Startup_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Startup_Module_getMask(void) { return (xdc_runtime_Startup_Module__diagsMask__C != (CT__xdc_runtime_Startup_Module__diagsMask)0) ? *xdc_runtime_Startup_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Startup_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Startup_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Startup_Module__diagsMask__C != (CT__xdc_runtime_Startup_Module__diagsMask)0) { *xdc_runtime_Startup_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct xdc_runtime_Startup_Module_State { xdc_Int *stateTab; xdc_Bool execFlag; xdc_Bool rtsDoneFlag; }; /* Module__state__V */ extern struct xdc_runtime_Startup_Module_State__ xdc_runtime_Startup_Module__state__V; /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_ISystemSupport_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; void (*abort)(xdc_CString str); void (*exit)(xdc_Int stat); void (*flush)(void); void (*putch)(xdc_Char ch); xdc_Bool (*ready)(void); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base xdc_runtime_ISystemSupport_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* Module_id */ static inline xdc_runtime_Types_ModuleId xdc_runtime_ISystemSupport_Module_id(xdc_runtime_ISystemSupport_Module mod); static inline xdc_runtime_Types_ModuleId xdc_runtime_ISystemSupport_Module_id(xdc_runtime_ISystemSupport_Module mod) { return mod->__sysp->__mid; } /* abort */ static inline void xdc_runtime_ISystemSupport_abort(xdc_runtime_ISystemSupport_Module mod, xdc_CString str); static inline void xdc_runtime_ISystemSupport_abort( xdc_runtime_ISystemSupport_Module mod, xdc_CString str ) { mod->abort(str); } /* exit */ static inline void xdc_runtime_ISystemSupport_exit(xdc_runtime_ISystemSupport_Module mod, xdc_Int stat); static inline void xdc_runtime_ISystemSupport_exit( xdc_runtime_ISystemSupport_Module mod, xdc_Int stat ) { mod->exit(stat); } /* flush */ static inline void xdc_runtime_ISystemSupport_flush(xdc_runtime_ISystemSupport_Module mod); static inline void xdc_runtime_ISystemSupport_flush( xdc_runtime_ISystemSupport_Module mod ) { mod->flush(); } /* putch */ static inline void xdc_runtime_ISystemSupport_putch(xdc_runtime_ISystemSupport_Module mod, xdc_Char ch); static inline void xdc_runtime_ISystemSupport_putch( xdc_runtime_ISystemSupport_Module mod, xdc_Char ch ) { mod->putch(ch); } /* ready */ static inline xdc_Bool xdc_runtime_ISystemSupport_ready(xdc_runtime_ISystemSupport_Module mod); static inline xdc_Bool xdc_runtime_ISystemSupport_ready( xdc_runtime_ISystemSupport_Module mod ) { return mod->ready(); } /* * ======== FUNCTION SELECTORS ======== */ /* These functions return function pointers for module and instance functions. * The functions accept modules and instances declared as types defined in this * interface, but they return functions defined for the actual objects passed * as parameters. These functions are not invoked by any generated code or * XDCtools internal code. */ /* abort_{FxnT,fxnP} */ typedef void (*xdc_runtime_ISystemSupport_abort_FxnT)(xdc_CString str); static inline xdc_runtime_ISystemSupport_abort_FxnT xdc_runtime_ISystemSupport_abort_fxnP(xdc_runtime_ISystemSupport_Module mod); static inline xdc_runtime_ISystemSupport_abort_FxnT xdc_runtime_ISystemSupport_abort_fxnP(xdc_runtime_ISystemSupport_Module mod) { return (xdc_runtime_ISystemSupport_abort_FxnT)mod->abort; } /* exit_{FxnT,fxnP} */ typedef void (*xdc_runtime_ISystemSupport_exit_FxnT)(xdc_Int stat); static inline xdc_runtime_ISystemSupport_exit_FxnT xdc_runtime_ISystemSupport_exit_fxnP(xdc_runtime_ISystemSupport_Module mod); static inline xdc_runtime_ISystemSupport_exit_FxnT xdc_runtime_ISystemSupport_exit_fxnP(xdc_runtime_ISystemSupport_Module mod) { return (xdc_runtime_ISystemSupport_exit_FxnT)mod->exit; } /* flush_{FxnT,fxnP} */ typedef void (*xdc_runtime_ISystemSupport_flush_FxnT)(void); static inline xdc_runtime_ISystemSupport_flush_FxnT xdc_runtime_ISystemSupport_flush_fxnP(xdc_runtime_ISystemSupport_Module mod); static inline xdc_runtime_ISystemSupport_flush_FxnT xdc_runtime_ISystemSupport_flush_fxnP(xdc_runtime_ISystemSupport_Module mod) { return (xdc_runtime_ISystemSupport_flush_FxnT)mod->flush; } /* putch_{FxnT,fxnP} */ typedef void (*xdc_runtime_ISystemSupport_putch_FxnT)(xdc_Char ch); static inline xdc_runtime_ISystemSupport_putch_FxnT xdc_runtime_ISystemSupport_putch_fxnP(xdc_runtime_ISystemSupport_Module mod); static inline xdc_runtime_ISystemSupport_putch_FxnT xdc_runtime_ISystemSupport_putch_fxnP(xdc_runtime_ISystemSupport_Module mod) { return (xdc_runtime_ISystemSupport_putch_FxnT)mod->putch; } /* ready_{FxnT,fxnP} */ typedef xdc_Bool (*xdc_runtime_ISystemSupport_ready_FxnT)(void); static inline xdc_runtime_ISystemSupport_ready_FxnT xdc_runtime_ISystemSupport_ready_fxnP(xdc_runtime_ISystemSupport_Module mod); static inline xdc_runtime_ISystemSupport_ready_FxnT xdc_runtime_ISystemSupport_ready_fxnP(xdc_runtime_ISystemSupport_Module mod) { return (xdc_runtime_ISystemSupport_ready_FxnT)mod->ready; } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* OutputFxn */ typedef void (*xdc_runtime_SysMin_OutputFxn)(xdc_Char* arg1, xdc_UInt arg2); /* * ======== INTERNAL DEFINITIONS ======== */ /* Module_State */ typedef xdc_Char __T1_xdc_runtime_SysMin_Module_State__outbuf; typedef xdc_Char *ARRAY1_xdc_runtime_SysMin_Module_State__outbuf; typedef const xdc_Char *CARRAY1_xdc_runtime_SysMin_Module_State__outbuf; typedef ARRAY1_xdc_runtime_SysMin_Module_State__outbuf __TA_xdc_runtime_SysMin_Module_State__outbuf; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_SysMin_Module__diagsEnabled; extern const CT__xdc_runtime_SysMin_Module__diagsEnabled xdc_runtime_SysMin_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_SysMin_Module__diagsIncluded; extern const CT__xdc_runtime_SysMin_Module__diagsIncluded xdc_runtime_SysMin_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_SysMin_Module__diagsMask; extern const CT__xdc_runtime_SysMin_Module__diagsMask xdc_runtime_SysMin_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_SysMin_Module__gateObj; extern const CT__xdc_runtime_SysMin_Module__gateObj xdc_runtime_SysMin_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_SysMin_Module__gatePrms; extern const CT__xdc_runtime_SysMin_Module__gatePrms xdc_runtime_SysMin_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_SysMin_Module__id; extern const CT__xdc_runtime_SysMin_Module__id xdc_runtime_SysMin_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_SysMin_Module__loggerDefined; extern const CT__xdc_runtime_SysMin_Module__loggerDefined xdc_runtime_SysMin_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_SysMin_Module__loggerObj; extern const CT__xdc_runtime_SysMin_Module__loggerObj xdc_runtime_SysMin_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_SysMin_Module__loggerFxn0; extern const CT__xdc_runtime_SysMin_Module__loggerFxn0 xdc_runtime_SysMin_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_SysMin_Module__loggerFxn1; extern const CT__xdc_runtime_SysMin_Module__loggerFxn1 xdc_runtime_SysMin_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_SysMin_Module__loggerFxn2; extern const CT__xdc_runtime_SysMin_Module__loggerFxn2 xdc_runtime_SysMin_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_SysMin_Module__loggerFxn4; extern const CT__xdc_runtime_SysMin_Module__loggerFxn4 xdc_runtime_SysMin_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_SysMin_Module__loggerFxn8; extern const CT__xdc_runtime_SysMin_Module__loggerFxn8 xdc_runtime_SysMin_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_SysMin_Object__count; extern const CT__xdc_runtime_SysMin_Object__count xdc_runtime_SysMin_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_SysMin_Object__heap; extern const CT__xdc_runtime_SysMin_Object__heap xdc_runtime_SysMin_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_SysMin_Object__sizeof; extern const CT__xdc_runtime_SysMin_Object__sizeof xdc_runtime_SysMin_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_SysMin_Object__table; extern const CT__xdc_runtime_SysMin_Object__table xdc_runtime_SysMin_Object__table__C; /* bufSize */ typedef xdc_SizeT CT__xdc_runtime_SysMin_bufSize; extern const CT__xdc_runtime_SysMin_bufSize xdc_runtime_SysMin_bufSize__C; /* flushAtExit */ typedef xdc_Bool CT__xdc_runtime_SysMin_flushAtExit; extern const CT__xdc_runtime_SysMin_flushAtExit xdc_runtime_SysMin_flushAtExit__C; /* outputFxn */ typedef xdc_runtime_SysMin_OutputFxn CT__xdc_runtime_SysMin_outputFxn; extern const CT__xdc_runtime_SysMin_outputFxn xdc_runtime_SysMin_outputFxn__C; /* outputFunc */ typedef xdc_runtime_SysMin_OutputFxn CT__xdc_runtime_SysMin_outputFunc; extern const CT__xdc_runtime_SysMin_outputFunc xdc_runtime_SysMin_outputFunc__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_SysMin_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; void (*abort)(xdc_CString str); void (*exit)(xdc_Int stat); void (*flush)(void); void (*putch)(xdc_Char ch); xdc_Bool (*ready)(void); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const xdc_runtime_SysMin_Fxns__ xdc_runtime_SysMin_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ extern xdc_Int xdc_runtime_SysMin_Module_startup__E( xdc_Int state ); extern xdc_Int xdc_runtime_SysMin_Module_startup__F( xdc_Int state ); /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_SysMin_Module__startupDone__S( void ); /* abort__E */ extern void xdc_runtime_SysMin_abort__E( xdc_CString str ); /* exit__E */ extern void xdc_runtime_SysMin_exit__E( xdc_Int stat ); /* flush__E */ extern void xdc_runtime_SysMin_flush__E( void ); /* putch__E */ extern void xdc_runtime_SysMin_putch__E( xdc_Char ch ); /* ready__E */ extern xdc_Bool xdc_runtime_SysMin_ready__E( void ); /* output__I */ extern void xdc_runtime_SysMin_output__I( xdc_Char *buf, xdc_UInt size ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_ISystemSupport_Module xdc_runtime_SysMin_Module_upCast(void); static inline xdc_runtime_ISystemSupport_Module xdc_runtime_SysMin_Module_upCast(void) { return (xdc_runtime_ISystemSupport_Module)&xdc_runtime_SysMin_Module__FXNS__C; } /* Module_to_xdc_runtime_ISystemSupport */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_SysMin_Module__id xdc_runtime_SysMin_Module_id(void); static inline CT__xdc_runtime_SysMin_Module__id xdc_runtime_SysMin_Module_id( void ) { return xdc_runtime_SysMin_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_SysMin_Module_hasMask(void); static inline xdc_Bool xdc_runtime_SysMin_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_SysMin_Module__diagsMask__C != (CT__xdc_runtime_SysMin_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_SysMin_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_SysMin_Module_getMask(void) { return (xdc_runtime_SysMin_Module__diagsMask__C != (CT__xdc_runtime_SysMin_Module__diagsMask)0) ? *xdc_runtime_SysMin_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_SysMin_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_SysMin_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_SysMin_Module__diagsMask__C != (CT__xdc_runtime_SysMin_Module__diagsMask)0) { *xdc_runtime_SysMin_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct xdc_runtime_SysMin_Module_State { __TA_xdc_runtime_SysMin_Module_State__outbuf outbuf; xdc_UInt outidx; xdc_Bool wrapped; }; /* Module__state__V */ extern struct xdc_runtime_SysMin_Module_State__ xdc_runtime_SysMin_Module__state__V; /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_System_SupportProxy_Module__diagsEnabled; extern const CT__xdc_runtime_System_SupportProxy_Module__diagsEnabled xdc_runtime_System_SupportProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_System_SupportProxy_Module__diagsIncluded; extern const CT__xdc_runtime_System_SupportProxy_Module__diagsIncluded xdc_runtime_System_SupportProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_System_SupportProxy_Module__diagsMask; extern const CT__xdc_runtime_System_SupportProxy_Module__diagsMask xdc_runtime_System_SupportProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_System_SupportProxy_Module__gateObj; extern const CT__xdc_runtime_System_SupportProxy_Module__gateObj xdc_runtime_System_SupportProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_System_SupportProxy_Module__gatePrms; extern const CT__xdc_runtime_System_SupportProxy_Module__gatePrms xdc_runtime_System_SupportProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_System_SupportProxy_Module__id; extern const CT__xdc_runtime_System_SupportProxy_Module__id xdc_runtime_System_SupportProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_System_SupportProxy_Module__loggerDefined; extern const CT__xdc_runtime_System_SupportProxy_Module__loggerDefined xdc_runtime_System_SupportProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_System_SupportProxy_Module__loggerObj; extern const CT__xdc_runtime_System_SupportProxy_Module__loggerObj xdc_runtime_System_SupportProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_System_SupportProxy_Module__loggerFxn0; extern const CT__xdc_runtime_System_SupportProxy_Module__loggerFxn0 xdc_runtime_System_SupportProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_System_SupportProxy_Module__loggerFxn1; extern const CT__xdc_runtime_System_SupportProxy_Module__loggerFxn1 xdc_runtime_System_SupportProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_System_SupportProxy_Module__loggerFxn2; extern const CT__xdc_runtime_System_SupportProxy_Module__loggerFxn2 xdc_runtime_System_SupportProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_System_SupportProxy_Module__loggerFxn4; extern const CT__xdc_runtime_System_SupportProxy_Module__loggerFxn4 xdc_runtime_System_SupportProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_System_SupportProxy_Module__loggerFxn8; extern const CT__xdc_runtime_System_SupportProxy_Module__loggerFxn8 xdc_runtime_System_SupportProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_System_SupportProxy_Object__count; extern const CT__xdc_runtime_System_SupportProxy_Object__count xdc_runtime_System_SupportProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_System_SupportProxy_Object__heap; extern const CT__xdc_runtime_System_SupportProxy_Object__heap xdc_runtime_System_SupportProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_System_SupportProxy_Object__sizeof; extern const CT__xdc_runtime_System_SupportProxy_Object__sizeof xdc_runtime_System_SupportProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_System_SupportProxy_Object__table; extern const CT__xdc_runtime_System_SupportProxy_Object__table xdc_runtime_System_SupportProxy_Object__table__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_System_SupportProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; void (*abort)(xdc_CString str); void (*exit)(xdc_Int stat); void (*flush)(void); void (*putch)(xdc_Char ch); xdc_Bool (*ready)(void); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const xdc_runtime_System_SupportProxy_Fxns__ xdc_runtime_System_SupportProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Handle__label__S */ extern xdc_runtime_Types_Label *xdc_runtime_System_SupportProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_System_SupportProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr xdc_runtime_System_SupportProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr xdc_runtime_System_SupportProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr xdc_runtime_System_SupportProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void xdc_runtime_System_SupportProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool xdc_runtime_System_SupportProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr xdc_runtime_System_SupportProxy_Proxy__delegate__S( void ); /* abort__E */ extern void xdc_runtime_System_SupportProxy_abort__E( xdc_CString str ); /* exit__E */ extern void xdc_runtime_System_SupportProxy_exit__E( xdc_Int stat ); /* flush__E */ extern void xdc_runtime_System_SupportProxy_flush__E( void ); /* putch__E */ extern void xdc_runtime_System_SupportProxy_putch__E( xdc_Char ch ); /* ready__E */ extern xdc_Bool xdc_runtime_System_SupportProxy_ready__E( void ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_ISystemSupport_Module xdc_runtime_System_SupportProxy_Module_upCast(void); static inline xdc_runtime_ISystemSupport_Module xdc_runtime_System_SupportProxy_Module_upCast(void) { return (xdc_runtime_ISystemSupport_Module)xdc_runtime_System_SupportProxy_Proxy__delegate__S(); } /* Module_to_xdc_runtime_ISystemSupport */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_System_SupportProxy_Module__id xdc_runtime_System_SupportProxy_Module_id(void); static inline CT__xdc_runtime_System_SupportProxy_Module__id xdc_runtime_System_SupportProxy_Module_id( void ) { return xdc_runtime_System_SupportProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * MODULE-WIDE CONFIGS * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * PER-INSTANCE TYPES * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* Q_BLOCKING */ /* Q_PREEMPTING */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_System_Module_GateProxy_Module__diagsEnabled; extern const CT__xdc_runtime_System_Module_GateProxy_Module__diagsEnabled xdc_runtime_System_Module_GateProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_System_Module_GateProxy_Module__diagsIncluded; extern const CT__xdc_runtime_System_Module_GateProxy_Module__diagsIncluded xdc_runtime_System_Module_GateProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_System_Module_GateProxy_Module__diagsMask; extern const CT__xdc_runtime_System_Module_GateProxy_Module__diagsMask xdc_runtime_System_Module_GateProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_System_Module_GateProxy_Module__gateObj; extern const CT__xdc_runtime_System_Module_GateProxy_Module__gateObj xdc_runtime_System_Module_GateProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_System_Module_GateProxy_Module__gatePrms; extern const CT__xdc_runtime_System_Module_GateProxy_Module__gatePrms xdc_runtime_System_Module_GateProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_System_Module_GateProxy_Module__id; extern const CT__xdc_runtime_System_Module_GateProxy_Module__id xdc_runtime_System_Module_GateProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_System_Module_GateProxy_Module__loggerDefined; extern const CT__xdc_runtime_System_Module_GateProxy_Module__loggerDefined xdc_runtime_System_Module_GateProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_System_Module_GateProxy_Module__loggerObj; extern const CT__xdc_runtime_System_Module_GateProxy_Module__loggerObj xdc_runtime_System_Module_GateProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_System_Module_GateProxy_Module__loggerFxn0; extern const CT__xdc_runtime_System_Module_GateProxy_Module__loggerFxn0 xdc_runtime_System_Module_GateProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_System_Module_GateProxy_Module__loggerFxn1; extern const CT__xdc_runtime_System_Module_GateProxy_Module__loggerFxn1 xdc_runtime_System_Module_GateProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_System_Module_GateProxy_Module__loggerFxn2; extern const CT__xdc_runtime_System_Module_GateProxy_Module__loggerFxn2 xdc_runtime_System_Module_GateProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_System_Module_GateProxy_Module__loggerFxn4; extern const CT__xdc_runtime_System_Module_GateProxy_Module__loggerFxn4 xdc_runtime_System_Module_GateProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_System_Module_GateProxy_Module__loggerFxn8; extern const CT__xdc_runtime_System_Module_GateProxy_Module__loggerFxn8 xdc_runtime_System_Module_GateProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_System_Module_GateProxy_Object__count; extern const CT__xdc_runtime_System_Module_GateProxy_Object__count xdc_runtime_System_Module_GateProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_System_Module_GateProxy_Object__heap; extern const CT__xdc_runtime_System_Module_GateProxy_Object__heap xdc_runtime_System_Module_GateProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_System_Module_GateProxy_Object__sizeof; extern const CT__xdc_runtime_System_Module_GateProxy_Object__sizeof xdc_runtime_System_Module_GateProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_System_Module_GateProxy_Object__table; extern const CT__xdc_runtime_System_Module_GateProxy_Object__table xdc_runtime_System_Module_GateProxy_Object__table__C; /* * ======== PER-INSTANCE TYPES ======== */ /* Params */ struct xdc_runtime_System_Module_GateProxy_Params { size_t __size; const void *__self; void *__fxns; xdc_runtime_IInstance_Params *instance; xdc_runtime_IInstance_Params __iprms; }; /* Struct */ struct xdc_runtime_System_Module_GateProxy_Struct { const xdc_runtime_System_Module_GateProxy_Fxns__ *__fxns; xdc_runtime_Types_CordAddr __name; }; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_System_Module_GateProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bool (*query)(xdc_Int qual); xdc_IArg (*enter)(xdc_runtime_System_Module_GateProxy_Handle inst); void (*leave)(xdc_runtime_System_Module_GateProxy_Handle inst, xdc_IArg key); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const xdc_runtime_System_Module_GateProxy_Fxns__ xdc_runtime_System_Module_GateProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* create */ extern xdc_runtime_System_Module_GateProxy_Handle xdc_runtime_System_Module_GateProxy_create( const xdc_runtime_System_Module_GateProxy_Params *prms, xdc_runtime_Error_Block *eb); /* delete */ extern void xdc_runtime_System_Module_GateProxy_delete(xdc_runtime_System_Module_GateProxy_Handle *instp); /* Handle__label__S */ extern xdc_runtime_Types_Label *xdc_runtime_System_Module_GateProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_System_Module_GateProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr xdc_runtime_System_Module_GateProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr xdc_runtime_System_Module_GateProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr xdc_runtime_System_Module_GateProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void xdc_runtime_System_Module_GateProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool xdc_runtime_System_Module_GateProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr xdc_runtime_System_Module_GateProxy_Proxy__delegate__S( void ); /* query__E */ extern xdc_Bool xdc_runtime_System_Module_GateProxy_query__E( xdc_Int qual ); /* enter__E */ extern xdc_IArg xdc_runtime_System_Module_GateProxy_enter__E( xdc_runtime_System_Module_GateProxy_Handle __inst ); /* leave__E */ extern void xdc_runtime_System_Module_GateProxy_leave__E( xdc_runtime_System_Module_GateProxy_Handle __inst, xdc_IArg key ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_IGateProvider_Module xdc_runtime_System_Module_GateProxy_Module_upCast(void); static inline xdc_runtime_IGateProvider_Module xdc_runtime_System_Module_GateProxy_Module_upCast(void) { return (xdc_runtime_IGateProvider_Module)xdc_runtime_System_Module_GateProxy_Proxy__delegate__S(); } /* Module_to_xdc_runtime_IGateProvider */ /* Handle_upCast */ static inline xdc_runtime_IGateProvider_Handle xdc_runtime_System_Module_GateProxy_Handle_upCast(xdc_runtime_System_Module_GateProxy_Handle i); static inline xdc_runtime_IGateProvider_Handle xdc_runtime_System_Module_GateProxy_Handle_upCast(xdc_runtime_System_Module_GateProxy_Handle i) { return (xdc_runtime_IGateProvider_Handle)i; } /* Handle_to_xdc_runtime_IGateProvider */ /* Handle_downCast */ static inline xdc_runtime_System_Module_GateProxy_Handle xdc_runtime_System_Module_GateProxy_Handle_downCast(xdc_runtime_IGateProvider_Handle i); static inline xdc_runtime_System_Module_GateProxy_Handle xdc_runtime_System_Module_GateProxy_Handle_downCast(xdc_runtime_IGateProvider_Handle i) { xdc_runtime_IGateProvider_Handle i2 = (xdc_runtime_IGateProvider_Handle)i; if (xdc_runtime_System_Module_GateProxy_Proxy__abstract__S()) { return (xdc_runtime_System_Module_GateProxy_Handle)i; } return ((const void*)i2->__fxns == (const void*)xdc_runtime_System_Module_GateProxy_Proxy__delegate__S()) ? (xdc_runtime_System_Module_GateProxy_Handle)i : (xdc_runtime_System_Module_GateProxy_Handle)0; } /* Handle_from_xdc_runtime_IGateProvider */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_System_Module_GateProxy_Module__id xdc_runtime_System_Module_GateProxy_Module_id(void); static inline CT__xdc_runtime_System_Module_GateProxy_Module__id xdc_runtime_System_Module_GateProxy_Module_id( void ) { return xdc_runtime_System_Module_GateProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* Params_init */ static inline void xdc_runtime_System_Module_GateProxy_Params_init(xdc_runtime_System_Module_GateProxy_Params *prms); static inline void xdc_runtime_System_Module_GateProxy_Params_init( xdc_runtime_System_Module_GateProxy_Params *prms ) { if (prms != 0) { xdc_runtime_System_Module_GateProxy_Params__init__S(prms, 0, sizeof(xdc_runtime_System_Module_GateProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* Params_copy */ static inline void xdc_runtime_System_Module_GateProxy_Params_copy(xdc_runtime_System_Module_GateProxy_Params *dst, const xdc_runtime_System_Module_GateProxy_Params *src); static inline void xdc_runtime_System_Module_GateProxy_Params_copy(xdc_runtime_System_Module_GateProxy_Params *dst, const xdc_runtime_System_Module_GateProxy_Params *src) { if (dst != 0) { xdc_runtime_System_Module_GateProxy_Params__init__S(dst, (const void *)src, sizeof(xdc_runtime_System_Module_GateProxy_Params), sizeof(xdc_runtime_IInstance_Params)); } } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* AtexitHandler */ typedef void (*xdc_runtime_System_AtexitHandler)(xdc_Int arg1); /* STATUS_UNKNOWN */ /* AbortFxn */ typedef void (*xdc_runtime_System_AbortFxn)(void); /* ExitFxn */ typedef void (*xdc_runtime_System_ExitFxn)(xdc_Int arg1); /* * ======== INTERNAL DEFINITIONS ======== */ /* ParseData */ struct xdc_runtime_System_ParseData { xdc_Int width; xdc_Bool lFlag; xdc_Bool lJust; xdc_Int precis; xdc_UInt len; xdc_Int zpad; xdc_Char *end; xdc_Bool aFlag; xdc_Char *ptr; }; /* ExtendFxn */ typedef xdc_Int (*xdc_runtime_System_ExtendFxn)(xdc_Char** arg1, xdc_CString* arg2, xdc_VaList* arg3, xdc_runtime_System_ParseData* arg4); /* Module_State */ typedef xdc_runtime_System_AtexitHandler __T1_xdc_runtime_System_Module_State__atexitHandlers; typedef xdc_runtime_System_AtexitHandler *ARRAY1_xdc_runtime_System_Module_State__atexitHandlers; typedef const xdc_runtime_System_AtexitHandler *CARRAY1_xdc_runtime_System_Module_State__atexitHandlers; typedef ARRAY1_xdc_runtime_System_Module_State__atexitHandlers __TA_xdc_runtime_System_Module_State__atexitHandlers; /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_System_Module__diagsEnabled; extern const CT__xdc_runtime_System_Module__diagsEnabled xdc_runtime_System_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_System_Module__diagsIncluded; extern const CT__xdc_runtime_System_Module__diagsIncluded xdc_runtime_System_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_System_Module__diagsMask; extern const CT__xdc_runtime_System_Module__diagsMask xdc_runtime_System_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_System_Module__gateObj; extern const CT__xdc_runtime_System_Module__gateObj xdc_runtime_System_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_System_Module__gatePrms; extern const CT__xdc_runtime_System_Module__gatePrms xdc_runtime_System_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_System_Module__id; extern const CT__xdc_runtime_System_Module__id xdc_runtime_System_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_System_Module__loggerDefined; extern const CT__xdc_runtime_System_Module__loggerDefined xdc_runtime_System_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_System_Module__loggerObj; extern const CT__xdc_runtime_System_Module__loggerObj xdc_runtime_System_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_System_Module__loggerFxn0; extern const CT__xdc_runtime_System_Module__loggerFxn0 xdc_runtime_System_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_System_Module__loggerFxn1; extern const CT__xdc_runtime_System_Module__loggerFxn1 xdc_runtime_System_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_System_Module__loggerFxn2; extern const CT__xdc_runtime_System_Module__loggerFxn2 xdc_runtime_System_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_System_Module__loggerFxn4; extern const CT__xdc_runtime_System_Module__loggerFxn4 xdc_runtime_System_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_System_Module__loggerFxn8; extern const CT__xdc_runtime_System_Module__loggerFxn8 xdc_runtime_System_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_System_Object__count; extern const CT__xdc_runtime_System_Object__count xdc_runtime_System_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_System_Object__heap; extern const CT__xdc_runtime_System_Object__heap xdc_runtime_System_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_System_Object__sizeof; extern const CT__xdc_runtime_System_Object__sizeof xdc_runtime_System_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_System_Object__table; extern const CT__xdc_runtime_System_Object__table xdc_runtime_System_Object__table__C; /* A_cannotFitIntoArg */ typedef xdc_runtime_Assert_Id CT__xdc_runtime_System_A_cannotFitIntoArg; extern const CT__xdc_runtime_System_A_cannotFitIntoArg xdc_runtime_System_A_cannotFitIntoArg__C; /* maxAtexitHandlers */ typedef xdc_Int CT__xdc_runtime_System_maxAtexitHandlers; extern const CT__xdc_runtime_System_maxAtexitHandlers xdc_runtime_System_maxAtexitHandlers__C; /* abortFxn */ typedef xdc_runtime_System_AbortFxn CT__xdc_runtime_System_abortFxn; extern const CT__xdc_runtime_System_abortFxn xdc_runtime_System_abortFxn__C; /* exitFxn */ typedef xdc_runtime_System_ExitFxn CT__xdc_runtime_System_exitFxn; extern const CT__xdc_runtime_System_exitFxn xdc_runtime_System_exitFxn__C; /* extendFxn */ typedef xdc_runtime_System_ExtendFxn CT__xdc_runtime_System_extendFxn; extern const CT__xdc_runtime_System_extendFxn xdc_runtime_System_extendFxn__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ extern xdc_Int xdc_runtime_System_Module_startup__E( xdc_Int state ); extern xdc_Int xdc_runtime_System_Module_startup__F( xdc_Int state ); /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_System_Module__startupDone__S( void ); /* abort__E */ extern void xdc_runtime_System_abort__E( xdc_CString str ); /* abortStd__E */ extern void xdc_runtime_System_abortStd__E( void ); /* abortSpin__E */ extern void xdc_runtime_System_abortSpin__E( void ); /* atexit__E */ extern xdc_Bool xdc_runtime_System_atexit__E( xdc_runtime_System_AtexitHandler handler ); /* exit__E */ extern void xdc_runtime_System_exit__E( xdc_Int stat ); /* exitStd__E */ extern void xdc_runtime_System_exitStd__E( xdc_Int stat ); /* exitSpin__E */ extern void xdc_runtime_System_exitSpin__E( xdc_Int stat ); /* processAtExit__E */ extern void xdc_runtime_System_processAtExit__E( xdc_Int stat ); /* putch__E */ extern void xdc_runtime_System_putch__E( xdc_Char ch ); /* flush__E */ extern void xdc_runtime_System_flush__E( void ); /* printf__E */ extern xdc_Int xdc_runtime_System_printf__E( xdc_CString fmt, ... ); extern xdc_Int xdc_runtime_System_printf_va__E( xdc_CString fmt, va_list _va ); extern xdc_Int xdc_runtime_System_printf_va__F( xdc_CString fmt, va_list _va ); /* aprintf__E */ extern xdc_Int xdc_runtime_System_aprintf__E( xdc_CString fmt, ... ); extern xdc_Int xdc_runtime_System_aprintf_va__E( xdc_CString fmt, va_list _va ); extern xdc_Int xdc_runtime_System_aprintf_va__F( xdc_CString fmt, va_list _va ); /* sprintf__E */ extern xdc_Int xdc_runtime_System_sprintf__E( xdc_Char buf[], xdc_CString fmt, ... ); extern xdc_Int xdc_runtime_System_sprintf_va__E( xdc_Char buf[], xdc_CString fmt, va_list _va ); extern xdc_Int xdc_runtime_System_sprintf_va__F( xdc_Char buf[], xdc_CString fmt, va_list _va ); /* asprintf__E */ extern xdc_Int xdc_runtime_System_asprintf__E( xdc_Char buf[], xdc_CString fmt, ... ); extern xdc_Int xdc_runtime_System_asprintf_va__E( xdc_Char buf[], xdc_CString fmt, va_list _va ); extern xdc_Int xdc_runtime_System_asprintf_va__F( xdc_Char buf[], xdc_CString fmt, va_list _va ); /* vprintf__E */ extern xdc_Int xdc_runtime_System_vprintf__E( xdc_CString fmt, xdc_VaList va ); /* avprintf__E */ extern xdc_Int xdc_runtime_System_avprintf__E( xdc_CString fmt, xdc_VaList va ); /* vsprintf__E */ extern xdc_Int xdc_runtime_System_vsprintf__E( xdc_Char buf[], xdc_CString fmt, xdc_VaList va ); /* avsprintf__E */ extern xdc_Int xdc_runtime_System_avsprintf__E( xdc_Char buf[], xdc_CString fmt, xdc_VaList va ); /* snprintf__E */ extern xdc_Int xdc_runtime_System_snprintf__E( xdc_Char buf[], xdc_SizeT n, xdc_CString fmt, ... ); extern xdc_Int xdc_runtime_System_snprintf_va__E( xdc_Char buf[], xdc_SizeT n, xdc_CString fmt, va_list _va ); extern xdc_Int xdc_runtime_System_snprintf_va__F( xdc_Char buf[], xdc_SizeT n, xdc_CString fmt, va_list _va ); /* vsnprintf__E */ extern xdc_Int xdc_runtime_System_vsnprintf__E( xdc_Char buf[], xdc_SizeT n, xdc_CString fmt, xdc_VaList va ); /* printfExtend__I */ extern xdc_Int xdc_runtime_System_printfExtend__I( xdc_Char **bufp, xdc_CString *fmt, xdc_VaList *va, xdc_runtime_System_ParseData *parse ); /* doPrint__I */ extern xdc_Int xdc_runtime_System_doPrint__I( xdc_Char buf[], xdc_SizeT n, xdc_CString fmt, xdc_VaList *pva, xdc_Bool aFlag ); /* lastFxn__I */ extern void xdc_runtime_System_lastFxn__I( void ); /* putchar__I */ extern void xdc_runtime_System_putchar__I( xdc_Char **bufp, xdc_Char ch, xdc_SizeT *n ); /* rtsExit__I */ extern void xdc_runtime_System_rtsExit__I( void ); /* atexitDone__I */ extern xdc_Bool xdc_runtime_System_atexitDone__I( void ); /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_System_Module__id xdc_runtime_System_Module_id(void); static inline CT__xdc_runtime_System_Module__id xdc_runtime_System_Module_id( void ) { return xdc_runtime_System_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_System_Module_hasMask(void); static inline xdc_Bool xdc_runtime_System_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_System_Module__diagsMask__C != (CT__xdc_runtime_System_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_System_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_System_Module_getMask(void) { return (xdc_runtime_System_Module__diagsMask__C != (CT__xdc_runtime_System_Module__diagsMask)0) ? *xdc_runtime_System_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_System_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_System_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_System_Module__diagsMask__C != (CT__xdc_runtime_System_Module__diagsMask)0) { *xdc_runtime_System_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* Module_State */ struct xdc_runtime_System_Module_State { __TA_xdc_runtime_System_Module_State__atexitHandlers atexitHandlers; xdc_Int numAtexitHandlers; }; /* Module__state__V */ extern struct xdc_runtime_System_Module_State__ xdc_runtime_System_Module__state__V; /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * CONVERTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * CONVERTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Timestamp_SupportProxy_Module__diagsEnabled; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__diagsEnabled xdc_runtime_Timestamp_SupportProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Timestamp_SupportProxy_Module__diagsIncluded; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__diagsIncluded xdc_runtime_Timestamp_SupportProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Timestamp_SupportProxy_Module__diagsMask; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__diagsMask xdc_runtime_Timestamp_SupportProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Timestamp_SupportProxy_Module__gateObj; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__gateObj xdc_runtime_Timestamp_SupportProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Timestamp_SupportProxy_Module__gatePrms; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__gatePrms xdc_runtime_Timestamp_SupportProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Timestamp_SupportProxy_Module__id; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__id xdc_runtime_Timestamp_SupportProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerDefined; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerDefined xdc_runtime_Timestamp_SupportProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerObj; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerObj xdc_runtime_Timestamp_SupportProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn0; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn0 xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn1; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn1 xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn2; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn2 xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn4; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn4 xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn8; extern const CT__xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn8 xdc_runtime_Timestamp_SupportProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Timestamp_SupportProxy_Object__count; extern const CT__xdc_runtime_Timestamp_SupportProxy_Object__count xdc_runtime_Timestamp_SupportProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Timestamp_SupportProxy_Object__heap; extern const CT__xdc_runtime_Timestamp_SupportProxy_Object__heap xdc_runtime_Timestamp_SupportProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Timestamp_SupportProxy_Object__sizeof; extern const CT__xdc_runtime_Timestamp_SupportProxy_Object__sizeof xdc_runtime_Timestamp_SupportProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Timestamp_SupportProxy_Object__table; extern const CT__xdc_runtime_Timestamp_SupportProxy_Object__table xdc_runtime_Timestamp_SupportProxy_Object__table__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_Timestamp_SupportProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bits32 (*get32)(void); void (*get64)(xdc_runtime_Types_Timestamp64* result); void (*getFreq)(xdc_runtime_Types_FreqHz* freq); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const xdc_runtime_Timestamp_SupportProxy_Fxns__ xdc_runtime_Timestamp_SupportProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Handle__label__S */ extern xdc_runtime_Types_Label *xdc_runtime_Timestamp_SupportProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Timestamp_SupportProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr xdc_runtime_Timestamp_SupportProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr xdc_runtime_Timestamp_SupportProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr xdc_runtime_Timestamp_SupportProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void xdc_runtime_Timestamp_SupportProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool xdc_runtime_Timestamp_SupportProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr xdc_runtime_Timestamp_SupportProxy_Proxy__delegate__S( void ); /* get32__E */ extern xdc_Bits32 xdc_runtime_Timestamp_SupportProxy_get32__E( void ); /* get64__E */ extern void xdc_runtime_Timestamp_SupportProxy_get64__E( xdc_runtime_Types_Timestamp64 *result ); /* getFreq__E */ extern void xdc_runtime_Timestamp_SupportProxy_getFreq__E( xdc_runtime_Types_FreqHz *freq ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_ITimestampProvider_Module xdc_runtime_Timestamp_SupportProxy_Module_upCast(void); static inline xdc_runtime_ITimestampProvider_Module xdc_runtime_Timestamp_SupportProxy_Module_upCast(void) { return (xdc_runtime_ITimestampProvider_Module)xdc_runtime_Timestamp_SupportProxy_Proxy__delegate__S(); } /* Module_to_xdc_runtime_ITimestampProvider */ /* Module_upCast2 */ static inline xdc_runtime_ITimestampClient_Module xdc_runtime_Timestamp_SupportProxy_Module_upCast2(void); static inline xdc_runtime_ITimestampClient_Module xdc_runtime_Timestamp_SupportProxy_Module_upCast2(void) { return (xdc_runtime_ITimestampClient_Module)xdc_runtime_Timestamp_SupportProxy_Proxy__delegate__S(); } /* Module_to_xdc_runtime_ITimestampClient */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Timestamp_SupportProxy_Module__id xdc_runtime_Timestamp_SupportProxy_Module_id(void); static inline CT__xdc_runtime_Timestamp_SupportProxy_Module__id xdc_runtime_Timestamp_SupportProxy_Module_id( void ) { return xdc_runtime_Timestamp_SupportProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_Timestamp_Module__diagsEnabled; extern const CT__xdc_runtime_Timestamp_Module__diagsEnabled xdc_runtime_Timestamp_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_Timestamp_Module__diagsIncluded; extern const CT__xdc_runtime_Timestamp_Module__diagsIncluded xdc_runtime_Timestamp_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_Timestamp_Module__diagsMask; extern const CT__xdc_runtime_Timestamp_Module__diagsMask xdc_runtime_Timestamp_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_Timestamp_Module__gateObj; extern const CT__xdc_runtime_Timestamp_Module__gateObj xdc_runtime_Timestamp_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_Timestamp_Module__gatePrms; extern const CT__xdc_runtime_Timestamp_Module__gatePrms xdc_runtime_Timestamp_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_Timestamp_Module__id; extern const CT__xdc_runtime_Timestamp_Module__id xdc_runtime_Timestamp_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_Timestamp_Module__loggerDefined; extern const CT__xdc_runtime_Timestamp_Module__loggerDefined xdc_runtime_Timestamp_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_Timestamp_Module__loggerObj; extern const CT__xdc_runtime_Timestamp_Module__loggerObj xdc_runtime_Timestamp_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_Timestamp_Module__loggerFxn0; extern const CT__xdc_runtime_Timestamp_Module__loggerFxn0 xdc_runtime_Timestamp_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_Timestamp_Module__loggerFxn1; extern const CT__xdc_runtime_Timestamp_Module__loggerFxn1 xdc_runtime_Timestamp_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_Timestamp_Module__loggerFxn2; extern const CT__xdc_runtime_Timestamp_Module__loggerFxn2 xdc_runtime_Timestamp_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_Timestamp_Module__loggerFxn4; extern const CT__xdc_runtime_Timestamp_Module__loggerFxn4 xdc_runtime_Timestamp_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_Timestamp_Module__loggerFxn8; extern const CT__xdc_runtime_Timestamp_Module__loggerFxn8 xdc_runtime_Timestamp_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_Timestamp_Object__count; extern const CT__xdc_runtime_Timestamp_Object__count xdc_runtime_Timestamp_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_Timestamp_Object__heap; extern const CT__xdc_runtime_Timestamp_Object__heap xdc_runtime_Timestamp_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_Timestamp_Object__sizeof; extern const CT__xdc_runtime_Timestamp_Object__sizeof xdc_runtime_Timestamp_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_Timestamp_Object__table; extern const CT__xdc_runtime_Timestamp_Object__table xdc_runtime_Timestamp_Object__table__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_Timestamp_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bits32 (*get32)(void); void (*get64)(xdc_runtime_Types_Timestamp64* result); void (*getFreq)(xdc_runtime_Types_FreqHz* freq); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const xdc_runtime_Timestamp_Fxns__ xdc_runtime_Timestamp_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_Timestamp_Module__startupDone__S( void ); /* get32__E */ extern xdc_Bits32 xdc_runtime_Timestamp_get32__E( void ); /* get64__E */ extern void xdc_runtime_Timestamp_get64__E( xdc_runtime_Types_Timestamp64 *result ); /* getFreq__E */ extern void xdc_runtime_Timestamp_getFreq__E( xdc_runtime_Types_FreqHz *freq ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_ITimestampClient_Module xdc_runtime_Timestamp_Module_upCast(void); static inline xdc_runtime_ITimestampClient_Module xdc_runtime_Timestamp_Module_upCast(void) { return (xdc_runtime_ITimestampClient_Module)&xdc_runtime_Timestamp_Module__FXNS__C; } /* Module_to_xdc_runtime_ITimestampClient */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_Timestamp_Module__id xdc_runtime_Timestamp_Module_id(void); static inline CT__xdc_runtime_Timestamp_Module__id xdc_runtime_Timestamp_Module_id( void ) { return xdc_runtime_Timestamp_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_Timestamp_Module_hasMask(void); static inline xdc_Bool xdc_runtime_Timestamp_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_Timestamp_Module__diagsMask__C != (CT__xdc_runtime_Timestamp_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_Timestamp_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_Timestamp_Module_getMask(void) { return (xdc_runtime_Timestamp_Module__diagsMask__C != (CT__xdc_runtime_Timestamp_Module__diagsMask)0) ? *xdc_runtime_Timestamp_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_Timestamp_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_Timestamp_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_Timestamp_Module__diagsMask__C != (CT__xdc_runtime_Timestamp_Module__diagsMask)0) { *xdc_runtime_Timestamp_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * CONVERTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__xdc_runtime_TimestampNull_Module__diagsEnabled; extern const CT__xdc_runtime_TimestampNull_Module__diagsEnabled xdc_runtime_TimestampNull_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__xdc_runtime_TimestampNull_Module__diagsIncluded; extern const CT__xdc_runtime_TimestampNull_Module__diagsIncluded xdc_runtime_TimestampNull_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__xdc_runtime_TimestampNull_Module__diagsMask; extern const CT__xdc_runtime_TimestampNull_Module__diagsMask xdc_runtime_TimestampNull_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__xdc_runtime_TimestampNull_Module__gateObj; extern const CT__xdc_runtime_TimestampNull_Module__gateObj xdc_runtime_TimestampNull_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__xdc_runtime_TimestampNull_Module__gatePrms; extern const CT__xdc_runtime_TimestampNull_Module__gatePrms xdc_runtime_TimestampNull_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__xdc_runtime_TimestampNull_Module__id; extern const CT__xdc_runtime_TimestampNull_Module__id xdc_runtime_TimestampNull_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__xdc_runtime_TimestampNull_Module__loggerDefined; extern const CT__xdc_runtime_TimestampNull_Module__loggerDefined xdc_runtime_TimestampNull_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__xdc_runtime_TimestampNull_Module__loggerObj; extern const CT__xdc_runtime_TimestampNull_Module__loggerObj xdc_runtime_TimestampNull_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__xdc_runtime_TimestampNull_Module__loggerFxn0; extern const CT__xdc_runtime_TimestampNull_Module__loggerFxn0 xdc_runtime_TimestampNull_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__xdc_runtime_TimestampNull_Module__loggerFxn1; extern const CT__xdc_runtime_TimestampNull_Module__loggerFxn1 xdc_runtime_TimestampNull_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__xdc_runtime_TimestampNull_Module__loggerFxn2; extern const CT__xdc_runtime_TimestampNull_Module__loggerFxn2 xdc_runtime_TimestampNull_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__xdc_runtime_TimestampNull_Module__loggerFxn4; extern const CT__xdc_runtime_TimestampNull_Module__loggerFxn4 xdc_runtime_TimestampNull_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__xdc_runtime_TimestampNull_Module__loggerFxn8; extern const CT__xdc_runtime_TimestampNull_Module__loggerFxn8 xdc_runtime_TimestampNull_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__xdc_runtime_TimestampNull_Object__count; extern const CT__xdc_runtime_TimestampNull_Object__count xdc_runtime_TimestampNull_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__xdc_runtime_TimestampNull_Object__heap; extern const CT__xdc_runtime_TimestampNull_Object__heap xdc_runtime_TimestampNull_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__xdc_runtime_TimestampNull_Object__sizeof; extern const CT__xdc_runtime_TimestampNull_Object__sizeof xdc_runtime_TimestampNull_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__xdc_runtime_TimestampNull_Object__table; extern const CT__xdc_runtime_TimestampNull_Object__table xdc_runtime_TimestampNull_Object__table__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct xdc_runtime_TimestampNull_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_Bits32 (*get32)(void); void (*get64)(xdc_runtime_Types_Timestamp64* result); void (*getFreq)(xdc_runtime_Types_FreqHz* freq); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const xdc_runtime_TimestampNull_Fxns__ xdc_runtime_TimestampNull_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool xdc_runtime_TimestampNull_Module__startupDone__S( void ); /* get32__E */ extern xdc_Bits32 xdc_runtime_TimestampNull_get32__E( void ); /* get64__E */ extern void xdc_runtime_TimestampNull_get64__E( xdc_runtime_Types_Timestamp64 *result ); /* getFreq__E */ extern void xdc_runtime_TimestampNull_getFreq__E( xdc_runtime_Types_FreqHz *freq ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline xdc_runtime_ITimestampProvider_Module xdc_runtime_TimestampNull_Module_upCast(void); static inline xdc_runtime_ITimestampProvider_Module xdc_runtime_TimestampNull_Module_upCast(void) { return (xdc_runtime_ITimestampProvider_Module)&xdc_runtime_TimestampNull_Module__FXNS__C; } /* Module_to_xdc_runtime_ITimestampProvider */ /* Module_upCast2 */ static inline xdc_runtime_ITimestampClient_Module xdc_runtime_TimestampNull_Module_upCast2(void); static inline xdc_runtime_ITimestampClient_Module xdc_runtime_TimestampNull_Module_upCast2(void) { return (xdc_runtime_ITimestampClient_Module)&xdc_runtime_TimestampNull_Module__FXNS__C; } /* Module_to_xdc_runtime_ITimestampClient */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__xdc_runtime_TimestampNull_Module__id xdc_runtime_TimestampNull_Module_id(void); static inline CT__xdc_runtime_TimestampNull_Module__id xdc_runtime_TimestampNull_Module_id( void ) { return xdc_runtime_TimestampNull_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool xdc_runtime_TimestampNull_Module_hasMask(void); static inline xdc_Bool xdc_runtime_TimestampNull_Module_hasMask(void) { return (xdc_Bool)(xdc_runtime_TimestampNull_Module__diagsMask__C != (CT__xdc_runtime_TimestampNull_Module__diagsMask)0); } /* Module_getMask */ static inline xdc_Bits16 xdc_runtime_TimestampNull_Module_getMask(void); static inline xdc_Bits16 xdc_runtime_TimestampNull_Module_getMask(void) { return (xdc_runtime_TimestampNull_Module__diagsMask__C != (CT__xdc_runtime_TimestampNull_Module__diagsMask)0) ? *xdc_runtime_TimestampNull_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void xdc_runtime_TimestampNull_Module_setMask(xdc_Bits16 mask); static inline void xdc_runtime_TimestampNull_Module_setMask(xdc_Bits16 mask) { if (xdc_runtime_TimestampNull_Module__diagsMask__C != (CT__xdc_runtime_TimestampNull_Module__diagsMask)0) { *xdc_runtime_TimestampNull_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* suppress 'type qualifier is meaningless on cast type' warning */ #pragma diag_suppress 193 /* * ======== ti.sysbios.BIOS INTERNALS ======== */ /* * ======== ti.sysbios.BIOS_RtsGateProxy INTERNALS ======== */ /* @@@ ti_sysbios_knl_Queue_Object__ */ typedef struct ti_sysbios_knl_Queue_Object__ { ti_sysbios_knl_Queue_Elem elem; } ti_sysbios_knl_Queue_Object__; /* @@@ ti_sysbios_knl_Queue_Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_knl_Queue_Object__ obj; } ti_sysbios_knl_Queue_Object2__; /* @@@ ti_sysbios_knl_Semaphore_Object__ */ typedef struct ti_sysbios_knl_Semaphore_Object__ { ti_sysbios_knl_Event_Handle event; xdc_UInt eventId; ti_sysbios_knl_Semaphore_Mode mode; volatile xdc_UInt16 count; ti_sysbios_knl_Queue_Object__ Object_field_pendQ; } ti_sysbios_knl_Semaphore_Object__; /* @@@ ti_sysbios_knl_Semaphore_Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_knl_Semaphore_Object__ obj; } ti_sysbios_knl_Semaphore_Object2__; /* Object__ */ typedef struct ti_sysbios_gates_GateMutex_Object__ { const ti_sysbios_gates_GateMutex_Fxns__ *__fxns; ti_sysbios_knl_Task_Handle owner; ti_sysbios_knl_Semaphore_Object__ Object_field_sem; } ti_sysbios_gates_GateMutex_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_gates_GateMutex_Object__ obj; } ti_sysbios_gates_GateMutex_Object2__; /* Object */ typedef ti_sysbios_gates_GateMutex_Object__ ti_sysbios_BIOS_RtsGateProxy_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_BIOS_RtsGateProxy_Object__ obj; } ti_sysbios_BIOS_RtsGateProxy_Object2__; /* * ======== ti.sysbios.family.c28.Hwi INTERNALS ======== */ /* Object__ */ typedef struct ti_sysbios_family_c28_Hwi_Object__ { const ti_sysbios_family_c28_Hwi_Fxns__ *__fxns; xdc_UInt intNum; xdc_Bool enableInt; xdc_Bool enableAck; xdc_Bits16 disableMask; xdc_Bits16 restoreMask; xdc_Bits16 ierBitMask; xdc_UArg arg; ti_sysbios_family_c28_Hwi_FuncPtr fxn; ti_sysbios_family_c28_Hwi_Irp irp; __TA_ti_sysbios_family_c28_Hwi_Instance_State__hookEnv hookEnv; } ti_sysbios_family_c28_Hwi_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_family_c28_Hwi_Object__ obj; } ti_sysbios_family_c28_Hwi_Object2__; /* * ======== ti.sysbios.family.c28.IntrinsicsSupport INTERNALS ======== */ /* * ======== ti.sysbios.family.c28.TaskSupport INTERNALS ======== */ /* * ======== ti.sysbios.family.c28.Timer INTERNALS ======== */ /* Object__ */ typedef struct ti_sysbios_family_c28_Timer_Object__ { const ti_sysbios_family_c28_Timer_Fxns__ *__fxns; xdc_Int id; ti_sysbios_family_c28_Timer_EmulationMode emulationModeInit; ti_sysbios_interfaces_ITimer_RunMode runMode; ti_sysbios_interfaces_ITimer_StartMode startMode; xdc_UInt32 period; ti_sysbios_interfaces_ITimer_PeriodType periodType; xdc_UInt16 prescale; xdc_UInt intNum; xdc_UArg arg; ti_sysbios_family_c28_Hwi_FuncPtr tickFxn; xdc_runtime_Types_FreqHz extFreq; ti_sysbios_family_c28_Hwi_Handle hwi; } ti_sysbios_family_c28_Timer_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_family_c28_Timer_Object__ obj; } ti_sysbios_family_c28_Timer_Object2__; /* * ======== ti.sysbios.family.c28.f2837x.TimestampProvider INTERNALS ======== */ /* * ======== ti.sysbios.gates.GateHwi INTERNALS ======== */ /* Object__ */ typedef struct ti_sysbios_gates_GateHwi_Object__ { const ti_sysbios_gates_GateHwi_Fxns__ *__fxns; } ti_sysbios_gates_GateHwi_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_gates_GateHwi_Object__ obj; } ti_sysbios_gates_GateHwi_Object2__; /* * ======== ti.sysbios.gates.GateMutex INTERNALS ======== */ /* <-- ti_sysbios_gates_GateMutex_Object */ /* * ======== ti.sysbios.hal.Hwi INTERNALS ======== */ /* Object__ */ typedef struct ti_sysbios_hal_Hwi_Object__ { const ti_sysbios_hal_Hwi_Fxns__ *__fxns; ti_sysbios_hal_Hwi_HwiProxy_Handle pi; } ti_sysbios_hal_Hwi_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_hal_Hwi_Object__ obj; } ti_sysbios_hal_Hwi_Object2__; /* * ======== ti.sysbios.hal.Hwi_HwiProxy INTERNALS ======== */ /* <-- ti_sysbios_family_c28_Hwi_Object */ /* Object */ typedef ti_sysbios_family_c28_Hwi_Object__ ti_sysbios_hal_Hwi_HwiProxy_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_hal_Hwi_HwiProxy_Object__ obj; } ti_sysbios_hal_Hwi_HwiProxy_Object2__; /* * ======== ti.sysbios.hal.Timer INTERNALS ======== */ /* Object__ */ typedef struct ti_sysbios_hal_Timer_Object__ { const ti_sysbios_hal_Timer_Fxns__ *__fxns; ti_sysbios_hal_Timer_TimerProxy_Handle pi; } ti_sysbios_hal_Timer_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_hal_Timer_Object__ obj; } ti_sysbios_hal_Timer_Object2__; /* * ======== ti.sysbios.hal.Timer_TimerProxy INTERNALS ======== */ /* <-- ti_sysbios_family_c28_Timer_Object */ /* Object */ typedef ti_sysbios_family_c28_Timer_Object__ ti_sysbios_hal_Timer_TimerProxy_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_hal_Timer_TimerProxy_Object__ obj; } ti_sysbios_hal_Timer_TimerProxy_Object2__; /* * ======== ti.sysbios.heaps.HeapMem INTERNALS ======== */ /* Object__ */ typedef struct ti_sysbios_heaps_HeapMem_Object__ { const ti_sysbios_heaps_HeapMem_Fxns__ *__fxns; xdc_runtime_Memory_Size align; __TA_ti_sysbios_heaps_HeapMem_Instance_State__buf buf; ti_sysbios_heaps_HeapMem_Header head; xdc_SizeT minBlockAlign; } ti_sysbios_heaps_HeapMem_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_heaps_HeapMem_Object__ obj; } ti_sysbios_heaps_HeapMem_Object2__; /* * ======== ti.sysbios.heaps.HeapMem_Module_GateProxy INTERNALS ======== */ /* <-- ti_sysbios_gates_GateMutex_Object */ /* Object */ typedef ti_sysbios_gates_GateMutex_Object__ ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__ obj; } ti_sysbios_heaps_HeapMem_Module_GateProxy_Object2__; /* * ======== ti.sysbios.knl.Clock INTERNALS ======== */ /* <-- ti_sysbios_knl_Queue_Object */ /* Object__ */ typedef struct ti_sysbios_knl_Clock_Object__ { ti_sysbios_knl_Queue_Elem elem; xdc_UInt32 timeout; xdc_UInt32 currTimeout; xdc_UInt32 period; volatile xdc_Bool active; ti_sysbios_knl_Clock_FuncPtr fxn; xdc_UArg arg; } ti_sysbios_knl_Clock_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_knl_Clock_Object__ obj; } ti_sysbios_knl_Clock_Object2__; /* * ======== ti.sysbios.knl.Clock_TimerProxy INTERNALS ======== */ /* <-- ti_sysbios_family_c28_Timer_Object */ /* Object */ typedef ti_sysbios_family_c28_Timer_Object__ ti_sysbios_knl_Clock_TimerProxy_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_knl_Clock_TimerProxy_Object__ obj; } ti_sysbios_knl_Clock_TimerProxy_Object2__; /* * ======== ti.sysbios.knl.Idle INTERNALS ======== */ /* * ======== ti.sysbios.knl.Intrinsics INTERNALS ======== */ /* * ======== ti.sysbios.knl.Intrinsics_SupportProxy INTERNALS ======== */ /* * ======== ti.sysbios.knl.Queue INTERNALS ======== */ /* <-- ti_sysbios_knl_Queue_Object */ /* * ======== ti.sysbios.knl.Semaphore INTERNALS ======== */ /* <-- ti_sysbios_knl_Semaphore_Object */ /* * ======== ti.sysbios.knl.Swi INTERNALS ======== */ /* Object__ */ typedef struct ti_sysbios_knl_Swi_Object__ { ti_sysbios_knl_Queue_Elem qElem; ti_sysbios_knl_Swi_FuncPtr fxn; xdc_UArg arg0; xdc_UArg arg1; xdc_UInt priority; xdc_UInt mask; xdc_Bool posted; xdc_UInt initTrigger; xdc_UInt trigger; ti_sysbios_knl_Queue_Handle readyQ; __TA_ti_sysbios_knl_Swi_Instance_State__hookEnv hookEnv; } ti_sysbios_knl_Swi_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_knl_Swi_Object__ obj; } ti_sysbios_knl_Swi_Object2__; /* * ======== ti.sysbios.knl.Task INTERNALS ======== */ /* <-- ti_sysbios_knl_Queue_Object */ /* Object__ */ typedef struct ti_sysbios_knl_Task_Object__ { ti_sysbios_knl_Queue_Elem qElem; volatile xdc_Int priority; xdc_UInt mask; xdc_Ptr context; ti_sysbios_knl_Task_Mode mode; ti_sysbios_knl_Task_PendElem *pendElem; xdc_SizeT stackSize; __TA_ti_sysbios_knl_Task_Instance_State__stack stack; xdc_runtime_IHeap_Handle stackHeap; ti_sysbios_knl_Task_FuncPtr fxn; xdc_UArg arg0; xdc_UArg arg1; xdc_Ptr env; __TA_ti_sysbios_knl_Task_Instance_State__hookEnv hookEnv; xdc_Bool vitalTaskFlag; ti_sysbios_knl_Queue_Handle readyQ; xdc_UInt curCoreId; xdc_UInt affinity; } ti_sysbios_knl_Task_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; ti_sysbios_knl_Task_Object__ obj; } ti_sysbios_knl_Task_Object2__; /* * ======== ti.sysbios.knl.Task_SupportProxy INTERNALS ======== */ /* * ======== ti.sysbios.utils.Load INTERNALS ======== */ /* * ======== xdc.runtime.Assert INTERNALS ======== */ /* * ======== xdc.runtime.Core INTERNALS ======== */ /* * ======== xdc.runtime.Defaults INTERNALS ======== */ /* * ======== xdc.runtime.Diags INTERNALS ======== */ /* * ======== xdc.runtime.Error INTERNALS ======== */ /* * ======== xdc.runtime.Gate INTERNALS ======== */ /* * ======== xdc.runtime.Log INTERNALS ======== */ /* * ======== xdc.runtime.Main INTERNALS ======== */ /* * ======== xdc.runtime.Main_Module_GateProxy INTERNALS ======== */ /* <-- ti_sysbios_gates_GateHwi_Object */ /* Object */ typedef ti_sysbios_gates_GateHwi_Object__ xdc_runtime_Main_Module_GateProxy_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; xdc_runtime_Main_Module_GateProxy_Object__ obj; } xdc_runtime_Main_Module_GateProxy_Object2__; /* * ======== xdc.runtime.Memory INTERNALS ======== */ /* * ======== xdc.runtime.Memory_HeapProxy INTERNALS ======== */ /* <-- ti_sysbios_heaps_HeapMem_Object */ /* Object */ typedef ti_sysbios_heaps_HeapMem_Object__ xdc_runtime_Memory_HeapProxy_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; xdc_runtime_Memory_HeapProxy_Object__ obj; } xdc_runtime_Memory_HeapProxy_Object2__; /* * ======== xdc.runtime.Registry INTERNALS ======== */ /* * ======== xdc.runtime.Startup INTERNALS ======== */ /* * ======== xdc.runtime.SysMin INTERNALS ======== */ /* * ======== xdc.runtime.System INTERNALS ======== */ /* * ======== xdc.runtime.System_Module_GateProxy INTERNALS ======== */ /* <-- ti_sysbios_gates_GateHwi_Object */ /* Object */ typedef ti_sysbios_gates_GateHwi_Object__ xdc_runtime_System_Module_GateProxy_Object__; /* Object2__ */ typedef struct { xdc_runtime_Types_InstHdr hdr; xdc_runtime_System_Module_GateProxy_Object__ obj; } xdc_runtime_System_Module_GateProxy_Object2__; /* * ======== xdc.runtime.System_SupportProxy INTERNALS ======== */ /* * ======== xdc.runtime.Text INTERNALS ======== */ /* * ======== xdc.runtime.Timestamp INTERNALS ======== */ /* * ======== xdc.runtime.TimestampNull INTERNALS ======== */ /* * ======== xdc.runtime.Timestamp_SupportProxy INTERNALS ======== */ /* * ======== INHERITS ======== */ #pragma DATA_SECTION(xdc_runtime_IHeap_Interface__BASE__C, ".econst:xdc_runtime_IHeap_Interface__BASE__C"); asm(" .sect \".econst:xdc_runtime_IHeap_Interface__BASE__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_IHeap_Interface__BASE__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_IHeap_Interface__BASE__C\""); asm(" .clink "); const xdc_runtime_Types_Base xdc_runtime_IHeap_Interface__BASE__C = {&xdc_runtime_IModule_Interface__BASE__C}; #pragma DATA_SECTION(xdc_runtime_ISystemSupport_Interface__BASE__C, ".econst:xdc_runtime_ISystemSupport_Interface__BASE__C"); asm(" .sect \".econst:xdc_runtime_ISystemSupport_Interface__BASE__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_ISystemSupport_Interface__BASE__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_ISystemSupport_Interface__BASE__C\""); asm(" .clink "); const xdc_runtime_Types_Base xdc_runtime_ISystemSupport_Interface__BASE__C = {&xdc_runtime_IModule_Interface__BASE__C}; #pragma DATA_SECTION(xdc_runtime_ITimestampProvider_Interface__BASE__C, ".econst:xdc_runtime_ITimestampProvider_Interface__BASE__C"); asm(" .sect \".econst:xdc_runtime_ITimestampProvider_Interface__BASE__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_ITimestampProvider_Interface__BASE__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_ITimestampProvider_Interface__BASE__C\""); asm(" .clink "); const xdc_runtime_Types_Base xdc_runtime_ITimestampProvider_Interface__BASE__C = {&xdc_runtime_ITimestampClient_Interface__BASE__C}; #pragma DATA_SECTION(xdc_runtime_IGateProvider_Interface__BASE__C, ".econst:xdc_runtime_IGateProvider_Interface__BASE__C"); asm(" .sect \".econst:xdc_runtime_IGateProvider_Interface__BASE__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_IGateProvider_Interface__BASE__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_IGateProvider_Interface__BASE__C\""); asm(" .clink "); const xdc_runtime_Types_Base xdc_runtime_IGateProvider_Interface__BASE__C = {&xdc_runtime_IModule_Interface__BASE__C}; #pragma DATA_SECTION(xdc_runtime_IModule_Interface__BASE__C, ".econst:xdc_runtime_IModule_Interface__BASE__C"); asm(" .sect \".econst:xdc_runtime_IModule_Interface__BASE__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_IModule_Interface__BASE__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_IModule_Interface__BASE__C\""); asm(" .clink "); const xdc_runtime_Types_Base xdc_runtime_IModule_Interface__BASE__C = {0}; #pragma DATA_SECTION(xdc_runtime_ITimestampClient_Interface__BASE__C, ".econst:xdc_runtime_ITimestampClient_Interface__BASE__C"); asm(" .sect \".econst:xdc_runtime_ITimestampClient_Interface__BASE__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_ITimestampClient_Interface__BASE__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_ITimestampClient_Interface__BASE__C\""); asm(" .clink "); const xdc_runtime_Types_Base xdc_runtime_ITimestampClient_Interface__BASE__C = {&xdc_runtime_IModule_Interface__BASE__C}; /* * ======== ti.sysbios.gates.GateHwi VTABLE ======== */ /* Module__FXNS__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__FXNS__C, ".econst:ti_sysbios_gates_GateHwi_Module__FXNS__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__FXNS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__FXNS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__FXNS__C\""); asm(" .clink "); const ti_sysbios_gates_GateHwi_Fxns__ ti_sysbios_gates_GateHwi_Module__FXNS__C = { &xdc_runtime_IGateProvider_Interface__BASE__C, /* __base */ &ti_sysbios_gates_GateHwi_Module__FXNS__C.__sfxns, /* __sysp */ ti_sysbios_gates_GateHwi_query__E, ti_sysbios_gates_GateHwi_enter__E, ti_sysbios_gates_GateHwi_leave__E, { 0, /* __create */ 0, /* __delete */ 0, /* __label */ 0x29, /* __mid */ } /* __sfxns */ }; /* * ======== ti.sysbios.gates.GateMutex VTABLE ======== */ /* Module__FXNS__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__FXNS__C, ".econst:ti_sysbios_gates_GateMutex_Module__FXNS__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__FXNS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__FXNS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__FXNS__C\""); asm(" .clink "); const ti_sysbios_gates_GateMutex_Fxns__ ti_sysbios_gates_GateMutex_Module__FXNS__C = { &xdc_runtime_IGateProvider_Interface__BASE__C, /* __base */ &ti_sysbios_gates_GateMutex_Module__FXNS__C.__sfxns, /* __sysp */ ti_sysbios_gates_GateMutex_query__E, ti_sysbios_gates_GateMutex_enter__E, ti_sysbios_gates_GateMutex_leave__E, { 0, /* __create */ 0, /* __delete */ 0, /* __label */ 0x2a, /* __mid */ } /* __sfxns */ }; /* * ======== ti.sysbios.heaps.HeapMem VTABLE ======== */ /* Module__FXNS__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__FXNS__C, ".econst:ti_sysbios_heaps_HeapMem_Module__FXNS__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__FXNS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__FXNS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__FXNS__C\""); asm(" .clink "); const ti_sysbios_heaps_HeapMem_Fxns__ ti_sysbios_heaps_HeapMem_Module__FXNS__C = { &xdc_runtime_IHeap_Interface__BASE__C, /* __base */ &ti_sysbios_heaps_HeapMem_Module__FXNS__C.__sfxns, /* __sysp */ ti_sysbios_heaps_HeapMem_alloc__E, ti_sysbios_heaps_HeapMem_free__E, ti_sysbios_heaps_HeapMem_isBlocking__E, ti_sysbios_heaps_HeapMem_getStats__E, { 0, /* __create */ 0, /* __delete */ 0, /* __label */ 0x2b, /* __mid */ } /* __sfxns */ }; /* * ======== xdc.runtime.SysMin VTABLE ======== */ /* Module__FXNS__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__FXNS__C, ".econst:xdc_runtime_SysMin_Module__FXNS__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__FXNS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__FXNS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__FXNS__C\""); asm(" .clink "); const xdc_runtime_SysMin_Fxns__ xdc_runtime_SysMin_Module__FXNS__C = { &xdc_runtime_ISystemSupport_Interface__BASE__C, /* __base */ &xdc_runtime_SysMin_Module__FXNS__C.__sfxns, /* __sysp */ xdc_runtime_SysMin_abort__E, xdc_runtime_SysMin_exit__E, xdc_runtime_SysMin_flush__E, xdc_runtime_SysMin_putch__E, xdc_runtime_SysMin_ready__E, { 0, /* __create */ 0, /* __delete */ 0, /* __label */ 0xb, /* __mid */ } /* __sfxns */ }; /* * ======== xdc.runtime.Timestamp VTABLE ======== */ /* Module__FXNS__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__FXNS__C, ".econst:xdc_runtime_Timestamp_Module__FXNS__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__FXNS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__FXNS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__FXNS__C\""); asm(" .clink "); const xdc_runtime_Timestamp_Fxns__ xdc_runtime_Timestamp_Module__FXNS__C = { &xdc_runtime_ITimestampClient_Interface__BASE__C, /* __base */ &xdc_runtime_Timestamp_Module__FXNS__C.__sfxns, /* __sysp */ xdc_runtime_Timestamp_get32__E, xdc_runtime_Timestamp_get64__E, xdc_runtime_Timestamp_getFreq__E, { 0, /* __create */ 0, /* __delete */ 0, /* __label */ 0xd, /* __mid */ } /* __sfxns */ }; /* * ======== xdc.runtime.TimestampNull VTABLE ======== */ /* Module__FXNS__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__FXNS__C, ".econst:xdc_runtime_TimestampNull_Module__FXNS__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__FXNS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__FXNS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__FXNS__C\""); asm(" .clink "); const xdc_runtime_TimestampNull_Fxns__ xdc_runtime_TimestampNull_Module__FXNS__C = { &xdc_runtime_ITimestampProvider_Interface__BASE__C, /* __base */ &xdc_runtime_TimestampNull_Module__FXNS__C.__sfxns, /* __sysp */ xdc_runtime_TimestampNull_get32__E, xdc_runtime_TimestampNull_get64__E, xdc_runtime_TimestampNull_getFreq__E, { 0, /* __create */ 0, /* __delete */ 0, /* __label */ 0xe, /* __mid */ } /* __sfxns */ }; /* * ======== ti.sysbios.BIOS DECLARATIONS ======== */ /* Module_State__ */ typedef struct ti_sysbios_BIOS_Module_State__ { xdc_runtime_Types_FreqHz cpuFreq; xdc_UInt rtsGateCount; xdc_IArg rtsGateKey; ti_sysbios_BIOS_RtsGateProxy_Handle rtsGate; ti_sysbios_BIOS_ThreadType threadType; __TA_ti_sysbios_BIOS_Module_State__smpThreadType smpThreadType; volatile ti_sysbios_BIOS_StartFuncPtr startFunc; volatile ti_sysbios_BIOS_ExitFuncPtr exitFunc; } ti_sysbios_BIOS_Module_State__; /* --> ti_sysbios_BIOS_startFunc */ extern void ti_sysbios_BIOS_startFunc__I(void); /* --> ti_sysbios_BIOS_exitFunc */ extern void ti_sysbios_BIOS_exitFunc__I(xdc_Int); /* Module__state__V */ ti_sysbios_BIOS_Module_State__ ti_sysbios_BIOS_Module__state__V; /* * ======== ti.sysbios.BIOS_RtsGateProxy DECLARATIONS ======== */ /* * ======== ti.sysbios.family.c28.Hwi DECLARATIONS ======== */ /* --> SpiA_ISR */ extern void SpiA_ISR(xdc_UArg); /* --> SpiC_ISR */ extern void SpiC_ISR(xdc_UArg); /* --> i2c_int1b_isr */ extern void i2c_int1b_isr(xdc_UArg); /* --> i2c_int1a_isr */ extern void i2c_int1a_isr(xdc_UArg); /* --> cycle_Timer_ISR */ extern void cycle_Timer_ISR(xdc_UArg); /* Object__table__V */ ti_sysbios_family_c28_Hwi_Object__ ti_sysbios_family_c28_Hwi_Object__table__V[6]; /* Module_State__ */ typedef struct ti_sysbios_family_c28_Hwi_Module_State__ { xdc_Bits16 ierMask; xdc_Char *isrStack; xdc_Char *taskSP; __TA_ti_sysbios_family_c28_Hwi_Module_State__dispatchTable dispatchTable; ti_sysbios_family_c28_Hwi_Irp irp; xdc_Bool globalEnable; xdc_Bits16 shadowIER; xdc_Ptr isrStackBase; xdc_Ptr isrStackSize; } ti_sysbios_family_c28_Hwi_Module_State__; /* --> ti_sysbios_family_c28_Hwi_Module_State_0_dispatchTable__A */ __T1_ti_sysbios_family_c28_Hwi_Module_State__dispatchTable ti_sysbios_family_c28_Hwi_Module_State_0_dispatchTable__A[224]; /* --> _stack */ extern void* _stack; /* --> _STACK_SIZE */ extern void* _STACK_SIZE; /* Module__state__V */ ti_sysbios_family_c28_Hwi_Module_State__ ti_sysbios_family_c28_Hwi_Module__state__V; /* --> ti_sysbios_knl_Swi_disable__E */ extern xdc_UInt ti_sysbios_knl_Swi_disable__E(void); /* --> ti_sysbios_knl_Swi_restoreHwi__E */ extern void ti_sysbios_knl_Swi_restoreHwi__E(xdc_UInt); /* --> ti_sysbios_knl_Task_disable__E */ extern xdc_UInt ti_sysbios_knl_Task_disable__E(void); /* --> ti_sysbios_knl_Task_restoreHwi__E */ extern void ti_sysbios_knl_Task_restoreHwi__E(xdc_UInt); /* * ======== ti.sysbios.family.c28.IntrinsicsSupport DECLARATIONS ======== */ /* * ======== ti.sysbios.family.c28.TaskSupport DECLARATIONS ======== */ /* * ======== ti.sysbios.family.c28.Timer DECLARATIONS ======== */ /* --> cycle_Timer_ISR */ extern void cycle_Timer_ISR(xdc_UArg); /* Object__table__V */ ti_sysbios_family_c28_Timer_Object__ ti_sysbios_family_c28_Timer_Object__table__V[2]; /* Module_State__ */ typedef struct ti_sysbios_family_c28_Timer_Module_State__ { xdc_Char availMask; __TA_ti_sysbios_family_c28_Timer_Module_State__staticTimers staticTimers; } ti_sysbios_family_c28_Timer_Module_State__; /* Module__state__V */ ti_sysbios_family_c28_Timer_Module_State__ ti_sysbios_family_c28_Timer_Module__state__V; /* * ======== ti.sysbios.family.c28.f2837x.TimestampProvider DECLARATIONS ======== */ /* * ======== ti.sysbios.gates.GateHwi DECLARATIONS ======== */ /* Object__table__V */ ti_sysbios_gates_GateHwi_Object__ ti_sysbios_gates_GateHwi_Object__table__V[1]; /* * ======== ti.sysbios.gates.GateMutex DECLARATIONS ======== */ /* Object__table__V */ ti_sysbios_gates_GateMutex_Object__ ti_sysbios_gates_GateMutex_Object__table__V[2]; /* * ======== ti.sysbios.hal.Hwi DECLARATIONS ======== */ /* * ======== ti.sysbios.hal.Hwi_HwiProxy DECLARATIONS ======== */ /* * ======== ti.sysbios.hal.Timer DECLARATIONS ======== */ /* Object__table__V */ ti_sysbios_hal_Timer_Object__ ti_sysbios_hal_Timer_Object__table__V[1]; /* * ======== ti.sysbios.hal.Timer_TimerProxy DECLARATIONS ======== */ /* * ======== ti.sysbios.heaps.HeapMem DECLARATIONS ======== */ /* --> ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A */ __T1_ti_sysbios_heaps_HeapMem_Instance_State__buf ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A[35]; #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A, "heap"); #pragma DATA_ALIGN(ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A, 4); /* Object__table__V */ ti_sysbios_heaps_HeapMem_Object__ ti_sysbios_heaps_HeapMem_Object__table__V[1]; /* * ======== ti.sysbios.heaps.HeapMem_Module_GateProxy DECLARATIONS ======== */ /* * ======== ti.sysbios.knl.Clock DECLARATIONS ======== */ /* Module_State__ */ typedef struct ti_sysbios_knl_Clock_Module_State__ { volatile xdc_UInt32 ticks; xdc_UInt swiCount; ti_sysbios_knl_Clock_TimerProxy_Handle timer; ti_sysbios_knl_Swi_Handle swi; volatile xdc_UInt numTickSkip; xdc_UInt32 nextScheduledTick; xdc_UInt32 maxSkippable; xdc_Bool inWorkFunc; xdc_Bool startDuringWorkFunc; xdc_Bool ticking; ti_sysbios_knl_Queue_Object__ Object_field_clockQ; } ti_sysbios_knl_Clock_Module_State__; /* Module__state__V */ ti_sysbios_knl_Clock_Module_State__ ti_sysbios_knl_Clock_Module__state__V; /* --> ti_sysbios_knl_Clock_doTick__I */ extern void ti_sysbios_knl_Clock_doTick__I(xdc_UArg); /* * ======== ti.sysbios.knl.Clock_TimerProxy DECLARATIONS ======== */ /* * ======== ti.sysbios.knl.Idle DECLARATIONS ======== */ /* --> HOSS_idle */ extern void HOSS_idle(void); /* --> ti_sysbios_hal_Hwi_checkStack */ extern void ti_sysbios_hal_Hwi_checkStack(void); /* --> ti_sysbios_knl_Idle_funcList__A */ const __T1_ti_sysbios_knl_Idle_funcList ti_sysbios_knl_Idle_funcList__A[3]; /* --> ti_sysbios_knl_Idle_coreList__A */ const __T1_ti_sysbios_knl_Idle_coreList ti_sysbios_knl_Idle_coreList__A[3]; /* * ======== ti.sysbios.knl.Intrinsics DECLARATIONS ======== */ /* * ======== ti.sysbios.knl.Intrinsics_SupportProxy DECLARATIONS ======== */ /* * ======== ti.sysbios.knl.Queue DECLARATIONS ======== */ /* * ======== ti.sysbios.knl.Semaphore DECLARATIONS ======== */ /* Object__table__V */ ti_sysbios_knl_Semaphore_Object__ ti_sysbios_knl_Semaphore_Object__table__V[14]; /* * ======== ti.sysbios.knl.Swi DECLARATIONS ======== */ /* --> call_process_swi */ extern void call_process_swi(xdc_UArg,xdc_UArg); /* --> call_process_swi */ extern void call_process_swi(xdc_UArg,xdc_UArg); /* Object__table__V */ ti_sysbios_knl_Swi_Object__ ti_sysbios_knl_Swi_Object__table__V[3]; /* Module_State__ */ typedef struct ti_sysbios_knl_Swi_Module_State__ { volatile xdc_Bool locked; xdc_UInt curSet; xdc_UInt curTrigger; ti_sysbios_knl_Swi_Handle curSwi; ti_sysbios_knl_Queue_Handle curQ; __TA_ti_sysbios_knl_Swi_Module_State__readyQ readyQ; __TA_ti_sysbios_knl_Swi_Module_State__constructedSwis constructedSwis; } ti_sysbios_knl_Swi_Module_State__; /* --> ti_sysbios_knl_Swi_Module_State_0_readyQ__A */ __T1_ti_sysbios_knl_Swi_Module_State__readyQ ti_sysbios_knl_Swi_Module_State_0_readyQ__A[16]; /* Module__state__V */ ti_sysbios_knl_Swi_Module_State__ ti_sysbios_knl_Swi_Module__state__V; /* --> ti_sysbios_knl_Task_disable__E */ extern xdc_UInt ti_sysbios_knl_Task_disable__E(void); /* --> ti_sysbios_knl_Task_restore__E */ extern void ti_sysbios_knl_Task_restore__E(xdc_UInt); /* * ======== ti.sysbios.knl.Task DECLARATIONS ======== */ /* --> ti_sysbios_knl_Task_Instance_State_0_stack__A */ __T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_0_stack__A[512]; #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_0_stack__A, "stack_sil:taskStackSection"); /* --> gyroTask */ extern void gyroTask(xdc_UArg,xdc_UArg); /* --> ti_sysbios_knl_Task_Instance_State_0_hookEnv__A */ __T1_ti_sysbios_knl_Task_Instance_State__hookEnv ti_sysbios_knl_Task_Instance_State_0_hookEnv__A[1]; /* --> ti_sysbios_knl_Task_Instance_State_1_stack__A */ __T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_1_stack__A[1324]; #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_1_stack__A, "stack_sil:taskStackSection"); /* --> ACCTask */ extern void ACCTask(xdc_UArg,xdc_UArg); /* --> ti_sysbios_knl_Task_Instance_State_1_hookEnv__A */ __T1_ti_sysbios_knl_Task_Instance_State__hookEnv ti_sysbios_knl_Task_Instance_State_1_hookEnv__A[1]; /* --> ti_sysbios_knl_Task_Instance_State_2_stack__A */ __T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_2_stack__A[800]; #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_2_stack__A, "stack_sil:taskStackSection"); /* --> MotorTask */ extern void MotorTask(xdc_UArg,xdc_UArg); /* --> ti_sysbios_knl_Task_Instance_State_2_hookEnv__A */ __T1_ti_sysbios_knl_Task_Instance_State__hookEnv ti_sysbios_knl_Task_Instance_State_2_hookEnv__A[1]; /* --> ti_sysbios_knl_Task_Instance_State_3_stack__A */ __T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_3_stack__A[512]; #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_3_stack__A, "stack_sil:taskStackSection"); /* --> I2cTask */ extern void I2cTask(xdc_UArg,xdc_UArg); /* --> ti_sysbios_knl_Task_Instance_State_3_hookEnv__A */ __T1_ti_sysbios_knl_Task_Instance_State__hookEnv ti_sysbios_knl_Task_Instance_State_3_hookEnv__A[1]; /* --> ti_sysbios_knl_Task_Instance_State_4_stack__A */ __T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_4_stack__A[1024]; #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_4_stack__A, ".ebss:taskStackSection"); /* --> ControlTask */ extern void ControlTask(xdc_UArg,xdc_UArg); /* --> ti_sysbios_knl_Task_Instance_State_4_hookEnv__A */ __T1_ti_sysbios_knl_Task_Instance_State__hookEnv ti_sysbios_knl_Task_Instance_State_4_hookEnv__A[1]; /* --> ti_sysbios_knl_Task_Instance_State_5_stack__A */ __T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_5_stack__A[1800]; #pragma DATA_SECTION(ti_sysbios_knl_Task_Instance_State_5_stack__A, "stack_qm:IdletaskStackSection"); /* --> ti_sysbios_knl_Task_Instance_State_5_hookEnv__A */ __T1_ti_sysbios_knl_Task_Instance_State__hookEnv ti_sysbios_knl_Task_Instance_State_5_hookEnv__A[1]; /* Object__table__V */ ti_sysbios_knl_Task_Object__ ti_sysbios_knl_Task_Object__table__V[6]; /* Module_State__ */ typedef struct ti_sysbios_knl_Task_Module_State__ { volatile xdc_Bool locked; volatile xdc_UInt curSet; xdc_Bool workFlag; xdc_UInt vitalTasks; ti_sysbios_knl_Task_Handle curTask; ti_sysbios_knl_Queue_Handle curQ; __TA_ti_sysbios_knl_Task_Module_State__readyQ readyQ; __TA_ti_sysbios_knl_Task_Module_State__smpCurSet smpCurSet; __TA_ti_sysbios_knl_Task_Module_State__smpCurMask smpCurMask; __TA_ti_sysbios_knl_Task_Module_State__smpCurTask smpCurTask; __TA_ti_sysbios_knl_Task_Module_State__smpReadyQ smpReadyQ; __TA_ti_sysbios_knl_Task_Module_State__idleTask idleTask; __TA_ti_sysbios_knl_Task_Module_State__constructedTasks constructedTasks; ti_sysbios_knl_Queue_Object__ Object_field_inactiveQ; ti_sysbios_knl_Queue_Object__ Object_field_terminatedQ; } ti_sysbios_knl_Task_Module_State__; /* --> ti_sysbios_knl_Task_Module_State_0_readyQ__A */ __T1_ti_sysbios_knl_Task_Module_State__readyQ ti_sysbios_knl_Task_Module_State_0_readyQ__A[16]; /* --> ti_sysbios_knl_Task_Module_State_0_idleTask__A */ __T1_ti_sysbios_knl_Task_Module_State__idleTask ti_sysbios_knl_Task_Module_State_0_idleTask__A[1]; /* Module__state__V */ ti_sysbios_knl_Task_Module_State__ ti_sysbios_knl_Task_Module__state__V; /* --> ti_sysbios_utils_Load_taskRegHook__E */ extern void ti_sysbios_utils_Load_taskRegHook__E(xdc_Int); /* --> ti_sysbios_knl_Task_hooks__A */ const __T1_ti_sysbios_knl_Task_hooks ti_sysbios_knl_Task_hooks__A[1]; /* * ======== ti.sysbios.knl.Task_SupportProxy DECLARATIONS ======== */ /* * ======== ti.sysbios.utils.Load DECLARATIONS ======== */ /* Module_State__ */ typedef struct ti_sysbios_utils_Load_Module_State__ { xdc_Int taskHId; __TA_ti_sysbios_utils_Load_Module_State__taskStartTime taskStartTime; xdc_UInt32 timeElapsed; __TA_ti_sysbios_utils_Load_Module_State__runningTask runningTask; xdc_Bool firstSwitchDone; xdc_UInt32 swiStartTime; ti_sysbios_utils_Load_HookContext swiEnv; __TA_ti_sysbios_utils_Load_Module_State__taskEnv taskEnv; xdc_UInt32 swiCnt; xdc_UInt32 hwiStartTime; ti_sysbios_utils_Load_HookContext hwiEnv; xdc_UInt32 hwiCnt; xdc_UInt32 timeSlotCnt; xdc_UInt32 minLoop; xdc_UInt32 minIdle; xdc_UInt32 t0; xdc_UInt32 idleCnt; xdc_UInt32 cpuLoad; xdc_UInt32 taskEnvLen; xdc_UInt32 taskNum; xdc_Bool powerEnabled; xdc_UInt32 idleStartTime; xdc_UInt32 busyStartTime; xdc_UInt32 busyTime; ti_sysbios_knl_Queue_Object__ Object_field_taskList; } ti_sysbios_utils_Load_Module_State__; /* --> ti_sysbios_utils_Load_Module_State_0_taskStartTime__A */ __T1_ti_sysbios_utils_Load_Module_State__taskStartTime ti_sysbios_utils_Load_Module_State_0_taskStartTime__A[1]; /* --> ti_sysbios_utils_Load_Module_State_0_runningTask__A */ __T1_ti_sysbios_utils_Load_Module_State__runningTask ti_sysbios_utils_Load_Module_State_0_runningTask__A[1]; /* --> ti_sysbios_utils_Load_Module_State_0_taskEnv__A */ __T1_ti_sysbios_utils_Load_Module_State__taskEnv ti_sysbios_utils_Load_Module_State_0_taskEnv__A[6]; /* Module__state__V */ ti_sysbios_utils_Load_Module_State__ ti_sysbios_utils_Load_Module__state__V; /* * ======== xdc.runtime.Assert DECLARATIONS ======== */ /* * ======== xdc.runtime.Core DECLARATIONS ======== */ /* * ======== xdc.runtime.Defaults DECLARATIONS ======== */ /* * ======== xdc.runtime.Diags DECLARATIONS ======== */ /* * ======== xdc.runtime.Error DECLARATIONS ======== */ /* Module_State__ */ typedef struct xdc_runtime_Error_Module_State__ { xdc_UInt16 count; } xdc_runtime_Error_Module_State__; /* Module__state__V */ xdc_runtime_Error_Module_State__ xdc_runtime_Error_Module__state__V; /* * ======== xdc.runtime.Gate DECLARATIONS ======== */ /* * ======== xdc.runtime.Log DECLARATIONS ======== */ /* * ======== xdc.runtime.Main DECLARATIONS ======== */ /* * ======== xdc.runtime.Main_Module_GateProxy DECLARATIONS ======== */ /* * ======== xdc.runtime.Memory DECLARATIONS ======== */ /* Module_State__ */ typedef struct xdc_runtime_Memory_Module_State__ { xdc_SizeT maxDefaultTypeAlign; } xdc_runtime_Memory_Module_State__; /* Module__state__V */ xdc_runtime_Memory_Module_State__ xdc_runtime_Memory_Module__state__V; /* * ======== xdc.runtime.Memory_HeapProxy DECLARATIONS ======== */ /* * ======== xdc.runtime.Registry DECLARATIONS ======== */ /* Module_State__ */ typedef struct xdc_runtime_Registry_Module_State__ { xdc_runtime_Registry_Desc *listHead; xdc_runtime_Types_ModuleId curId; } xdc_runtime_Registry_Module_State__; /* Module__state__V */ xdc_runtime_Registry_Module_State__ xdc_runtime_Registry_Module__state__V; /* * ======== xdc.runtime.Startup DECLARATIONS ======== */ /* Module_State__ */ typedef struct xdc_runtime_Startup_Module_State__ { xdc_Int *stateTab; xdc_Bool execFlag; xdc_Bool rtsDoneFlag; } xdc_runtime_Startup_Module_State__; /* Module__state__V */ xdc_runtime_Startup_Module_State__ xdc_runtime_Startup_Module__state__V; /* --> ti_catalog_c2800_initF2837x_Boot_initStartup */ extern void ti_catalog_c2800_initF2837x_Boot_initStartup(void); /* --> ti_sysbios_hal_Hwi_initStack */ extern void ti_sysbios_hal_Hwi_initStack(void); /* --> xdc_runtime_Startup_firstFxns__A */ const __T1_xdc_runtime_Startup_firstFxns xdc_runtime_Startup_firstFxns__A[3]; /* --> xdc_runtime_System_Module_startup__E */ extern xdc_Int xdc_runtime_System_Module_startup__E(xdc_Int); /* --> xdc_runtime_SysMin_Module_startup__E */ extern xdc_Int xdc_runtime_SysMin_Module_startup__E(xdc_Int); /* --> ti_sysbios_family_c28_Hwi_Module_startup__E */ extern xdc_Int ti_sysbios_family_c28_Hwi_Module_startup__E(xdc_Int); /* --> ti_sysbios_family_c28_Timer_Module_startup__E */ extern xdc_Int ti_sysbios_family_c28_Timer_Module_startup__E(xdc_Int); /* --> ti_sysbios_knl_Clock_Module_startup__E */ extern xdc_Int ti_sysbios_knl_Clock_Module_startup__E(xdc_Int); /* --> ti_sysbios_knl_Swi_Module_startup__E */ extern xdc_Int ti_sysbios_knl_Swi_Module_startup__E(xdc_Int); /* --> ti_sysbios_knl_Task_Module_startup__E */ extern xdc_Int ti_sysbios_knl_Task_Module_startup__E(xdc_Int); /* --> ti_sysbios_hal_Hwi_Module_startup__E */ extern xdc_Int ti_sysbios_hal_Hwi_Module_startup__E(xdc_Int); /* --> ti_sysbios_hal_Timer_Module_startup__E */ extern xdc_Int ti_sysbios_hal_Timer_Module_startup__E(xdc_Int); /* --> xdc_runtime_Startup_sfxnTab__A */ const __T1_xdc_runtime_Startup_sfxnTab xdc_runtime_Startup_sfxnTab__A[9]; /* --> xdc_runtime_Startup_sfxnRts__A */ const __T1_xdc_runtime_Startup_sfxnRts xdc_runtime_Startup_sfxnRts__A[9]; /* * ======== xdc.runtime.SysMin DECLARATIONS ======== */ /* Module_State__ */ typedef struct xdc_runtime_SysMin_Module_State__ { __TA_xdc_runtime_SysMin_Module_State__outbuf outbuf; xdc_UInt outidx; xdc_Bool wrapped; } xdc_runtime_SysMin_Module_State__; /* --> xdc_runtime_SysMin_Module_State_0_outbuf__A */ __T1_xdc_runtime_SysMin_Module_State__outbuf xdc_runtime_SysMin_Module_State_0_outbuf__A[256]; /* Module__state__V */ xdc_runtime_SysMin_Module_State__ xdc_runtime_SysMin_Module__state__V; /* --> scia_send */ extern void scia_send(xdc_Char*,xdc_UInt); /* --> xdc_runtime_SysMin_output__I */ extern void xdc_runtime_SysMin_output__I(xdc_Char*,xdc_UInt); /* * ======== xdc.runtime.System DECLARATIONS ======== */ /* Module_State__ */ typedef struct xdc_runtime_System_Module_State__ { __TA_xdc_runtime_System_Module_State__atexitHandlers atexitHandlers; xdc_Int numAtexitHandlers; } xdc_runtime_System_Module_State__; /* --> xdc_runtime_System_Module_State_0_atexitHandlers__A */ __T1_xdc_runtime_System_Module_State__atexitHandlers xdc_runtime_System_Module_State_0_atexitHandlers__A[8]; /* Module__state__V */ xdc_runtime_System_Module_State__ xdc_runtime_System_Module__state__V; /* --> xdc_runtime_System_printfExtend__I */ extern xdc_Int xdc_runtime_System_printfExtend__I(xdc_Char**,xdc_CString*,xdc_VaList*,xdc_runtime_System_ParseData*); /* * ======== xdc.runtime.System_Module_GateProxy DECLARATIONS ======== */ /* * ======== xdc.runtime.System_SupportProxy DECLARATIONS ======== */ /* * ======== xdc.runtime.Text DECLARATIONS ======== */ /* Module_State__ */ typedef struct xdc_runtime_Text_Module_State__ { xdc_CPtr charBase; xdc_CPtr nodeBase; } xdc_runtime_Text_Module_State__; /* Module__state__V */ xdc_runtime_Text_Module_State__ xdc_runtime_Text_Module__state__V; /* --> xdc_runtime_Text_charTab__A */ const __T1_xdc_runtime_Text_charTab xdc_runtime_Text_charTab__A[5983]; /* --> xdc_runtime_Text_nodeTab__A */ const __T1_xdc_runtime_Text_nodeTab xdc_runtime_Text_nodeTab__A[4]; /* * ======== xdc.runtime.Timestamp DECLARATIONS ======== */ /* * ======== xdc.runtime.TimestampNull DECLARATIONS ======== */ /* * ======== xdc.runtime.Timestamp_SupportProxy DECLARATIONS ======== */ /* * ======== OBJECT OFFSETS ======== */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Instance_State_sem__O, ".econst:ti_sysbios_gates_GateMutex_Instance_State_sem__O"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Instance_State_sem__O\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Instance_State_sem__O\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Instance_State_sem__O\""); asm(" .clink "); const xdc_SizeT ti_sysbios_gates_GateMutex_Instance_State_sem__O = ((size_t)__intaddr__(&(((ti_sysbios_gates_GateMutex_Object__ *)0)->Object_field_sem))); /* * ======== OBJECT OFFSETS ======== */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module_State_clockQ__O, ".econst:ti_sysbios_knl_Clock_Module_State_clockQ__O"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module_State_clockQ__O\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module_State_clockQ__O\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module_State_clockQ__O\""); asm(" .clink "); const xdc_SizeT ti_sysbios_knl_Clock_Module_State_clockQ__O = ((size_t)__intaddr__(&(((ti_sysbios_knl_Clock_Module_State__ *)0)->Object_field_clockQ))); /* * ======== OBJECT OFFSETS ======== */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Instance_State_pendQ__O, ".econst:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O\""); asm(" .clink "); const xdc_SizeT ti_sysbios_knl_Semaphore_Instance_State_pendQ__O = ((size_t)__intaddr__(&(((ti_sysbios_knl_Semaphore_Object__ *)0)->Object_field_pendQ))); /* * ======== OBJECT OFFSETS ======== */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module_State_inactiveQ__O, ".econst:ti_sysbios_knl_Task_Module_State_inactiveQ__O"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module_State_inactiveQ__O\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module_State_inactiveQ__O\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module_State_inactiveQ__O\""); asm(" .clink "); const xdc_SizeT ti_sysbios_knl_Task_Module_State_inactiveQ__O = ((size_t)__intaddr__(&(((ti_sysbios_knl_Task_Module_State__ *)0)->Object_field_inactiveQ))); #pragma DATA_SECTION(ti_sysbios_knl_Task_Module_State_terminatedQ__O, ".econst:ti_sysbios_knl_Task_Module_State_terminatedQ__O"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module_State_terminatedQ__O\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module_State_terminatedQ__O\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module_State_terminatedQ__O\""); asm(" .clink "); const xdc_SizeT ti_sysbios_knl_Task_Module_State_terminatedQ__O = ((size_t)__intaddr__(&(((ti_sysbios_knl_Task_Module_State__ *)0)->Object_field_terminatedQ))); /* * ======== OBJECT OFFSETS ======== */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module_State_taskList__O, ".econst:ti_sysbios_utils_Load_Module_State_taskList__O"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module_State_taskList__O\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module_State_taskList__O\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module_State_taskList__O\""); asm(" .clink "); const xdc_SizeT ti_sysbios_utils_Load_Module_State_taskList__O = ((size_t)__intaddr__(&(((ti_sysbios_utils_Load_Module_State__ *)0)->Object_field_taskList))); /* * ======== xdc.cfg.Program TEMPLATE ======== */ /* * ======== __ASM__ ======== * Define absolute path prefix for this executable's * configuration generated files. */ _Pragma("DATA_SECTION(__ASM__, \"xdc.meta\")") const char (__ASM__)[] = {("@(#)__ASM__ = /build/Hirn/Debug/configPkg/package/cfg/app_p28FP")}; /* * ======== __ISA__ ======== * Define the ISA of this executable. This symbol is used by platform * specific "exec" commands that support more than one ISA; e.g., gdb */ _Pragma("DATA_SECTION(__ISA__, \"xdc.meta\")") const char (__ISA__)[] = {("@(#)__ISA__ = 28FP")}; /* * ======== __PLAT__ ======== * Define the name of the platform that can run this executable. This * symbol is used by platform independent "exec" commands */ _Pragma("DATA_SECTION(__PLAT__, \"xdc.meta\")") const char (__PLAT__)[] = {("@(#)__PLAT__ = ti.platforms.tms320x28")}; /* * ======== __TARG__ ======== * Define the name of the target used to build this executable. */ _Pragma("DATA_SECTION(__TARG__, \"xdc.meta\")") const char (__TARG__)[] = {("@(#)__TARG__ = ti.targets.C28_float")}; /* * ======== __TRDR__ ======== * Define the name of the class that can read/parse this executable. */ _Pragma("DATA_SECTION(__TRDR__, \"xdc.meta\")") const char (__TRDR__)[] = {("@(#)__TRDR__ = ti.targets.omf.cof.Coff")}; /* * ======== xdc.cfg.SourceDir TEMPLATE ======== */ /* * ======== xdc.runtime.Diags TEMPLATE ======== */ /* * ======== xdc.runtime.Error TEMPLATE ======== */ xdc_runtime_Error_Block xdc_runtime_Error_IgnoreBlock = { ~0, /* unused */ { {0, 0} /* data */ }, 0, /* id */ 0, /* msg */ { 0, /* mod */ 0, /* file */ 0 /* line */ } }; /* * ======== xdc.runtime.Startup TEMPLATE ======== */ /* * ======== MODULE STARTUP DONE FUNCTIONS ======== */ xdc_Bool xdc_runtime_System_Module__startupDone__F(void); /* keep GCC prototype warning quiet */ xdc_Bool xdc_runtime_System_Module__startupDone__F(void) { return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[0] < 0; } xdc_Bool xdc_runtime_SysMin_Module__startupDone__F(void); /* keep GCC prototype warning quiet */ xdc_Bool xdc_runtime_SysMin_Module__startupDone__F(void) { return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[1] < 0; } xdc_Bool ti_sysbios_family_c28_Hwi_Module__startupDone__F(void); /* keep GCC prototype warning quiet */ xdc_Bool ti_sysbios_family_c28_Hwi_Module__startupDone__F(void) { return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[2] < 0; } xdc_Bool ti_sysbios_family_c28_Timer_Module__startupDone__F(void); /* keep GCC prototype warning quiet */ xdc_Bool ti_sysbios_family_c28_Timer_Module__startupDone__F(void) { return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[3] < 0; } xdc_Bool ti_sysbios_knl_Clock_Module__startupDone__F(void); /* keep GCC prototype warning quiet */ xdc_Bool ti_sysbios_knl_Clock_Module__startupDone__F(void) { return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[4] < 0; } xdc_Bool ti_sysbios_knl_Swi_Module__startupDone__F(void); /* keep GCC prototype warning quiet */ xdc_Bool ti_sysbios_knl_Swi_Module__startupDone__F(void) { return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[5] < 0; } xdc_Bool ti_sysbios_knl_Task_Module__startupDone__F(void); /* keep GCC prototype warning quiet */ xdc_Bool ti_sysbios_knl_Task_Module__startupDone__F(void) { return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[6] < 0; } xdc_Bool ti_sysbios_hal_Hwi_Module__startupDone__F(void); /* keep GCC prototype warning quiet */ xdc_Bool ti_sysbios_hal_Hwi_Module__startupDone__F(void) { return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[7] < 0; } xdc_Bool ti_sysbios_hal_Timer_Module__startupDone__F(void); /* keep GCC prototype warning quiet */ xdc_Bool ti_sysbios_hal_Timer_Module__startupDone__F(void) { return (&xdc_runtime_Startup_Module__state__V)->stateTab == 0 || (&xdc_runtime_Startup_Module__state__V)->stateTab[8] < 0; } /* * Startup_exec__I is an internal entry point called by target/platform * boot code. Boot code is not brought into a partial-link assembly. So, * without this pragma, whole program optimizers would otherwise optimize-out * this function. */ #pragma FUNC_EXT_CALLED(xdc_runtime_Startup_exec__I); /* * ======== xdc_runtime_Startup_exec__I ======== * Initialize all used modules that have startup functions */ void xdc_runtime_Startup_exec__I(void) { xdc_Int state[9]; xdc_runtime_Startup_startModsFxn__C(state, 9); } /* * ======== xdc.runtime.Reset TEMPLATE ======== */ /* * Startup_reset__I is an internal entry point called by target/platform * boot code. Boot code is not brought into a partial-link assembly. So, * without this pragma, whole program optimizers would otherwise optimize-out * this function. */ #pragma FUNC_EXT_CALLED(xdc_runtime_Startup_reset__I); extern void ti_catalog_c2800_initF2837x_Boot_init(void); /* user defined reset function */ /* * ======== xdc_runtime_Startup_reset__I ======== * This function is called by bootstrap initialization code as early as * possible in the startup process. This function calls all functions in * the Reset.fxns array _as well as_ Startup.resetFxn (if it's non-NULL) */ void xdc_runtime_Startup_reset__I(void) { ti_catalog_c2800_initF2837x_Boot_init(); } /* * ======== xdc.runtime.System TEMPLATE ======== */ /*****************************************************************************/ /* limits.h */ /* */ /* Copyright (c) 1993 Texas Instruments Incorporated */ /* http://www.ti.com/ */ /* */ /* Redistribution and use in source and binary forms, with or without */ /* modification, are permitted provided that the following conditions */ /* are met: */ /* */ /* Redistributions of source code must retain the above copyright */ /* notice, this list of conditions and the following disclaimer. */ /* */ /* Redistributions in binary form must reproduce the above copyright */ /* notice, this list of conditions and the following disclaimer in */ /* the documentation and/or other materials provided with the */ /* distribution. */ /* */ /* Neither the name of Texas Instruments Incorporated nor the names */ /* of its contributors may be used to endorse or promote products */ /* derived from this software without specific prior written */ /* permission. */ /* */ /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */ /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */ /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */ /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */ /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */ /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */ /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */ /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */ /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */ /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* */ /*****************************************************************************/ #pragma diag_push #pragma CHECK_MISRA("-20.1") /* standard headers must define standard names */ #pragma diag_pop /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2008 Texas Instruments. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License * v. 1.0 which accompanies this distribution. The Eclipse Public License is * available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse * Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Texas Instruments - initial implementation * */ /* * ======== System__internal.h ======== * This header defines internal implementation details that are shared * between System.c and System.xdt and SHOULD NOT be included by any other * files. The declarations in this file are subject to incompatible * changes in any release; only clients of System.h are kept compatible. * * Note: because this header is included in the generated .c file, we must * be careful to only use fully qualified names (e.g., xdc_UInt32 rather * than just UInt32) */ /* * ======== xdc_runtime_System_{I|U}Num ======== * Maximum sized (un)signed integer that can be formated by System_printf * * {I|U}Arg can't be used because we need to be able to handle a long or * a pointer (not just an int or a pointer). * * These internal declarations are here rather than in System.h to ensure * that targets _without_ 64-bit support can still use System */ typedef xdc_UInt32 xdc_runtime_System_UNum; typedef xdc_Int32 xdc_runtime_System_INum; /* * ======== xdc_runtime_System_formatNum__I ======== * This internal function is used to convert all integral numbers to a * character string. It's implementation is in System.c. */ extern xdc_Char *xdc_runtime_System_formatNum__I(xdc_Char *ptr, xdc_runtime_System_UNum un, xdc_Int zpad, xdc_Int base); /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== System_printfExtend__I ======== * This function processes optional extended formats of printf. * * It returns the number of characters added to the result. * * Precision (maximum string length) is not supported for %$S. * * Right-justified (which is default) minimum width is not supported * for %$L, %$S, or %$F. */ xdc_Int xdc_runtime_System_printfExtend__I(xdc_Char **pbuf, xdc_CString *pfmt, xdc_VaList *pva, xdc_runtime_System_ParseData *parse) { xdc_CString fmt = *pfmt; xdc_Int res; xdc_Char c; xdc_Bool found = 0U; /* * Create a local variable 'va' to ensure that the dereference of * pva only occurs once. */ va_list va = *pva; res = 0; c = *fmt++; *pfmt = *pfmt + 1; if (c == '$') { c = *fmt++; *pfmt = *pfmt + 1; if (c == 'L') { xdc_runtime_Types_Label *lab = parse->aFlag ? (xdc_runtime_Types_Label *)xdc_iargToPtr(( (va -= 1 + (__va_argref(xdc_IArg) ? (((long)va & 1) ? 2 : 1) : (sizeof(xdc_IArg) == sizeof(int)) ? 0 : ((long)va & 1) ? sizeof(xdc_IArg) : sizeof(xdc_IArg) - 1 )), (__va_argref(xdc_IArg) ? (* * (xdc_IArg * *) (va)) : (* (xdc_IArg *) (va)) ))) : (xdc_runtime_Types_Label *)( (va -= 1 + (__va_argref(void *) ? (((long)va & 1) ? 2 : 1) : (sizeof(void *) == sizeof(int)) ? 0 : ((long)va & 1) ? sizeof(void *) : sizeof(void *) - 1 )), (__va_argref(void *) ? (* * (void * * *) (va)) : (* (void * *) (va)) )); /* * Call Text_putLab to write out the label, taking the precision * into account. */ res = xdc_runtime_Text_putLab__E(lab, pbuf, parse->precis); /* * Set the length to 0 to indicate to 'doPrint' that nothing should * be copied from parse.ptr. */ parse->len = 0; /* Update the minimum width field. */ parse->width -= res; found = 1U; } if (c == 'F') { xdc_runtime_Types_Site site; /* Retrieve the file name string from the argument list */ site.file = parse->aFlag ? (xdc_Char *) xdc_iargToPtr(( (va -= 1 + (__va_argref(xdc_IArg) ? (((long)va & 1) ? 2 : 1) : (sizeof(xdc_IArg) == sizeof(int)) ? 0 : ((long)va & 1) ? sizeof(xdc_IArg) : sizeof(xdc_IArg) - 1 )), (__va_argref(xdc_IArg) ? (* * (xdc_IArg * *) (va)) : (* (xdc_IArg *) (va)) ))) : (xdc_Char *) ( (va -= 1 + (__va_argref(xdc_Char *) ? (((long)va & 1) ? 2 : 1) : (sizeof(xdc_Char *) == sizeof(int)) ? 0 : ((long)va & 1) ? sizeof(xdc_Char *) : sizeof(xdc_Char *) - 1 )), (__va_argref(xdc_Char *) ? (* * (xdc_Char * * *) (va)) : (* (xdc_Char * *) (va)) )); /* Retrieve the line number from the argument list. */ site.line = parse->aFlag ? (xdc_Int) ( (va -= 1 + (__va_argref(xdc_IArg) ? (((long)va & 1) ? 2 : 1) : (sizeof(xdc_IArg) == sizeof(int)) ? 0 : ((long)va & 1) ? sizeof(xdc_IArg) : sizeof(xdc_IArg) - 1 )), (__va_argref(xdc_IArg) ? (* * (xdc_IArg * *) (va)) : (* (xdc_IArg *) (va)) )) : (xdc_Int) ( (va -= 1 + (__va_argref(xdc_Int) ? (((long)va & 1) ? 2 : 1) : (sizeof(xdc_Int) == sizeof(int)) ? 0 : ((long)va & 1) ? sizeof(xdc_Int) : sizeof(xdc_Int) - 1 )), (__va_argref(xdc_Int) ? (* * (xdc_Int * *) (va)) : (* (xdc_Int *) (va)) )); /* * Omit the 'mod' field, set it to 0. * '0' is a safe sentinel value - the IDs for named modules are * 0x8000 and higher, and the IDs for unnamed modules go from 0x1 * to 0x7fff. */ site.mod = 0; /* * Call putSite to format the file and line number. * If a precision was specified, it will be used as the maximum * string lengrth. */ res = xdc_runtime_Text_putSite__E(&site, pbuf, parse->precis); /* * Set the length to 0 to indicate to 'doPrint' that nothing should * be copied from parse.ptr. */ parse->len = 0; /* Update the minimum width field */ parse->width -= res; found = 1U; } if (c == 'S') { /* Retrieve the format string from the argument list */ parse->ptr = parse->aFlag ? (xdc_Char *) xdc_iargToPtr(( (va -= 1 + (__va_argref(xdc_IArg) ? (((long)va & 1) ? 2 : 1) : (sizeof(xdc_IArg) == sizeof(int)) ? 0 : ((long)va & 1) ? sizeof(xdc_IArg) : sizeof(xdc_IArg) - 1 )), (__va_argref(xdc_IArg) ? (* * (xdc_IArg * *) (va)) : (* (xdc_IArg *) (va)) ))) : (xdc_Char *) ( (va -= 1 + (__va_argref(xdc_Char *) ? (((long)va & 1) ? 2 : 1) : (sizeof(xdc_Char *) == sizeof(int)) ? 0 : ((long)va & 1) ? sizeof(xdc_Char *) : sizeof(xdc_Char *) - 1 )), (__va_argref(xdc_Char *) ? (* * (xdc_Char * * *) (va)) : (* (xdc_Char * *) (va)) )); /* Update pva before passing it to doPrint. */ *pva = va; /* Perform the recursive format. System_doPrint does not advance * the buffer pointer, so it has to be done explicitly. */ res = xdc_runtime_System_doPrint__I(*pbuf, parse->precis, parse->ptr, pva, parse->aFlag); if (*pbuf) { *pbuf += res; } /* Update the temporary variable with any changes to *pva */ va = *pva; /* * Set the length to 0 to indicate to 'doPrint' that nothing should * be copied from parse.ptr */ parse->len = 0; /* Update the minimum width field */ parse->width -= res; /* Indicate that we were able to interpret the specifier */ found = 1U; } } if (c == 'f') { /* support arguments _after_ optional float support */ if (parse->aFlag) { (void)( (va -= 1 + (__va_argref(xdc_IArg) ? (((long)va & 1) ? 2 : 1) : (sizeof(xdc_IArg) == sizeof(int)) ? 0 : ((long)va & 1) ? sizeof(xdc_IArg) : sizeof(xdc_IArg) - 1 )), (__va_argref(xdc_IArg) ? (* * (xdc_IArg * *) (va)) : (* (xdc_IArg *) (va)) )); } else { (void)( (va -= 1 + (__va_argref(double) ? (((long)va & 1) ? 2 : 1) : (sizeof(double) == sizeof(int)) ? 0 : ((long)va & 1) ? sizeof(double) : sizeof(double) - 1 )), (__va_argref(double) ? (* * (double * *) (va)) : (* (double *) (va)) )); } } if (found == 0U) { /* other character (like %) copy to output */ *(parse->ptr) = c; parse->len = 1; } /* * Before returning, we must update the value of pva. We use a label here * so that all return points will go through this update. * The 'goto end' is here to ensure that there is always a reference to the * label (to avoid the compiler complaining). */ goto end; end: *pva = va; return (res); } /* * ======== xdc.runtime.SysMin TEMPLATE ======== */ /* * ======== SysMin_output__I ======== */ void xdc_runtime_SysMin_output__I(xdc_Char *buf, xdc_UInt size) { scia_send(buf, size); } /* * ======== xdc.runtime.Text TEMPLATE ======== */ /* * ======== xdc_runtime_Text_visitRope__I ======== * This function is indirectly called within Text.c through * the visitRopeFxn configuration parameter of xdc.runtime.Text. */ void xdc_runtime_Text_visitRope__I(xdc_runtime_Text_RopeId rope, xdc_Fxn visFxn, xdc_Ptr visState) { xdc_CString stack[3]; xdc_runtime_Text_visitRope2__I(rope, visFxn, visState, stack); } /* * ======== ti.catalog.c2800.initF2837x.Boot TEMPLATE ======== */ extern ti_catalog_c2800_initF2837x_Boot_disableWatchdog(void); extern ti_catalog_c2800_initF2837x_Boot_initSharedRAMs(xdc_UInt sharedRamMask); extern ti_catalog_c2800_initF2837x_Boot_configurePllDivs(xdc_UInt iMult, xdc_UInt fMult, xdc_UInt sysDiv, xdc_UInt oscClkSrcVal); extern ti_catalog_c2800_initF2837x_Boot_bootCPU2(void); extern ti_catalog_c2800_initF2837x_Boot_initFlash(xdc_Bool configWaitStates, xdc_UInt waitStates, xdc_Bool enableProgramCache, xdc_Bool enableDataCache); #pragma CODE_SECTION(ti_catalog_c2800_initF2837x_Boot_init, ".text:.bootCodeSection") #pragma CODE_SECTION(ti_catalog_c2800_initF2837x_Boot_initStartup, ".text:.bootCodeSection") #pragma CODE_SECTION(ti_catalog_c2800_initF2837x_Boot_limpAbort, ".text:.bootCodeSection") /* * ======== ti_catalog_arm_cortexm3_concertoInit_Boot_init ======== * Boot initialization run as an xdc.runtime.Reset function. */ void ti_catalog_c2800_initF2837x_Boot_init(void) { } /* * ======== ti_catalog_c2800_initF2837x_Boot_initStartup ======== * Boot initialization run as an xdc.runtime.Startup first function. */ void ti_catalog_c2800_initF2837x_Boot_initStartup(void) { } /* * ======== ti_catalog_c2800_initF2837x_Boot_limpAbort ======== */ void ti_catalog_c2800_initF2837x_Boot_limpAbort(void) { extern ti_catalog_c2800_initF2837x_Boot_defaultLimpAbortFunction(); ti_catalog_c2800_initF2837x_Boot_defaultLimpAbortFunction(); } /* * ======== ti.sysbios.family.c28.Hwi TEMPLATE ======== */ extern void _c_int00(void); extern void ti_sysbios_family_c28_Hwi_dispatchPie(void); extern void ti_sysbios_family_c28_Hwi_dispatchTable(void); extern void ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I(void); /* Interrupt vector table. This will be copied to 0xd00 at boot time. */ const UInt32 ti_sysbios_family_c28_Hwi_vectors[] = { /* 0 */ (UInt32)_c_int00, /* 1 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 2 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 3 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 4 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 5 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 6 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 7 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 8 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 9 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 10 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 11 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 12 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 13 */ (UInt32)ti_sysbios_family_c28_Hwi_dispatchTable + (3 * (13-1)), /* 14 */ (UInt32)ti_sysbios_family_c28_Hwi_dispatchTable + (3 * (14-1)), /* 15 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 16 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 17 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 18 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 19 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 20 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 21 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 22 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 23 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 24 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 25 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 26 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 27 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 28 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 29 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 30 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 31 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 32 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 33 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 34 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 35 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 36 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 37 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 38 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 39 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 40 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 41 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 42 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 43 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 44 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 45 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 46 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 47 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 48 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 49 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 50 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 51 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 52 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 53 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 54 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 55 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 56 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 57 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 58 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 59 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 60 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 61 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 62 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 63 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 64 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 65 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 66 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 67 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 68 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 69 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 70 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 71 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 72 */ (UInt32)ti_sysbios_family_c28_Hwi_dispatchPie, /* 73 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 74 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 75 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 76 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 77 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 78 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 79 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 80 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 81 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 82 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 83 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 84 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 85 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 86 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 87 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 88 */ (UInt32)ti_sysbios_family_c28_Hwi_dispatchPie, /* 89 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 90 */ (UInt32)ti_sysbios_family_c28_Hwi_dispatchPie, /* 91 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 92 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 93 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 94 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 95 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 96 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 97 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 98 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 99 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 100 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 101 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 102 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 103 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 104 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 105 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 106 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 107 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 108 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 109 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 110 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 111 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 112 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 113 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 114 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 115 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 116 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 117 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 118 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 119 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 120 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 121 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 122 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 123 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 124 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 125 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 126 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 127 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 128 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 129 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 130 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 131 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 132 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 133 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 134 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 135 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 136 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 137 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 138 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 139 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 140 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 141 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 142 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 143 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 144 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 145 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 146 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 147 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 148 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 149 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 150 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 151 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 152 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 153 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 154 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 155 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 156 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 157 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 158 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 159 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 160 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 161 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 162 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 163 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 164 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 165 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 166 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 167 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 168 */ (UInt32)ti_sysbios_family_c28_Hwi_dispatchPie, /* 169 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 170 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 171 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 172 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 173 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 174 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 175 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 176 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 177 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 178 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 179 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 180 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 181 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 182 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 183 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 184 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 185 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 186 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 187 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 188 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 189 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 190 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 191 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 192 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 193 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 194 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 195 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 196 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 197 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 198 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 199 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 200 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 201 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 202 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 203 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 204 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 205 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 206 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 207 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 208 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 209 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 210 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 211 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 212 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 213 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 214 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 215 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 216 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 217 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 218 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 219 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 220 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 221 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 222 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, /* 223 */ (UInt32)ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I, }; extern cregister volatile UInt IER; /* * ======== NON-ZERO LATENCY IMPLEMENTATION ======== */ /* * ======== Hwi_startup ======== */ void ti_sysbios_family_c28_Hwi_startup__E() { __enable_interrupts(); } /* * ======== Hwi_disable ======== */ UInt ti_sysbios_family_c28_Hwi_disable__E() { UInt key; key = __disable_interrupts(); return (key); } /* * ======== Hwi_enable ======== */ UInt ti_sysbios_family_c28_Hwi_enable__E() { UInt key; key = __enable_interrupts(); return (key); } /* * ======== Hwi_restore ======== */ void ti_sysbios_family_c28_Hwi_restore__E(UInt key) { __restore_interrupts(key); } /* * ======== Hwi_disableIER ======== */ Bits16 ti_sysbios_family_c28_Hwi_disableIER__E(Bits16 mask) { UInt key; Bits16 oldIER; key = __disable_interrupts(); oldIER = IER; IER &= ~mask; __restore_interrupts(key); return (oldIER); } /* * ======== Hwi_enableIER ======== */ Bits16 ti_sysbios_family_c28_Hwi_enableIER__E(Bits16 mask) { UInt key; Bits16 oldIER; key = __disable_interrupts(); oldIER = IER; IER |= mask; __restore_interrupts(key); return (oldIER); } /* * ======== Hwi_restoreIER ======== */ Bits16 ti_sysbios_family_c28_Hwi_restoreIER__E(Bits16 mask) { UInt key; Bits16 oldIER; key = __disable_interrupts(); oldIER = IER; IER = mask; __restore_interrupts(key); return (oldIER); } /* * ======== ti.sysbios.BIOS TEMPLATE ======== */ void ti_sysbios_BIOS_atExitFunc__I(Int); extern void ti_sysbios_BIOS_registerRTSLock__I(); extern void ti_sysbios_family_c28_Timer_startup__E(); void ti_sysbios_BIOS_startFunc__I() { /* * Check if XDC runtime startup functions have been called. If not, then * call BIOS_linkedWithIncorrectBootLibrary() function. This function * will spin forever. */ if (xdc_runtime_Startup_rtsDone__E() != 1U) { ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E(); } xdc_runtime_System_atexit__E( (xdc_runtime_System_AtexitHandler)ti_sysbios_BIOS_atExitFunc__I); ti_sysbios_BIOS_registerRTSLock__I(); ti_sysbios_family_c28_Timer_startup__E(); ti_sysbios_hal_Hwi_startup__E(); ti_sysbios_knl_Swi_startup__E(); ti_sysbios_utils_Load_startup__E(); ti_sysbios_knl_Task_startup__E(); } /*****************************************************************************/ /* _lock.h */ /* */ /* Copyright (c) 2000 Texas Instruments Incorporated */ /* http://www.ti.com/ */ /* */ /* Redistribution and use in source and binary forms, with or without */ /* modification, are permitted provided that the following conditions */ /* are met: */ /* */ /* Redistributions of source code must retain the above copyright */ /* notice, this list of conditions and the following disclaimer. */ /* */ /* Redistributions in binary form must reproduce the above copyright */ /* notice, this list of conditions and the following disclaimer in */ /* the documentation and/or other materials provided with the */ /* distribution. */ /* */ /* Neither the name of Texas Instruments Incorporated nor the names */ /* of its contributors may be used to endorse or promote products */ /* derived from this software without specific prior written */ /* permission. */ /* */ /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */ /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */ /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */ /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */ /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */ /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */ /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */ /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */ /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */ /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* */ /*****************************************************************************/ #pragma diag_push /* _nop(), _lock(), and _unlock() all accept zero or more optional arguments, which must remain as empty rather than (void) parameter lists to avoid breaking the API */ #pragma CHECK_MISRA("-16.5") void _nop(); extern void ( *_lock)(); extern void (*_unlock)(); void _register_lock (void ( *lock)()); void _register_unlock(void (*unlock)()); #pragma diag_pop void ti_sysbios_BIOS_atExitFunc__I(Int notused) { ti_sysbios_knl_Swi_disable__E(); ti_sysbios_knl_Task_disable__E(); ti_sysbios_BIOS_setThreadType__E(ti_sysbios_BIOS_ThreadType_Main); if ((&ti_sysbios_BIOS_Module__state__V)->rtsGate != 0) { _register_lock(_nop); _register_unlock(_nop); } } /* * ======== BIOS_rtsLock ======== * Called by rts _lock() function */ void ti_sysbios_BIOS_rtsLock__I() { IArg key; key = ti_sysbios_BIOS_RtsGateProxy_enter__E((&ti_sysbios_BIOS_Module__state__V)->rtsGate); if ((&ti_sysbios_BIOS_Module__state__V)->rtsGateCount == 0) { (&ti_sysbios_BIOS_Module__state__V)->rtsGateKey = key; } /* Increment need not be atomic */ (&ti_sysbios_BIOS_Module__state__V)->rtsGateCount++; } /* * ======== BIOS_rtsUnLock ======== * Called by rts _unlock() function */ void ti_sysbios_BIOS_rtsUnlock__I() { ( (((xdc_runtime_Main_Module__diagsIncluded__C & ((0x0010U))) != 0U && ((xdc_runtime_Main_Module__diagsEnabled__C & ((0x0010U))) != 0U || (*xdc_runtime_Main_Module__diagsMask__C & ((0x0010U))) != 0U))) ? ( ((((( ((xdc_runtime_Assert_Id)(0) != 0U) ? (((xdc_runtime_Assert_Id)(0)) & 0x0000FFFFU & ~(0x0010U)) : (0x0008U) ) == 0U) || ((xdc_runtime_Main_Module__diagsIncluded__C & (( ((xdc_runtime_Assert_Id)(0) != 0U) ? (((xdc_runtime_Assert_Id)(0)) & 0x0000FFFFU & ~(0x0010U)) : (0x0008U) ))) != 0U && ((xdc_runtime_Main_Module__diagsEnabled__C & (( ((xdc_runtime_Assert_Id)(0) != 0U) ? (((xdc_runtime_Assert_Id)(0)) & 0x0000FFFFU & ~(0x0010U)) : (0x0008U) ))) != 0U || (*xdc_runtime_Main_Module__diagsMask__C & (( ((xdc_runtime_Assert_Id)(0) != 0U) ? (((xdc_runtime_Assert_Id)(0)) & 0x0000FFFFU & ~(0x0010U)) : (0x0008U) ))) != 0U))) && !(((&ti_sysbios_BIOS_Module__state__V)->rtsGateCount))) ? xdc_runtime_Assert_raise__I(xdc_runtime_Main_Module__id__C, "package/cfg/app_p28FP.c", 2502, ((xdc_runtime_Assert_Id)(0))) : (void)0) ) : (void)0); (&ti_sysbios_BIOS_Module__state__V)->rtsGateCount--; if ((&ti_sysbios_BIOS_Module__state__V)->rtsGateCount == 0) { ti_sysbios_BIOS_RtsGateProxy_leave__E((&ti_sysbios_BIOS_Module__state__V)->rtsGate, (&ti_sysbios_BIOS_Module__state__V)->rtsGateKey); } } /* * ======== BIOS_nullFunc ======== */ void ti_sysbios_BIOS_nullFunc__I() { } /* * ======== BIOS_registerRTSLock ======== */ void ti_sysbios_BIOS_registerRTSLock__I(void) { if ((&ti_sysbios_BIOS_Module__state__V)->rtsGate != 0) { _register_lock(ti_sysbios_BIOS_rtsLock__I); _register_unlock(ti_sysbios_BIOS_rtsUnlock__I); } } /* * ======== BIOS_removeRTSLock ======== */ void ti_sysbios_BIOS_removeRTSLock__I(void) { if ((&ti_sysbios_BIOS_Module__state__V)->rtsGate != 0) { _register_lock(ti_sysbios_BIOS_nullFunc__I); _register_unlock(ti_sysbios_BIOS_nullFunc__I); } } /* * ======== BIOS_exitFunc ======== */ void ti_sysbios_BIOS_exitFunc__I(Int stat) { /* remove the RTS lock */ ti_sysbios_BIOS_removeRTSLock__I(); /* force thread type to 'Main' */ ti_sysbios_BIOS_setThreadType__E(ti_sysbios_BIOS_ThreadType_Main); xdc_runtime_System_exit__E(stat); } /* * ======== BIOS_errorRaiseHook ======== */ void ti_sysbios_BIOS_errorRaiseHook__I(xdc_runtime_Error_Block *eb) { /* * If this is an Assert thread, defang Gate threadtype check */ if (eb->id == (xdc_runtime_Assert_E_assertFailed__C)) { /* remove the RTS lock */ ti_sysbios_BIOS_removeRTSLock__I(); /* force thread type to 'Main' */ ti_sysbios_BIOS_setThreadType__E(ti_sysbios_BIOS_ThreadType_Main); } /* Call the installed Error.raiseHook */ (ti_sysbios_BIOS_installedErrorHook__C)(eb); } /* * ======== ti.sysbios.Build TEMPLATE ======== */ /* * ======== ti.sysbios.knl.Clock TEMPLATE ======== */ void ti_sysbios_knl_Clock_doTick__I(UArg arg) { /* update system time */ (&ti_sysbios_knl_Clock_Module__state__V)->ticks++; ti_sysbios_knl_Clock_logTick__E(); if (!ti_sysbios_knl_Queue_empty__E(ti_sysbios_knl_Clock_Module_State_clockQ())) { (&ti_sysbios_knl_Clock_Module__state__V)->swiCount++; ti_sysbios_knl_Swi_post__E((&ti_sysbios_knl_Clock_Module__state__V)->swi); } } /* * ======== ti.sysbios.knl.Task TEMPLATE ======== */ /* * ======== ti.sysbios.utils.Load TEMPLATE ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Copyright (c) 2012, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_interfaces_ICore_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_UInt (*getId)(void); void (*interruptCore)(xdc_UInt coreId); xdc_IArg (*lock)(void); void (*unlock)(void); xdc_UInt (*hwiDisable)(void); xdc_UInt (*hwiEnable)(void); void (*hwiRestore)(xdc_UInt key); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Interface__BASE__C */ extern const xdc_runtime_Types_Base ti_sysbios_interfaces_ICore_Interface__BASE__C; /* * ======== FUNCTION STUBS ======== */ /* Module_id */ static inline xdc_runtime_Types_ModuleId ti_sysbios_interfaces_ICore_Module_id(ti_sysbios_interfaces_ICore_Module mod); static inline xdc_runtime_Types_ModuleId ti_sysbios_interfaces_ICore_Module_id(ti_sysbios_interfaces_ICore_Module mod) { return mod->__sysp->__mid; } /* getId */ static inline xdc_UInt ti_sysbios_interfaces_ICore_getId(ti_sysbios_interfaces_ICore_Module __mod); static inline xdc_UInt ti_sysbios_interfaces_ICore_getId( ti_sysbios_interfaces_ICore_Module __mod ) { return __mod->getId(); } /* interruptCore */ static inline void ti_sysbios_interfaces_ICore_interruptCore(ti_sysbios_interfaces_ICore_Module __mod, xdc_UInt coreId); static inline void ti_sysbios_interfaces_ICore_interruptCore( ti_sysbios_interfaces_ICore_Module __mod, xdc_UInt coreId ) { __mod->interruptCore(coreId); } /* lock */ static inline xdc_IArg ti_sysbios_interfaces_ICore_lock(ti_sysbios_interfaces_ICore_Module __mod); static inline xdc_IArg ti_sysbios_interfaces_ICore_lock( ti_sysbios_interfaces_ICore_Module __mod ) { return __mod->lock(); } /* unlock */ static inline void ti_sysbios_interfaces_ICore_unlock(ti_sysbios_interfaces_ICore_Module __mod); static inline void ti_sysbios_interfaces_ICore_unlock( ti_sysbios_interfaces_ICore_Module __mod ) { __mod->unlock(); } /* hwiDisable */ static inline xdc_UInt ti_sysbios_interfaces_ICore_hwiDisable(ti_sysbios_interfaces_ICore_Module __mod); static inline xdc_UInt ti_sysbios_interfaces_ICore_hwiDisable( ti_sysbios_interfaces_ICore_Module __mod ) { return __mod->hwiDisable(); } /* hwiEnable */ static inline xdc_UInt ti_sysbios_interfaces_ICore_hwiEnable(ti_sysbios_interfaces_ICore_Module __mod); static inline xdc_UInt ti_sysbios_interfaces_ICore_hwiEnable( ti_sysbios_interfaces_ICore_Module __mod ) { return __mod->hwiEnable(); } /* hwiRestore */ static inline void ti_sysbios_interfaces_ICore_hwiRestore(ti_sysbios_interfaces_ICore_Module __mod, xdc_UInt key); static inline void ti_sysbios_interfaces_ICore_hwiRestore( ti_sysbios_interfaces_ICore_Module __mod, xdc_UInt key ) { __mod->hwiRestore(key); } /* * ======== FUNCTION SELECTORS ======== */ /* These functions return function pointers for module and instance functions. * The functions accept modules and instances declared as types defined in this * interface, but they return functions defined for the actual objects passed * as parameters. These functions are not invoked by any generated code or * XDCtools internal code. */ /* getId_{FxnT,fxnP} */ typedef xdc_UInt (*ti_sysbios_interfaces_ICore_getId_FxnT)(void); static inline ti_sysbios_interfaces_ICore_getId_FxnT ti_sysbios_interfaces_ICore_getId_fxnP(ti_sysbios_interfaces_ICore_Module __mod); static inline ti_sysbios_interfaces_ICore_getId_FxnT ti_sysbios_interfaces_ICore_getId_fxnP(ti_sysbios_interfaces_ICore_Module __mod) { return (ti_sysbios_interfaces_ICore_getId_FxnT)__mod->getId; } /* interruptCore_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ICore_interruptCore_FxnT)(xdc_UInt coreId); static inline ti_sysbios_interfaces_ICore_interruptCore_FxnT ti_sysbios_interfaces_ICore_interruptCore_fxnP(ti_sysbios_interfaces_ICore_Module __mod); static inline ti_sysbios_interfaces_ICore_interruptCore_FxnT ti_sysbios_interfaces_ICore_interruptCore_fxnP(ti_sysbios_interfaces_ICore_Module __mod) { return (ti_sysbios_interfaces_ICore_interruptCore_FxnT)__mod->interruptCore; } /* lock_{FxnT,fxnP} */ typedef xdc_IArg (*ti_sysbios_interfaces_ICore_lock_FxnT)(void); static inline ti_sysbios_interfaces_ICore_lock_FxnT ti_sysbios_interfaces_ICore_lock_fxnP(ti_sysbios_interfaces_ICore_Module __mod); static inline ti_sysbios_interfaces_ICore_lock_FxnT ti_sysbios_interfaces_ICore_lock_fxnP(ti_sysbios_interfaces_ICore_Module __mod) { return (ti_sysbios_interfaces_ICore_lock_FxnT)__mod->lock; } /* unlock_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ICore_unlock_FxnT)(void); static inline ti_sysbios_interfaces_ICore_unlock_FxnT ti_sysbios_interfaces_ICore_unlock_fxnP(ti_sysbios_interfaces_ICore_Module __mod); static inline ti_sysbios_interfaces_ICore_unlock_FxnT ti_sysbios_interfaces_ICore_unlock_fxnP(ti_sysbios_interfaces_ICore_Module __mod) { return (ti_sysbios_interfaces_ICore_unlock_FxnT)__mod->unlock; } /* hwiDisable_{FxnT,fxnP} */ typedef xdc_UInt (*ti_sysbios_interfaces_ICore_hwiDisable_FxnT)(void); static inline ti_sysbios_interfaces_ICore_hwiDisable_FxnT ti_sysbios_interfaces_ICore_hwiDisable_fxnP(ti_sysbios_interfaces_ICore_Module __mod); static inline ti_sysbios_interfaces_ICore_hwiDisable_FxnT ti_sysbios_interfaces_ICore_hwiDisable_fxnP(ti_sysbios_interfaces_ICore_Module __mod) { return (ti_sysbios_interfaces_ICore_hwiDisable_FxnT)__mod->hwiDisable; } /* hwiEnable_{FxnT,fxnP} */ typedef xdc_UInt (*ti_sysbios_interfaces_ICore_hwiEnable_FxnT)(void); static inline ti_sysbios_interfaces_ICore_hwiEnable_FxnT ti_sysbios_interfaces_ICore_hwiEnable_fxnP(ti_sysbios_interfaces_ICore_Module __mod); static inline ti_sysbios_interfaces_ICore_hwiEnable_FxnT ti_sysbios_interfaces_ICore_hwiEnable_fxnP(ti_sysbios_interfaces_ICore_Module __mod) { return (ti_sysbios_interfaces_ICore_hwiEnable_FxnT)__mod->hwiEnable; } /* hwiRestore_{FxnT,fxnP} */ typedef void (*ti_sysbios_interfaces_ICore_hwiRestore_FxnT)(xdc_UInt key); static inline ti_sysbios_interfaces_ICore_hwiRestore_FxnT ti_sysbios_interfaces_ICore_hwiRestore_fxnP(ti_sysbios_interfaces_ICore_Module __mod); static inline ti_sysbios_interfaces_ICore_hwiRestore_FxnT ti_sysbios_interfaces_ICore_hwiRestore_fxnP(ti_sysbios_interfaces_ICore_Module __mod) { return (ti_sysbios_interfaces_ICore_hwiRestore_FxnT)__mod->hwiRestore; } /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * MODULE-WIDE CONFIGS * VIRTUAL FUNCTIONS * FUNCTION DECLARATIONS * CONVERTORS * SYSTEM FUNCTIONS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== INCLUDES ======== */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:30; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-D20 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * VIRTUAL FUNCTIONS * FUNCTION STUBS * FUNCTION SELECTORS * * EPILOGUE * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_hal_Core_CoreProxy_Module__diagsEnabled; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__diagsEnabled ti_sysbios_hal_Core_CoreProxy_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_hal_Core_CoreProxy_Module__diagsIncluded; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__diagsIncluded ti_sysbios_hal_Core_CoreProxy_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_hal_Core_CoreProxy_Module__diagsMask; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__diagsMask ti_sysbios_hal_Core_CoreProxy_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_hal_Core_CoreProxy_Module__gateObj; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__gateObj ti_sysbios_hal_Core_CoreProxy_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_hal_Core_CoreProxy_Module__gatePrms; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__gatePrms ti_sysbios_hal_Core_CoreProxy_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_hal_Core_CoreProxy_Module__id; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__id ti_sysbios_hal_Core_CoreProxy_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerDefined; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerDefined ti_sysbios_hal_Core_CoreProxy_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerObj; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerObj ti_sysbios_hal_Core_CoreProxy_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn0; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn0 ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn1; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn1 ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn2; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn2 ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn4; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn4 ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn8; extern const CT__ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn8 ti_sysbios_hal_Core_CoreProxy_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_hal_Core_CoreProxy_Object__count; extern const CT__ti_sysbios_hal_Core_CoreProxy_Object__count ti_sysbios_hal_Core_CoreProxy_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_hal_Core_CoreProxy_Object__heap; extern const CT__ti_sysbios_hal_Core_CoreProxy_Object__heap ti_sysbios_hal_Core_CoreProxy_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_hal_Core_CoreProxy_Object__sizeof; extern const CT__ti_sysbios_hal_Core_CoreProxy_Object__sizeof ti_sysbios_hal_Core_CoreProxy_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_hal_Core_CoreProxy_Object__table; extern const CT__ti_sysbios_hal_Core_CoreProxy_Object__table ti_sysbios_hal_Core_CoreProxy_Object__table__C; /* numCores */ typedef xdc_UInt CT__ti_sysbios_hal_Core_CoreProxy_numCores; extern const CT__ti_sysbios_hal_Core_CoreProxy_numCores ti_sysbios_hal_Core_CoreProxy_numCores__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_hal_Core_CoreProxy_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_UInt (*getId)(void); void (*interruptCore)(xdc_UInt coreId); xdc_IArg (*lock)(void); void (*unlock)(void); xdc_UInt (*hwiDisable)(void); xdc_UInt (*hwiEnable)(void); void (*hwiRestore)(xdc_UInt key); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_hal_Core_CoreProxy_Fxns__ ti_sysbios_hal_Core_CoreProxy_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Handle__label__S */ extern xdc_runtime_Types_Label *ti_sysbios_hal_Core_CoreProxy_Handle__label__S( xdc_Ptr obj, xdc_runtime_Types_Label *lab ); /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_hal_Core_CoreProxy_Module__startupDone__S( void ); /* Object__get__S */ extern xdc_Ptr ti_sysbios_hal_Core_CoreProxy_Object__get__S( xdc_Ptr oarr, xdc_Int i ); /* Object__first__S */ extern xdc_Ptr ti_sysbios_hal_Core_CoreProxy_Object__first__S( void ); /* Object__next__S */ extern xdc_Ptr ti_sysbios_hal_Core_CoreProxy_Object__next__S( xdc_Ptr obj ); /* Params__init__S */ extern void ti_sysbios_hal_Core_CoreProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ); /* Proxy__abstract__S */ extern xdc_Bool ti_sysbios_hal_Core_CoreProxy_Proxy__abstract__S( void ); /* Proxy__delegate__S */ extern xdc_CPtr ti_sysbios_hal_Core_CoreProxy_Proxy__delegate__S( void ); /* getId__E */ extern xdc_UInt ti_sysbios_hal_Core_CoreProxy_getId__E( void ); /* interruptCore__E */ extern void ti_sysbios_hal_Core_CoreProxy_interruptCore__E( xdc_UInt coreId ); /* lock__E */ extern xdc_IArg ti_sysbios_hal_Core_CoreProxy_lock__E( void ); /* unlock__E */ extern void ti_sysbios_hal_Core_CoreProxy_unlock__E( void ); /* hwiDisable__E */ extern xdc_UInt ti_sysbios_hal_Core_CoreProxy_hwiDisable__E( void ); /* hwiEnable__E */ extern xdc_UInt ti_sysbios_hal_Core_CoreProxy_hwiEnable__E( void ); /* hwiRestore__E */ extern void ti_sysbios_hal_Core_CoreProxy_hwiRestore__E( xdc_UInt key ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_ICore_Module ti_sysbios_hal_Core_CoreProxy_Module_upCast(void); static inline ti_sysbios_interfaces_ICore_Module ti_sysbios_hal_Core_CoreProxy_Module_upCast(void) { return (ti_sysbios_interfaces_ICore_Module)ti_sysbios_hal_Core_CoreProxy_Proxy__delegate__S(); } /* Module_to_ti_sysbios_interfaces_ICore */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_hal_Core_CoreProxy_Module__id ti_sysbios_hal_Core_CoreProxy_Module_id(void); static inline CT__ti_sysbios_hal_Core_CoreProxy_Module__id ti_sysbios_hal_Core_CoreProxy_Module_id( void ) { return ti_sysbios_hal_Core_CoreProxy_Module__id__C; } /* Proxy_abstract */ /* Proxy_delegate */ /* * ======== EPILOGUE ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== AUXILIARY DEFINITIONS ======== */ /* * ======== INTERNAL DEFINITIONS ======== */ /* * ======== MODULE-WIDE CONFIGS ======== */ /* Module__diagsEnabled */ typedef xdc_Bits32 CT__ti_sysbios_hal_Core_Module__diagsEnabled; extern const CT__ti_sysbios_hal_Core_Module__diagsEnabled ti_sysbios_hal_Core_Module__diagsEnabled__C; /* Module__diagsIncluded */ typedef xdc_Bits32 CT__ti_sysbios_hal_Core_Module__diagsIncluded; extern const CT__ti_sysbios_hal_Core_Module__diagsIncluded ti_sysbios_hal_Core_Module__diagsIncluded__C; /* Module__diagsMask */ typedef xdc_Bits16 *CT__ti_sysbios_hal_Core_Module__diagsMask; extern const CT__ti_sysbios_hal_Core_Module__diagsMask ti_sysbios_hal_Core_Module__diagsMask__C; /* Module__gateObj */ typedef xdc_Ptr CT__ti_sysbios_hal_Core_Module__gateObj; extern const CT__ti_sysbios_hal_Core_Module__gateObj ti_sysbios_hal_Core_Module__gateObj__C; /* Module__gatePrms */ typedef xdc_Ptr CT__ti_sysbios_hal_Core_Module__gatePrms; extern const CT__ti_sysbios_hal_Core_Module__gatePrms ti_sysbios_hal_Core_Module__gatePrms__C; /* Module__id */ typedef xdc_runtime_Types_ModuleId CT__ti_sysbios_hal_Core_Module__id; extern const CT__ti_sysbios_hal_Core_Module__id ti_sysbios_hal_Core_Module__id__C; /* Module__loggerDefined */ typedef xdc_Bool CT__ti_sysbios_hal_Core_Module__loggerDefined; extern const CT__ti_sysbios_hal_Core_Module__loggerDefined ti_sysbios_hal_Core_Module__loggerDefined__C; /* Module__loggerObj */ typedef xdc_Ptr CT__ti_sysbios_hal_Core_Module__loggerObj; extern const CT__ti_sysbios_hal_Core_Module__loggerObj ti_sysbios_hal_Core_Module__loggerObj__C; /* Module__loggerFxn0 */ typedef xdc_runtime_Types_LoggerFxn0 CT__ti_sysbios_hal_Core_Module__loggerFxn0; extern const CT__ti_sysbios_hal_Core_Module__loggerFxn0 ti_sysbios_hal_Core_Module__loggerFxn0__C; /* Module__loggerFxn1 */ typedef xdc_runtime_Types_LoggerFxn1 CT__ti_sysbios_hal_Core_Module__loggerFxn1; extern const CT__ti_sysbios_hal_Core_Module__loggerFxn1 ti_sysbios_hal_Core_Module__loggerFxn1__C; /* Module__loggerFxn2 */ typedef xdc_runtime_Types_LoggerFxn2 CT__ti_sysbios_hal_Core_Module__loggerFxn2; extern const CT__ti_sysbios_hal_Core_Module__loggerFxn2 ti_sysbios_hal_Core_Module__loggerFxn2__C; /* Module__loggerFxn4 */ typedef xdc_runtime_Types_LoggerFxn4 CT__ti_sysbios_hal_Core_Module__loggerFxn4; extern const CT__ti_sysbios_hal_Core_Module__loggerFxn4 ti_sysbios_hal_Core_Module__loggerFxn4__C; /* Module__loggerFxn8 */ typedef xdc_runtime_Types_LoggerFxn8 CT__ti_sysbios_hal_Core_Module__loggerFxn8; extern const CT__ti_sysbios_hal_Core_Module__loggerFxn8 ti_sysbios_hal_Core_Module__loggerFxn8__C; /* Object__count */ typedef xdc_Int CT__ti_sysbios_hal_Core_Object__count; extern const CT__ti_sysbios_hal_Core_Object__count ti_sysbios_hal_Core_Object__count__C; /* Object__heap */ typedef xdc_runtime_IHeap_Handle CT__ti_sysbios_hal_Core_Object__heap; extern const CT__ti_sysbios_hal_Core_Object__heap ti_sysbios_hal_Core_Object__heap__C; /* Object__sizeof */ typedef xdc_SizeT CT__ti_sysbios_hal_Core_Object__sizeof; extern const CT__ti_sysbios_hal_Core_Object__sizeof ti_sysbios_hal_Core_Object__sizeof__C; /* Object__table */ typedef xdc_Ptr CT__ti_sysbios_hal_Core_Object__table; extern const CT__ti_sysbios_hal_Core_Object__table ti_sysbios_hal_Core_Object__table__C; /* numCores */ typedef xdc_UInt CT__ti_sysbios_hal_Core_numCores; extern const CT__ti_sysbios_hal_Core_numCores ti_sysbios_hal_Core_numCores__C; /* * ======== VIRTUAL FUNCTIONS ======== */ /* Fxns__ */ struct ti_sysbios_hal_Core_Fxns__ { const xdc_runtime_Types_Base* __base; const xdc_runtime_Types_SysFxns2* __sysp; xdc_UInt (*getId)(void); void (*interruptCore)(xdc_UInt coreId); xdc_IArg (*lock)(void); void (*unlock)(void); xdc_UInt (*hwiDisable)(void); xdc_UInt (*hwiEnable)(void); void (*hwiRestore)(xdc_UInt key); xdc_runtime_Types_SysFxns2 __sfxns; }; /* Module__FXNS__C */ extern const ti_sysbios_hal_Core_Fxns__ ti_sysbios_hal_Core_Module__FXNS__C; /* * ======== FUNCTION DECLARATIONS ======== */ /* Module_startup */ /* Module__startupDone__S */ extern xdc_Bool ti_sysbios_hal_Core_Module__startupDone__S( void ); /* * ======== CONVERTORS ======== */ /* Module_upCast */ static inline ti_sysbios_interfaces_ICore_Module ti_sysbios_hal_Core_Module_upCast(void); static inline ti_sysbios_interfaces_ICore_Module ti_sysbios_hal_Core_Module_upCast(void) { return (ti_sysbios_interfaces_ICore_Module)&ti_sysbios_hal_Core_Module__FXNS__C; } /* Module_to_ti_sysbios_interfaces_ICore */ /* * ======== SYSTEM FUNCTIONS ======== */ /* Module_startupDone */ /* Object_heap */ /* Module_heap */ /* Module_id */ static inline CT__ti_sysbios_hal_Core_Module__id ti_sysbios_hal_Core_Module_id(void); static inline CT__ti_sysbios_hal_Core_Module__id ti_sysbios_hal_Core_Module_id( void ) { return ti_sysbios_hal_Core_Module__id__C; } /* Module_hasMask */ static inline xdc_Bool ti_sysbios_hal_Core_Module_hasMask(void); static inline xdc_Bool ti_sysbios_hal_Core_Module_hasMask(void) { return (xdc_Bool)(ti_sysbios_hal_Core_Module__diagsMask__C != 0); } /* Module_getMask */ static inline xdc_Bits16 ti_sysbios_hal_Core_Module_getMask(void); static inline xdc_Bits16 ti_sysbios_hal_Core_Module_getMask( void ) { return ti_sysbios_hal_Core_Module__diagsMask__C != 0 ? *ti_sysbios_hal_Core_Module__diagsMask__C : (xdc_Bits16)0; } /* Module_setMask */ static inline void ti_sysbios_hal_Core_Module_setMask(xdc_Bits16 mask); static inline void ti_sysbios_hal_Core_Module_setMask(xdc_Bits16 mask) { if (ti_sysbios_hal_Core_Module__diagsMask__C != 0) { *ti_sysbios_hal_Core_Module__diagsMask__C = mask; } } /* * ======== EPILOGUE ======== */ /* * Copyright (c) 2015-2016, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * ======== Core_getId ======== */ /* * ======== Core_interruptCore ======== */ /* * ======== Core_lock ======== */ /* * ======== Core_unlock ======== */ extern UInt ti_sysbios_hal_Hwi_disable__E(); extern UInt ti_sysbios_hal_Hwi_enable__E(); extern void ti_sysbios_hal_Hwi_restore__E(UInt key); /* * ======== Core_hwiDisable ======== */ /* * ======== Core_hwiEnable ======== */ /* * ======== Core_hwiRestore ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * ======== Load_update ======== */ void ti_sysbios_utils_Load_update__E() { /* Update and Log CPU load, Task, Swi, and Hwi loads (if enabled). */ ti_sysbios_utils_Load_updateLoads__E(); } /* * ======== ti.sysbios.rts.MemAlloc TEMPLATE ======== */ #pragma FUNC_EXT_CALLED(malloc); #pragma FUNC_EXT_CALLED(memalign); #pragma FUNC_EXT_CALLED(free); #pragma FUNC_EXT_CALLED(calloc); #pragma FUNC_EXT_CALLED(realloc); /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ /* * ======== GENERATED SECTIONS ======== * * PROLOGUE * INCLUDES * * INTERNAL DEFINITIONS * MODULE-WIDE CONFIGS * FUNCTION DECLARATIONS * SYSTEM FUNCTIONS * * EPILOGUE * STATE STRUCTURES * PREFIX ALIASES */ /* * ======== PROLOGUE ======== */ /* * ======== STATE STRUCTURES ======== */ /* * ======== PREFIX ALIASES ======== */ /* * @(#) xdc.runtime; 2, 1, 0,0; 7-31-2018 11:49:29; /db/ztree/library/trees/xdc/xdc-E10/src/packages/ */ /*****************************************************************************/ /* string.h */ /* */ /* Copyright (c) 1993 Texas Instruments Incorporated */ /* http://www.ti.com/ */ /* */ /* Redistribution and use in source and binary forms, with or without */ /* modification, are permitted provided that the following conditions */ /* are met: */ /* */ /* Redistributions of source code must retain the above copyright */ /* notice, this list of conditions and the following disclaimer. */ /* */ /* Redistributions in binary form must reproduce the above copyright */ /* notice, this list of conditions and the following disclaimer in */ /* the documentation and/or other materials provided with the */ /* distribution. */ /* */ /* Neither the name of Texas Instruments Incorporated nor the names */ /* of its contributors may be used to endorse or promote products */ /* derived from this software without specific prior written */ /* permission. */ /* */ /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */ /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */ /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */ /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */ /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */ /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */ /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */ /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */ /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */ /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* */ /*****************************************************************************/ #pragma diag_push #pragma CHECK_MISRA("-6.3") /* standard types required for standard headers */ #pragma CHECK_MISRA("-19.1") /* #includes required for implementation */ #pragma CHECK_MISRA("-20.1") /* standard headers must define standard names */ #pragma CHECK_MISRA("-20.2") /* standard headers must define standard names */ #pragma diag_push #pragma CHECK_MISRA("-19.4") /* macros required for implementation */ #pragma diag_pop size_t strlen(const char *string); char *strcpy(char * __restrict dest, const char * __restrict src); char *strncpy(char * __restrict dest, const char * __restrict src, size_t n); char *strcat(char * __restrict string1, const char * __restrict string2); char *strncat(char * __restrict dest, const char * __restrict src, size_t n); char *strchr(const char *string, int c); char *strrchr(const char *string, int c); int strcmp(const char *string1, const char *string2); int strncmp(const char *string1, const char *string2, size_t n); int strcoll(const char *string1, const char *_string2); size_t strxfrm(char * __restrict to, const char * __restrict from, size_t n); char *strpbrk(const char *string, const char *chs); size_t strspn(const char *string, const char *chs); size_t strcspn(const char *string, const char *chs); char *strstr(const char *string1, const char *string2); char *strtok(char * __restrict str1, const char * __restrict str2); char *strerror(int _errno); char *strdup(const char *string); void *memmove(void *s1, const void *s2, size_t n); #pragma diag_push #pragma CHECK_MISRA("-16.4") /* false positives due to builtin declarations */ void *memcpy(void * __restrict s1, const void * __restrict s2, size_t n); #pragma diag_pop int memcmp(const void *cs, const void *ct, size_t n); void *memchr(const void *cs, int c, size_t n); void *memset(void *mem, int ch, size_t length); #pragma diag_push /* keep macros as direct #defines and not function-like macros or function names surrounded by parentheses to support all original supported use cases including taking their address through the macros and prefixing with namespace macros */ #pragma CHECK_MISRA("-19.4") #pragma diag_pop size_t far_strlen(const char *s); char *strcpy_nf(char *s1, const char *s2); char *strcpy_fn(char *s1, const char *s2); char *strcpy_ff(char *s1, const char *s2); char *far_strncpy(char *s1, const char *s2, size_t n); char *far_strcat(char *s1, const char *s2); char *far_strncat(char *s1, const char *s2, size_t n); char *far_strchr(const char *s, int c); char *far_strrchr(const char *s, int c); int far_strcmp(const char *s1, const char *s2); int far_strncmp(const char *s1, const char *s2, size_t n); int far_strcoll(const char *s1, const char *s2); size_t far_strxfrm(char *s1, const char *s2, size_t n); char *far_strpbrk(const char *s1, const char *s2); size_t far_strspn(const char *s1, const char *s2); size_t far_strcspn(const char *s1, const char *s2); char *far_strstr(const char *s1, const char *s2); char *far_strtok(char *s1, const char *s2); char *far_strerror(int _errno); void *far_memmove(void *s1, const void *s2, size_t n); void *__memcpy_nf (void *_s1, const void *_s2, size_t _n); void *__memcpy_fn (void *_s1, const void *_s2, size_t _n); void *__memcpy_ff (void *_s1, const void *_s2, size_t _n); int far_memcmp(const void *s1, const void *s2, size_t n); void *far_memchr(const void *s, int c, size_t n); void *far_memset(void *s, int c, size_t n); void *far_memlcpy(void *to, const void *from, unsigned long n); void *far_memlmove(void *to, const void *from, unsigned long n); /*----------------------------------------------------------------------------*/ /* If sys/cdefs.h is available, go ahead and include it. xlocale.h assumes */ /* this file will have already included sys/cdefs.h. */ /*----------------------------------------------------------------------------*/ /*----------------------------------------------------------------------------*/ /* Include xlocale/_string.h> if POSIX is enabled. This will expose the */ /* xlocale string interface. */ /*----------------------------------------------------------------------------*/ #pragma diag_pop /* * Header is a union to make sure that the size is a power of 2. * * On the MSP430 small model (MSP430X), size_t is 2 bytes, which makes * the size of this struct 6 bytes. */ typedef union Header { struct { Ptr actualBuf; SizeT size; } header; UArg pad[2]; /* 4 words on 28L, 8 bytes on most others */ } Header; /* * ======== ti_sysbios_rts_gnu_MemAlloc_alloc ======== */ static void *ti_sysbios_rts_gnu_MemAlloc_alloc(SizeT size) { Header *packet; xdc_runtime_Error_Block eb; xdc_runtime_Error_init__E(&eb); if (size == 0) { return (0); } packet = (Header *)xdc_runtime_Memory_alloc__E(0, (SizeT)(size + sizeof(Header)), 0, &eb); if (packet == 0) { return (0); } packet->header.actualBuf = (Ptr)packet; packet->header.size = size + sizeof(Header); return (packet + 1); } /* * ======== malloc ======== */ void *malloc(SizeT size) { return (ti_sysbios_rts_gnu_MemAlloc_alloc(size)); } /* * ======== memalign ======== * mirrors the memalign() function from the TI run-time library */ void *memalign(SizeT alignment, SizeT size) { Header *packet; void *tmp; xdc_runtime_Error_Block eb; xdc_runtime_Error_init__E(&eb); if (alignment < sizeof(Header)) { alignment = sizeof(Header); } /* * return NULL if size is 0, or alignment is not a power of 2 */ if (size == 0 || (alignment & (alignment - 1))) { return (0); } /* * Allocate 'align + size' so that we have room for the 'packet' * and can return an aligned buffer. */ tmp = xdc_runtime_Memory_alloc__E(0, alignment + size, alignment, &eb); if (tmp == 0) { return (0); } packet = (Header *)((char *)tmp + alignment - sizeof(Header)); packet->header.actualBuf = tmp; packet->header.size = size + sizeof(Header); return (packet + 1); } /* * ======== calloc ======== */ void *calloc(SizeT nmemb, SizeT size) { SizeT nbytes; Ptr retval; nbytes = nmemb * size; /* return NULL if there's an overflow */ if (nmemb && size != (nbytes / nmemb)) { return (0); } retval = ti_sysbios_rts_gnu_MemAlloc_alloc(nbytes); if (retval != 0) { (void)memset(retval, (Int)'\0', nbytes); } return (retval); } /* * ======== free ======== */ void free(void *ptr) { Header *packet; if (ptr != 0) { packet = ((Header *)ptr) - 1; xdc_runtime_Memory_free__E(0, (Ptr)packet->header.actualBuf, (packet->header.size + ((char*)packet - (char*)packet->header.actualBuf))); } } /* * ======== realloc ======== */ void *realloc(void *ptr, SizeT size) { Ptr retval; Header *packet; SizeT oldSize; if (ptr == 0) { retval = malloc(size); } else if (size == 0) { free(ptr); retval = 0; } else { packet = (Header *)ptr - 1; retval = malloc(size); if (retval != 0) { oldSize = packet->header.size - sizeof(Header); (void)memcpy(retval, ptr, (size < oldSize) ? size : oldSize); free(ptr); } } return (retval); } /* * ======== ti.sysbios.BIOS INITIALIZERS ======== */ /* Module__state__V */ ti_sysbios_BIOS_Module_State__ ti_sysbios_BIOS_Module__state__V = { { (xdc_Bits32)0x0, /* hi */ (xdc_Bits32)0xbebc200, /* lo */ }, /* cpuFreq */ (xdc_UInt)0x0, /* rtsGateCount */ ((xdc_IArg)(0x0)), /* rtsGateKey */ (ti_sysbios_BIOS_RtsGateProxy_Handle)&ti_sysbios_gates_GateMutex_Object__table__V[1], /* rtsGate */ ti_sysbios_BIOS_ThreadType_Main, /* threadType */ ((void*)0), /* smpThreadType */ ((void(*)(void))((xdc_Fxn)ti_sysbios_BIOS_startFunc__I)), /* startFunc */ ((void(*)(xdc_Int))((xdc_Fxn)ti_sysbios_BIOS_exitFunc__I)), /* exitFunc */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__diagsEnabled__C, ".econst:ti_sysbios_BIOS_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__diagsEnabled ti_sysbios_BIOS_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__diagsIncluded__C, ".econst:ti_sysbios_BIOS_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__diagsIncluded ti_sysbios_BIOS_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__diagsMask__C, ".econst:ti_sysbios_BIOS_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__diagsMask ti_sysbios_BIOS_Module__diagsMask__C = ((CT__ti_sysbios_BIOS_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__gateObj__C, ".econst:ti_sysbios_BIOS_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__gateObj ti_sysbios_BIOS_Module__gateObj__C = ((CT__ti_sysbios_BIOS_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__gatePrms__C, ".econst:ti_sysbios_BIOS_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__gatePrms ti_sysbios_BIOS_Module__gatePrms__C = ((CT__ti_sysbios_BIOS_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__id__C, ".econst:ti_sysbios_BIOS_Module__id__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__id ti_sysbios_BIOS_Module__id__C = (xdc_Bits16)0x18; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerDefined__C, ".econst:ti_sysbios_BIOS_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__loggerDefined ti_sysbios_BIOS_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerObj__C, ".econst:ti_sysbios_BIOS_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__loggerObj ti_sysbios_BIOS_Module__loggerObj__C = ((CT__ti_sysbios_BIOS_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerFxn0__C, ".econst:ti_sysbios_BIOS_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__loggerFxn0 ti_sysbios_BIOS_Module__loggerFxn0__C = ((CT__ti_sysbios_BIOS_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerFxn1__C, ".econst:ti_sysbios_BIOS_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__loggerFxn1 ti_sysbios_BIOS_Module__loggerFxn1__C = ((CT__ti_sysbios_BIOS_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerFxn2__C, ".econst:ti_sysbios_BIOS_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__loggerFxn2 ti_sysbios_BIOS_Module__loggerFxn2__C = ((CT__ti_sysbios_BIOS_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerFxn4__C, ".econst:ti_sysbios_BIOS_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__loggerFxn4 ti_sysbios_BIOS_Module__loggerFxn4__C = ((CT__ti_sysbios_BIOS_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Module__loggerFxn8__C, ".econst:ti_sysbios_BIOS_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Module__loggerFxn8 ti_sysbios_BIOS_Module__loggerFxn8__C = ((CT__ti_sysbios_BIOS_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Object__count__C, ".econst:ti_sysbios_BIOS_Object__count__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Object__count ti_sysbios_BIOS_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Object__heap__C, ".econst:ti_sysbios_BIOS_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Object__heap ti_sysbios_BIOS_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Object__sizeof__C, ".econst:ti_sysbios_BIOS_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Object__sizeof ti_sysbios_BIOS_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_Object__table__C, ".econst:ti_sysbios_BIOS_Object__table__C"); asm(" .sect \".econst:ti_sysbios_BIOS_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_Object__table ti_sysbios_BIOS_Object__table__C = 0; /* smpEnabled__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_smpEnabled__C, ".econst:ti_sysbios_BIOS_smpEnabled__C"); asm(" .sect \".econst:ti_sysbios_BIOS_smpEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_smpEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_smpEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_smpEnabled ti_sysbios_BIOS_smpEnabled__C = 0; /* cpuFreq__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_cpuFreq__C, ".econst:ti_sysbios_BIOS_cpuFreq__C"); asm(" .sect \".econst:ti_sysbios_BIOS_cpuFreq__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_cpuFreq__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_cpuFreq__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_cpuFreq ti_sysbios_BIOS_cpuFreq__C = { (xdc_Bits32)0x0, /* hi */ (xdc_Bits32)0xbebc200, /* lo */ }; /* runtimeCreatesEnabled__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_runtimeCreatesEnabled__C, ".econst:ti_sysbios_BIOS_runtimeCreatesEnabled__C"); asm(" .sect \".econst:ti_sysbios_BIOS_runtimeCreatesEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_runtimeCreatesEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_runtimeCreatesEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_runtimeCreatesEnabled ti_sysbios_BIOS_runtimeCreatesEnabled__C = 0; /* taskEnabled__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_taskEnabled__C, ".econst:ti_sysbios_BIOS_taskEnabled__C"); asm(" .sect \".econst:ti_sysbios_BIOS_taskEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_taskEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_taskEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_taskEnabled ti_sysbios_BIOS_taskEnabled__C = 1; /* swiEnabled__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_swiEnabled__C, ".econst:ti_sysbios_BIOS_swiEnabled__C"); asm(" .sect \".econst:ti_sysbios_BIOS_swiEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_swiEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_swiEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_swiEnabled ti_sysbios_BIOS_swiEnabled__C = 1; /* clockEnabled__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_clockEnabled__C, ".econst:ti_sysbios_BIOS_clockEnabled__C"); asm(" .sect \".econst:ti_sysbios_BIOS_clockEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_clockEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_clockEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_clockEnabled ti_sysbios_BIOS_clockEnabled__C = 1; /* heapSize__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_heapSize__C, ".econst:ti_sysbios_BIOS_heapSize__C"); asm(" .sect \".econst:ti_sysbios_BIOS_heapSize__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_heapSize__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_heapSize__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_heapSize ti_sysbios_BIOS_heapSize__C = (xdc_SizeT)0x20; /* heapSection__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_heapSection__C, ".econst:ti_sysbios_BIOS_heapSection__C"); asm(" .sect \".econst:ti_sysbios_BIOS_heapSection__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_heapSection__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_heapSection__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_heapSection ti_sysbios_BIOS_heapSection__C = "heap"; /* heapTrackEnabled__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_heapTrackEnabled__C, ".econst:ti_sysbios_BIOS_heapTrackEnabled__C"); asm(" .sect \".econst:ti_sysbios_BIOS_heapTrackEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_heapTrackEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_heapTrackEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_heapTrackEnabled ti_sysbios_BIOS_heapTrackEnabled__C = 0; /* setupSecureContext__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_setupSecureContext__C, ".econst:ti_sysbios_BIOS_setupSecureContext__C"); asm(" .sect \".econst:ti_sysbios_BIOS_setupSecureContext__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_setupSecureContext__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_setupSecureContext__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_setupSecureContext ti_sysbios_BIOS_setupSecureContext__C = 0; /* useSK__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_useSK__C, ".econst:ti_sysbios_BIOS_useSK__C"); asm(" .sect \".econst:ti_sysbios_BIOS_useSK__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_useSK__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_useSK__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_useSK ti_sysbios_BIOS_useSK__C = 0; /* installedErrorHook__C */ #pragma DATA_SECTION(ti_sysbios_BIOS_installedErrorHook__C, ".econst:ti_sysbios_BIOS_installedErrorHook__C"); asm(" .sect \".econst:ti_sysbios_BIOS_installedErrorHook__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_BIOS_installedErrorHook__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_BIOS_installedErrorHook__C\""); asm(" .clink "); const CT__ti_sysbios_BIOS_installedErrorHook ti_sysbios_BIOS_installedErrorHook__C = ((CT__ti_sysbios_BIOS_installedErrorHook)((xdc_Fxn)xdc_runtime_Error_print__E)); /* * ======== ti.sysbios.BIOS_RtsGateProxy INITIALIZERS ======== */ /* * ======== ti.sysbios.family.c28.Hwi INITIALIZERS ======== */ /* Object__DESC__C */ const xdc_runtime_Core_ObjDesc ti_sysbios_family_c28_Hwi_Object__DESC__C; /* Object__PARAMS__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Object__PARAMS__C, ".econst:ti_sysbios_family_c28_Hwi_Object__PARAMS__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Object__PARAMS__C\""); asm(" .clink "); const ti_sysbios_family_c28_Hwi_Params ti_sysbios_family_c28_Hwi_Object__PARAMS__C = { sizeof (ti_sysbios_family_c28_Hwi_Params), /* __size */ 0, /* __self */ 0, /* __fxns */ (xdc_runtime_IInstance_Params*)&ti_sysbios_family_c28_Hwi_Object__PARAMS__C.__iprms, /* instance */ ti_sysbios_interfaces_IHwi_MaskingOption_SELF, /* maskSetting */ ((xdc_UArg)(0x0)), /* arg */ 1, /* enableInt */ (xdc_Int)(-0x0 - 1), /* eventId */ (xdc_Int)0x0, /* priority */ (xdc_Bits16)0x0, /* disableMask */ (xdc_Bits16)0x0, /* restoreMask */ 1, /* enableAck */ { sizeof (xdc_runtime_IInstance_Params), /* __size */ 0, /* name */ }, /* instance */ }; /* Object__table__V */ ti_sysbios_family_c28_Hwi_Object__ ti_sysbios_family_c28_Hwi_Object__table__V[6] = { {/* instance#0 */ 0, (xdc_UInt)0x48, /* intNum */ 1, /* enableInt */ 1, /* enableAck */ (xdc_Bits16)0x20, /* disableMask */ (xdc_Bits16)0x20, /* restoreMask */ (xdc_Bits16)0x20, /* ierBitMask */ ((xdc_UArg)(0x0)), /* arg */ ((void(*)(xdc_UArg))((xdc_Fxn)SpiA_ISR)), /* fxn */ ((xdc_UArg)0), /* irp */ ((void*)0), /* hookEnv */ }, {/* instance#1 */ 0, (xdc_UInt)0xa8, /* intNum */ 1, /* enableInt */ 1, /* enableAck */ (xdc_Bits16)0x20, /* disableMask */ (xdc_Bits16)0x20, /* restoreMask */ (xdc_Bits16)0x20, /* ierBitMask */ ((xdc_UArg)(0x0)), /* arg */ ((void(*)(xdc_UArg))((xdc_Fxn)SpiC_ISR)), /* fxn */ ((xdc_UArg)0), /* irp */ ((void*)0), /* hookEnv */ }, {/* instance#2 */ 0, (xdc_UInt)0x5a, /* intNum */ 1, /* enableInt */ 1, /* enableAck */ (xdc_Bits16)0x80, /* disableMask */ (xdc_Bits16)0x80, /* restoreMask */ (xdc_Bits16)0x80, /* ierBitMask */ ((xdc_UArg)(0x0)), /* arg */ ((void(*)(xdc_UArg))((xdc_Fxn)i2c_int1b_isr)), /* fxn */ ((xdc_UArg)0), /* irp */ ((void*)0), /* hookEnv */ }, {/* instance#3 */ 0, (xdc_UInt)0x58, /* intNum */ 1, /* enableInt */ 1, /* enableAck */ (xdc_Bits16)0x80, /* disableMask */ (xdc_Bits16)0x80, /* restoreMask */ (xdc_Bits16)0x80, /* ierBitMask */ ((xdc_UArg)(0x0)), /* arg */ ((void(*)(xdc_UArg))((xdc_Fxn)i2c_int1a_isr)), /* fxn */ ((xdc_UArg)0), /* irp */ ((void*)0), /* hookEnv */ }, {/* instance#4 */ 0, (xdc_UInt)0xe, /* intNum */ 1, /* enableInt */ 1, /* enableAck */ (xdc_Bits16)0x2000, /* disableMask */ (xdc_Bits16)0x2000, /* restoreMask */ (xdc_Bits16)0x2000, /* ierBitMask */ ((xdc_UArg)0), /* arg */ ((void(*)(xdc_UArg))((xdc_Fxn)cycle_Timer_ISR)), /* fxn */ ((xdc_UArg)0), /* irp */ ((void*)0), /* hookEnv */ }, {/* instance#5 */ 0, (xdc_UInt)0xd, /* intNum */ 1, /* enableInt */ 1, /* enableAck */ (xdc_Bits16)0x1000, /* disableMask */ (xdc_Bits16)0x1000, /* restoreMask */ (xdc_Bits16)0x1000, /* ierBitMask */ ((xdc_UArg)0), /* arg */ ((void(*)(xdc_UArg))((xdc_Fxn)ti_sysbios_knl_Clock_doTick__I)), /* fxn */ ((xdc_UArg)0), /* irp */ ((void*)0), /* hookEnv */ }, }; /* --> ti_sysbios_family_c28_Hwi_Module_State_0_dispatchTable__A */ __T1_ti_sysbios_family_c28_Hwi_Module_State__dispatchTable ti_sysbios_family_c28_Hwi_Module_State_0_dispatchTable__A[224] = { 0, /* [0] */ 0, /* [1] */ 0, /* [2] */ 0, /* [3] */ 0, /* [4] */ 0, /* [5] */ 0, /* [6] */ 0, /* [7] */ 0, /* [8] */ 0, /* [9] */ 0, /* [10] */ 0, /* [11] */ 0, /* [12] */ (ti_sysbios_family_c28_Hwi_Handle)&ti_sysbios_family_c28_Hwi_Object__table__V[5], /* [13] */ (ti_sysbios_family_c28_Hwi_Handle)&ti_sysbios_family_c28_Hwi_Object__table__V[4], /* [14] */ 0, /* [15] */ 0, /* [16] */ 0, /* [17] */ 0, /* [18] */ 0, /* [19] */ 0, /* [20] */ 0, /* [21] */ 0, /* [22] */ 0, /* [23] */ 0, /* [24] */ 0, /* [25] */ 0, /* [26] */ 0, /* [27] */ 0, /* [28] */ 0, /* [29] */ 0, /* [30] */ 0, /* [31] */ 0, /* [32] */ 0, /* [33] */ 0, /* [34] */ 0, /* [35] */ 0, /* [36] */ 0, /* [37] */ 0, /* [38] */ 0, /* [39] */ 0, /* [40] */ 0, /* [41] */ 0, /* [42] */ 0, /* [43] */ 0, /* [44] */ 0, /* [45] */ 0, /* [46] */ 0, /* [47] */ 0, /* [48] */ 0, /* [49] */ 0, /* [50] */ 0, /* [51] */ 0, /* [52] */ 0, /* [53] */ 0, /* [54] */ 0, /* [55] */ 0, /* [56] */ 0, /* [57] */ 0, /* [58] */ 0, /* [59] */ 0, /* [60] */ 0, /* [61] */ 0, /* [62] */ 0, /* [63] */ 0, /* [64] */ 0, /* [65] */ 0, /* [66] */ 0, /* [67] */ 0, /* [68] */ 0, /* [69] */ 0, /* [70] */ 0, /* [71] */ (ti_sysbios_family_c28_Hwi_Handle)&ti_sysbios_family_c28_Hwi_Object__table__V[0], /* [72] */ 0, /* [73] */ 0, /* [74] */ 0, /* [75] */ 0, /* [76] */ 0, /* [77] */ 0, /* [78] */ 0, /* [79] */ 0, /* [80] */ 0, /* [81] */ 0, /* [82] */ 0, /* [83] */ 0, /* [84] */ 0, /* [85] */ 0, /* [86] */ 0, /* [87] */ (ti_sysbios_family_c28_Hwi_Handle)&ti_sysbios_family_c28_Hwi_Object__table__V[3], /* [88] */ 0, /* [89] */ (ti_sysbios_family_c28_Hwi_Handle)&ti_sysbios_family_c28_Hwi_Object__table__V[2], /* [90] */ 0, /* [91] */ 0, /* [92] */ 0, /* [93] */ 0, /* [94] */ 0, /* [95] */ 0, /* [96] */ 0, /* [97] */ 0, /* [98] */ 0, /* [99] */ 0, /* [100] */ 0, /* [101] */ 0, /* [102] */ 0, /* [103] */ 0, /* [104] */ 0, /* [105] */ 0, /* [106] */ 0, /* [107] */ 0, /* [108] */ 0, /* [109] */ 0, /* [110] */ 0, /* [111] */ 0, /* [112] */ 0, /* [113] */ 0, /* [114] */ 0, /* [115] */ 0, /* [116] */ 0, /* [117] */ 0, /* [118] */ 0, /* [119] */ 0, /* [120] */ 0, /* [121] */ 0, /* [122] */ 0, /* [123] */ 0, /* [124] */ 0, /* [125] */ 0, /* [126] */ 0, /* [127] */ 0, /* [128] */ 0, /* [129] */ 0, /* [130] */ 0, /* [131] */ 0, /* [132] */ 0, /* [133] */ 0, /* [134] */ 0, /* [135] */ 0, /* [136] */ 0, /* [137] */ 0, /* [138] */ 0, /* [139] */ 0, /* [140] */ 0, /* [141] */ 0, /* [142] */ 0, /* [143] */ 0, /* [144] */ 0, /* [145] */ 0, /* [146] */ 0, /* [147] */ 0, /* [148] */ 0, /* [149] */ 0, /* [150] */ 0, /* [151] */ 0, /* [152] */ 0, /* [153] */ 0, /* [154] */ 0, /* [155] */ 0, /* [156] */ 0, /* [157] */ 0, /* [158] */ 0, /* [159] */ 0, /* [160] */ 0, /* [161] */ 0, /* [162] */ 0, /* [163] */ 0, /* [164] */ 0, /* [165] */ 0, /* [166] */ 0, /* [167] */ (ti_sysbios_family_c28_Hwi_Handle)&ti_sysbios_family_c28_Hwi_Object__table__V[1], /* [168] */ 0, /* [169] */ 0, /* [170] */ 0, /* [171] */ 0, /* [172] */ 0, /* [173] */ 0, /* [174] */ 0, /* [175] */ 0, /* [176] */ 0, /* [177] */ 0, /* [178] */ 0, /* [179] */ 0, /* [180] */ 0, /* [181] */ 0, /* [182] */ 0, /* [183] */ 0, /* [184] */ 0, /* [185] */ 0, /* [186] */ 0, /* [187] */ 0, /* [188] */ 0, /* [189] */ 0, /* [190] */ 0, /* [191] */ 0, /* [192] */ 0, /* [193] */ 0, /* [194] */ 0, /* [195] */ 0, /* [196] */ 0, /* [197] */ 0, /* [198] */ 0, /* [199] */ 0, /* [200] */ 0, /* [201] */ 0, /* [202] */ 0, /* [203] */ 0, /* [204] */ 0, /* [205] */ 0, /* [206] */ 0, /* [207] */ 0, /* [208] */ 0, /* [209] */ 0, /* [210] */ 0, /* [211] */ 0, /* [212] */ 0, /* [213] */ 0, /* [214] */ 0, /* [215] */ 0, /* [216] */ 0, /* [217] */ 0, /* [218] */ 0, /* [219] */ 0, /* [220] */ 0, /* [221] */ 0, /* [222] */ 0, /* [223] */ }; /* Module__state__V */ ti_sysbios_family_c28_Hwi_Module_State__ ti_sysbios_family_c28_Hwi_Module__state__V = { (xdc_Bits16)0x30a0, /* ierMask */ ((xdc_Char*)0), /* isrStack */ ((xdc_Char*)0), /* taskSP */ ((void*)ti_sysbios_family_c28_Hwi_Module_State_0_dispatchTable__A), /* dispatchTable */ ((xdc_UArg)0), /* irp */ 0, /* globalEnable */ (xdc_Bits16)0x0, /* shadowIER */ ((xdc_Ptr)((void*)&_stack)), /* isrStackBase */ ((xdc_Ptr)((void*)&_STACK_SIZE)), /* isrStackSize */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C, ".econst:ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__diagsEnabled ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C, ".econst:ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__diagsIncluded ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__diagsMask__C, ".econst:ti_sysbios_family_c28_Hwi_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__diagsMask ti_sysbios_family_c28_Hwi_Module__diagsMask__C = ((CT__ti_sysbios_family_c28_Hwi_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__gateObj__C, ".econst:ti_sysbios_family_c28_Hwi_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__gateObj ti_sysbios_family_c28_Hwi_Module__gateObj__C = ((CT__ti_sysbios_family_c28_Hwi_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__gatePrms__C, ".econst:ti_sysbios_family_c28_Hwi_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__gatePrms ti_sysbios_family_c28_Hwi_Module__gatePrms__C = ((CT__ti_sysbios_family_c28_Hwi_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__id__C, ".econst:ti_sysbios_family_c28_Hwi_Module__id__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__id ti_sysbios_family_c28_Hwi_Module__id__C = (xdc_Bits16)0x14; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__loggerDefined__C, ".econst:ti_sysbios_family_c28_Hwi_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__loggerDefined ti_sysbios_family_c28_Hwi_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__loggerObj__C, ".econst:ti_sysbios_family_c28_Hwi_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__loggerObj ti_sysbios_family_c28_Hwi_Module__loggerObj__C = ((CT__ti_sysbios_family_c28_Hwi_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__loggerFxn0__C, ".econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn0 ti_sysbios_family_c28_Hwi_Module__loggerFxn0__C = ((CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C, ".econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn1 ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C = ((CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__loggerFxn2__C, ".econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn2 ti_sysbios_family_c28_Hwi_Module__loggerFxn2__C = ((CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__loggerFxn4__C, ".econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn4 ti_sysbios_family_c28_Hwi_Module__loggerFxn4__C = ((CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C, ".econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn8 ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C = ((CT__ti_sysbios_family_c28_Hwi_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Object__count__C, ".econst:ti_sysbios_family_c28_Hwi_Object__count__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Object__count ti_sysbios_family_c28_Hwi_Object__count__C = 6; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Object__heap__C, ".econst:ti_sysbios_family_c28_Hwi_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Object__heap ti_sysbios_family_c28_Hwi_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Object__sizeof__C, ".econst:ti_sysbios_family_c28_Hwi_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Object__sizeof ti_sysbios_family_c28_Hwi_Object__sizeof__C = sizeof(ti_sysbios_family_c28_Hwi_Object__); /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Object__table__C, ".econst:ti_sysbios_family_c28_Hwi_Object__table__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_Object__table ti_sysbios_family_c28_Hwi_Object__table__C = ti_sysbios_family_c28_Hwi_Object__table__V; /* dispatcherAutoNestingSupport__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_dispatcherAutoNestingSupport__C, ".econst:ti_sysbios_family_c28_Hwi_dispatcherAutoNestingSupport__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_dispatcherAutoNestingSupport__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_dispatcherAutoNestingSupport__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_dispatcherAutoNestingSupport__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_dispatcherAutoNestingSupport ti_sysbios_family_c28_Hwi_dispatcherAutoNestingSupport__C = 0; /* dispatcherSwiSupport__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_dispatcherSwiSupport__C, ".econst:ti_sysbios_family_c28_Hwi_dispatcherSwiSupport__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_dispatcherSwiSupport__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_dispatcherSwiSupport__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_dispatcherSwiSupport__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_dispatcherSwiSupport ti_sysbios_family_c28_Hwi_dispatcherSwiSupport__C = 1; /* dispatcherTaskSupport__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_dispatcherTaskSupport__C, ".econst:ti_sysbios_family_c28_Hwi_dispatcherTaskSupport__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_dispatcherTaskSupport__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_dispatcherTaskSupport__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_dispatcherTaskSupport__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_dispatcherTaskSupport ti_sysbios_family_c28_Hwi_dispatcherTaskSupport__C = 1; /* dispatcherIrpTrackingSupport__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_dispatcherIrpTrackingSupport__C, ".econst:ti_sysbios_family_c28_Hwi_dispatcherIrpTrackingSupport__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_dispatcherIrpTrackingSupport__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_dispatcherIrpTrackingSupport__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_dispatcherIrpTrackingSupport__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_dispatcherIrpTrackingSupport ti_sysbios_family_c28_Hwi_dispatcherIrpTrackingSupport__C = 1; /* NUM_INTERRUPTS_PIE__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_PIE__C, ".econst:ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_PIE__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_PIE__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_PIE__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_PIE__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_PIE ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_PIE__C = (xdc_Int)0xc0; /* NUM_INTERRUPTS_ALL__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL__C, ".econst:ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL ti_sysbios_family_c28_Hwi_NUM_INTERRUPTS_ALL__C = (xdc_Int)0xe0; /* A_badIntNum__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_A_badIntNum__C, ".econst:ti_sysbios_family_c28_Hwi_A_badIntNum__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_A_badIntNum__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_A_badIntNum__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_A_badIntNum__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_A_badIntNum ti_sysbios_family_c28_Hwi_A_badIntNum__C = (((xdc_runtime_Assert_Id)400) << 16 | 16); /* A_invalidArg__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_A_invalidArg__C, ".econst:ti_sysbios_family_c28_Hwi_A_invalidArg__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_A_invalidArg__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_A_invalidArg__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_A_invalidArg__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_A_invalidArg ti_sysbios_family_c28_Hwi_A_invalidArg__C = (((xdc_runtime_Assert_Id)438) << 16 | 16); /* A_zeroLatencyConflict__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_A_zeroLatencyConflict__C, ".econst:ti_sysbios_family_c28_Hwi_A_zeroLatencyConflict__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_A_zeroLatencyConflict__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_A_zeroLatencyConflict__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_A_zeroLatencyConflict__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_A_zeroLatencyConflict ti_sysbios_family_c28_Hwi_A_zeroLatencyConflict__C = (((xdc_runtime_Assert_Id)469) << 16 | 16); /* E_unpluggedInterrupt__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C, ".econst:ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C = (((xdc_runtime_Error_Id)3815) << 16 | 0); /* E_alreadyDefined__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_E_alreadyDefined__C, ".econst:ti_sysbios_family_c28_Hwi_E_alreadyDefined__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_E_alreadyDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_E_alreadyDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_E_alreadyDefined__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_E_alreadyDefined ti_sysbios_family_c28_Hwi_E_alreadyDefined__C = (((xdc_runtime_Error_Id)3875) << 16 | 0); /* zeroLatencyIERMask__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_zeroLatencyIERMask__C, ".econst:ti_sysbios_family_c28_Hwi_zeroLatencyIERMask__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_zeroLatencyIERMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_zeroLatencyIERMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_zeroLatencyIERMask__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_zeroLatencyIERMask ti_sysbios_family_c28_Hwi_zeroLatencyIERMask__C = (xdc_Bits16)0x0; /* LM_begin__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_LM_begin__C, ".econst:ti_sysbios_family_c28_Hwi_LM_begin__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_LM_begin__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_LM_begin__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_LM_begin__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_LM_begin ti_sysbios_family_c28_Hwi_LM_begin__C = (((xdc_runtime_Log_Event)4648) << 16 | 768); /* LD_end__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_LD_end__C, ".econst:ti_sysbios_family_c28_Hwi_LD_end__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_LD_end__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_LD_end__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_LD_end__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_LD_end ti_sysbios_family_c28_Hwi_LD_end__C = (((xdc_runtime_Log_Event)4718) << 16 | 512); /* swiDisable__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_swiDisable__C, ".econst:ti_sysbios_family_c28_Hwi_swiDisable__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_swiDisable__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_swiDisable__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_swiDisable__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_swiDisable ti_sysbios_family_c28_Hwi_swiDisable__C = ((CT__ti_sysbios_family_c28_Hwi_swiDisable)((xdc_Fxn)ti_sysbios_knl_Swi_disable__E)); /* swiRestoreHwi__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_swiRestoreHwi__C, ".econst:ti_sysbios_family_c28_Hwi_swiRestoreHwi__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_swiRestoreHwi__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_swiRestoreHwi__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_swiRestoreHwi__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_swiRestoreHwi ti_sysbios_family_c28_Hwi_swiRestoreHwi__C = ((CT__ti_sysbios_family_c28_Hwi_swiRestoreHwi)((xdc_Fxn)ti_sysbios_knl_Swi_restoreHwi__E)); /* taskDisable__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_taskDisable__C, ".econst:ti_sysbios_family_c28_Hwi_taskDisable__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_taskDisable__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_taskDisable__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_taskDisable__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_taskDisable ti_sysbios_family_c28_Hwi_taskDisable__C = ((CT__ti_sysbios_family_c28_Hwi_taskDisable)((xdc_Fxn)ti_sysbios_knl_Task_disable__E)); /* taskRestoreHwi__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_taskRestoreHwi__C, ".econst:ti_sysbios_family_c28_Hwi_taskRestoreHwi__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_taskRestoreHwi__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_taskRestoreHwi__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_taskRestoreHwi__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_taskRestoreHwi ti_sysbios_family_c28_Hwi_taskRestoreHwi__C = ((CT__ti_sysbios_family_c28_Hwi_taskRestoreHwi)((xdc_Fxn)ti_sysbios_knl_Task_restoreHwi__E)); /* hooks__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_hooks__C, ".econst:ti_sysbios_family_c28_Hwi_hooks__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_hooks__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_hooks__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_hooks__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Hwi_hooks ti_sysbios_family_c28_Hwi_hooks__C = {0, 0}; /* * ======== ti.sysbios.family.c28.IntrinsicsSupport INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsEnabled__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsEnabled ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsIncluded__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsIncluded ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask__C = ((CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__gateObj__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__gateObj ti_sysbios_family_c28_IntrinsicsSupport_Module__gateObj__C = ((CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__gatePrms__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__gatePrms ti_sysbios_family_c28_IntrinsicsSupport_Module__gatePrms__C = ((CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__id__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__id__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__id ti_sysbios_family_c28_IntrinsicsSupport_Module__id__C = (xdc_Bits16)0x16; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerDefined__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerDefined ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerObj__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerObj ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerObj__C = ((CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn0__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn0 ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn0__C = ((CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn1__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn1 ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn1__C = ((CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn2__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn2 ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn2__C = ((CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn4__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn4 ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn4__C = ((CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn8__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn8 ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn8__C = ((CT__ti_sysbios_family_c28_IntrinsicsSupport_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Object__count__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__count__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Object__count ti_sysbios_family_c28_IntrinsicsSupport_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Object__heap__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Object__heap ti_sysbios_family_c28_IntrinsicsSupport_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Object__sizeof__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Object__sizeof ti_sysbios_family_c28_IntrinsicsSupport_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_IntrinsicsSupport_Object__table__C, ".econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__table__C"); asm(" .sect \".econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_IntrinsicsSupport_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_IntrinsicsSupport_Object__table ti_sysbios_family_c28_IntrinsicsSupport_Object__table__C = 0; /* * ======== ti.sysbios.family.c28.TaskSupport INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__diagsEnabled__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__diagsEnabled ti_sysbios_family_c28_TaskSupport_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__diagsIncluded__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__diagsIncluded ti_sysbios_family_c28_TaskSupport_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__diagsMask__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__diagsMask ti_sysbios_family_c28_TaskSupport_Module__diagsMask__C = ((CT__ti_sysbios_family_c28_TaskSupport_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__gateObj__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__gateObj ti_sysbios_family_c28_TaskSupport_Module__gateObj__C = ((CT__ti_sysbios_family_c28_TaskSupport_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__gatePrms__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__gatePrms ti_sysbios_family_c28_TaskSupport_Module__gatePrms__C = ((CT__ti_sysbios_family_c28_TaskSupport_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__id__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__id__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__id ti_sysbios_family_c28_TaskSupport_Module__id__C = (xdc_Bits16)0x17; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__loggerDefined__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerDefined ti_sysbios_family_c28_TaskSupport_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__loggerObj__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerObj ti_sysbios_family_c28_TaskSupport_Module__loggerObj__C = ((CT__ti_sysbios_family_c28_TaskSupport_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__loggerFxn0__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn0 ti_sysbios_family_c28_TaskSupport_Module__loggerFxn0__C = ((CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__loggerFxn1__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn1 ti_sysbios_family_c28_TaskSupport_Module__loggerFxn1__C = ((CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__loggerFxn2__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn2 ti_sysbios_family_c28_TaskSupport_Module__loggerFxn2__C = ((CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__loggerFxn4__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn4 ti_sysbios_family_c28_TaskSupport_Module__loggerFxn4__C = ((CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Module__loggerFxn8__C, ".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn8 ti_sysbios_family_c28_TaskSupport_Module__loggerFxn8__C = ((CT__ti_sysbios_family_c28_TaskSupport_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Object__count__C, ".econst:ti_sysbios_family_c28_TaskSupport_Object__count__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Object__count ti_sysbios_family_c28_TaskSupport_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Object__heap__C, ".econst:ti_sysbios_family_c28_TaskSupport_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Object__heap ti_sysbios_family_c28_TaskSupport_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Object__sizeof__C, ".econst:ti_sysbios_family_c28_TaskSupport_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Object__sizeof ti_sysbios_family_c28_TaskSupport_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_Object__table__C, ".econst:ti_sysbios_family_c28_TaskSupport_Object__table__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_Object__table ti_sysbios_family_c28_TaskSupport_Object__table__C = 0; /* defaultStackSize__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_defaultStackSize__C, ".econst:ti_sysbios_family_c28_TaskSupport_defaultStackSize__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_defaultStackSize__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_defaultStackSize__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_defaultStackSize__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_defaultStackSize ti_sysbios_family_c28_TaskSupport_defaultStackSize__C = (xdc_SizeT)0x100; /* stackAlignment__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_stackAlignment__C, ".econst:ti_sysbios_family_c28_TaskSupport_stackAlignment__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_stackAlignment__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_stackAlignment__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_stackAlignment__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_stackAlignment ti_sysbios_family_c28_TaskSupport_stackAlignment__C = (xdc_UInt)0x0; /* E_invalidStack__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_TaskSupport_E_invalidStack__C, ".econst:ti_sysbios_family_c28_TaskSupport_E_invalidStack__C"); asm(" .sect \".econst:ti_sysbios_family_c28_TaskSupport_E_invalidStack__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_TaskSupport_E_invalidStack__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_TaskSupport_E_invalidStack__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_TaskSupport_E_invalidStack ti_sysbios_family_c28_TaskSupport_E_invalidStack__C = (((xdc_runtime_Error_Id)3962) << 16 | 0); /* * ======== ti.sysbios.family.c28.Timer INITIALIZERS ======== */ /* Object__DESC__C */ const xdc_runtime_Core_ObjDesc ti_sysbios_family_c28_Timer_Object__DESC__C; /* Object__PARAMS__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Object__PARAMS__C, ".econst:ti_sysbios_family_c28_Timer_Object__PARAMS__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Object__PARAMS__C\""); asm(" .clink "); const ti_sysbios_family_c28_Timer_Params ti_sysbios_family_c28_Timer_Object__PARAMS__C = { sizeof (ti_sysbios_family_c28_Timer_Params), /* __size */ 0, /* __self */ 0, /* __fxns */ (xdc_runtime_IInstance_Params*)&ti_sysbios_family_c28_Timer_Object__PARAMS__C.__iprms, /* instance */ ti_sysbios_interfaces_ITimer_RunMode_CONTINUOUS, /* runMode */ ti_sysbios_interfaces_ITimer_StartMode_AUTO, /* startMode */ ((xdc_UArg)0), /* arg */ (xdc_UInt32)0x0, /* period */ ti_sysbios_interfaces_ITimer_PeriodType_MICROSECS, /* periodType */ { (xdc_Bits32)0x0, /* hi */ (xdc_Bits32)0x0, /* lo */ }, /* extFreq */ { (xdc_UInt)0x0, /* free */ (xdc_UInt)0x0, /* soft */ }, /* emulationModeInit */ (xdc_UInt16)0x0, /* prescale */ ((ti_sysbios_family_c28_Hwi_Params*)0), /* hwiParams */ { sizeof (xdc_runtime_IInstance_Params), /* __size */ 0, /* name */ }, /* instance */ }; /* Object__table__V */ ti_sysbios_family_c28_Timer_Object__ ti_sysbios_family_c28_Timer_Object__table__V[2] = { {/* instance#0 */ 0, (xdc_Int)0x2, /* id */ { (xdc_UInt)0x0, /* free */ (xdc_UInt)0x0, /* soft */ }, /* emulationModeInit */ ti_sysbios_interfaces_ITimer_RunMode_CONTINUOUS, /* runMode */ ti_sysbios_interfaces_ITimer_StartMode_USER, /* startMode */ (xdc_UInt32)0xf4240, /* period */ ti_sysbios_interfaces_ITimer_PeriodType_COUNTS, /* periodType */ (xdc_UInt16)0x0, /* prescale */ (xdc_UInt)0xe, /* intNum */ ((xdc_UArg)0), /* arg */ ((void(*)(xdc_UArg))((xdc_Fxn)cycle_Timer_ISR)), /* tickFxn */ { (xdc_Bits32)0x0, /* hi */ (xdc_Bits32)0x0, /* lo */ }, /* extFreq */ (ti_sysbios_family_c28_Hwi_Handle)&ti_sysbios_family_c28_Hwi_Object__table__V[4], /* hwi */ }, {/* instance#1 */ 0, (xdc_Int)0x1, /* id */ { (xdc_UInt)0x0, /* free */ (xdc_UInt)0x0, /* soft */ }, /* emulationModeInit */ ti_sysbios_interfaces_ITimer_RunMode_CONTINUOUS, /* runMode */ ti_sysbios_interfaces_ITimer_StartMode_AUTO, /* startMode */ (xdc_UInt32)0x30d40, /* period */ ti_sysbios_interfaces_ITimer_PeriodType_COUNTS, /* periodType */ (xdc_UInt16)0x0, /* prescale */ (xdc_UInt)0xd, /* intNum */ ((xdc_UArg)0), /* arg */ ((void(*)(xdc_UArg))((xdc_Fxn)ti_sysbios_knl_Clock_doTick__I)), /* tickFxn */ { (xdc_Bits32)0x0, /* hi */ (xdc_Bits32)0x0, /* lo */ }, /* extFreq */ (ti_sysbios_family_c28_Hwi_Handle)&ti_sysbios_family_c28_Hwi_Object__table__V[5], /* hwi */ }, }; /* Module__state__V */ ti_sysbios_family_c28_Timer_Module_State__ ti_sysbios_family_c28_Timer_Module__state__V = { (xdc_Char)0x1, /* availMask */ { 0, /* [0] */ (ti_sysbios_family_c28_Timer_Handle)&ti_sysbios_family_c28_Timer_Object__table__V[1], /* [1] */ (ti_sysbios_family_c28_Timer_Handle)&ti_sysbios_family_c28_Timer_Object__table__V[0], /* [2] */ }, /* staticTimers */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__diagsEnabled__C, ".econst:ti_sysbios_family_c28_Timer_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__diagsEnabled ti_sysbios_family_c28_Timer_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__diagsIncluded__C, ".econst:ti_sysbios_family_c28_Timer_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__diagsIncluded ti_sysbios_family_c28_Timer_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__diagsMask__C, ".econst:ti_sysbios_family_c28_Timer_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__diagsMask ti_sysbios_family_c28_Timer_Module__diagsMask__C = ((CT__ti_sysbios_family_c28_Timer_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__gateObj__C, ".econst:ti_sysbios_family_c28_Timer_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__gateObj ti_sysbios_family_c28_Timer_Module__gateObj__C = ((CT__ti_sysbios_family_c28_Timer_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__gatePrms__C, ".econst:ti_sysbios_family_c28_Timer_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__gatePrms ti_sysbios_family_c28_Timer_Module__gatePrms__C = ((CT__ti_sysbios_family_c28_Timer_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__id__C, ".econst:ti_sysbios_family_c28_Timer_Module__id__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__id ti_sysbios_family_c28_Timer_Module__id__C = (xdc_Bits16)0x15; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__loggerDefined__C, ".econst:ti_sysbios_family_c28_Timer_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__loggerDefined ti_sysbios_family_c28_Timer_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__loggerObj__C, ".econst:ti_sysbios_family_c28_Timer_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__loggerObj ti_sysbios_family_c28_Timer_Module__loggerObj__C = ((CT__ti_sysbios_family_c28_Timer_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__loggerFxn0__C, ".econst:ti_sysbios_family_c28_Timer_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__loggerFxn0 ti_sysbios_family_c28_Timer_Module__loggerFxn0__C = ((CT__ti_sysbios_family_c28_Timer_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__loggerFxn1__C, ".econst:ti_sysbios_family_c28_Timer_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__loggerFxn1 ti_sysbios_family_c28_Timer_Module__loggerFxn1__C = ((CT__ti_sysbios_family_c28_Timer_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__loggerFxn2__C, ".econst:ti_sysbios_family_c28_Timer_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__loggerFxn2 ti_sysbios_family_c28_Timer_Module__loggerFxn2__C = ((CT__ti_sysbios_family_c28_Timer_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__loggerFxn4__C, ".econst:ti_sysbios_family_c28_Timer_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__loggerFxn4 ti_sysbios_family_c28_Timer_Module__loggerFxn4__C = ((CT__ti_sysbios_family_c28_Timer_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Module__loggerFxn8__C, ".econst:ti_sysbios_family_c28_Timer_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Module__loggerFxn8 ti_sysbios_family_c28_Timer_Module__loggerFxn8__C = ((CT__ti_sysbios_family_c28_Timer_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Object__count__C, ".econst:ti_sysbios_family_c28_Timer_Object__count__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Object__count ti_sysbios_family_c28_Timer_Object__count__C = 2; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Object__heap__C, ".econst:ti_sysbios_family_c28_Timer_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Object__heap ti_sysbios_family_c28_Timer_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Object__sizeof__C, ".econst:ti_sysbios_family_c28_Timer_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Object__sizeof ti_sysbios_family_c28_Timer_Object__sizeof__C = sizeof(ti_sysbios_family_c28_Timer_Object__); /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Object__table__C, ".econst:ti_sysbios_family_c28_Timer_Object__table__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_Object__table ti_sysbios_family_c28_Timer_Object__table__C = ti_sysbios_family_c28_Timer_Object__table__V; /* A_invalidTimer__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_A_invalidTimer__C, ".econst:ti_sysbios_family_c28_Timer_A_invalidTimer__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_A_invalidTimer__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_A_invalidTimer__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_A_invalidTimer__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_A_invalidTimer ti_sysbios_family_c28_Timer_A_invalidTimer__C = (((xdc_runtime_Assert_Id)528) << 16 | 16); /* E_notAvailable__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_E_notAvailable__C, ".econst:ti_sysbios_family_c28_Timer_E_notAvailable__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_E_notAvailable__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_E_notAvailable__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_E_notAvailable__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_E_notAvailable ti_sysbios_family_c28_Timer_E_notAvailable__C = (((xdc_runtime_Error_Id)3923) << 16 | 0); /* A_invalidRunMode__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_A_invalidRunMode__C, ".econst:ti_sysbios_family_c28_Timer_A_invalidRunMode__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_A_invalidRunMode__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_A_invalidRunMode__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_A_invalidRunMode__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_A_invalidRunMode ti_sysbios_family_c28_Timer_A_invalidRunMode__C = (((xdc_runtime_Assert_Id)565) << 16 | 16); /* A_invalidHwiMask__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_A_invalidHwiMask__C, ".econst:ti_sysbios_family_c28_Timer_A_invalidHwiMask__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_A_invalidHwiMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_A_invalidHwiMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_A_invalidHwiMask__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_A_invalidHwiMask ti_sysbios_family_c28_Timer_A_invalidHwiMask__C = (((xdc_runtime_Assert_Id)599) << 16 | 16); /* E_cannotSupport__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_E_cannotSupport__C, ".econst:ti_sysbios_family_c28_Timer_E_cannotSupport__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_E_cannotSupport__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_E_cannotSupport__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_E_cannotSupport__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_E_cannotSupport ti_sysbios_family_c28_Timer_E_cannotSupport__C = (((xdc_runtime_Assert_Id)651) << 16 | 16); /* anyMask__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_anyMask__C, ".econst:ti_sysbios_family_c28_Timer_anyMask__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_anyMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_anyMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_anyMask__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_anyMask ti_sysbios_family_c28_Timer_anyMask__C = (xdc_UInt)0x7; /* startupNeeded__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_startupNeeded__C, ".econst:ti_sysbios_family_c28_Timer_startupNeeded__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_startupNeeded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_startupNeeded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_startupNeeded__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_startupNeeded ti_sysbios_family_c28_Timer_startupNeeded__C = (xdc_UInt)0x1; /* intNumDef__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_intNumDef__C, ".econst:ti_sysbios_family_c28_Timer_intNumDef__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_intNumDef__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_intNumDef__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_intNumDef__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_Timer_intNumDef ti_sysbios_family_c28_Timer_intNumDef__C = { (xdc_UInt8)0x26, /* [0] */ (xdc_UInt8)0xd, /* [1] */ (xdc_UInt8)0xe, /* [2] */ }; /* * ======== ti.sysbios.family.c28.f2837x.TimestampProvider INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsEnabled__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsEnabled ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsIncluded__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsIncluded ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask__C = ((CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gateObj__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gateObj ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gateObj__C = ((CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gatePrms__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gatePrms ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gatePrms__C = ((CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id ti_sysbios_family_c28_f2837x_TimestampProvider_Module__id__C = (xdc_Bits16)0x2d; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerDefined__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerDefined ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerObj__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerObj ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerObj__C = ((CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn0__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn0 ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn0__C = ((CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn1__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn1 ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn1__C = ((CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn2__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn2 ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn2__C = ((CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn4__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn4 ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn4__C = ((CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn8__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn8 ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn8__C = ((CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Object__count__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__count__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Object__count ti_sysbios_family_c28_f2837x_TimestampProvider_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Object__heap__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Object__heap ti_sysbios_family_c28_f2837x_TimestampProvider_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Object__sizeof__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Object__sizeof ti_sysbios_family_c28_f2837x_TimestampProvider_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_family_c28_f2837x_TimestampProvider_Object__table__C, ".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__table__C"); asm(" .sect \".econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_f2837x_TimestampProvider_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_family_c28_f2837x_TimestampProvider_Object__table ti_sysbios_family_c28_f2837x_TimestampProvider_Object__table__C = 0; /* * ======== ti.sysbios.gates.GateHwi INITIALIZERS ======== */ /* Object__DESC__C */ const xdc_runtime_Core_ObjDesc ti_sysbios_gates_GateHwi_Object__DESC__C; /* Object__PARAMS__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Object__PARAMS__C, ".econst:ti_sysbios_gates_GateHwi_Object__PARAMS__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Object__PARAMS__C\""); asm(" .clink "); const ti_sysbios_gates_GateHwi_Params ti_sysbios_gates_GateHwi_Object__PARAMS__C = { sizeof (ti_sysbios_gates_GateHwi_Params), /* __size */ 0, /* __self */ 0, /* __fxns */ (xdc_runtime_IInstance_Params*)&ti_sysbios_gates_GateHwi_Object__PARAMS__C.__iprms, /* instance */ { sizeof (xdc_runtime_IInstance_Params), /* __size */ 0, /* name */ }, /* instance */ }; /* Object__table__V */ ti_sysbios_gates_GateHwi_Object__ ti_sysbios_gates_GateHwi_Object__table__V[1] = { {/* instance#0 */ &ti_sysbios_gates_GateHwi_Module__FXNS__C, }, }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__diagsEnabled__C, ".econst:ti_sysbios_gates_GateHwi_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__diagsEnabled ti_sysbios_gates_GateHwi_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__diagsIncluded__C, ".econst:ti_sysbios_gates_GateHwi_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__diagsIncluded ti_sysbios_gates_GateHwi_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__diagsMask__C, ".econst:ti_sysbios_gates_GateHwi_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__diagsMask ti_sysbios_gates_GateHwi_Module__diagsMask__C = ((CT__ti_sysbios_gates_GateHwi_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__gateObj__C, ".econst:ti_sysbios_gates_GateHwi_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__gateObj ti_sysbios_gates_GateHwi_Module__gateObj__C = ((CT__ti_sysbios_gates_GateHwi_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__gatePrms__C, ".econst:ti_sysbios_gates_GateHwi_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__gatePrms ti_sysbios_gates_GateHwi_Module__gatePrms__C = ((CT__ti_sysbios_gates_GateHwi_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__id__C, ".econst:ti_sysbios_gates_GateHwi_Module__id__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__id ti_sysbios_gates_GateHwi_Module__id__C = (xdc_Bits16)0x29; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerDefined__C, ".econst:ti_sysbios_gates_GateHwi_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__loggerDefined ti_sysbios_gates_GateHwi_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerObj__C, ".econst:ti_sysbios_gates_GateHwi_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__loggerObj ti_sysbios_gates_GateHwi_Module__loggerObj__C = ((CT__ti_sysbios_gates_GateHwi_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerFxn0__C, ".econst:ti_sysbios_gates_GateHwi_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn0 ti_sysbios_gates_GateHwi_Module__loggerFxn0__C = ((CT__ti_sysbios_gates_GateHwi_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerFxn1__C, ".econst:ti_sysbios_gates_GateHwi_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn1 ti_sysbios_gates_GateHwi_Module__loggerFxn1__C = ((CT__ti_sysbios_gates_GateHwi_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerFxn2__C, ".econst:ti_sysbios_gates_GateHwi_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn2 ti_sysbios_gates_GateHwi_Module__loggerFxn2__C = ((CT__ti_sysbios_gates_GateHwi_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerFxn4__C, ".econst:ti_sysbios_gates_GateHwi_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn4 ti_sysbios_gates_GateHwi_Module__loggerFxn4__C = ((CT__ti_sysbios_gates_GateHwi_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Module__loggerFxn8__C, ".econst:ti_sysbios_gates_GateHwi_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Module__loggerFxn8 ti_sysbios_gates_GateHwi_Module__loggerFxn8__C = ((CT__ti_sysbios_gates_GateHwi_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Object__count__C, ".econst:ti_sysbios_gates_GateHwi_Object__count__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Object__count ti_sysbios_gates_GateHwi_Object__count__C = 1; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Object__heap__C, ".econst:ti_sysbios_gates_GateHwi_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Object__heap ti_sysbios_gates_GateHwi_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Object__sizeof__C, ".econst:ti_sysbios_gates_GateHwi_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Object__sizeof ti_sysbios_gates_GateHwi_Object__sizeof__C = sizeof(ti_sysbios_gates_GateHwi_Object__); /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Object__table__C, ".econst:ti_sysbios_gates_GateHwi_Object__table__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateHwi_Object__table ti_sysbios_gates_GateHwi_Object__table__C = ti_sysbios_gates_GateHwi_Object__table__V; /* * ======== ti.sysbios.gates.GateMutex INITIALIZERS ======== */ /* Object__DESC__C */ const xdc_runtime_Core_ObjDesc ti_sysbios_gates_GateMutex_Object__DESC__C; /* Object__PARAMS__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Object__PARAMS__C, ".econst:ti_sysbios_gates_GateMutex_Object__PARAMS__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Object__PARAMS__C\""); asm(" .clink "); const ti_sysbios_gates_GateMutex_Params ti_sysbios_gates_GateMutex_Object__PARAMS__C = { sizeof (ti_sysbios_gates_GateMutex_Params), /* __size */ 0, /* __self */ 0, /* __fxns */ (xdc_runtime_IInstance_Params*)&ti_sysbios_gates_GateMutex_Object__PARAMS__C.__iprms, /* instance */ { sizeof (xdc_runtime_IInstance_Params), /* __size */ 0, /* name */ }, /* instance */ }; /* Object__table__V */ ti_sysbios_gates_GateMutex_Object__ ti_sysbios_gates_GateMutex_Object__table__V[2] = { {/* instance#0 */ &ti_sysbios_gates_GateMutex_Module__FXNS__C, 0, /* owner */ { 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_COUNTING, /* mode */ (xdc_UInt16)0x1, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_gates_GateMutex_Object__table__V[0].Object_field_sem.Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_gates_GateMutex_Object__table__V[0].Object_field_sem.Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, /* Object_field_sem */ }, {/* instance#1 */ &ti_sysbios_gates_GateMutex_Module__FXNS__C, 0, /* owner */ { 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_COUNTING, /* mode */ (xdc_UInt16)0x1, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_gates_GateMutex_Object__table__V[1].Object_field_sem.Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_gates_GateMutex_Object__table__V[1].Object_field_sem.Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, /* Object_field_sem */ }, }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__diagsEnabled__C, ".econst:ti_sysbios_gates_GateMutex_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__diagsEnabled ti_sysbios_gates_GateMutex_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__diagsIncluded__C, ".econst:ti_sysbios_gates_GateMutex_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__diagsIncluded ti_sysbios_gates_GateMutex_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__diagsMask__C, ".econst:ti_sysbios_gates_GateMutex_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__diagsMask ti_sysbios_gates_GateMutex_Module__diagsMask__C = ((CT__ti_sysbios_gates_GateMutex_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__gateObj__C, ".econst:ti_sysbios_gates_GateMutex_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__gateObj ti_sysbios_gates_GateMutex_Module__gateObj__C = ((CT__ti_sysbios_gates_GateMutex_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__gatePrms__C, ".econst:ti_sysbios_gates_GateMutex_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__gatePrms ti_sysbios_gates_GateMutex_Module__gatePrms__C = ((CT__ti_sysbios_gates_GateMutex_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__id__C, ".econst:ti_sysbios_gates_GateMutex_Module__id__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__id ti_sysbios_gates_GateMutex_Module__id__C = (xdc_Bits16)0x2a; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerDefined__C, ".econst:ti_sysbios_gates_GateMutex_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__loggerDefined ti_sysbios_gates_GateMutex_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerObj__C, ".econst:ti_sysbios_gates_GateMutex_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__loggerObj ti_sysbios_gates_GateMutex_Module__loggerObj__C = ((CT__ti_sysbios_gates_GateMutex_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerFxn0__C, ".econst:ti_sysbios_gates_GateMutex_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn0 ti_sysbios_gates_GateMutex_Module__loggerFxn0__C = ((CT__ti_sysbios_gates_GateMutex_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerFxn1__C, ".econst:ti_sysbios_gates_GateMutex_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn1 ti_sysbios_gates_GateMutex_Module__loggerFxn1__C = ((CT__ti_sysbios_gates_GateMutex_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerFxn2__C, ".econst:ti_sysbios_gates_GateMutex_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn2 ti_sysbios_gates_GateMutex_Module__loggerFxn2__C = ((CT__ti_sysbios_gates_GateMutex_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerFxn4__C, ".econst:ti_sysbios_gates_GateMutex_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn4 ti_sysbios_gates_GateMutex_Module__loggerFxn4__C = ((CT__ti_sysbios_gates_GateMutex_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Module__loggerFxn8__C, ".econst:ti_sysbios_gates_GateMutex_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Module__loggerFxn8 ti_sysbios_gates_GateMutex_Module__loggerFxn8__C = ((CT__ti_sysbios_gates_GateMutex_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Object__count__C, ".econst:ti_sysbios_gates_GateMutex_Object__count__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Object__count ti_sysbios_gates_GateMutex_Object__count__C = 2; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Object__heap__C, ".econst:ti_sysbios_gates_GateMutex_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Object__heap ti_sysbios_gates_GateMutex_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Object__sizeof__C, ".econst:ti_sysbios_gates_GateMutex_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Object__sizeof ti_sysbios_gates_GateMutex_Object__sizeof__C = sizeof(ti_sysbios_gates_GateMutex_Object__); /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Object__table__C, ".econst:ti_sysbios_gates_GateMutex_Object__table__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_Object__table ti_sysbios_gates_GateMutex_Object__table__C = ti_sysbios_gates_GateMutex_Object__table__V; /* A_badContext__C */ #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_A_badContext__C, ".econst:ti_sysbios_gates_GateMutex_A_badContext__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_A_badContext__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_A_badContext__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_A_badContext__C\""); asm(" .clink "); const CT__ti_sysbios_gates_GateMutex_A_badContext ti_sysbios_gates_GateMutex_A_badContext__C = (((xdc_runtime_Assert_Id)2546) << 16 | 16); /* * ======== ti.sysbios.hal.Hwi INITIALIZERS ======== */ /* Object__DESC__C */ const xdc_runtime_Core_ObjDesc ti_sysbios_hal_Hwi_Object__DESC__C; /* Object__PARAMS__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Object__PARAMS__C, ".econst:ti_sysbios_hal_Hwi_Object__PARAMS__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Object__PARAMS__C\""); asm(" .clink "); const ti_sysbios_hal_Hwi_Params ti_sysbios_hal_Hwi_Object__PARAMS__C = { sizeof (ti_sysbios_hal_Hwi_Params), /* __size */ 0, /* __self */ 0, /* __fxns */ (xdc_runtime_IInstance_Params*)&ti_sysbios_hal_Hwi_Object__PARAMS__C.__iprms, /* instance */ ti_sysbios_interfaces_IHwi_MaskingOption_SELF, /* maskSetting */ ((xdc_UArg)(0x0)), /* arg */ 1, /* enableInt */ (xdc_Int)(-0x0 - 1), /* eventId */ (xdc_Int)(-0x0 - 1), /* priority */ { sizeof (xdc_runtime_IInstance_Params), /* __size */ 0, /* name */ }, /* instance */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__diagsEnabled__C, ".econst:ti_sysbios_hal_Hwi_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__diagsEnabled ti_sysbios_hal_Hwi_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__diagsIncluded__C, ".econst:ti_sysbios_hal_Hwi_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__diagsIncluded ti_sysbios_hal_Hwi_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__diagsMask__C, ".econst:ti_sysbios_hal_Hwi_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__diagsMask ti_sysbios_hal_Hwi_Module__diagsMask__C = ((CT__ti_sysbios_hal_Hwi_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__gateObj__C, ".econst:ti_sysbios_hal_Hwi_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__gateObj ti_sysbios_hal_Hwi_Module__gateObj__C = ((CT__ti_sysbios_hal_Hwi_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__gatePrms__C, ".econst:ti_sysbios_hal_Hwi_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__gatePrms ti_sysbios_hal_Hwi_Module__gatePrms__C = ((CT__ti_sysbios_hal_Hwi_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__id__C, ".econst:ti_sysbios_hal_Hwi_Module__id__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__id ti_sysbios_hal_Hwi_Module__id__C = (xdc_Bits16)0x24; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerDefined__C, ".econst:ti_sysbios_hal_Hwi_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__loggerDefined ti_sysbios_hal_Hwi_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerObj__C, ".econst:ti_sysbios_hal_Hwi_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__loggerObj ti_sysbios_hal_Hwi_Module__loggerObj__C = ((CT__ti_sysbios_hal_Hwi_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerFxn0__C, ".econst:ti_sysbios_hal_Hwi_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__loggerFxn0 ti_sysbios_hal_Hwi_Module__loggerFxn0__C = ((CT__ti_sysbios_hal_Hwi_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerFxn1__C, ".econst:ti_sysbios_hal_Hwi_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__loggerFxn1 ti_sysbios_hal_Hwi_Module__loggerFxn1__C = ((CT__ti_sysbios_hal_Hwi_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerFxn2__C, ".econst:ti_sysbios_hal_Hwi_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__loggerFxn2 ti_sysbios_hal_Hwi_Module__loggerFxn2__C = ((CT__ti_sysbios_hal_Hwi_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerFxn4__C, ".econst:ti_sysbios_hal_Hwi_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__loggerFxn4 ti_sysbios_hal_Hwi_Module__loggerFxn4__C = ((CT__ti_sysbios_hal_Hwi_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Module__loggerFxn8__C, ".econst:ti_sysbios_hal_Hwi_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Module__loggerFxn8 ti_sysbios_hal_Hwi_Module__loggerFxn8__C = ((CT__ti_sysbios_hal_Hwi_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Object__count__C, ".econst:ti_sysbios_hal_Hwi_Object__count__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Object__count ti_sysbios_hal_Hwi_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Object__heap__C, ".econst:ti_sysbios_hal_Hwi_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Object__heap ti_sysbios_hal_Hwi_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Object__sizeof__C, ".econst:ti_sysbios_hal_Hwi_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Object__sizeof ti_sysbios_hal_Hwi_Object__sizeof__C = sizeof(ti_sysbios_hal_Hwi_Object__); /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Object__table__C, ".econst:ti_sysbios_hal_Hwi_Object__table__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_Object__table ti_sysbios_hal_Hwi_Object__table__C = 0; /* dispatcherAutoNestingSupport__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport__C, ".econst:ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport ti_sysbios_hal_Hwi_dispatcherAutoNestingSupport__C = 0; /* dispatcherSwiSupport__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_dispatcherSwiSupport__C, ".econst:ti_sysbios_hal_Hwi_dispatcherSwiSupport__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_dispatcherSwiSupport__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_dispatcherSwiSupport__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_dispatcherSwiSupport__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_dispatcherSwiSupport ti_sysbios_hal_Hwi_dispatcherSwiSupport__C = 1; /* dispatcherTaskSupport__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_dispatcherTaskSupport__C, ".econst:ti_sysbios_hal_Hwi_dispatcherTaskSupport__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_dispatcherTaskSupport__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_dispatcherTaskSupport__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_dispatcherTaskSupport__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_dispatcherTaskSupport ti_sysbios_hal_Hwi_dispatcherTaskSupport__C = 1; /* dispatcherIrpTrackingSupport__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport__C, ".econst:ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport ti_sysbios_hal_Hwi_dispatcherIrpTrackingSupport__C = 1; /* E_stackOverflow__C */ #pragma DATA_SECTION(ti_sysbios_hal_Hwi_E_stackOverflow__C, ".econst:ti_sysbios_hal_Hwi_E_stackOverflow__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_E_stackOverflow__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_E_stackOverflow__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_E_stackOverflow__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Hwi_E_stackOverflow ti_sysbios_hal_Hwi_E_stackOverflow__C = (((xdc_runtime_Error_Id)4309) << 16 | 0); /* * ======== ti.sysbios.hal.Hwi_HwiProxy INITIALIZERS ======== */ /* * ======== ti.sysbios.hal.Timer INITIALIZERS ======== */ /* Object__DESC__C */ const xdc_runtime_Core_ObjDesc ti_sysbios_hal_Timer_Object__DESC__C; /* Object__PARAMS__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Object__PARAMS__C, ".econst:ti_sysbios_hal_Timer_Object__PARAMS__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Object__PARAMS__C\""); asm(" .clink "); const ti_sysbios_hal_Timer_Params ti_sysbios_hal_Timer_Object__PARAMS__C = { sizeof (ti_sysbios_hal_Timer_Params), /* __size */ 0, /* __self */ 0, /* __fxns */ (xdc_runtime_IInstance_Params*)&ti_sysbios_hal_Timer_Object__PARAMS__C.__iprms, /* instance */ ti_sysbios_interfaces_ITimer_RunMode_CONTINUOUS, /* runMode */ ti_sysbios_interfaces_ITimer_StartMode_AUTO, /* startMode */ ((xdc_UArg)0), /* arg */ (xdc_UInt32)0x0, /* period */ ti_sysbios_interfaces_ITimer_PeriodType_MICROSECS, /* periodType */ { (xdc_Bits32)0x0, /* hi */ (xdc_Bits32)0x0, /* lo */ }, /* extFreq */ { sizeof (xdc_runtime_IInstance_Params), /* __size */ 0, /* name */ }, /* instance */ }; /* Object__table__V */ ti_sysbios_hal_Timer_Object__ ti_sysbios_hal_Timer_Object__table__V[1] = { {/* instance#0 */ 0, (ti_sysbios_hal_Timer_TimerProxy_Handle)&ti_sysbios_family_c28_Timer_Object__table__V[0], /* pi */ }, }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__diagsEnabled__C, ".econst:ti_sysbios_hal_Timer_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__diagsEnabled ti_sysbios_hal_Timer_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__diagsIncluded__C, ".econst:ti_sysbios_hal_Timer_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__diagsIncluded ti_sysbios_hal_Timer_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__diagsMask__C, ".econst:ti_sysbios_hal_Timer_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__diagsMask ti_sysbios_hal_Timer_Module__diagsMask__C = ((CT__ti_sysbios_hal_Timer_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__gateObj__C, ".econst:ti_sysbios_hal_Timer_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__gateObj ti_sysbios_hal_Timer_Module__gateObj__C = ((CT__ti_sysbios_hal_Timer_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__gatePrms__C, ".econst:ti_sysbios_hal_Timer_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__gatePrms ti_sysbios_hal_Timer_Module__gatePrms__C = ((CT__ti_sysbios_hal_Timer_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__id__C, ".econst:ti_sysbios_hal_Timer_Module__id__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__id ti_sysbios_hal_Timer_Module__id__C = (xdc_Bits16)0x25; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__loggerDefined__C, ".econst:ti_sysbios_hal_Timer_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__loggerDefined ti_sysbios_hal_Timer_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__loggerObj__C, ".econst:ti_sysbios_hal_Timer_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__loggerObj ti_sysbios_hal_Timer_Module__loggerObj__C = ((CT__ti_sysbios_hal_Timer_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__loggerFxn0__C, ".econst:ti_sysbios_hal_Timer_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__loggerFxn0 ti_sysbios_hal_Timer_Module__loggerFxn0__C = ((CT__ti_sysbios_hal_Timer_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__loggerFxn1__C, ".econst:ti_sysbios_hal_Timer_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__loggerFxn1 ti_sysbios_hal_Timer_Module__loggerFxn1__C = ((CT__ti_sysbios_hal_Timer_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__loggerFxn2__C, ".econst:ti_sysbios_hal_Timer_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__loggerFxn2 ti_sysbios_hal_Timer_Module__loggerFxn2__C = ((CT__ti_sysbios_hal_Timer_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__loggerFxn4__C, ".econst:ti_sysbios_hal_Timer_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__loggerFxn4 ti_sysbios_hal_Timer_Module__loggerFxn4__C = ((CT__ti_sysbios_hal_Timer_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Module__loggerFxn8__C, ".econst:ti_sysbios_hal_Timer_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Module__loggerFxn8 ti_sysbios_hal_Timer_Module__loggerFxn8__C = ((CT__ti_sysbios_hal_Timer_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Object__count__C, ".econst:ti_sysbios_hal_Timer_Object__count__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Object__count ti_sysbios_hal_Timer_Object__count__C = 1; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Object__heap__C, ".econst:ti_sysbios_hal_Timer_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Object__heap ti_sysbios_hal_Timer_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Object__sizeof__C, ".econst:ti_sysbios_hal_Timer_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Object__sizeof ti_sysbios_hal_Timer_Object__sizeof__C = sizeof(ti_sysbios_hal_Timer_Object__); /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_hal_Timer_Object__table__C, ".econst:ti_sysbios_hal_Timer_Object__table__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_hal_Timer_Object__table ti_sysbios_hal_Timer_Object__table__C = ti_sysbios_hal_Timer_Object__table__V; /* * ======== ti.sysbios.hal.Timer_TimerProxy INITIALIZERS ======== */ /* * ======== ti.sysbios.heaps.HeapMem INITIALIZERS ======== */ /* Object__DESC__C */ const xdc_runtime_Core_ObjDesc ti_sysbios_heaps_HeapMem_Object__DESC__C; /* Object__PARAMS__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Object__PARAMS__C, ".econst:ti_sysbios_heaps_HeapMem_Object__PARAMS__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Object__PARAMS__C\""); asm(" .clink "); const ti_sysbios_heaps_HeapMem_Params ti_sysbios_heaps_HeapMem_Object__PARAMS__C = { sizeof (ti_sysbios_heaps_HeapMem_Params), /* __size */ 0, /* __self */ 0, /* __fxns */ (xdc_runtime_IInstance_Params*)&ti_sysbios_heaps_HeapMem_Object__PARAMS__C.__iprms, /* instance */ (xdc_SizeT)0x0, /* minBlockAlign */ ((xdc_Ptr)(0x0)), /* buf */ ((xdc_UArg)(0x0)), /* size */ { sizeof (xdc_runtime_IInstance_Params), /* __size */ 0, /* name */ }, /* instance */ }; /* --> ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A */ __T1_ti_sysbios_heaps_HeapMem_Instance_State__buf ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A[35]; /* Object__table__V */ ti_sysbios_heaps_HeapMem_Object__ ti_sysbios_heaps_HeapMem_Object__table__V[1] = { {/* instance#0 */ &ti_sysbios_heaps_HeapMem_Module__FXNS__C, ((xdc_UArg)(0x4)), /* align */ ((void*)ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A), /* buf */ { ((ti_sysbios_heaps_HeapMem_Header*)0), /* next */ ((xdc_UArg)(0x20)), /* size */ }, /* head */ (xdc_SizeT)0x4, /* minBlockAlign */ }, }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C, ".econst:ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__diagsEnabled ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C, ".econst:ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__diagsIncluded ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__diagsMask__C, ".econst:ti_sysbios_heaps_HeapMem_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__diagsMask ti_sysbios_heaps_HeapMem_Module__diagsMask__C = ((CT__ti_sysbios_heaps_HeapMem_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__gateObj__C, ".econst:ti_sysbios_heaps_HeapMem_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__gateObj ti_sysbios_heaps_HeapMem_Module__gateObj__C = ((CT__ti_sysbios_heaps_HeapMem_Module__gateObj)((const void*)(xdc_runtime_IGateProvider_Handle)&ti_sysbios_gates_GateMutex_Object__table__V[0])); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__gatePrms__C, ".econst:ti_sysbios_heaps_HeapMem_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__gatePrms ti_sysbios_heaps_HeapMem_Module__gatePrms__C = ((CT__ti_sysbios_heaps_HeapMem_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__id__C, ".econst:ti_sysbios_heaps_HeapMem_Module__id__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__id ti_sysbios_heaps_HeapMem_Module__id__C = (xdc_Bits16)0x2b; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerDefined__C, ".econst:ti_sysbios_heaps_HeapMem_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__loggerDefined ti_sysbios_heaps_HeapMem_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerObj__C, ".econst:ti_sysbios_heaps_HeapMem_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__loggerObj ti_sysbios_heaps_HeapMem_Module__loggerObj__C = ((CT__ti_sysbios_heaps_HeapMem_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerFxn0__C, ".econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn0 ti_sysbios_heaps_HeapMem_Module__loggerFxn0__C = ((CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerFxn1__C, ".econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn1 ti_sysbios_heaps_HeapMem_Module__loggerFxn1__C = ((CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerFxn2__C, ".econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn2 ti_sysbios_heaps_HeapMem_Module__loggerFxn2__C = ((CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerFxn4__C, ".econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn4 ti_sysbios_heaps_HeapMem_Module__loggerFxn4__C = ((CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Module__loggerFxn8__C, ".econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn8 ti_sysbios_heaps_HeapMem_Module__loggerFxn8__C = ((CT__ti_sysbios_heaps_HeapMem_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Object__count__C, ".econst:ti_sysbios_heaps_HeapMem_Object__count__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Object__count ti_sysbios_heaps_HeapMem_Object__count__C = 1; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Object__heap__C, ".econst:ti_sysbios_heaps_HeapMem_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Object__heap ti_sysbios_heaps_HeapMem_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Object__sizeof__C, ".econst:ti_sysbios_heaps_HeapMem_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Object__sizeof ti_sysbios_heaps_HeapMem_Object__sizeof__C = sizeof(ti_sysbios_heaps_HeapMem_Object__); /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Object__table__C, ".econst:ti_sysbios_heaps_HeapMem_Object__table__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_Object__table ti_sysbios_heaps_HeapMem_Object__table__C = ti_sysbios_heaps_HeapMem_Object__table__V; /* A_zeroBlock__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_A_zeroBlock__C, ".econst:ti_sysbios_heaps_HeapMem_A_zeroBlock__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_A_zeroBlock__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_A_zeroBlock__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_A_zeroBlock__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_A_zeroBlock ti_sysbios_heaps_HeapMem_A_zeroBlock__C = (((xdc_runtime_Assert_Id)3232) << 16 | 16); /* A_heapSize__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_A_heapSize__C, ".econst:ti_sysbios_heaps_HeapMem_A_heapSize__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_A_heapSize__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_A_heapSize__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_A_heapSize__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_A_heapSize ti_sysbios_heaps_HeapMem_A_heapSize__C = (((xdc_runtime_Assert_Id)3268) << 16 | 16); /* A_align__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_A_align__C, ".econst:ti_sysbios_heaps_HeapMem_A_align__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_A_align__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_A_align__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_A_align__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_A_align ti_sysbios_heaps_HeapMem_A_align__C = (((xdc_runtime_Assert_Id)3313) << 16 | 16); /* E_memory__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_E_memory__C, ".econst:ti_sysbios_heaps_HeapMem_E_memory__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_E_memory__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_E_memory__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_E_memory__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_E_memory ti_sysbios_heaps_HeapMem_E_memory__C = (((xdc_runtime_Error_Id)4436) << 16 | 0); /* A_invalidFree__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_A_invalidFree__C, ".econst:ti_sysbios_heaps_HeapMem_A_invalidFree__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_A_invalidFree__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_A_invalidFree__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_A_invalidFree__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_A_invalidFree ti_sysbios_heaps_HeapMem_A_invalidFree__C = (((xdc_runtime_Assert_Id)3204) << 16 | 16); /* primaryHeapBaseAddr__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C, ".econst:ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr__C = ((CT__ti_sysbios_heaps_HeapMem_primaryHeapBaseAddr)0); /* primaryHeapEndAddr__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C, ".econst:ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_primaryHeapEndAddr ti_sysbios_heaps_HeapMem_primaryHeapEndAddr__C = ((CT__ti_sysbios_heaps_HeapMem_primaryHeapEndAddr)0); /* reqAlign__C */ #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_reqAlign__C, ".econst:ti_sysbios_heaps_HeapMem_reqAlign__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_reqAlign__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_reqAlign__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_reqAlign__C\""); asm(" .clink "); const CT__ti_sysbios_heaps_HeapMem_reqAlign ti_sysbios_heaps_HeapMem_reqAlign__C = (xdc_SizeT)0x4; /* * ======== ti.sysbios.heaps.HeapMem_Module_GateProxy INITIALIZERS ======== */ /* * ======== ti.sysbios.knl.Clock INITIALIZERS ======== */ /* Object__DESC__C */ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Clock_Object__DESC__C; /* Object__PARAMS__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Object__PARAMS__C, ".econst:ti_sysbios_knl_Clock_Object__PARAMS__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Object__PARAMS__C\""); asm(" .clink "); const ti_sysbios_knl_Clock_Params ti_sysbios_knl_Clock_Object__PARAMS__C = { sizeof (ti_sysbios_knl_Clock_Params), /* __size */ 0, /* __self */ 0, /* __fxns */ (xdc_runtime_IInstance_Params*)&ti_sysbios_knl_Clock_Object__PARAMS__C.__iprms, /* instance */ 0, /* startFlag */ (xdc_UInt32)0x0, /* period */ ((xdc_UArg)0), /* arg */ { sizeof (xdc_runtime_IInstance_Params), /* __size */ 0, /* name */ }, /* instance */ }; /* Module__state__V */ ti_sysbios_knl_Clock_Module_State__ ti_sysbios_knl_Clock_Module__state__V = { (xdc_UInt32)0x0, /* ticks */ (xdc_UInt)0x0, /* swiCount */ (ti_sysbios_knl_Clock_TimerProxy_Handle)&ti_sysbios_family_c28_Timer_Object__table__V[1], /* timer */ (ti_sysbios_knl_Swi_Handle)&ti_sysbios_knl_Swi_Object__table__V[2], /* swi */ (xdc_UInt)0x1, /* numTickSkip */ (xdc_UInt32)0x1, /* nextScheduledTick */ (xdc_UInt32)0x0, /* maxSkippable */ 0, /* inWorkFunc */ 0, /* startDuringWorkFunc */ 0, /* ticking */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Clock_Module__state__V.Object_field_clockQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Clock_Module__state__V.Object_field_clockQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_clockQ */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__diagsEnabled__C, ".econst:ti_sysbios_knl_Clock_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__diagsEnabled ti_sysbios_knl_Clock_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__diagsIncluded__C, ".econst:ti_sysbios_knl_Clock_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__diagsIncluded ti_sysbios_knl_Clock_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__diagsMask__C, ".econst:ti_sysbios_knl_Clock_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__diagsMask ti_sysbios_knl_Clock_Module__diagsMask__C = ((CT__ti_sysbios_knl_Clock_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__gateObj__C, ".econst:ti_sysbios_knl_Clock_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__gateObj ti_sysbios_knl_Clock_Module__gateObj__C = ((CT__ti_sysbios_knl_Clock_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__gatePrms__C, ".econst:ti_sysbios_knl_Clock_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__gatePrms ti_sysbios_knl_Clock_Module__gatePrms__C = ((CT__ti_sysbios_knl_Clock_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__id__C, ".econst:ti_sysbios_knl_Clock_Module__id__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__id ti_sysbios_knl_Clock_Module__id__C = (xdc_Bits16)0x1a; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerDefined__C, ".econst:ti_sysbios_knl_Clock_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__loggerDefined ti_sysbios_knl_Clock_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerObj__C, ".econst:ti_sysbios_knl_Clock_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__loggerObj ti_sysbios_knl_Clock_Module__loggerObj__C = ((CT__ti_sysbios_knl_Clock_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerFxn0__C, ".econst:ti_sysbios_knl_Clock_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__loggerFxn0 ti_sysbios_knl_Clock_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Clock_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerFxn1__C, ".econst:ti_sysbios_knl_Clock_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__loggerFxn1 ti_sysbios_knl_Clock_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Clock_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerFxn2__C, ".econst:ti_sysbios_knl_Clock_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__loggerFxn2 ti_sysbios_knl_Clock_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Clock_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerFxn4__C, ".econst:ti_sysbios_knl_Clock_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__loggerFxn4 ti_sysbios_knl_Clock_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Clock_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Module__loggerFxn8__C, ".econst:ti_sysbios_knl_Clock_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Module__loggerFxn8 ti_sysbios_knl_Clock_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Clock_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Object__count__C, ".econst:ti_sysbios_knl_Clock_Object__count__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Object__count ti_sysbios_knl_Clock_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Object__heap__C, ".econst:ti_sysbios_knl_Clock_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Object__heap ti_sysbios_knl_Clock_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Object__sizeof__C, ".econst:ti_sysbios_knl_Clock_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Object__sizeof ti_sysbios_knl_Clock_Object__sizeof__C = sizeof(ti_sysbios_knl_Clock_Object__); /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_Object__table__C, ".econst:ti_sysbios_knl_Clock_Object__table__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_Object__table ti_sysbios_knl_Clock_Object__table__C = 0; /* LW_delayed__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_LW_delayed__C, ".econst:ti_sysbios_knl_Clock_LW_delayed__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_LW_delayed__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_LW_delayed__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_LW_delayed__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_LW_delayed ti_sysbios_knl_Clock_LW_delayed__C = (((xdc_runtime_Log_Event)4736) << 16 | 1024); /* LM_tick__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_LM_tick__C, ".econst:ti_sysbios_knl_Clock_LM_tick__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_LM_tick__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_LM_tick__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_LM_tick__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_LM_tick ti_sysbios_knl_Clock_LM_tick__C = (((xdc_runtime_Log_Event)4758) << 16 | 768); /* LM_begin__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_LM_begin__C, ".econst:ti_sysbios_knl_Clock_LM_begin__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_LM_begin__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_LM_begin__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_LM_begin__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_LM_begin ti_sysbios_knl_Clock_LM_begin__C = (((xdc_runtime_Log_Event)4776) << 16 | 768); /* A_clockDisabled__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_A_clockDisabled__C, ".econst:ti_sysbios_knl_Clock_A_clockDisabled__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_A_clockDisabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_A_clockDisabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_A_clockDisabled__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_A_clockDisabled ti_sysbios_knl_Clock_A_clockDisabled__C = (((xdc_runtime_Assert_Id)706) << 16 | 16); /* A_badThreadType__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_A_badThreadType__C, ".econst:ti_sysbios_knl_Clock_A_badThreadType__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_A_badThreadType__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_A_badThreadType__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_A_badThreadType__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_A_badThreadType ti_sysbios_knl_Clock_A_badThreadType__C = (((xdc_runtime_Assert_Id)787) << 16 | 16); /* serviceMargin__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_serviceMargin__C, ".econst:ti_sysbios_knl_Clock_serviceMargin__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_serviceMargin__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_serviceMargin__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_serviceMargin__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_serviceMargin ti_sysbios_knl_Clock_serviceMargin__C = (xdc_UInt32)0x0; /* tickSource__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_tickSource__C, ".econst:ti_sysbios_knl_Clock_tickSource__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_tickSource__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_tickSource__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_tickSource__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_tickSource ti_sysbios_knl_Clock_tickSource__C = ti_sysbios_knl_Clock_TickSource_TIMER; /* tickMode__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_tickMode__C, ".econst:ti_sysbios_knl_Clock_tickMode__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_tickMode__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_tickMode__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_tickMode__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_tickMode ti_sysbios_knl_Clock_tickMode__C = ti_sysbios_knl_Clock_TickMode_PERIODIC; /* timerId__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_timerId__C, ".econst:ti_sysbios_knl_Clock_timerId__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_timerId__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_timerId__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_timerId__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_timerId ti_sysbios_knl_Clock_timerId__C = (xdc_UInt)(-0x0 - 1); /* tickPeriod__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_tickPeriod__C, ".econst:ti_sysbios_knl_Clock_tickPeriod__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_tickPeriod__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_tickPeriod__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_tickPeriod__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_tickPeriod ti_sysbios_knl_Clock_tickPeriod__C = (xdc_UInt32)0x3e8; /* doTickFunc__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_doTickFunc__C, ".econst:ti_sysbios_knl_Clock_doTickFunc__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_doTickFunc__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_doTickFunc__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_doTickFunc__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_doTickFunc ti_sysbios_knl_Clock_doTickFunc__C = ((CT__ti_sysbios_knl_Clock_doTickFunc)((xdc_Fxn)ti_sysbios_knl_Clock_doTick__I)); /* triggerClock__C */ #pragma DATA_SECTION(ti_sysbios_knl_Clock_triggerClock__C, ".econst:ti_sysbios_knl_Clock_triggerClock__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_triggerClock__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_triggerClock__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_triggerClock__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Clock_triggerClock ti_sysbios_knl_Clock_triggerClock__C = 0; /* * ======== ti.sysbios.knl.Clock_TimerProxy INITIALIZERS ======== */ /* * ======== ti.sysbios.knl.Idle INITIALIZERS ======== */ /* --> ti_sysbios_knl_Idle_funcList__A */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_funcList__A, ".econst:ti_sysbios_knl_Idle_funcList__A"); asm(" .sect \".econst:ti_sysbios_knl_Idle_funcList__A\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_funcList__A\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_funcList__A\""); asm(" .clink "); const __T1_ti_sysbios_knl_Idle_funcList ti_sysbios_knl_Idle_funcList__A[3] = { ((void(*)(void))((xdc_Fxn)HOSS_idle)), /* [0] */ ((void(*)(void))((xdc_Fxn)ti_sysbios_hal_Hwi_checkStack)), /* [1] */ ((void(*)(void))((xdc_Fxn)ti_sysbios_utils_Load_idleFxn__E)), /* [2] */ }; /* --> ti_sysbios_knl_Idle_coreList__A */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_coreList__A, ".econst:ti_sysbios_knl_Idle_coreList__A"); asm(" .sect \".econst:ti_sysbios_knl_Idle_coreList__A\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_coreList__A\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_coreList__A\""); asm(" .clink "); const __T1_ti_sysbios_knl_Idle_coreList ti_sysbios_knl_Idle_coreList__A[3] = { (xdc_UInt)0x0, /* [0] */ (xdc_UInt)0x0, /* [1] */ (xdc_UInt)0x0, /* [2] */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__diagsEnabled__C, ".econst:ti_sysbios_knl_Idle_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__diagsEnabled ti_sysbios_knl_Idle_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__diagsIncluded__C, ".econst:ti_sysbios_knl_Idle_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__diagsIncluded ti_sysbios_knl_Idle_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__diagsMask__C, ".econst:ti_sysbios_knl_Idle_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__diagsMask ti_sysbios_knl_Idle_Module__diagsMask__C = ((CT__ti_sysbios_knl_Idle_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__gateObj__C, ".econst:ti_sysbios_knl_Idle_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__gateObj ti_sysbios_knl_Idle_Module__gateObj__C = ((CT__ti_sysbios_knl_Idle_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__gatePrms__C, ".econst:ti_sysbios_knl_Idle_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__gatePrms ti_sysbios_knl_Idle_Module__gatePrms__C = ((CT__ti_sysbios_knl_Idle_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__id__C, ".econst:ti_sysbios_knl_Idle_Module__id__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__id ti_sysbios_knl_Idle_Module__id__C = (xdc_Bits16)0x1b; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerDefined__C, ".econst:ti_sysbios_knl_Idle_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__loggerDefined ti_sysbios_knl_Idle_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerObj__C, ".econst:ti_sysbios_knl_Idle_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__loggerObj ti_sysbios_knl_Idle_Module__loggerObj__C = ((CT__ti_sysbios_knl_Idle_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerFxn0__C, ".econst:ti_sysbios_knl_Idle_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__loggerFxn0 ti_sysbios_knl_Idle_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Idle_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerFxn1__C, ".econst:ti_sysbios_knl_Idle_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__loggerFxn1 ti_sysbios_knl_Idle_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Idle_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerFxn2__C, ".econst:ti_sysbios_knl_Idle_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__loggerFxn2 ti_sysbios_knl_Idle_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Idle_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerFxn4__C, ".econst:ti_sysbios_knl_Idle_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__loggerFxn4 ti_sysbios_knl_Idle_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Idle_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Module__loggerFxn8__C, ".econst:ti_sysbios_knl_Idle_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Module__loggerFxn8 ti_sysbios_knl_Idle_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Idle_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Object__count__C, ".econst:ti_sysbios_knl_Idle_Object__count__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Object__count ti_sysbios_knl_Idle_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Object__heap__C, ".econst:ti_sysbios_knl_Idle_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Object__heap ti_sysbios_knl_Idle_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Object__sizeof__C, ".econst:ti_sysbios_knl_Idle_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Object__sizeof ti_sysbios_knl_Idle_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_Object__table__C, ".econst:ti_sysbios_knl_Idle_Object__table__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_Object__table ti_sysbios_knl_Idle_Object__table__C = 0; /* funcList__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_funcList__C, ".econst:ti_sysbios_knl_Idle_funcList__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_funcList__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_funcList__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_funcList__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_funcList ti_sysbios_knl_Idle_funcList__C = {3, ((__T1_ti_sysbios_knl_Idle_funcList *)ti_sysbios_knl_Idle_funcList__A)}; /* coreList__C */ #pragma DATA_SECTION(ti_sysbios_knl_Idle_coreList__C, ".econst:ti_sysbios_knl_Idle_coreList__C"); asm(" .sect \".econst:ti_sysbios_knl_Idle_coreList__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Idle_coreList__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Idle_coreList__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Idle_coreList ti_sysbios_knl_Idle_coreList__C = {3, ((__T1_ti_sysbios_knl_Idle_coreList *)ti_sysbios_knl_Idle_coreList__A)}; /* * ======== ti.sysbios.knl.Intrinsics INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__diagsEnabled__C, ".econst:ti_sysbios_knl_Intrinsics_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__diagsEnabled ti_sysbios_knl_Intrinsics_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__diagsIncluded__C, ".econst:ti_sysbios_knl_Intrinsics_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__diagsIncluded ti_sysbios_knl_Intrinsics_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__diagsMask__C, ".econst:ti_sysbios_knl_Intrinsics_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__diagsMask ti_sysbios_knl_Intrinsics_Module__diagsMask__C = ((CT__ti_sysbios_knl_Intrinsics_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__gateObj__C, ".econst:ti_sysbios_knl_Intrinsics_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__gateObj ti_sysbios_knl_Intrinsics_Module__gateObj__C = ((CT__ti_sysbios_knl_Intrinsics_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__gatePrms__C, ".econst:ti_sysbios_knl_Intrinsics_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__gatePrms ti_sysbios_knl_Intrinsics_Module__gatePrms__C = ((CT__ti_sysbios_knl_Intrinsics_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__id__C, ".econst:ti_sysbios_knl_Intrinsics_Module__id__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__id ti_sysbios_knl_Intrinsics_Module__id__C = (xdc_Bits16)0x1c; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerDefined__C, ".econst:ti_sysbios_knl_Intrinsics_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__loggerDefined ti_sysbios_knl_Intrinsics_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerObj__C, ".econst:ti_sysbios_knl_Intrinsics_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__loggerObj ti_sysbios_knl_Intrinsics_Module__loggerObj__C = ((CT__ti_sysbios_knl_Intrinsics_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerFxn0__C, ".econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn0 ti_sysbios_knl_Intrinsics_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerFxn1__C, ".econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn1 ti_sysbios_knl_Intrinsics_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerFxn2__C, ".econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn2 ti_sysbios_knl_Intrinsics_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerFxn4__C, ".econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn4 ti_sysbios_knl_Intrinsics_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Module__loggerFxn8__C, ".econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn8 ti_sysbios_knl_Intrinsics_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Intrinsics_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Object__count__C, ".econst:ti_sysbios_knl_Intrinsics_Object__count__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Object__count ti_sysbios_knl_Intrinsics_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Object__heap__C, ".econst:ti_sysbios_knl_Intrinsics_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Object__heap ti_sysbios_knl_Intrinsics_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Object__sizeof__C, ".econst:ti_sysbios_knl_Intrinsics_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Object__sizeof ti_sysbios_knl_Intrinsics_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_knl_Intrinsics_Object__table__C, ".econst:ti_sysbios_knl_Intrinsics_Object__table__C"); asm(" .sect \".econst:ti_sysbios_knl_Intrinsics_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Intrinsics_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Intrinsics_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Intrinsics_Object__table ti_sysbios_knl_Intrinsics_Object__table__C = 0; /* * ======== ti.sysbios.knl.Intrinsics_SupportProxy INITIALIZERS ======== */ /* * ======== ti.sysbios.knl.Queue INITIALIZERS ======== */ /* Object__DESC__C */ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Queue_Object__DESC__C; /* Object__PARAMS__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Object__PARAMS__C, ".econst:ti_sysbios_knl_Queue_Object__PARAMS__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Object__PARAMS__C\""); asm(" .clink "); const ti_sysbios_knl_Queue_Params ti_sysbios_knl_Queue_Object__PARAMS__C = { sizeof (ti_sysbios_knl_Queue_Params), /* __size */ 0, /* __self */ 0, /* __fxns */ (xdc_runtime_IInstance_Params*)&ti_sysbios_knl_Queue_Object__PARAMS__C.__iprms, /* instance */ { sizeof (xdc_runtime_IInstance_Params), /* __size */ 0, /* name */ }, /* instance */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__diagsEnabled__C, ".econst:ti_sysbios_knl_Queue_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__diagsEnabled ti_sysbios_knl_Queue_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__diagsIncluded__C, ".econst:ti_sysbios_knl_Queue_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__diagsIncluded ti_sysbios_knl_Queue_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__diagsMask__C, ".econst:ti_sysbios_knl_Queue_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__diagsMask ti_sysbios_knl_Queue_Module__diagsMask__C = ((CT__ti_sysbios_knl_Queue_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__gateObj__C, ".econst:ti_sysbios_knl_Queue_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__gateObj ti_sysbios_knl_Queue_Module__gateObj__C = ((CT__ti_sysbios_knl_Queue_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__gatePrms__C, ".econst:ti_sysbios_knl_Queue_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__gatePrms ti_sysbios_knl_Queue_Module__gatePrms__C = ((CT__ti_sysbios_knl_Queue_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__id__C, ".econst:ti_sysbios_knl_Queue_Module__id__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__id ti_sysbios_knl_Queue_Module__id__C = (xdc_Bits16)0x1d; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerDefined__C, ".econst:ti_sysbios_knl_Queue_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__loggerDefined ti_sysbios_knl_Queue_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerObj__C, ".econst:ti_sysbios_knl_Queue_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__loggerObj ti_sysbios_knl_Queue_Module__loggerObj__C = ((CT__ti_sysbios_knl_Queue_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerFxn0__C, ".econst:ti_sysbios_knl_Queue_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__loggerFxn0 ti_sysbios_knl_Queue_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Queue_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerFxn1__C, ".econst:ti_sysbios_knl_Queue_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__loggerFxn1 ti_sysbios_knl_Queue_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Queue_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerFxn2__C, ".econst:ti_sysbios_knl_Queue_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__loggerFxn2 ti_sysbios_knl_Queue_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Queue_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerFxn4__C, ".econst:ti_sysbios_knl_Queue_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__loggerFxn4 ti_sysbios_knl_Queue_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Queue_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Module__loggerFxn8__C, ".econst:ti_sysbios_knl_Queue_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Module__loggerFxn8 ti_sysbios_knl_Queue_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Queue_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Object__count__C, ".econst:ti_sysbios_knl_Queue_Object__count__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Object__count ti_sysbios_knl_Queue_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Object__heap__C, ".econst:ti_sysbios_knl_Queue_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Object__heap ti_sysbios_knl_Queue_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Object__sizeof__C, ".econst:ti_sysbios_knl_Queue_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Object__sizeof ti_sysbios_knl_Queue_Object__sizeof__C = sizeof(ti_sysbios_knl_Queue_Object__); /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_knl_Queue_Object__table__C, ".econst:ti_sysbios_knl_Queue_Object__table__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Queue_Object__table ti_sysbios_knl_Queue_Object__table__C = 0; /* * ======== ti.sysbios.knl.Semaphore INITIALIZERS ======== */ /* Object__DESC__C */ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Semaphore_Object__DESC__C; /* Object__PARAMS__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Object__PARAMS__C, ".econst:ti_sysbios_knl_Semaphore_Object__PARAMS__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Object__PARAMS__C\""); asm(" .clink "); const ti_sysbios_knl_Semaphore_Params ti_sysbios_knl_Semaphore_Object__PARAMS__C = { sizeof (ti_sysbios_knl_Semaphore_Params), /* __size */ 0, /* __self */ 0, /* __fxns */ (xdc_runtime_IInstance_Params*)&ti_sysbios_knl_Semaphore_Object__PARAMS__C.__iprms, /* instance */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_COUNTING, /* mode */ { sizeof (xdc_runtime_IInstance_Params), /* __size */ 0, /* name */ }, /* instance */ }; /* Object__table__V */ ti_sysbios_knl_Semaphore_Object__ ti_sysbios_knl_Semaphore_Object__table__V[14] = { {/* instance#0 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x0, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[0].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[0].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#1 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x0, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[1].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[1].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#2 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x0, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[2].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[2].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#3 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x0, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[3].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[3].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#4 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x0, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[4].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[4].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#5 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x0, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[5].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[5].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#6 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x0, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[6].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[6].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#7 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x1, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[7].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[7].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#8 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x1, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[8].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[8].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#9 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x1, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[9].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[9].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#10 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x1, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[10].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[10].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#11 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x0, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[11].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[11].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#12 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x0, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[12].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[12].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, {/* instance#13 */ 0, /* event */ (xdc_UInt)0x1, /* eventId */ ti_sysbios_knl_Semaphore_Mode_BINARY, /* mode */ (xdc_UInt16)0x0, /* count */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[13].Object_field_pendQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Semaphore_Object__table__V[13].Object_field_pendQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_pendQ */ }, }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__diagsEnabled__C, ".econst:ti_sysbios_knl_Semaphore_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__diagsEnabled ti_sysbios_knl_Semaphore_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__diagsIncluded__C, ".econst:ti_sysbios_knl_Semaphore_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__diagsIncluded ti_sysbios_knl_Semaphore_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__diagsMask__C, ".econst:ti_sysbios_knl_Semaphore_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__diagsMask ti_sysbios_knl_Semaphore_Module__diagsMask__C = ((CT__ti_sysbios_knl_Semaphore_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__gateObj__C, ".econst:ti_sysbios_knl_Semaphore_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__gateObj ti_sysbios_knl_Semaphore_Module__gateObj__C = ((CT__ti_sysbios_knl_Semaphore_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__gatePrms__C, ".econst:ti_sysbios_knl_Semaphore_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__gatePrms ti_sysbios_knl_Semaphore_Module__gatePrms__C = ((CT__ti_sysbios_knl_Semaphore_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__id__C, ".econst:ti_sysbios_knl_Semaphore_Module__id__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__id ti_sysbios_knl_Semaphore_Module__id__C = (xdc_Bits16)0x1e; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerDefined__C, ".econst:ti_sysbios_knl_Semaphore_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__loggerDefined ti_sysbios_knl_Semaphore_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerObj__C, ".econst:ti_sysbios_knl_Semaphore_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__loggerObj ti_sysbios_knl_Semaphore_Module__loggerObj__C = ((CT__ti_sysbios_knl_Semaphore_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerFxn0__C, ".econst:ti_sysbios_knl_Semaphore_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn0 ti_sysbios_knl_Semaphore_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Semaphore_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerFxn1__C, ".econst:ti_sysbios_knl_Semaphore_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn1 ti_sysbios_knl_Semaphore_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Semaphore_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerFxn2__C, ".econst:ti_sysbios_knl_Semaphore_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn2 ti_sysbios_knl_Semaphore_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Semaphore_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerFxn4__C, ".econst:ti_sysbios_knl_Semaphore_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn4 ti_sysbios_knl_Semaphore_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Semaphore_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Module__loggerFxn8__C, ".econst:ti_sysbios_knl_Semaphore_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Module__loggerFxn8 ti_sysbios_knl_Semaphore_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Semaphore_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Object__count__C, ".econst:ti_sysbios_knl_Semaphore_Object__count__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Object__count ti_sysbios_knl_Semaphore_Object__count__C = 14; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Object__heap__C, ".econst:ti_sysbios_knl_Semaphore_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Object__heap ti_sysbios_knl_Semaphore_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Object__sizeof__C, ".econst:ti_sysbios_knl_Semaphore_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Object__sizeof ti_sysbios_knl_Semaphore_Object__sizeof__C = sizeof(ti_sysbios_knl_Semaphore_Object__); /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Object__table__C, ".econst:ti_sysbios_knl_Semaphore_Object__table__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_Object__table ti_sysbios_knl_Semaphore_Object__table__C = ti_sysbios_knl_Semaphore_Object__table__V; /* LM_post__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_LM_post__C, ".econst:ti_sysbios_knl_Semaphore_LM_post__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_LM_post__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_LM_post__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_LM_post__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_LM_post ti_sysbios_knl_Semaphore_LM_post__C = (((xdc_runtime_Log_Event)4808) << 16 | 768); /* LM_pend__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_LM_pend__C, ".econst:ti_sysbios_knl_Semaphore_LM_pend__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_LM_pend__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_LM_pend__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_LM_pend__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_LM_pend ti_sysbios_knl_Semaphore_LM_pend__C = (((xdc_runtime_Log_Event)4838) << 16 | 768); /* A_noEvents__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_A_noEvents__C, ".econst:ti_sysbios_knl_Semaphore_A_noEvents__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_A_noEvents__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_A_noEvents__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_A_noEvents__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_A_noEvents ti_sysbios_knl_Semaphore_A_noEvents__C = (((xdc_runtime_Assert_Id)1197) << 16 | 16); /* A_invTimeout__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_A_invTimeout__C, ".econst:ti_sysbios_knl_Semaphore_A_invTimeout__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_A_invTimeout__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_A_invTimeout__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_A_invTimeout__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_A_invTimeout ti_sysbios_knl_Semaphore_A_invTimeout__C = (((xdc_runtime_Assert_Id)1252) << 16 | 16); /* A_badContext__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_A_badContext__C, ".econst:ti_sysbios_knl_Semaphore_A_badContext__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_A_badContext__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_A_badContext__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_A_badContext__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_A_badContext ti_sysbios_knl_Semaphore_A_badContext__C = (((xdc_runtime_Assert_Id)986) << 16 | 16); /* A_overflow__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_A_overflow__C, ".econst:ti_sysbios_knl_Semaphore_A_overflow__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_A_overflow__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_A_overflow__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_A_overflow__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_A_overflow ti_sysbios_knl_Semaphore_A_overflow__C = (((xdc_runtime_Assert_Id)1317) << 16 | 16); /* A_pendTaskDisabled__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C, ".econst:ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_A_pendTaskDisabled ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C = (((xdc_runtime_Assert_Id)1371) << 16 | 16); /* supportsEvents__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_supportsEvents__C, ".econst:ti_sysbios_knl_Semaphore_supportsEvents__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_supportsEvents__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_supportsEvents__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_supportsEvents__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_supportsEvents ti_sysbios_knl_Semaphore_supportsEvents__C = 0; /* supportsPriority__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_supportsPriority__C, ".econst:ti_sysbios_knl_Semaphore_supportsPriority__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_supportsPriority__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_supportsPriority__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_supportsPriority__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_supportsPriority ti_sysbios_knl_Semaphore_supportsPriority__C = 1; /* eventPost__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_eventPost__C, ".econst:ti_sysbios_knl_Semaphore_eventPost__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_eventPost__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_eventPost__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_eventPost__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_eventPost ti_sysbios_knl_Semaphore_eventPost__C = ((CT__ti_sysbios_knl_Semaphore_eventPost)0); /* eventSync__C */ #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_eventSync__C, ".econst:ti_sysbios_knl_Semaphore_eventSync__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_eventSync__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_eventSync__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_eventSync__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Semaphore_eventSync ti_sysbios_knl_Semaphore_eventSync__C = ((CT__ti_sysbios_knl_Semaphore_eventSync)0); /* * ======== ti.sysbios.knl.Swi INITIALIZERS ======== */ /* Object__DESC__C */ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Swi_Object__DESC__C; /* Object__PARAMS__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Object__PARAMS__C, ".econst:ti_sysbios_knl_Swi_Object__PARAMS__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Object__PARAMS__C\""); asm(" .clink "); const ti_sysbios_knl_Swi_Params ti_sysbios_knl_Swi_Object__PARAMS__C = { sizeof (ti_sysbios_knl_Swi_Params), /* __size */ 0, /* __self */ 0, /* __fxns */ (xdc_runtime_IInstance_Params*)&ti_sysbios_knl_Swi_Object__PARAMS__C.__iprms, /* instance */ ((xdc_UArg)(0x0)), /* arg0 */ ((xdc_UArg)(0x0)), /* arg1 */ (xdc_UInt)(-0x0 - 1), /* priority */ (xdc_UInt)0x0, /* trigger */ { sizeof (xdc_runtime_IInstance_Params), /* __size */ 0, /* name */ }, /* instance */ }; /* Object__table__V */ ti_sysbios_knl_Swi_Object__ ti_sysbios_knl_Swi_Object__table__V[3] = { {/* instance#0 */ { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Object__table__V[0].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Object__table__V[0].qElem)), /* prev */ }, /* qElem */ ((void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)call_process_swi)), /* fxn */ ((xdc_UArg)(0x0)), /* arg0 */ ((xdc_UArg)(0x0)), /* arg1 */ (xdc_UInt)0x1, /* priority */ (xdc_UInt)0x2, /* mask */ 0, /* posted */ (xdc_UInt)0x0, /* initTrigger */ (xdc_UInt)0x0, /* trigger */ (ti_sysbios_knl_Queue_Handle)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[1], /* readyQ */ ((void*)0), /* hookEnv */ }, {/* instance#1 */ { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Object__table__V[1].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Object__table__V[1].qElem)), /* prev */ }, /* qElem */ ((void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)call_process_swi)), /* fxn */ ((xdc_UArg)(0x0)), /* arg0 */ ((xdc_UArg)(0x0)), /* arg1 */ (xdc_UInt)0x1, /* priority */ (xdc_UInt)0x2, /* mask */ 0, /* posted */ (xdc_UInt)0x0, /* initTrigger */ (xdc_UInt)0x0, /* trigger */ (ti_sysbios_knl_Queue_Handle)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[1], /* readyQ */ ((void*)0), /* hookEnv */ }, {/* instance#2 */ { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Object__table__V[2].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Object__table__V[2].qElem)), /* prev */ }, /* qElem */ ((void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)ti_sysbios_knl_Clock_workFunc__E)), /* fxn */ ((xdc_UArg)(0x0)), /* arg0 */ ((xdc_UArg)(0x0)), /* arg1 */ (xdc_UInt)0xf, /* priority */ (xdc_UInt)0x8000, /* mask */ 0, /* posted */ (xdc_UInt)0x0, /* initTrigger */ (xdc_UInt)0x0, /* trigger */ (ti_sysbios_knl_Queue_Handle)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[15], /* readyQ */ ((void*)0), /* hookEnv */ }, }; /* --> ti_sysbios_knl_Swi_Module_State_0_readyQ__A */ __T1_ti_sysbios_knl_Swi_Module_State__readyQ ti_sysbios_knl_Swi_Module_State_0_readyQ__A[16] = { { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[0].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[0].elem)), /* prev */ }, /* elem */ }, /* [0] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[1].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[1].elem)), /* prev */ }, /* elem */ }, /* [1] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[2].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[2].elem)), /* prev */ }, /* elem */ }, /* [2] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[3].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[3].elem)), /* prev */ }, /* elem */ }, /* [3] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[4].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[4].elem)), /* prev */ }, /* elem */ }, /* [4] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[5].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[5].elem)), /* prev */ }, /* elem */ }, /* [5] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[6].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[6].elem)), /* prev */ }, /* elem */ }, /* [6] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[7].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[7].elem)), /* prev */ }, /* elem */ }, /* [7] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[8].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[8].elem)), /* prev */ }, /* elem */ }, /* [8] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[9].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[9].elem)), /* prev */ }, /* elem */ }, /* [9] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[10].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[10].elem)), /* prev */ }, /* elem */ }, /* [10] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[11].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[11].elem)), /* prev */ }, /* elem */ }, /* [11] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[12].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[12].elem)), /* prev */ }, /* elem */ }, /* [12] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[13].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[13].elem)), /* prev */ }, /* elem */ }, /* [13] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[14].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[14].elem)), /* prev */ }, /* elem */ }, /* [14] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[15].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Swi_Module_State_0_readyQ__A[15].elem)), /* prev */ }, /* elem */ }, /* [15] */ }; /* Module__state__V */ ti_sysbios_knl_Swi_Module_State__ ti_sysbios_knl_Swi_Module__state__V = { 1, /* locked */ (xdc_UInt)0x0, /* curSet */ (xdc_UInt)0x0, /* curTrigger */ 0, /* curSwi */ 0, /* curQ */ ((void*)ti_sysbios_knl_Swi_Module_State_0_readyQ__A), /* readyQ */ ((void*)0), /* constructedSwis */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__diagsEnabled__C, ".econst:ti_sysbios_knl_Swi_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__diagsEnabled ti_sysbios_knl_Swi_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__diagsIncluded__C, ".econst:ti_sysbios_knl_Swi_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__diagsIncluded ti_sysbios_knl_Swi_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__diagsMask__C, ".econst:ti_sysbios_knl_Swi_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__diagsMask ti_sysbios_knl_Swi_Module__diagsMask__C = ((CT__ti_sysbios_knl_Swi_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__gateObj__C, ".econst:ti_sysbios_knl_Swi_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__gateObj ti_sysbios_knl_Swi_Module__gateObj__C = ((CT__ti_sysbios_knl_Swi_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__gatePrms__C, ".econst:ti_sysbios_knl_Swi_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__gatePrms ti_sysbios_knl_Swi_Module__gatePrms__C = ((CT__ti_sysbios_knl_Swi_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__id__C, ".econst:ti_sysbios_knl_Swi_Module__id__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__id ti_sysbios_knl_Swi_Module__id__C = (xdc_Bits16)0x1f; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerDefined__C, ".econst:ti_sysbios_knl_Swi_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__loggerDefined ti_sysbios_knl_Swi_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerObj__C, ".econst:ti_sysbios_knl_Swi_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__loggerObj ti_sysbios_knl_Swi_Module__loggerObj__C = ((CT__ti_sysbios_knl_Swi_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerFxn0__C, ".econst:ti_sysbios_knl_Swi_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__loggerFxn0 ti_sysbios_knl_Swi_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Swi_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerFxn1__C, ".econst:ti_sysbios_knl_Swi_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__loggerFxn1 ti_sysbios_knl_Swi_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Swi_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerFxn2__C, ".econst:ti_sysbios_knl_Swi_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__loggerFxn2 ti_sysbios_knl_Swi_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Swi_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerFxn4__C, ".econst:ti_sysbios_knl_Swi_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__loggerFxn4 ti_sysbios_knl_Swi_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Swi_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Module__loggerFxn8__C, ".econst:ti_sysbios_knl_Swi_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Module__loggerFxn8 ti_sysbios_knl_Swi_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Swi_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Object__count__C, ".econst:ti_sysbios_knl_Swi_Object__count__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Object__count ti_sysbios_knl_Swi_Object__count__C = 3; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Object__heap__C, ".econst:ti_sysbios_knl_Swi_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Object__heap ti_sysbios_knl_Swi_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Object__sizeof__C, ".econst:ti_sysbios_knl_Swi_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Object__sizeof ti_sysbios_knl_Swi_Object__sizeof__C = sizeof(ti_sysbios_knl_Swi_Object__); /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_Object__table__C, ".econst:ti_sysbios_knl_Swi_Object__table__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_Object__table ti_sysbios_knl_Swi_Object__table__C = ti_sysbios_knl_Swi_Object__table__V; /* LM_begin__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_LM_begin__C, ".econst:ti_sysbios_knl_Swi_LM_begin__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_LM_begin__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_LM_begin__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_LM_begin__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_LM_begin ti_sysbios_knl_Swi_LM_begin__C = (((xdc_runtime_Log_Event)4881) << 16 | 768); /* LD_end__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_LD_end__C, ".econst:ti_sysbios_knl_Swi_LD_end__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_LD_end__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_LD_end__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_LD_end__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_LD_end ti_sysbios_knl_Swi_LD_end__C = (((xdc_runtime_Log_Event)4928) << 16 | 512); /* LM_post__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_LM_post__C, ".econst:ti_sysbios_knl_Swi_LM_post__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_LM_post__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_LM_post__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_LM_post__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_LM_post ti_sysbios_knl_Swi_LM_post__C = (((xdc_runtime_Log_Event)4946) << 16 | 768); /* A_swiDisabled__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_A_swiDisabled__C, ".econst:ti_sysbios_knl_Swi_A_swiDisabled__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_A_swiDisabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_A_swiDisabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_A_swiDisabled__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_A_swiDisabled ti_sysbios_knl_Swi_A_swiDisabled__C = (((xdc_runtime_Assert_Id)1465) << 16 | 16); /* A_badPriority__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_A_badPriority__C, ".econst:ti_sysbios_knl_Swi_A_badPriority__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_A_badPriority__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_A_badPriority__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_A_badPriority__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_A_badPriority ti_sysbios_knl_Swi_A_badPriority__C = (((xdc_runtime_Assert_Id)1522) << 16 | 16); /* numPriorities__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_numPriorities__C, ".econst:ti_sysbios_knl_Swi_numPriorities__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_numPriorities__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_numPriorities__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_numPriorities__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_numPriorities ti_sysbios_knl_Swi_numPriorities__C = (xdc_UInt)0x10; /* hooks__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_hooks__C, ".econst:ti_sysbios_knl_Swi_hooks__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_hooks__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_hooks__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_hooks__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_hooks ti_sysbios_knl_Swi_hooks__C = {0, 0}; /* taskDisable__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_taskDisable__C, ".econst:ti_sysbios_knl_Swi_taskDisable__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_taskDisable__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_taskDisable__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_taskDisable__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_taskDisable ti_sysbios_knl_Swi_taskDisable__C = ((CT__ti_sysbios_knl_Swi_taskDisable)((xdc_Fxn)ti_sysbios_knl_Task_disable__E)); /* taskRestore__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_taskRestore__C, ".econst:ti_sysbios_knl_Swi_taskRestore__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_taskRestore__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_taskRestore__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_taskRestore__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_taskRestore ti_sysbios_knl_Swi_taskRestore__C = ((CT__ti_sysbios_knl_Swi_taskRestore)((xdc_Fxn)ti_sysbios_knl_Task_restore__E)); /* numConstructedSwis__C */ #pragma DATA_SECTION(ti_sysbios_knl_Swi_numConstructedSwis__C, ".econst:ti_sysbios_knl_Swi_numConstructedSwis__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_numConstructedSwis__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_numConstructedSwis__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_numConstructedSwis__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Swi_numConstructedSwis ti_sysbios_knl_Swi_numConstructedSwis__C = (xdc_UInt)0x0; /* * ======== ti.sysbios.knl.Task INITIALIZERS ======== */ /* Object__DESC__C */ const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Task_Object__DESC__C; /* Object__PARAMS__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Object__PARAMS__C, ".econst:ti_sysbios_knl_Task_Object__PARAMS__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Object__PARAMS__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Object__PARAMS__C\""); asm(" .clink "); const ti_sysbios_knl_Task_Params ti_sysbios_knl_Task_Object__PARAMS__C = { sizeof (ti_sysbios_knl_Task_Params), /* __size */ 0, /* __self */ 0, /* __fxns */ (xdc_runtime_IInstance_Params*)&ti_sysbios_knl_Task_Object__PARAMS__C.__iprms, /* instance */ ((xdc_UArg)(0x0)), /* arg0 */ ((xdc_UArg)(0x0)), /* arg1 */ (xdc_Int)0x1, /* priority */ ((xdc_Ptr)0), /* stack */ (xdc_SizeT)0x0, /* stackSize */ 0, /* stackHeap */ ((xdc_Ptr)0), /* env */ 1, /* vitalTaskFlag */ (xdc_UInt)0x0, /* affinity */ { sizeof (xdc_runtime_IInstance_Params), /* __size */ 0, /* name */ }, /* instance */ }; /* --> ti_sysbios_knl_Task_Instance_State_0_stack__A */ __T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_0_stack__A[512]; /* --> ti_sysbios_knl_Task_Instance_State_0_hookEnv__A */ __T1_ti_sysbios_knl_Task_Instance_State__hookEnv ti_sysbios_knl_Task_Instance_State_0_hookEnv__A[1]; /* --> ti_sysbios_knl_Task_Instance_State_1_stack__A */ __T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_1_stack__A[1324]; /* --> ti_sysbios_knl_Task_Instance_State_1_hookEnv__A */ __T1_ti_sysbios_knl_Task_Instance_State__hookEnv ti_sysbios_knl_Task_Instance_State_1_hookEnv__A[1]; /* --> ti_sysbios_knl_Task_Instance_State_2_stack__A */ __T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_2_stack__A[800]; /* --> ti_sysbios_knl_Task_Instance_State_2_hookEnv__A */ __T1_ti_sysbios_knl_Task_Instance_State__hookEnv ti_sysbios_knl_Task_Instance_State_2_hookEnv__A[1]; /* --> ti_sysbios_knl_Task_Instance_State_3_stack__A */ __T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_3_stack__A[512]; /* --> ti_sysbios_knl_Task_Instance_State_3_hookEnv__A */ __T1_ti_sysbios_knl_Task_Instance_State__hookEnv ti_sysbios_knl_Task_Instance_State_3_hookEnv__A[1]; /* --> ti_sysbios_knl_Task_Instance_State_4_stack__A */ __T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_4_stack__A[1024]; /* --> ti_sysbios_knl_Task_Instance_State_4_hookEnv__A */ __T1_ti_sysbios_knl_Task_Instance_State__hookEnv ti_sysbios_knl_Task_Instance_State_4_hookEnv__A[1]; /* --> ti_sysbios_knl_Task_Instance_State_5_stack__A */ __T1_ti_sysbios_knl_Task_Instance_State__stack ti_sysbios_knl_Task_Instance_State_5_stack__A[1800]; /* --> ti_sysbios_knl_Task_Instance_State_5_hookEnv__A */ __T1_ti_sysbios_knl_Task_Instance_State__hookEnv ti_sysbios_knl_Task_Instance_State_5_hookEnv__A[1]; /* Object__table__V */ ti_sysbios_knl_Task_Object__ ti_sysbios_knl_Task_Object__table__V[6] = { {/* instance#0 */ { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[0].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[0].qElem)), /* prev */ }, /* qElem */ (xdc_Int)0x5, /* priority */ (xdc_UInt)0x20, /* mask */ ((xdc_Ptr)0), /* context */ ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ (xdc_SizeT)0x200, /* stackSize */ ((void*)ti_sysbios_knl_Task_Instance_State_0_stack__A), /* stack */ 0, /* stackHeap */ ((void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)gyroTask)), /* fxn */ ((xdc_UArg)(0x0)), /* arg0 */ ((xdc_UArg)(0x0)), /* arg1 */ ((xdc_Ptr)0), /* env */ ((void*)ti_sysbios_knl_Task_Instance_State_0_hookEnv__A), /* hookEnv */ 1, /* vitalTaskFlag */ 0, /* readyQ */ (xdc_UInt)0x0, /* curCoreId */ (xdc_UInt)0x0, /* affinity */ }, {/* instance#1 */ { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[1].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[1].qElem)), /* prev */ }, /* qElem */ (xdc_Int)0xa, /* priority */ (xdc_UInt)0x400, /* mask */ ((xdc_Ptr)0), /* context */ ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ (xdc_SizeT)0x52c, /* stackSize */ ((void*)ti_sysbios_knl_Task_Instance_State_1_stack__A), /* stack */ 0, /* stackHeap */ ((void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)ACCTask)), /* fxn */ ((xdc_UArg)(0x0)), /* arg0 */ ((xdc_UArg)(0x0)), /* arg1 */ ((xdc_Ptr)0), /* env */ ((void*)ti_sysbios_knl_Task_Instance_State_1_hookEnv__A), /* hookEnv */ 1, /* vitalTaskFlag */ 0, /* readyQ */ (xdc_UInt)0x0, /* curCoreId */ (xdc_UInt)0x0, /* affinity */ }, {/* instance#2 */ { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[2].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[2].qElem)), /* prev */ }, /* qElem */ (xdc_Int)0x7, /* priority */ (xdc_UInt)0x80, /* mask */ ((xdc_Ptr)0), /* context */ ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ (xdc_SizeT)0x320, /* stackSize */ ((void*)ti_sysbios_knl_Task_Instance_State_2_stack__A), /* stack */ 0, /* stackHeap */ ((void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)MotorTask)), /* fxn */ ((xdc_UArg)(0x0)), /* arg0 */ ((xdc_UArg)(0x0)), /* arg1 */ ((xdc_Ptr)0), /* env */ ((void*)ti_sysbios_knl_Task_Instance_State_2_hookEnv__A), /* hookEnv */ 1, /* vitalTaskFlag */ 0, /* readyQ */ (xdc_UInt)0x0, /* curCoreId */ (xdc_UInt)0x0, /* affinity */ }, {/* instance#3 */ { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[3].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[3].qElem)), /* prev */ }, /* qElem */ (xdc_Int)0x2, /* priority */ (xdc_UInt)0x4, /* mask */ ((xdc_Ptr)0), /* context */ ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ (xdc_SizeT)0x200, /* stackSize */ ((void*)ti_sysbios_knl_Task_Instance_State_3_stack__A), /* stack */ 0, /* stackHeap */ ((void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)I2cTask)), /* fxn */ ((xdc_UArg)(0x0)), /* arg0 */ ((xdc_UArg)(0x0)), /* arg1 */ ((xdc_Ptr)0), /* env */ ((void*)ti_sysbios_knl_Task_Instance_State_3_hookEnv__A), /* hookEnv */ 1, /* vitalTaskFlag */ 0, /* readyQ */ (xdc_UInt)0x0, /* curCoreId */ (xdc_UInt)0x0, /* affinity */ }, {/* instance#4 */ { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[4].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[4].qElem)), /* prev */ }, /* qElem */ (xdc_Int)0x5, /* priority */ (xdc_UInt)0x20, /* mask */ ((xdc_Ptr)0), /* context */ ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ (xdc_SizeT)0x400, /* stackSize */ ((void*)ti_sysbios_knl_Task_Instance_State_4_stack__A), /* stack */ 0, /* stackHeap */ ((void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)ControlTask)), /* fxn */ ((xdc_UArg)(0x0)), /* arg0 */ ((xdc_UArg)(0x0)), /* arg1 */ ((xdc_Ptr)0), /* env */ ((void*)ti_sysbios_knl_Task_Instance_State_4_hookEnv__A), /* hookEnv */ 1, /* vitalTaskFlag */ 0, /* readyQ */ (xdc_UInt)0x0, /* curCoreId */ (xdc_UInt)0x0, /* affinity */ }, {/* instance#5 */ { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[5].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Object__table__V[5].qElem)), /* prev */ }, /* qElem */ (xdc_Int)0x0, /* priority */ (xdc_UInt)0x1, /* mask */ ((xdc_Ptr)0), /* context */ ti_sysbios_knl_Task_Mode_INACTIVE, /* mode */ ((ti_sysbios_knl_Task_PendElem*)0), /* pendElem */ (xdc_SizeT)0x708, /* stackSize */ ((void*)ti_sysbios_knl_Task_Instance_State_5_stack__A), /* stack */ 0, /* stackHeap */ ((void(*)(xdc_UArg,xdc_UArg))((xdc_Fxn)ti_sysbios_knl_Idle_loop__E)), /* fxn */ ((xdc_UArg)(0x0)), /* arg0 */ ((xdc_UArg)(0x0)), /* arg1 */ ((xdc_Ptr)0), /* env */ ((void*)ti_sysbios_knl_Task_Instance_State_5_hookEnv__A), /* hookEnv */ 1, /* vitalTaskFlag */ 0, /* readyQ */ (xdc_UInt)0x0, /* curCoreId */ (xdc_UInt)0x0, /* affinity */ }, }; /* --> ti_sysbios_knl_Task_Module_State_0_readyQ__A */ __T1_ti_sysbios_knl_Task_Module_State__readyQ ti_sysbios_knl_Task_Module_State_0_readyQ__A[16] = { { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[0].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[0].elem)), /* prev */ }, /* elem */ }, /* [0] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[1].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[1].elem)), /* prev */ }, /* elem */ }, /* [1] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[2].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[2].elem)), /* prev */ }, /* elem */ }, /* [2] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[3].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[3].elem)), /* prev */ }, /* elem */ }, /* [3] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[4].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[4].elem)), /* prev */ }, /* elem */ }, /* [4] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[5].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[5].elem)), /* prev */ }, /* elem */ }, /* [5] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[6].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[6].elem)), /* prev */ }, /* elem */ }, /* [6] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[7].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[7].elem)), /* prev */ }, /* elem */ }, /* [7] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[8].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[8].elem)), /* prev */ }, /* elem */ }, /* [8] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[9].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[9].elem)), /* prev */ }, /* elem */ }, /* [9] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[10].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[10].elem)), /* prev */ }, /* elem */ }, /* [10] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[11].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[11].elem)), /* prev */ }, /* elem */ }, /* [11] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[12].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[12].elem)), /* prev */ }, /* elem */ }, /* [12] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[13].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[13].elem)), /* prev */ }, /* elem */ }, /* [13] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[14].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[14].elem)), /* prev */ }, /* elem */ }, /* [14] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[15].elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module_State_0_readyQ__A[15].elem)), /* prev */ }, /* elem */ }, /* [15] */ }; /* --> ti_sysbios_knl_Task_Module_State_0_idleTask__A */ __T1_ti_sysbios_knl_Task_Module_State__idleTask ti_sysbios_knl_Task_Module_State_0_idleTask__A[1] = { (ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[5], /* [0] */ }; /* Module__state__V */ ti_sysbios_knl_Task_Module_State__ ti_sysbios_knl_Task_Module__state__V = { 1, /* locked */ (xdc_UInt)0x0, /* curSet */ 0, /* workFlag */ (xdc_UInt)0x6, /* vitalTasks */ 0, /* curTask */ 0, /* curQ */ ((void*)ti_sysbios_knl_Task_Module_State_0_readyQ__A), /* readyQ */ ((void*)0), /* smpCurSet */ ((void*)0), /* smpCurMask */ ((void*)0), /* smpCurTask */ ((void*)0), /* smpReadyQ */ ((void*)ti_sysbios_knl_Task_Module_State_0_idleTask__A), /* idleTask */ ((void*)0), /* constructedTasks */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module__state__V.Object_field_inactiveQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module__state__V.Object_field_inactiveQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_inactiveQ */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module__state__V.Object_field_terminatedQ.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_knl_Task_Module__state__V.Object_field_terminatedQ.elem)), /* prev */ }, /* elem */ }, /* Object_field_terminatedQ */ }; /* --> ti_sysbios_knl_Task_hooks__A */ #pragma DATA_SECTION(ti_sysbios_knl_Task_hooks__A, ".econst:ti_sysbios_knl_Task_hooks__A"); asm(" .sect \".econst:ti_sysbios_knl_Task_hooks__A\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_hooks__A\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_hooks__A\""); asm(" .clink "); const __T1_ti_sysbios_knl_Task_hooks ti_sysbios_knl_Task_hooks__A[1] = { { ((void(*)(xdc_Int))((xdc_Fxn)ti_sysbios_utils_Load_taskRegHook__E)), /* registerFxn */ ((void(*)(ti_sysbios_knl_Task_Handle,xdc_runtime_Error_Block*))((xdc_Fxn)ti_sysbios_utils_Load_taskCreateHook__E)), /* createFxn */ ((void(*)(ti_sysbios_knl_Task_Handle))0), /* readyFxn */ ((void(*)(ti_sysbios_knl_Task_Handle,ti_sysbios_knl_Task_Handle))((xdc_Fxn)ti_sysbios_utils_Load_taskSwitchHook__E)), /* switchFxn */ ((void(*)(ti_sysbios_knl_Task_Handle))0), /* exitFxn */ ((void(*)(ti_sysbios_knl_Task_Handle))((xdc_Fxn)ti_sysbios_utils_Load_taskDeleteHook__E)), /* deleteFxn */ }, /* [0] */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__diagsEnabled__C, ".econst:ti_sysbios_knl_Task_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__diagsEnabled ti_sysbios_knl_Task_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__diagsIncluded__C, ".econst:ti_sysbios_knl_Task_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__diagsIncluded ti_sysbios_knl_Task_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__diagsMask__C, ".econst:ti_sysbios_knl_Task_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__diagsMask ti_sysbios_knl_Task_Module__diagsMask__C = ((CT__ti_sysbios_knl_Task_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__gateObj__C, ".econst:ti_sysbios_knl_Task_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__gateObj ti_sysbios_knl_Task_Module__gateObj__C = ((CT__ti_sysbios_knl_Task_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__gatePrms__C, ".econst:ti_sysbios_knl_Task_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__gatePrms ti_sysbios_knl_Task_Module__gatePrms__C = ((CT__ti_sysbios_knl_Task_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__id__C, ".econst:ti_sysbios_knl_Task_Module__id__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__id ti_sysbios_knl_Task_Module__id__C = (xdc_Bits16)0x20; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerDefined__C, ".econst:ti_sysbios_knl_Task_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__loggerDefined ti_sysbios_knl_Task_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerObj__C, ".econst:ti_sysbios_knl_Task_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__loggerObj ti_sysbios_knl_Task_Module__loggerObj__C = ((CT__ti_sysbios_knl_Task_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerFxn0__C, ".econst:ti_sysbios_knl_Task_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__loggerFxn0 ti_sysbios_knl_Task_Module__loggerFxn0__C = ((CT__ti_sysbios_knl_Task_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerFxn1__C, ".econst:ti_sysbios_knl_Task_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__loggerFxn1 ti_sysbios_knl_Task_Module__loggerFxn1__C = ((CT__ti_sysbios_knl_Task_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerFxn2__C, ".econst:ti_sysbios_knl_Task_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__loggerFxn2 ti_sysbios_knl_Task_Module__loggerFxn2__C = ((CT__ti_sysbios_knl_Task_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerFxn4__C, ".econst:ti_sysbios_knl_Task_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__loggerFxn4 ti_sysbios_knl_Task_Module__loggerFxn4__C = ((CT__ti_sysbios_knl_Task_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Module__loggerFxn8__C, ".econst:ti_sysbios_knl_Task_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Module__loggerFxn8 ti_sysbios_knl_Task_Module__loggerFxn8__C = ((CT__ti_sysbios_knl_Task_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Object__count__C, ".econst:ti_sysbios_knl_Task_Object__count__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Object__count ti_sysbios_knl_Task_Object__count__C = 6; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Object__heap__C, ".econst:ti_sysbios_knl_Task_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Object__heap ti_sysbios_knl_Task_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Object__sizeof__C, ".econst:ti_sysbios_knl_Task_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Object__sizeof ti_sysbios_knl_Task_Object__sizeof__C = sizeof(ti_sysbios_knl_Task_Object__); /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_Object__table__C, ".econst:ti_sysbios_knl_Task_Object__table__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_Object__table ti_sysbios_knl_Task_Object__table__C = ti_sysbios_knl_Task_Object__table__V; /* LM_switch__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_LM_switch__C, ".econst:ti_sysbios_knl_Task_LM_switch__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_LM_switch__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_LM_switch__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_LM_switch__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_LM_switch ti_sysbios_knl_Task_LM_switch__C = (((xdc_runtime_Log_Event)4986) << 16 | 768); /* LM_sleep__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_LM_sleep__C, ".econst:ti_sysbios_knl_Task_LM_sleep__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_LM_sleep__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_LM_sleep__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_LM_sleep__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_LM_sleep ti_sysbios_knl_Task_LM_sleep__C = (((xdc_runtime_Log_Event)5054) << 16 | 768); /* LD_ready__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_LD_ready__C, ".econst:ti_sysbios_knl_Task_LD_ready__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_LD_ready__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_LD_ready__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_LD_ready__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_LD_ready ti_sysbios_knl_Task_LD_ready__C = (((xdc_runtime_Log_Event)5099) << 16 | 512); /* LD_block__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_LD_block__C, ".econst:ti_sysbios_knl_Task_LD_block__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_LD_block__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_LD_block__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_LD_block__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_LD_block ti_sysbios_knl_Task_LD_block__C = (((xdc_runtime_Log_Event)5140) << 16 | 512); /* LM_yield__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_LM_yield__C, ".econst:ti_sysbios_knl_Task_LM_yield__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_LM_yield__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_LM_yield__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_LM_yield__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_LM_yield ti_sysbios_knl_Task_LM_yield__C = (((xdc_runtime_Log_Event)5172) << 16 | 768); /* LM_setPri__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_LM_setPri__C, ".econst:ti_sysbios_knl_Task_LM_setPri__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_LM_setPri__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_LM_setPri__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_LM_setPri__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_LM_setPri ti_sysbios_knl_Task_LM_setPri__C = (((xdc_runtime_Log_Event)5220) << 16 | 768); /* LD_exit__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_LD_exit__C, ".econst:ti_sysbios_knl_Task_LD_exit__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_LD_exit__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_LD_exit__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_LD_exit__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_LD_exit ti_sysbios_knl_Task_LD_exit__C = (((xdc_runtime_Log_Event)5276) << 16 | 512); /* LM_setAffinity__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_LM_setAffinity__C, ".econst:ti_sysbios_knl_Task_LM_setAffinity__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_LM_setAffinity__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_LM_setAffinity__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_LM_setAffinity__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_LM_setAffinity ti_sysbios_knl_Task_LM_setAffinity__C = (((xdc_runtime_Log_Event)5307) << 16 | 768); /* LM_schedule__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_LM_schedule__C, ".econst:ti_sysbios_knl_Task_LM_schedule__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_LM_schedule__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_LM_schedule__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_LM_schedule__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_LM_schedule ti_sysbios_knl_Task_LM_schedule__C = (((xdc_runtime_Log_Event)5390) << 16 | 1024); /* LM_noWork__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_LM_noWork__C, ".econst:ti_sysbios_knl_Task_LM_noWork__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_LM_noWork__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_LM_noWork__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_LM_noWork__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_LM_noWork ti_sysbios_knl_Task_LM_noWork__C = (((xdc_runtime_Log_Event)5476) << 16 | 1024); /* E_stackOverflow__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_E_stackOverflow__C, ".econst:ti_sysbios_knl_Task_E_stackOverflow__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_E_stackOverflow__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_E_stackOverflow__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_E_stackOverflow__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_E_stackOverflow ti_sysbios_knl_Task_E_stackOverflow__C = (((xdc_runtime_Error_Id)4044) << 16 | 0); /* E_spOutOfBounds__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_E_spOutOfBounds__C, ".econst:ti_sysbios_knl_Task_E_spOutOfBounds__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_E_spOutOfBounds__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_E_spOutOfBounds__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_E_spOutOfBounds__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_E_spOutOfBounds ti_sysbios_knl_Task_E_spOutOfBounds__C = (((xdc_runtime_Error_Id)4087) << 16 | 0); /* E_deleteNotAllowed__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_E_deleteNotAllowed__C, ".econst:ti_sysbios_knl_Task_E_deleteNotAllowed__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_E_deleteNotAllowed__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_E_deleteNotAllowed__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_E_deleteNotAllowed__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_E_deleteNotAllowed ti_sysbios_knl_Task_E_deleteNotAllowed__C = (((xdc_runtime_Error_Id)4138) << 16 | 0); /* E_moduleStateCheckFailed__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_E_moduleStateCheckFailed__C, ".econst:ti_sysbios_knl_Task_E_moduleStateCheckFailed__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_E_moduleStateCheckFailed__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_E_moduleStateCheckFailed__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_E_moduleStateCheckFailed__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_E_moduleStateCheckFailed ti_sysbios_knl_Task_E_moduleStateCheckFailed__C = (((xdc_runtime_Error_Id)4169) << 16 | 0); /* E_objectCheckFailed__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_E_objectCheckFailed__C, ".econst:ti_sysbios_knl_Task_E_objectCheckFailed__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_E_objectCheckFailed__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_E_objectCheckFailed__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_E_objectCheckFailed__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_E_objectCheckFailed ti_sysbios_knl_Task_E_objectCheckFailed__C = (((xdc_runtime_Error_Id)4242) << 16 | 0); /* A_badThreadType__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_A_badThreadType__C, ".econst:ti_sysbios_knl_Task_A_badThreadType__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_A_badThreadType__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_A_badThreadType__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_A_badThreadType__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_A_badThreadType ti_sysbios_knl_Task_A_badThreadType__C = (((xdc_runtime_Assert_Id)1571) << 16 | 16); /* A_badTaskState__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_A_badTaskState__C, ".econst:ti_sysbios_knl_Task_A_badTaskState__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_A_badTaskState__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_A_badTaskState__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_A_badTaskState__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_A_badTaskState ti_sysbios_knl_Task_A_badTaskState__C = (((xdc_runtime_Assert_Id)1640) << 16 | 16); /* A_noPendElem__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_A_noPendElem__C, ".econst:ti_sysbios_knl_Task_A_noPendElem__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_A_noPendElem__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_A_noPendElem__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_A_noPendElem__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_A_noPendElem ti_sysbios_knl_Task_A_noPendElem__C = (((xdc_runtime_Assert_Id)1694) << 16 | 16); /* A_taskDisabled__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_A_taskDisabled__C, ".econst:ti_sysbios_knl_Task_A_taskDisabled__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_A_taskDisabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_A_taskDisabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_A_taskDisabled__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_A_taskDisabled ti_sysbios_knl_Task_A_taskDisabled__C = (((xdc_runtime_Assert_Id)1748) << 16 | 16); /* A_badPriority__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_A_badPriority__C, ".econst:ti_sysbios_knl_Task_A_badPriority__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_A_badPriority__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_A_badPriority__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_A_badPriority__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_A_badPriority ti_sysbios_knl_Task_A_badPriority__C = (((xdc_runtime_Assert_Id)1811) << 16 | 16); /* A_badTimeout__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_A_badTimeout__C, ".econst:ti_sysbios_knl_Task_A_badTimeout__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_A_badTimeout__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_A_badTimeout__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_A_badTimeout__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_A_badTimeout ti_sysbios_knl_Task_A_badTimeout__C = (((xdc_runtime_Assert_Id)1861) << 16 | 16); /* A_badAffinity__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_A_badAffinity__C, ".econst:ti_sysbios_knl_Task_A_badAffinity__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_A_badAffinity__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_A_badAffinity__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_A_badAffinity__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_A_badAffinity ti_sysbios_knl_Task_A_badAffinity__C = (((xdc_runtime_Assert_Id)1896) << 16 | 16); /* A_sleepTaskDisabled__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_A_sleepTaskDisabled__C, ".econst:ti_sysbios_knl_Task_A_sleepTaskDisabled__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_A_sleepTaskDisabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_A_sleepTaskDisabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_A_sleepTaskDisabled__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_A_sleepTaskDisabled ti_sysbios_knl_Task_A_sleepTaskDisabled__C = (((xdc_runtime_Assert_Id)1929) << 16 | 16); /* A_invalidCoreId__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_A_invalidCoreId__C, ".econst:ti_sysbios_knl_Task_A_invalidCoreId__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_A_invalidCoreId__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_A_invalidCoreId__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_A_invalidCoreId__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_A_invalidCoreId ti_sysbios_knl_Task_A_invalidCoreId__C = (((xdc_runtime_Assert_Id)2013) << 16 | 16); /* numPriorities__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_numPriorities__C, ".econst:ti_sysbios_knl_Task_numPriorities__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_numPriorities__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_numPriorities__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_numPriorities__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_numPriorities ti_sysbios_knl_Task_numPriorities__C = (xdc_UInt)0x10; /* defaultStackSize__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_defaultStackSize__C, ".econst:ti_sysbios_knl_Task_defaultStackSize__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_defaultStackSize__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_defaultStackSize__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_defaultStackSize__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_defaultStackSize ti_sysbios_knl_Task_defaultStackSize__C = (xdc_SizeT)0x100; /* defaultStackHeap__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_defaultStackHeap__C, ".econst:ti_sysbios_knl_Task_defaultStackHeap__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_defaultStackHeap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_defaultStackHeap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_defaultStackHeap__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_defaultStackHeap ti_sysbios_knl_Task_defaultStackHeap__C = 0; /* allBlockedFunc__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_allBlockedFunc__C, ".econst:ti_sysbios_knl_Task_allBlockedFunc__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_allBlockedFunc__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_allBlockedFunc__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_allBlockedFunc__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_allBlockedFunc ti_sysbios_knl_Task_allBlockedFunc__C = ((CT__ti_sysbios_knl_Task_allBlockedFunc)0); /* initStackFlag__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_initStackFlag__C, ".econst:ti_sysbios_knl_Task_initStackFlag__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_initStackFlag__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_initStackFlag__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_initStackFlag__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_initStackFlag ti_sysbios_knl_Task_initStackFlag__C = 1; /* checkStackFlag__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_checkStackFlag__C, ".econst:ti_sysbios_knl_Task_checkStackFlag__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_checkStackFlag__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_checkStackFlag__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_checkStackFlag__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_checkStackFlag ti_sysbios_knl_Task_checkStackFlag__C = 1; /* deleteTerminatedTasks__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_deleteTerminatedTasks__C, ".econst:ti_sysbios_knl_Task_deleteTerminatedTasks__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_deleteTerminatedTasks__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_deleteTerminatedTasks__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_deleteTerminatedTasks__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_deleteTerminatedTasks ti_sysbios_knl_Task_deleteTerminatedTasks__C = 0; /* hooks__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_hooks__C, ".econst:ti_sysbios_knl_Task_hooks__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_hooks__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_hooks__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_hooks__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_hooks ti_sysbios_knl_Task_hooks__C = {1, ((__T1_ti_sysbios_knl_Task_hooks *)ti_sysbios_knl_Task_hooks__A)}; /* moduleStateCheckFxn__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_moduleStateCheckFxn__C, ".econst:ti_sysbios_knl_Task_moduleStateCheckFxn__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_moduleStateCheckFxn__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_moduleStateCheckFxn__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_moduleStateCheckFxn__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_moduleStateCheckFxn ti_sysbios_knl_Task_moduleStateCheckFxn__C = ((CT__ti_sysbios_knl_Task_moduleStateCheckFxn)((xdc_Fxn)ti_sysbios_knl_Task_moduleStateCheck__I)); /* moduleStateCheckValueFxn__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_moduleStateCheckValueFxn__C, ".econst:ti_sysbios_knl_Task_moduleStateCheckValueFxn__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_moduleStateCheckValueFxn__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_moduleStateCheckValueFxn__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_moduleStateCheckValueFxn__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_moduleStateCheckValueFxn ti_sysbios_knl_Task_moduleStateCheckValueFxn__C = ((CT__ti_sysbios_knl_Task_moduleStateCheckValueFxn)((xdc_Fxn)ti_sysbios_knl_Task_getModuleStateCheckValue__I)); /* moduleStateCheckFlag__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_moduleStateCheckFlag__C, ".econst:ti_sysbios_knl_Task_moduleStateCheckFlag__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_moduleStateCheckFlag__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_moduleStateCheckFlag__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_moduleStateCheckFlag__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_moduleStateCheckFlag ti_sysbios_knl_Task_moduleStateCheckFlag__C = 0; /* objectCheckFxn__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_objectCheckFxn__C, ".econst:ti_sysbios_knl_Task_objectCheckFxn__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_objectCheckFxn__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_objectCheckFxn__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_objectCheckFxn__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_objectCheckFxn ti_sysbios_knl_Task_objectCheckFxn__C = ((CT__ti_sysbios_knl_Task_objectCheckFxn)((xdc_Fxn)ti_sysbios_knl_Task_objectCheck__I)); /* objectCheckValueFxn__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_objectCheckValueFxn__C, ".econst:ti_sysbios_knl_Task_objectCheckValueFxn__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_objectCheckValueFxn__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_objectCheckValueFxn__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_objectCheckValueFxn__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_objectCheckValueFxn ti_sysbios_knl_Task_objectCheckValueFxn__C = ((CT__ti_sysbios_knl_Task_objectCheckValueFxn)((xdc_Fxn)ti_sysbios_knl_Task_getObjectCheckValue__I)); /* objectCheckFlag__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_objectCheckFlag__C, ".econst:ti_sysbios_knl_Task_objectCheckFlag__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_objectCheckFlag__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_objectCheckFlag__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_objectCheckFlag__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_objectCheckFlag ti_sysbios_knl_Task_objectCheckFlag__C = 0; /* numConstructedTasks__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_numConstructedTasks__C, ".econst:ti_sysbios_knl_Task_numConstructedTasks__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_numConstructedTasks__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_numConstructedTasks__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_numConstructedTasks__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_numConstructedTasks ti_sysbios_knl_Task_numConstructedTasks__C = (xdc_UInt)0x0; /* startupHookFunc__C */ #pragma DATA_SECTION(ti_sysbios_knl_Task_startupHookFunc__C, ".econst:ti_sysbios_knl_Task_startupHookFunc__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_startupHookFunc__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_startupHookFunc__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_startupHookFunc__C\""); asm(" .clink "); const CT__ti_sysbios_knl_Task_startupHookFunc ti_sysbios_knl_Task_startupHookFunc__C = ((CT__ti_sysbios_knl_Task_startupHookFunc)0); /* * ======== ti.sysbios.knl.Task_SupportProxy INITIALIZERS ======== */ /* * ======== ti.sysbios.utils.Load INITIALIZERS ======== */ /* --> ti_sysbios_utils_Load_Module_State_0_taskStartTime__A */ __T1_ti_sysbios_utils_Load_Module_State__taskStartTime ti_sysbios_utils_Load_Module_State_0_taskStartTime__A[1] = { (xdc_UInt32)0x0, /* [0] */ }; /* --> ti_sysbios_utils_Load_Module_State_0_runningTask__A */ __T1_ti_sysbios_utils_Load_Module_State__runningTask ti_sysbios_utils_Load_Module_State_0_runningTask__A[1] = { 0, /* [0] */ }; /* --> ti_sysbios_utils_Load_Module_State_0_taskEnv__A */ __T1_ti_sysbios_utils_Load_Module_State__taskEnv ti_sysbios_utils_Load_Module_State_0_taskEnv__A[6] = { { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module_State_0_taskEnv__A[0].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module_State_0_taskEnv__A[0].qElem)), /* prev */ }, /* qElem */ (xdc_UInt32)0x0, /* totalTimeElapsed */ (xdc_UInt32)0x0, /* totalTime */ (xdc_UInt32)0x0, /* nextTotalTime */ (xdc_UInt32)0x0, /* timeOfLastUpdate */ ((xdc_Ptr)0), /* threadHandle */ }, /* [0] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module_State_0_taskEnv__A[1].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module_State_0_taskEnv__A[1].qElem)), /* prev */ }, /* qElem */ (xdc_UInt32)0x0, /* totalTimeElapsed */ (xdc_UInt32)0x0, /* totalTime */ (xdc_UInt32)0x0, /* nextTotalTime */ (xdc_UInt32)0x0, /* timeOfLastUpdate */ ((xdc_Ptr)0), /* threadHandle */ }, /* [1] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module_State_0_taskEnv__A[2].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module_State_0_taskEnv__A[2].qElem)), /* prev */ }, /* qElem */ (xdc_UInt32)0x0, /* totalTimeElapsed */ (xdc_UInt32)0x0, /* totalTime */ (xdc_UInt32)0x0, /* nextTotalTime */ (xdc_UInt32)0x0, /* timeOfLastUpdate */ ((xdc_Ptr)0), /* threadHandle */ }, /* [2] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module_State_0_taskEnv__A[3].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module_State_0_taskEnv__A[3].qElem)), /* prev */ }, /* qElem */ (xdc_UInt32)0x0, /* totalTimeElapsed */ (xdc_UInt32)0x0, /* totalTime */ (xdc_UInt32)0x0, /* nextTotalTime */ (xdc_UInt32)0x0, /* timeOfLastUpdate */ ((xdc_Ptr)0), /* threadHandle */ }, /* [3] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module_State_0_taskEnv__A[4].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module_State_0_taskEnv__A[4].qElem)), /* prev */ }, /* qElem */ (xdc_UInt32)0x0, /* totalTimeElapsed */ (xdc_UInt32)0x0, /* totalTime */ (xdc_UInt32)0x0, /* nextTotalTime */ (xdc_UInt32)0x0, /* timeOfLastUpdate */ ((xdc_Ptr)0), /* threadHandle */ }, /* [4] */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module_State_0_taskEnv__A[5].qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module_State_0_taskEnv__A[5].qElem)), /* prev */ }, /* qElem */ (xdc_UInt32)0x0, /* totalTimeElapsed */ (xdc_UInt32)0x0, /* totalTime */ (xdc_UInt32)0x0, /* nextTotalTime */ (xdc_UInt32)0x0, /* timeOfLastUpdate */ ((xdc_Ptr)0), /* threadHandle */ }, /* [5] */ }; /* Module__state__V */ ti_sysbios_utils_Load_Module_State__ ti_sysbios_utils_Load_Module__state__V = { (xdc_Int)0x0, /* taskHId */ ((void*)ti_sysbios_utils_Load_Module_State_0_taskStartTime__A), /* taskStartTime */ (xdc_UInt32)0x0, /* timeElapsed */ ((void*)ti_sysbios_utils_Load_Module_State_0_runningTask__A), /* runningTask */ 0, /* firstSwitchDone */ (xdc_UInt32)0x0, /* swiStartTime */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module__state__V.swiEnv.qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module__state__V.swiEnv.qElem)), /* prev */ }, /* qElem */ (xdc_UInt32)0x0, /* totalTimeElapsed */ (xdc_UInt32)0x0, /* totalTime */ (xdc_UInt32)0x0, /* nextTotalTime */ (xdc_UInt32)0x0, /* timeOfLastUpdate */ ((xdc_Ptr)0), /* threadHandle */ }, /* swiEnv */ ((void*)ti_sysbios_utils_Load_Module_State_0_taskEnv__A), /* taskEnv */ (xdc_UInt32)0x0, /* swiCnt */ (xdc_UInt32)0x0, /* hwiStartTime */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module__state__V.hwiEnv.qElem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module__state__V.hwiEnv.qElem)), /* prev */ }, /* qElem */ (xdc_UInt32)0x0, /* totalTimeElapsed */ (xdc_UInt32)0x0, /* totalTime */ (xdc_UInt32)0x0, /* nextTotalTime */ (xdc_UInt32)0x0, /* timeOfLastUpdate */ ((xdc_Ptr)0), /* threadHandle */ }, /* hwiEnv */ (xdc_UInt32)0x0, /* hwiCnt */ (xdc_UInt32)0x0, /* timeSlotCnt */ (xdc_UInt32)0xffffffff, /* minLoop */ (xdc_UInt32)0x0, /* minIdle */ (xdc_UInt32)0x0, /* t0 */ (xdc_UInt32)0x0, /* idleCnt */ (xdc_UInt32)0x0, /* cpuLoad */ (xdc_UInt32)0x6, /* taskEnvLen */ (xdc_UInt32)0x0, /* taskNum */ 0, /* powerEnabled */ (xdc_UInt32)0x0, /* idleStartTime */ (xdc_UInt32)0x0, /* busyStartTime */ (xdc_UInt32)0x0, /* busyTime */ { { ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module__state__V.Object_field_taskList.elem)), /* next */ ((ti_sysbios_knl_Queue_Elem*)((void*)&ti_sysbios_utils_Load_Module__state__V.Object_field_taskList.elem)), /* prev */ }, /* elem */ }, /* Object_field_taskList */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__diagsEnabled__C, ".econst:ti_sysbios_utils_Load_Module__diagsEnabled__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__diagsEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__diagsEnabled ti_sysbios_utils_Load_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__diagsIncluded__C, ".econst:ti_sysbios_utils_Load_Module__diagsIncluded__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__diagsIncluded__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__diagsIncluded ti_sysbios_utils_Load_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__diagsMask__C, ".econst:ti_sysbios_utils_Load_Module__diagsMask__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__diagsMask__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__diagsMask ti_sysbios_utils_Load_Module__diagsMask__C = ((CT__ti_sysbios_utils_Load_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__gateObj__C, ".econst:ti_sysbios_utils_Load_Module__gateObj__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__gateObj__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__gateObj ti_sysbios_utils_Load_Module__gateObj__C = ((CT__ti_sysbios_utils_Load_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__gatePrms__C, ".econst:ti_sysbios_utils_Load_Module__gatePrms__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__gatePrms__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__gatePrms ti_sysbios_utils_Load_Module__gatePrms__C = ((CT__ti_sysbios_utils_Load_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__id__C, ".econst:ti_sysbios_utils_Load_Module__id__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__id__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__id ti_sysbios_utils_Load_Module__id__C = (xdc_Bits16)0x28; /* Module__loggerDefined__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__loggerDefined__C, ".econst:ti_sysbios_utils_Load_Module__loggerDefined__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__loggerDefined__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__loggerDefined ti_sysbios_utils_Load_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__loggerObj__C, ".econst:ti_sysbios_utils_Load_Module__loggerObj__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__loggerObj__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__loggerObj ti_sysbios_utils_Load_Module__loggerObj__C = ((CT__ti_sysbios_utils_Load_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__loggerFxn0__C, ".econst:ti_sysbios_utils_Load_Module__loggerFxn0__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__loggerFxn0__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__loggerFxn0 ti_sysbios_utils_Load_Module__loggerFxn0__C = ((CT__ti_sysbios_utils_Load_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__loggerFxn1__C, ".econst:ti_sysbios_utils_Load_Module__loggerFxn1__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__loggerFxn1__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__loggerFxn1 ti_sysbios_utils_Load_Module__loggerFxn1__C = ((CT__ti_sysbios_utils_Load_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__loggerFxn2__C, ".econst:ti_sysbios_utils_Load_Module__loggerFxn2__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__loggerFxn2__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__loggerFxn2 ti_sysbios_utils_Load_Module__loggerFxn2__C = ((CT__ti_sysbios_utils_Load_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__loggerFxn4__C, ".econst:ti_sysbios_utils_Load_Module__loggerFxn4__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__loggerFxn4__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__loggerFxn4 ti_sysbios_utils_Load_Module__loggerFxn4__C = ((CT__ti_sysbios_utils_Load_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Module__loggerFxn8__C, ".econst:ti_sysbios_utils_Load_Module__loggerFxn8__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Module__loggerFxn8__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Module__loggerFxn8 ti_sysbios_utils_Load_Module__loggerFxn8__C = ((CT__ti_sysbios_utils_Load_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Object__count__C, ".econst:ti_sysbios_utils_Load_Object__count__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Object__count__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Object__count ti_sysbios_utils_Load_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Object__heap__C, ".econst:ti_sysbios_utils_Load_Object__heap__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Object__heap__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Object__heap ti_sysbios_utils_Load_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Object__sizeof__C, ".econst:ti_sysbios_utils_Load_Object__sizeof__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Object__sizeof__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Object__sizeof ti_sysbios_utils_Load_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_Object__table__C, ".econst:ti_sysbios_utils_Load_Object__table__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_Object__table__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_Object__table ti_sysbios_utils_Load_Object__table__C = 0; /* LS_cpuLoad__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_LS_cpuLoad__C, ".econst:ti_sysbios_utils_Load_LS_cpuLoad__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_LS_cpuLoad__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_LS_cpuLoad__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_LS_cpuLoad__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_LS_cpuLoad ti_sysbios_utils_Load_LS_cpuLoad__C = (((xdc_runtime_Log_Event)5546) << 16 | 2048); /* LS_hwiLoad__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_LS_hwiLoad__C, ".econst:ti_sysbios_utils_Load_LS_hwiLoad__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_LS_hwiLoad__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_LS_hwiLoad__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_LS_hwiLoad__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_LS_hwiLoad ti_sysbios_utils_Load_LS_hwiLoad__C = (((xdc_runtime_Log_Event)5563) << 16 | 2048); /* LS_swiLoad__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_LS_swiLoad__C, ".econst:ti_sysbios_utils_Load_LS_swiLoad__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_LS_swiLoad__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_LS_swiLoad__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_LS_swiLoad__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_LS_swiLoad ti_sysbios_utils_Load_LS_swiLoad__C = (((xdc_runtime_Log_Event)5581) << 16 | 2048); /* LS_taskLoad__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_LS_taskLoad__C, ".econst:ti_sysbios_utils_Load_LS_taskLoad__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_LS_taskLoad__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_LS_taskLoad__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_LS_taskLoad__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_LS_taskLoad ti_sysbios_utils_Load_LS_taskLoad__C = (((xdc_runtime_Log_Event)5599) << 16 | 2048); /* postUpdate__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_postUpdate__C, ".econst:ti_sysbios_utils_Load_postUpdate__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_postUpdate__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_postUpdate__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_postUpdate__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_postUpdate ti_sysbios_utils_Load_postUpdate__C = ((CT__ti_sysbios_utils_Load_postUpdate)0); /* updateInIdle__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_updateInIdle__C, ".econst:ti_sysbios_utils_Load_updateInIdle__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_updateInIdle__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_updateInIdle__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_updateInIdle__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_updateInIdle ti_sysbios_utils_Load_updateInIdle__C = 1; /* windowInMs__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_windowInMs__C, ".econst:ti_sysbios_utils_Load_windowInMs__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_windowInMs__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_windowInMs__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_windowInMs__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_windowInMs ti_sysbios_utils_Load_windowInMs__C = (xdc_UInt)0x1388; /* hwiEnabled__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_hwiEnabled__C, ".econst:ti_sysbios_utils_Load_hwiEnabled__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_hwiEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_hwiEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_hwiEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_hwiEnabled ti_sysbios_utils_Load_hwiEnabled__C = 0; /* swiEnabled__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_swiEnabled__C, ".econst:ti_sysbios_utils_Load_swiEnabled__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_swiEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_swiEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_swiEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_swiEnabled ti_sysbios_utils_Load_swiEnabled__C = 0; /* taskEnabled__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_taskEnabled__C, ".econst:ti_sysbios_utils_Load_taskEnabled__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_taskEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_taskEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_taskEnabled__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_taskEnabled ti_sysbios_utils_Load_taskEnabled__C = 1; /* autoAddTasks__C */ #pragma DATA_SECTION(ti_sysbios_utils_Load_autoAddTasks__C, ".econst:ti_sysbios_utils_Load_autoAddTasks__C"); asm(" .sect \".econst:ti_sysbios_utils_Load_autoAddTasks__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_utils_Load_autoAddTasks__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_utils_Load_autoAddTasks__C\""); asm(" .clink "); const CT__ti_sysbios_utils_Load_autoAddTasks ti_sysbios_utils_Load_autoAddTasks__C = 1; /* * ======== xdc.runtime.Assert INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__diagsEnabled__C, ".econst:xdc_runtime_Assert_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__diagsEnabled xdc_runtime_Assert_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__diagsIncluded__C, ".econst:xdc_runtime_Assert_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__diagsIncluded xdc_runtime_Assert_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__diagsMask__C, ".econst:xdc_runtime_Assert_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__diagsMask xdc_runtime_Assert_Module__diagsMask__C = ((CT__xdc_runtime_Assert_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__gateObj__C, ".econst:xdc_runtime_Assert_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__gateObj xdc_runtime_Assert_Module__gateObj__C = ((CT__xdc_runtime_Assert_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__gatePrms__C, ".econst:xdc_runtime_Assert_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__gatePrms xdc_runtime_Assert_Module__gatePrms__C = ((CT__xdc_runtime_Assert_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__id__C, ".econst:xdc_runtime_Assert_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__id xdc_runtime_Assert_Module__id__C = (xdc_Bits16)0x1; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerDefined__C, ".econst:xdc_runtime_Assert_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__loggerDefined xdc_runtime_Assert_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerObj__C, ".econst:xdc_runtime_Assert_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__loggerObj xdc_runtime_Assert_Module__loggerObj__C = ((CT__xdc_runtime_Assert_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerFxn0__C, ".econst:xdc_runtime_Assert_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__loggerFxn0 xdc_runtime_Assert_Module__loggerFxn0__C = ((CT__xdc_runtime_Assert_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerFxn1__C, ".econst:xdc_runtime_Assert_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__loggerFxn1 xdc_runtime_Assert_Module__loggerFxn1__C = ((CT__xdc_runtime_Assert_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerFxn2__C, ".econst:xdc_runtime_Assert_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__loggerFxn2 xdc_runtime_Assert_Module__loggerFxn2__C = ((CT__xdc_runtime_Assert_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerFxn4__C, ".econst:xdc_runtime_Assert_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__loggerFxn4 xdc_runtime_Assert_Module__loggerFxn4__C = ((CT__xdc_runtime_Assert_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Module__loggerFxn8__C, ".econst:xdc_runtime_Assert_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Assert_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Module__loggerFxn8 xdc_runtime_Assert_Module__loggerFxn8__C = ((CT__xdc_runtime_Assert_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Object__count__C, ".econst:xdc_runtime_Assert_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Assert_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Object__count xdc_runtime_Assert_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Object__heap__C, ".econst:xdc_runtime_Assert_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Assert_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Object__heap xdc_runtime_Assert_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Object__sizeof__C, ".econst:xdc_runtime_Assert_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Assert_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Object__sizeof xdc_runtime_Assert_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Assert_Object__table__C, ".econst:xdc_runtime_Assert_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Assert_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_Object__table xdc_runtime_Assert_Object__table__C = 0; /* E_assertFailed__C */ #pragma DATA_SECTION(xdc_runtime_Assert_E_assertFailed__C, ".econst:xdc_runtime_Assert_E_assertFailed__C"); asm(" .sect \".econst:xdc_runtime_Assert_E_assertFailed__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Assert_E_assertFailed__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Assert_E_assertFailed__C\""); asm(" .clink "); const CT__xdc_runtime_Assert_E_assertFailed xdc_runtime_Assert_E_assertFailed__C = (((xdc_runtime_Error_Id)3575) << 16 | 0); /* * ======== xdc.runtime.Core INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__diagsEnabled__C, ".econst:xdc_runtime_Core_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__diagsEnabled xdc_runtime_Core_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__diagsIncluded__C, ".econst:xdc_runtime_Core_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__diagsIncluded xdc_runtime_Core_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__diagsMask__C, ".econst:xdc_runtime_Core_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__diagsMask xdc_runtime_Core_Module__diagsMask__C = ((CT__xdc_runtime_Core_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__gateObj__C, ".econst:xdc_runtime_Core_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__gateObj xdc_runtime_Core_Module__gateObj__C = ((CT__xdc_runtime_Core_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__gatePrms__C, ".econst:xdc_runtime_Core_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__gatePrms xdc_runtime_Core_Module__gatePrms__C = ((CT__xdc_runtime_Core_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__id__C, ".econst:xdc_runtime_Core_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__id xdc_runtime_Core_Module__id__C = (xdc_Bits16)0x2; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__loggerDefined__C, ".econst:xdc_runtime_Core_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__loggerDefined xdc_runtime_Core_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__loggerObj__C, ".econst:xdc_runtime_Core_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__loggerObj xdc_runtime_Core_Module__loggerObj__C = ((CT__xdc_runtime_Core_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__loggerFxn0__C, ".econst:xdc_runtime_Core_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__loggerFxn0 xdc_runtime_Core_Module__loggerFxn0__C = ((CT__xdc_runtime_Core_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__loggerFxn1__C, ".econst:xdc_runtime_Core_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__loggerFxn1 xdc_runtime_Core_Module__loggerFxn1__C = ((CT__xdc_runtime_Core_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__loggerFxn2__C, ".econst:xdc_runtime_Core_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__loggerFxn2 xdc_runtime_Core_Module__loggerFxn2__C = ((CT__xdc_runtime_Core_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__loggerFxn4__C, ".econst:xdc_runtime_Core_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__loggerFxn4 xdc_runtime_Core_Module__loggerFxn4__C = ((CT__xdc_runtime_Core_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Core_Module__loggerFxn8__C, ".econst:xdc_runtime_Core_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Core_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Module__loggerFxn8 xdc_runtime_Core_Module__loggerFxn8__C = ((CT__xdc_runtime_Core_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Core_Object__count__C, ".econst:xdc_runtime_Core_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Core_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Object__count xdc_runtime_Core_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Core_Object__heap__C, ".econst:xdc_runtime_Core_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Core_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Object__heap xdc_runtime_Core_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Core_Object__sizeof__C, ".econst:xdc_runtime_Core_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Core_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Object__sizeof xdc_runtime_Core_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Core_Object__table__C, ".econst:xdc_runtime_Core_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Core_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Core_Object__table xdc_runtime_Core_Object__table__C = 0; /* A_initializedParams__C */ #pragma DATA_SECTION(xdc_runtime_Core_A_initializedParams__C, ".econst:xdc_runtime_Core_A_initializedParams__C"); asm(" .sect \".econst:xdc_runtime_Core_A_initializedParams__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Core_A_initializedParams__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Core_A_initializedParams__C\""); asm(" .clink "); const CT__xdc_runtime_Core_A_initializedParams xdc_runtime_Core_A_initializedParams__C = (((xdc_runtime_Assert_Id)1) << 16 | 16); /* * ======== xdc.runtime.Defaults INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__diagsEnabled__C, ".econst:xdc_runtime_Defaults_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__diagsEnabled xdc_runtime_Defaults_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__diagsIncluded__C, ".econst:xdc_runtime_Defaults_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__diagsIncluded xdc_runtime_Defaults_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__diagsMask__C, ".econst:xdc_runtime_Defaults_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__diagsMask xdc_runtime_Defaults_Module__diagsMask__C = ((CT__xdc_runtime_Defaults_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__gateObj__C, ".econst:xdc_runtime_Defaults_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__gateObj xdc_runtime_Defaults_Module__gateObj__C = ((CT__xdc_runtime_Defaults_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__gatePrms__C, ".econst:xdc_runtime_Defaults_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__gatePrms xdc_runtime_Defaults_Module__gatePrms__C = ((CT__xdc_runtime_Defaults_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__id__C, ".econst:xdc_runtime_Defaults_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__id xdc_runtime_Defaults_Module__id__C = (xdc_Bits16)0x3; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerDefined__C, ".econst:xdc_runtime_Defaults_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__loggerDefined xdc_runtime_Defaults_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerObj__C, ".econst:xdc_runtime_Defaults_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__loggerObj xdc_runtime_Defaults_Module__loggerObj__C = ((CT__xdc_runtime_Defaults_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerFxn0__C, ".econst:xdc_runtime_Defaults_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__loggerFxn0 xdc_runtime_Defaults_Module__loggerFxn0__C = ((CT__xdc_runtime_Defaults_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerFxn1__C, ".econst:xdc_runtime_Defaults_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__loggerFxn1 xdc_runtime_Defaults_Module__loggerFxn1__C = ((CT__xdc_runtime_Defaults_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerFxn2__C, ".econst:xdc_runtime_Defaults_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__loggerFxn2 xdc_runtime_Defaults_Module__loggerFxn2__C = ((CT__xdc_runtime_Defaults_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerFxn4__C, ".econst:xdc_runtime_Defaults_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__loggerFxn4 xdc_runtime_Defaults_Module__loggerFxn4__C = ((CT__xdc_runtime_Defaults_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Module__loggerFxn8__C, ".econst:xdc_runtime_Defaults_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Module__loggerFxn8 xdc_runtime_Defaults_Module__loggerFxn8__C = ((CT__xdc_runtime_Defaults_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Object__count__C, ".econst:xdc_runtime_Defaults_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Object__count xdc_runtime_Defaults_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Object__heap__C, ".econst:xdc_runtime_Defaults_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Object__heap xdc_runtime_Defaults_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Object__sizeof__C, ".econst:xdc_runtime_Defaults_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Object__sizeof xdc_runtime_Defaults_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Defaults_Object__table__C, ".econst:xdc_runtime_Defaults_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Defaults_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Defaults_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Defaults_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Defaults_Object__table xdc_runtime_Defaults_Object__table__C = 0; /* * ======== xdc.runtime.Diags INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__diagsEnabled__C, ".econst:xdc_runtime_Diags_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__diagsEnabled xdc_runtime_Diags_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__diagsIncluded__C, ".econst:xdc_runtime_Diags_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__diagsIncluded xdc_runtime_Diags_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__diagsMask__C, ".econst:xdc_runtime_Diags_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__diagsMask xdc_runtime_Diags_Module__diagsMask__C = ((CT__xdc_runtime_Diags_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__gateObj__C, ".econst:xdc_runtime_Diags_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__gateObj xdc_runtime_Diags_Module__gateObj__C = ((CT__xdc_runtime_Diags_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__gatePrms__C, ".econst:xdc_runtime_Diags_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__gatePrms xdc_runtime_Diags_Module__gatePrms__C = ((CT__xdc_runtime_Diags_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__id__C, ".econst:xdc_runtime_Diags_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__id xdc_runtime_Diags_Module__id__C = (xdc_Bits16)0x4; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerDefined__C, ".econst:xdc_runtime_Diags_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__loggerDefined xdc_runtime_Diags_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerObj__C, ".econst:xdc_runtime_Diags_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__loggerObj xdc_runtime_Diags_Module__loggerObj__C = ((CT__xdc_runtime_Diags_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerFxn0__C, ".econst:xdc_runtime_Diags_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__loggerFxn0 xdc_runtime_Diags_Module__loggerFxn0__C = ((CT__xdc_runtime_Diags_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerFxn1__C, ".econst:xdc_runtime_Diags_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__loggerFxn1 xdc_runtime_Diags_Module__loggerFxn1__C = ((CT__xdc_runtime_Diags_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerFxn2__C, ".econst:xdc_runtime_Diags_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__loggerFxn2 xdc_runtime_Diags_Module__loggerFxn2__C = ((CT__xdc_runtime_Diags_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerFxn4__C, ".econst:xdc_runtime_Diags_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__loggerFxn4 xdc_runtime_Diags_Module__loggerFxn4__C = ((CT__xdc_runtime_Diags_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Module__loggerFxn8__C, ".econst:xdc_runtime_Diags_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Diags_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Module__loggerFxn8 xdc_runtime_Diags_Module__loggerFxn8__C = ((CT__xdc_runtime_Diags_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Object__count__C, ".econst:xdc_runtime_Diags_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Diags_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Object__count xdc_runtime_Diags_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Object__heap__C, ".econst:xdc_runtime_Diags_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Diags_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Object__heap xdc_runtime_Diags_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Object__sizeof__C, ".econst:xdc_runtime_Diags_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Diags_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Object__sizeof xdc_runtime_Diags_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Diags_Object__table__C, ".econst:xdc_runtime_Diags_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Diags_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_Object__table xdc_runtime_Diags_Object__table__C = 0; /* setMaskEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Diags_setMaskEnabled__C, ".econst:xdc_runtime_Diags_setMaskEnabled__C"); asm(" .sect \".econst:xdc_runtime_Diags_setMaskEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_setMaskEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_setMaskEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_setMaskEnabled xdc_runtime_Diags_setMaskEnabled__C = 0; /* dictBase__C */ #pragma DATA_SECTION(xdc_runtime_Diags_dictBase__C, ".econst:xdc_runtime_Diags_dictBase__C"); asm(" .sect \".econst:xdc_runtime_Diags_dictBase__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Diags_dictBase__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Diags_dictBase__C\""); asm(" .clink "); const CT__xdc_runtime_Diags_dictBase xdc_runtime_Diags_dictBase__C = ((CT__xdc_runtime_Diags_dictBase)0); /* * ======== xdc.runtime.Error INITIALIZERS ======== */ /* Module__state__V */ xdc_runtime_Error_Module_State__ xdc_runtime_Error_Module__state__V = { (xdc_UInt16)0x0, /* count */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__diagsEnabled__C, ".econst:xdc_runtime_Error_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__diagsEnabled xdc_runtime_Error_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__diagsIncluded__C, ".econst:xdc_runtime_Error_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__diagsIncluded xdc_runtime_Error_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__diagsMask__C, ".econst:xdc_runtime_Error_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__diagsMask xdc_runtime_Error_Module__diagsMask__C = ((CT__xdc_runtime_Error_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__gateObj__C, ".econst:xdc_runtime_Error_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__gateObj xdc_runtime_Error_Module__gateObj__C = ((CT__xdc_runtime_Error_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__gatePrms__C, ".econst:xdc_runtime_Error_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__gatePrms xdc_runtime_Error_Module__gatePrms__C = ((CT__xdc_runtime_Error_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__id__C, ".econst:xdc_runtime_Error_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__id xdc_runtime_Error_Module__id__C = (xdc_Bits16)0x5; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__loggerDefined__C, ".econst:xdc_runtime_Error_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__loggerDefined xdc_runtime_Error_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__loggerObj__C, ".econst:xdc_runtime_Error_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__loggerObj xdc_runtime_Error_Module__loggerObj__C = ((CT__xdc_runtime_Error_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__loggerFxn0__C, ".econst:xdc_runtime_Error_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__loggerFxn0 xdc_runtime_Error_Module__loggerFxn0__C = ((CT__xdc_runtime_Error_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__loggerFxn1__C, ".econst:xdc_runtime_Error_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__loggerFxn1 xdc_runtime_Error_Module__loggerFxn1__C = ((CT__xdc_runtime_Error_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__loggerFxn2__C, ".econst:xdc_runtime_Error_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__loggerFxn2 xdc_runtime_Error_Module__loggerFxn2__C = ((CT__xdc_runtime_Error_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__loggerFxn4__C, ".econst:xdc_runtime_Error_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__loggerFxn4 xdc_runtime_Error_Module__loggerFxn4__C = ((CT__xdc_runtime_Error_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Error_Module__loggerFxn8__C, ".econst:xdc_runtime_Error_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Error_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Module__loggerFxn8 xdc_runtime_Error_Module__loggerFxn8__C = ((CT__xdc_runtime_Error_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Error_Object__count__C, ".econst:xdc_runtime_Error_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Error_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Object__count xdc_runtime_Error_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Error_Object__heap__C, ".econst:xdc_runtime_Error_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Error_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Object__heap xdc_runtime_Error_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Error_Object__sizeof__C, ".econst:xdc_runtime_Error_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Error_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Object__sizeof xdc_runtime_Error_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Error_Object__table__C, ".econst:xdc_runtime_Error_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Error_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Error_Object__table xdc_runtime_Error_Object__table__C = 0; /* policyFxn__C */ #pragma DATA_SECTION(xdc_runtime_Error_policyFxn__C, ".econst:xdc_runtime_Error_policyFxn__C"); asm(" .sect \".econst:xdc_runtime_Error_policyFxn__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_policyFxn__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_policyFxn__C\""); asm(" .clink "); const CT__xdc_runtime_Error_policyFxn xdc_runtime_Error_policyFxn__C = ((CT__xdc_runtime_Error_policyFxn)((xdc_Fxn)xdc_runtime_Error_policyDefault__E)); /* E_generic__C */ #pragma DATA_SECTION(xdc_runtime_Error_E_generic__C, ".econst:xdc_runtime_Error_E_generic__C"); asm(" .sect \".econst:xdc_runtime_Error_E_generic__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_E_generic__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_E_generic__C\""); asm(" .clink "); const CT__xdc_runtime_Error_E_generic xdc_runtime_Error_E_generic__C = (((xdc_runtime_Error_Id)3597) << 16 | 0); /* E_memory__C */ #pragma DATA_SECTION(xdc_runtime_Error_E_memory__C, ".econst:xdc_runtime_Error_E_memory__C"); asm(" .sect \".econst:xdc_runtime_Error_E_memory__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_E_memory__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_E_memory__C\""); asm(" .clink "); const CT__xdc_runtime_Error_E_memory xdc_runtime_Error_E_memory__C = (((xdc_runtime_Error_Id)3601) << 16 | 0); /* E_msgCode__C */ #pragma DATA_SECTION(xdc_runtime_Error_E_msgCode__C, ".econst:xdc_runtime_Error_E_msgCode__C"); asm(" .sect \".econst:xdc_runtime_Error_E_msgCode__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_E_msgCode__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_E_msgCode__C\""); asm(" .clink "); const CT__xdc_runtime_Error_E_msgCode xdc_runtime_Error_E_msgCode__C = (((xdc_runtime_Error_Id)3635) << 16 | 0); /* policy__C */ #pragma DATA_SECTION(xdc_runtime_Error_policy__C, ".econst:xdc_runtime_Error_policy__C"); asm(" .sect \".econst:xdc_runtime_Error_policy__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_policy__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_policy__C\""); asm(" .clink "); const CT__xdc_runtime_Error_policy xdc_runtime_Error_policy__C = xdc_runtime_Error_UNWIND; /* raiseHook__C */ #pragma DATA_SECTION(xdc_runtime_Error_raiseHook__C, ".econst:xdc_runtime_Error_raiseHook__C"); asm(" .sect \".econst:xdc_runtime_Error_raiseHook__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_raiseHook__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_raiseHook__C\""); asm(" .clink "); const CT__xdc_runtime_Error_raiseHook xdc_runtime_Error_raiseHook__C = ((CT__xdc_runtime_Error_raiseHook)((xdc_Fxn)ti_sysbios_BIOS_errorRaiseHook__I)); /* maxDepth__C */ #pragma DATA_SECTION(xdc_runtime_Error_maxDepth__C, ".econst:xdc_runtime_Error_maxDepth__C"); asm(" .sect \".econst:xdc_runtime_Error_maxDepth__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Error_maxDepth__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Error_maxDepth__C\""); asm(" .clink "); const CT__xdc_runtime_Error_maxDepth xdc_runtime_Error_maxDepth__C = (xdc_UInt16)0x10; /* * ======== xdc.runtime.Gate INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__diagsEnabled__C, ".econst:xdc_runtime_Gate_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__diagsEnabled xdc_runtime_Gate_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__diagsIncluded__C, ".econst:xdc_runtime_Gate_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__diagsIncluded xdc_runtime_Gate_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__diagsMask__C, ".econst:xdc_runtime_Gate_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__diagsMask xdc_runtime_Gate_Module__diagsMask__C = ((CT__xdc_runtime_Gate_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__gateObj__C, ".econst:xdc_runtime_Gate_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__gateObj xdc_runtime_Gate_Module__gateObj__C = ((CT__xdc_runtime_Gate_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__gatePrms__C, ".econst:xdc_runtime_Gate_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__gatePrms xdc_runtime_Gate_Module__gatePrms__C = ((CT__xdc_runtime_Gate_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__id__C, ".econst:xdc_runtime_Gate_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__id xdc_runtime_Gate_Module__id__C = (xdc_Bits16)0x6; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerDefined__C, ".econst:xdc_runtime_Gate_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__loggerDefined xdc_runtime_Gate_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerObj__C, ".econst:xdc_runtime_Gate_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__loggerObj xdc_runtime_Gate_Module__loggerObj__C = ((CT__xdc_runtime_Gate_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerFxn0__C, ".econst:xdc_runtime_Gate_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__loggerFxn0 xdc_runtime_Gate_Module__loggerFxn0__C = ((CT__xdc_runtime_Gate_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerFxn1__C, ".econst:xdc_runtime_Gate_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__loggerFxn1 xdc_runtime_Gate_Module__loggerFxn1__C = ((CT__xdc_runtime_Gate_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerFxn2__C, ".econst:xdc_runtime_Gate_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__loggerFxn2 xdc_runtime_Gate_Module__loggerFxn2__C = ((CT__xdc_runtime_Gate_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerFxn4__C, ".econst:xdc_runtime_Gate_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__loggerFxn4 xdc_runtime_Gate_Module__loggerFxn4__C = ((CT__xdc_runtime_Gate_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Module__loggerFxn8__C, ".econst:xdc_runtime_Gate_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Gate_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Module__loggerFxn8 xdc_runtime_Gate_Module__loggerFxn8__C = ((CT__xdc_runtime_Gate_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Object__count__C, ".econst:xdc_runtime_Gate_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Gate_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Object__count xdc_runtime_Gate_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Object__heap__C, ".econst:xdc_runtime_Gate_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Gate_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Object__heap xdc_runtime_Gate_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Object__sizeof__C, ".econst:xdc_runtime_Gate_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Gate_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Object__sizeof xdc_runtime_Gate_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Gate_Object__table__C, ".econst:xdc_runtime_Gate_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Gate_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Gate_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Gate_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Gate_Object__table xdc_runtime_Gate_Object__table__C = 0; /* * ======== xdc.runtime.Log INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__diagsEnabled__C, ".econst:xdc_runtime_Log_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__diagsEnabled xdc_runtime_Log_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__diagsIncluded__C, ".econst:xdc_runtime_Log_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__diagsIncluded xdc_runtime_Log_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__diagsMask__C, ".econst:xdc_runtime_Log_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__diagsMask xdc_runtime_Log_Module__diagsMask__C = ((CT__xdc_runtime_Log_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__gateObj__C, ".econst:xdc_runtime_Log_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__gateObj xdc_runtime_Log_Module__gateObj__C = ((CT__xdc_runtime_Log_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__gatePrms__C, ".econst:xdc_runtime_Log_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__gatePrms xdc_runtime_Log_Module__gatePrms__C = ((CT__xdc_runtime_Log_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__id__C, ".econst:xdc_runtime_Log_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__id xdc_runtime_Log_Module__id__C = (xdc_Bits16)0x7; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__loggerDefined__C, ".econst:xdc_runtime_Log_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__loggerDefined xdc_runtime_Log_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__loggerObj__C, ".econst:xdc_runtime_Log_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__loggerObj xdc_runtime_Log_Module__loggerObj__C = ((CT__xdc_runtime_Log_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__loggerFxn0__C, ".econst:xdc_runtime_Log_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__loggerFxn0 xdc_runtime_Log_Module__loggerFxn0__C = ((CT__xdc_runtime_Log_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__loggerFxn1__C, ".econst:xdc_runtime_Log_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__loggerFxn1 xdc_runtime_Log_Module__loggerFxn1__C = ((CT__xdc_runtime_Log_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__loggerFxn2__C, ".econst:xdc_runtime_Log_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__loggerFxn2 xdc_runtime_Log_Module__loggerFxn2__C = ((CT__xdc_runtime_Log_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__loggerFxn4__C, ".econst:xdc_runtime_Log_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__loggerFxn4 xdc_runtime_Log_Module__loggerFxn4__C = ((CT__xdc_runtime_Log_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Log_Module__loggerFxn8__C, ".econst:xdc_runtime_Log_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Log_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Module__loggerFxn8 xdc_runtime_Log_Module__loggerFxn8__C = ((CT__xdc_runtime_Log_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Log_Object__count__C, ".econst:xdc_runtime_Log_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Log_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Object__count xdc_runtime_Log_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Log_Object__heap__C, ".econst:xdc_runtime_Log_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Log_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Object__heap xdc_runtime_Log_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Log_Object__sizeof__C, ".econst:xdc_runtime_Log_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Log_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Object__sizeof xdc_runtime_Log_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Log_Object__table__C, ".econst:xdc_runtime_Log_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Log_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Log_Object__table xdc_runtime_Log_Object__table__C = 0; /* L_construct__C */ #pragma DATA_SECTION(xdc_runtime_Log_L_construct__C, ".econst:xdc_runtime_Log_L_construct__C"); asm(" .sect \".econst:xdc_runtime_Log_L_construct__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_L_construct__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_L_construct__C\""); asm(" .clink "); const CT__xdc_runtime_Log_L_construct xdc_runtime_Log_L_construct__C = (((xdc_runtime_Log_Event)4472) << 16 | 4); /* L_create__C */ #pragma DATA_SECTION(xdc_runtime_Log_L_create__C, ".econst:xdc_runtime_Log_L_create__C"); asm(" .sect \".econst:xdc_runtime_Log_L_create__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_L_create__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_L_create__C\""); asm(" .clink "); const CT__xdc_runtime_Log_L_create xdc_runtime_Log_L_create__C = (((xdc_runtime_Log_Event)4496) << 16 | 4); /* L_destruct__C */ #pragma DATA_SECTION(xdc_runtime_Log_L_destruct__C, ".econst:xdc_runtime_Log_L_destruct__C"); asm(" .sect \".econst:xdc_runtime_Log_L_destruct__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_L_destruct__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_L_destruct__C\""); asm(" .clink "); const CT__xdc_runtime_Log_L_destruct xdc_runtime_Log_L_destruct__C = (((xdc_runtime_Log_Event)4517) << 16 | 4); /* L_delete__C */ #pragma DATA_SECTION(xdc_runtime_Log_L_delete__C, ".econst:xdc_runtime_Log_L_delete__C"); asm(" .sect \".econst:xdc_runtime_Log_L_delete__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_L_delete__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_L_delete__C\""); asm(" .clink "); const CT__xdc_runtime_Log_L_delete xdc_runtime_Log_L_delete__C = (((xdc_runtime_Log_Event)4536) << 16 | 4); /* L_error__C */ #pragma DATA_SECTION(xdc_runtime_Log_L_error__C, ".econst:xdc_runtime_Log_L_error__C"); asm(" .sect \".econst:xdc_runtime_Log_L_error__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_L_error__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_L_error__C\""); asm(" .clink "); const CT__xdc_runtime_Log_L_error xdc_runtime_Log_L_error__C = (((xdc_runtime_Log_Event)4553) << 16 | 192); /* L_warning__C */ #pragma DATA_SECTION(xdc_runtime_Log_L_warning__C, ".econst:xdc_runtime_Log_L_warning__C"); asm(" .sect \".econst:xdc_runtime_Log_L_warning__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_L_warning__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_L_warning__C\""); asm(" .clink "); const CT__xdc_runtime_Log_L_warning xdc_runtime_Log_L_warning__C = (((xdc_runtime_Log_Event)4567) << 16 | 224); /* L_info__C */ #pragma DATA_SECTION(xdc_runtime_Log_L_info__C, ".econst:xdc_runtime_Log_L_info__C"); asm(" .sect \".econst:xdc_runtime_Log_L_info__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_L_info__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_L_info__C\""); asm(" .clink "); const CT__xdc_runtime_Log_L_info xdc_runtime_Log_L_info__C = (((xdc_runtime_Log_Event)4583) << 16 | 16384); /* L_start__C */ #pragma DATA_SECTION(xdc_runtime_Log_L_start__C, ".econst:xdc_runtime_Log_L_start__C"); asm(" .sect \".econst:xdc_runtime_Log_L_start__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_L_start__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_L_start__C\""); asm(" .clink "); const CT__xdc_runtime_Log_L_start xdc_runtime_Log_L_start__C = (((xdc_runtime_Log_Event)4590) << 16 | 32768); /* L_stop__C */ #pragma DATA_SECTION(xdc_runtime_Log_L_stop__C, ".econst:xdc_runtime_Log_L_stop__C"); asm(" .sect \".econst:xdc_runtime_Log_L_stop__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_L_stop__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_L_stop__C\""); asm(" .clink "); const CT__xdc_runtime_Log_L_stop xdc_runtime_Log_L_stop__C = (((xdc_runtime_Log_Event)4601) << 16 | 32768); /* L_startInstance__C */ #pragma DATA_SECTION(xdc_runtime_Log_L_startInstance__C, ".econst:xdc_runtime_Log_L_startInstance__C"); asm(" .sect \".econst:xdc_runtime_Log_L_startInstance__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_L_startInstance__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_L_startInstance__C\""); asm(" .clink "); const CT__xdc_runtime_Log_L_startInstance xdc_runtime_Log_L_startInstance__C = (((xdc_runtime_Log_Event)4611) << 16 | 32768); /* L_stopInstance__C */ #pragma DATA_SECTION(xdc_runtime_Log_L_stopInstance__C, ".econst:xdc_runtime_Log_L_stopInstance__C"); asm(" .sect \".econst:xdc_runtime_Log_L_stopInstance__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Log_L_stopInstance__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Log_L_stopInstance__C\""); asm(" .clink "); const CT__xdc_runtime_Log_L_stopInstance xdc_runtime_Log_L_stopInstance__C = (((xdc_runtime_Log_Event)4630) << 16 | 32768); /* * ======== xdc.runtime.Main INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__diagsEnabled__C, ".econst:xdc_runtime_Main_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__diagsEnabled xdc_runtime_Main_Module__diagsEnabled__C = (xdc_Bits32)0x4090; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__diagsIncluded__C, ".econst:xdc_runtime_Main_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__diagsIncluded xdc_runtime_Main_Module__diagsIncluded__C = (xdc_Bits32)0x4090; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__diagsMask__C, ".econst:xdc_runtime_Main_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__diagsMask xdc_runtime_Main_Module__diagsMask__C = ((CT__xdc_runtime_Main_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__gateObj__C, ".econst:xdc_runtime_Main_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__gateObj xdc_runtime_Main_Module__gateObj__C = ((CT__xdc_runtime_Main_Module__gateObj)((const void*)(xdc_runtime_IGateProvider_Handle)&ti_sysbios_gates_GateHwi_Object__table__V[0])); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__gatePrms__C, ".econst:xdc_runtime_Main_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__gatePrms xdc_runtime_Main_Module__gatePrms__C = ((CT__xdc_runtime_Main_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__id__C, ".econst:xdc_runtime_Main_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__id xdc_runtime_Main_Module__id__C = (xdc_Bits16)0x8002; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__loggerDefined__C, ".econst:xdc_runtime_Main_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__loggerDefined xdc_runtime_Main_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__loggerObj__C, ".econst:xdc_runtime_Main_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__loggerObj xdc_runtime_Main_Module__loggerObj__C = ((CT__xdc_runtime_Main_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__loggerFxn0__C, ".econst:xdc_runtime_Main_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__loggerFxn0 xdc_runtime_Main_Module__loggerFxn0__C = ((CT__xdc_runtime_Main_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__loggerFxn1__C, ".econst:xdc_runtime_Main_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__loggerFxn1 xdc_runtime_Main_Module__loggerFxn1__C = ((CT__xdc_runtime_Main_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__loggerFxn2__C, ".econst:xdc_runtime_Main_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__loggerFxn2 xdc_runtime_Main_Module__loggerFxn2__C = ((CT__xdc_runtime_Main_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__loggerFxn4__C, ".econst:xdc_runtime_Main_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__loggerFxn4 xdc_runtime_Main_Module__loggerFxn4__C = ((CT__xdc_runtime_Main_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Main_Module__loggerFxn8__C, ".econst:xdc_runtime_Main_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Main_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Module__loggerFxn8 xdc_runtime_Main_Module__loggerFxn8__C = ((CT__xdc_runtime_Main_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Main_Object__count__C, ".econst:xdc_runtime_Main_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Main_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Object__count xdc_runtime_Main_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Main_Object__heap__C, ".econst:xdc_runtime_Main_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Main_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Object__heap xdc_runtime_Main_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Main_Object__sizeof__C, ".econst:xdc_runtime_Main_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Main_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Object__sizeof xdc_runtime_Main_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Main_Object__table__C, ".econst:xdc_runtime_Main_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Main_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Main_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Main_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Main_Object__table xdc_runtime_Main_Object__table__C = 0; /* * ======== xdc.runtime.Main_Module_GateProxy INITIALIZERS ======== */ /* * ======== xdc.runtime.Memory INITIALIZERS ======== */ /* Module__state__V */ xdc_runtime_Memory_Module_State__ xdc_runtime_Memory_Module__state__V = { (xdc_SizeT)0x2, /* maxDefaultTypeAlign */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__diagsEnabled__C, ".econst:xdc_runtime_Memory_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__diagsEnabled xdc_runtime_Memory_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__diagsIncluded__C, ".econst:xdc_runtime_Memory_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__diagsIncluded xdc_runtime_Memory_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__diagsMask__C, ".econst:xdc_runtime_Memory_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__diagsMask xdc_runtime_Memory_Module__diagsMask__C = ((CT__xdc_runtime_Memory_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__gateObj__C, ".econst:xdc_runtime_Memory_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__gateObj xdc_runtime_Memory_Module__gateObj__C = ((CT__xdc_runtime_Memory_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__gatePrms__C, ".econst:xdc_runtime_Memory_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__gatePrms xdc_runtime_Memory_Module__gatePrms__C = ((CT__xdc_runtime_Memory_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__id__C, ".econst:xdc_runtime_Memory_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__id xdc_runtime_Memory_Module__id__C = (xdc_Bits16)0x8003; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerDefined__C, ".econst:xdc_runtime_Memory_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__loggerDefined xdc_runtime_Memory_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerObj__C, ".econst:xdc_runtime_Memory_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__loggerObj xdc_runtime_Memory_Module__loggerObj__C = ((CT__xdc_runtime_Memory_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerFxn0__C, ".econst:xdc_runtime_Memory_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__loggerFxn0 xdc_runtime_Memory_Module__loggerFxn0__C = ((CT__xdc_runtime_Memory_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerFxn1__C, ".econst:xdc_runtime_Memory_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__loggerFxn1 xdc_runtime_Memory_Module__loggerFxn1__C = ((CT__xdc_runtime_Memory_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerFxn2__C, ".econst:xdc_runtime_Memory_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__loggerFxn2 xdc_runtime_Memory_Module__loggerFxn2__C = ((CT__xdc_runtime_Memory_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerFxn4__C, ".econst:xdc_runtime_Memory_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__loggerFxn4 xdc_runtime_Memory_Module__loggerFxn4__C = ((CT__xdc_runtime_Memory_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Module__loggerFxn8__C, ".econst:xdc_runtime_Memory_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Memory_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Module__loggerFxn8 xdc_runtime_Memory_Module__loggerFxn8__C = ((CT__xdc_runtime_Memory_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Object__count__C, ".econst:xdc_runtime_Memory_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Memory_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Object__count xdc_runtime_Memory_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Object__heap__C, ".econst:xdc_runtime_Memory_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Memory_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Object__heap xdc_runtime_Memory_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Object__sizeof__C, ".econst:xdc_runtime_Memory_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Memory_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Object__sizeof xdc_runtime_Memory_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Memory_Object__table__C, ".econst:xdc_runtime_Memory_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Memory_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_Object__table xdc_runtime_Memory_Object__table__C = 0; /* defaultHeapInstance__C */ #pragma DATA_SECTION(xdc_runtime_Memory_defaultHeapInstance__C, ".econst:xdc_runtime_Memory_defaultHeapInstance__C"); asm(" .sect \".econst:xdc_runtime_Memory_defaultHeapInstance__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Memory_defaultHeapInstance__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Memory_defaultHeapInstance__C\""); asm(" .clink "); const CT__xdc_runtime_Memory_defaultHeapInstance xdc_runtime_Memory_defaultHeapInstance__C = (xdc_runtime_IHeap_Handle)&ti_sysbios_heaps_HeapMem_Object__table__V[0]; /* * ======== xdc.runtime.Memory_HeapProxy INITIALIZERS ======== */ /* * ======== xdc.runtime.Registry INITIALIZERS ======== */ /* Module__state__V */ xdc_runtime_Registry_Module_State__ xdc_runtime_Registry_Module__state__V = { ((xdc_runtime_Types_RegDesc*)0), /* listHead */ (xdc_Bits16)0x7fff, /* curId */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__diagsEnabled__C, ".econst:xdc_runtime_Registry_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__diagsEnabled xdc_runtime_Registry_Module__diagsEnabled__C = (xdc_Bits32)0x90; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__diagsIncluded__C, ".econst:xdc_runtime_Registry_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__diagsIncluded xdc_runtime_Registry_Module__diagsIncluded__C = (xdc_Bits32)0x90; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__diagsMask__C, ".econst:xdc_runtime_Registry_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__diagsMask xdc_runtime_Registry_Module__diagsMask__C = ((CT__xdc_runtime_Registry_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__gateObj__C, ".econst:xdc_runtime_Registry_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__gateObj xdc_runtime_Registry_Module__gateObj__C = ((CT__xdc_runtime_Registry_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__gatePrms__C, ".econst:xdc_runtime_Registry_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__gatePrms xdc_runtime_Registry_Module__gatePrms__C = ((CT__xdc_runtime_Registry_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__id__C, ".econst:xdc_runtime_Registry_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__id xdc_runtime_Registry_Module__id__C = (xdc_Bits16)0x8; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerDefined__C, ".econst:xdc_runtime_Registry_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__loggerDefined xdc_runtime_Registry_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerObj__C, ".econst:xdc_runtime_Registry_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__loggerObj xdc_runtime_Registry_Module__loggerObj__C = ((CT__xdc_runtime_Registry_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerFxn0__C, ".econst:xdc_runtime_Registry_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__loggerFxn0 xdc_runtime_Registry_Module__loggerFxn0__C = ((CT__xdc_runtime_Registry_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerFxn1__C, ".econst:xdc_runtime_Registry_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__loggerFxn1 xdc_runtime_Registry_Module__loggerFxn1__C = ((CT__xdc_runtime_Registry_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerFxn2__C, ".econst:xdc_runtime_Registry_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__loggerFxn2 xdc_runtime_Registry_Module__loggerFxn2__C = ((CT__xdc_runtime_Registry_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerFxn4__C, ".econst:xdc_runtime_Registry_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__loggerFxn4 xdc_runtime_Registry_Module__loggerFxn4__C = ((CT__xdc_runtime_Registry_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Module__loggerFxn8__C, ".econst:xdc_runtime_Registry_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Registry_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Module__loggerFxn8 xdc_runtime_Registry_Module__loggerFxn8__C = ((CT__xdc_runtime_Registry_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Object__count__C, ".econst:xdc_runtime_Registry_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Registry_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Object__count xdc_runtime_Registry_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Object__heap__C, ".econst:xdc_runtime_Registry_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Registry_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Object__heap xdc_runtime_Registry_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Object__sizeof__C, ".econst:xdc_runtime_Registry_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Registry_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Object__sizeof xdc_runtime_Registry_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Registry_Object__table__C, ".econst:xdc_runtime_Registry_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Registry_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Registry_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Registry_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Registry_Object__table xdc_runtime_Registry_Object__table__C = 0; /* * ======== xdc.runtime.Startup INITIALIZERS ======== */ /* Module__state__V */ xdc_runtime_Startup_Module_State__ xdc_runtime_Startup_Module__state__V = { ((xdc_Int*)0), /* stateTab */ 0, /* execFlag */ 0, /* rtsDoneFlag */ }; /* --> xdc_runtime_Startup_firstFxns__A */ #pragma DATA_SECTION(xdc_runtime_Startup_firstFxns__A, ".econst:xdc_runtime_Startup_firstFxns__A"); asm(" .sect \".econst:xdc_runtime_Startup_firstFxns__A\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_firstFxns__A\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_firstFxns__A\""); asm(" .clink "); const __T1_xdc_runtime_Startup_firstFxns xdc_runtime_Startup_firstFxns__A[3] = { ((void(*)(void))((xdc_Fxn)ti_sysbios_heaps_HeapMem_init__I)), /* [0] */ ((void(*)(void))((xdc_Fxn)ti_catalog_c2800_initF2837x_Boot_initStartup)), /* [1] */ ((void(*)(void))((xdc_Fxn)ti_sysbios_hal_Hwi_initStack)), /* [2] */ }; /* --> xdc_runtime_Startup_sfxnTab__A */ #pragma DATA_SECTION(xdc_runtime_Startup_sfxnTab__A, ".econst:xdc_runtime_Startup_sfxnTab__A"); asm(" .sect \".econst:xdc_runtime_Startup_sfxnTab__A\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_sfxnTab__A\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_sfxnTab__A\""); asm(" .clink "); const __T1_xdc_runtime_Startup_sfxnTab xdc_runtime_Startup_sfxnTab__A[9] = { ((xdc_Int(*)(xdc_Int))((xdc_Fxn)xdc_runtime_System_Module_startup__E)), /* [0] */ ((xdc_Int(*)(xdc_Int))((xdc_Fxn)xdc_runtime_SysMin_Module_startup__E)), /* [1] */ ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_family_c28_Hwi_Module_startup__E)), /* [2] */ ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_family_c28_Timer_Module_startup__E)), /* [3] */ ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_knl_Clock_Module_startup__E)), /* [4] */ ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_knl_Swi_Module_startup__E)), /* [5] */ ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_knl_Task_Module_startup__E)), /* [6] */ ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_hal_Hwi_Module_startup__E)), /* [7] */ ((xdc_Int(*)(xdc_Int))((xdc_Fxn)ti_sysbios_hal_Timer_Module_startup__E)), /* [8] */ }; /* --> xdc_runtime_Startup_sfxnRts__A */ #pragma DATA_SECTION(xdc_runtime_Startup_sfxnRts__A, ".econst:xdc_runtime_Startup_sfxnRts__A"); asm(" .sect \".econst:xdc_runtime_Startup_sfxnRts__A\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_sfxnRts__A\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_sfxnRts__A\""); asm(" .clink "); const __T1_xdc_runtime_Startup_sfxnRts xdc_runtime_Startup_sfxnRts__A[9] = { 1, /* [0] */ 1, /* [1] */ 0, /* [2] */ 0, /* [3] */ 0, /* [4] */ 0, /* [5] */ 0, /* [6] */ 0, /* [7] */ 0, /* [8] */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__diagsEnabled__C, ".econst:xdc_runtime_Startup_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__diagsEnabled xdc_runtime_Startup_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__diagsIncluded__C, ".econst:xdc_runtime_Startup_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__diagsIncluded xdc_runtime_Startup_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__diagsMask__C, ".econst:xdc_runtime_Startup_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__diagsMask xdc_runtime_Startup_Module__diagsMask__C = ((CT__xdc_runtime_Startup_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__gateObj__C, ".econst:xdc_runtime_Startup_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__gateObj xdc_runtime_Startup_Module__gateObj__C = ((CT__xdc_runtime_Startup_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__gatePrms__C, ".econst:xdc_runtime_Startup_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__gatePrms xdc_runtime_Startup_Module__gatePrms__C = ((CT__xdc_runtime_Startup_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__id__C, ".econst:xdc_runtime_Startup_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__id xdc_runtime_Startup_Module__id__C = (xdc_Bits16)0x9; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerDefined__C, ".econst:xdc_runtime_Startup_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__loggerDefined xdc_runtime_Startup_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerObj__C, ".econst:xdc_runtime_Startup_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__loggerObj xdc_runtime_Startup_Module__loggerObj__C = ((CT__xdc_runtime_Startup_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerFxn0__C, ".econst:xdc_runtime_Startup_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__loggerFxn0 xdc_runtime_Startup_Module__loggerFxn0__C = ((CT__xdc_runtime_Startup_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerFxn1__C, ".econst:xdc_runtime_Startup_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__loggerFxn1 xdc_runtime_Startup_Module__loggerFxn1__C = ((CT__xdc_runtime_Startup_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerFxn2__C, ".econst:xdc_runtime_Startup_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__loggerFxn2 xdc_runtime_Startup_Module__loggerFxn2__C = ((CT__xdc_runtime_Startup_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerFxn4__C, ".econst:xdc_runtime_Startup_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__loggerFxn4 xdc_runtime_Startup_Module__loggerFxn4__C = ((CT__xdc_runtime_Startup_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Module__loggerFxn8__C, ".econst:xdc_runtime_Startup_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Startup_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Module__loggerFxn8 xdc_runtime_Startup_Module__loggerFxn8__C = ((CT__xdc_runtime_Startup_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Object__count__C, ".econst:xdc_runtime_Startup_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Startup_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Object__count xdc_runtime_Startup_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Object__heap__C, ".econst:xdc_runtime_Startup_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Startup_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Object__heap xdc_runtime_Startup_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Object__sizeof__C, ".econst:xdc_runtime_Startup_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Startup_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Object__sizeof xdc_runtime_Startup_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Startup_Object__table__C, ".econst:xdc_runtime_Startup_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Startup_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_Object__table xdc_runtime_Startup_Object__table__C = 0; /* maxPasses__C */ #pragma DATA_SECTION(xdc_runtime_Startup_maxPasses__C, ".econst:xdc_runtime_Startup_maxPasses__C"); asm(" .sect \".econst:xdc_runtime_Startup_maxPasses__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_maxPasses__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_maxPasses__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_maxPasses xdc_runtime_Startup_maxPasses__C = (xdc_Int)0x20; /* firstFxns__C */ #pragma DATA_SECTION(xdc_runtime_Startup_firstFxns__C, ".econst:xdc_runtime_Startup_firstFxns__C"); asm(" .sect \".econst:xdc_runtime_Startup_firstFxns__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_firstFxns__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_firstFxns__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_firstFxns xdc_runtime_Startup_firstFxns__C = {3, ((__T1_xdc_runtime_Startup_firstFxns *)xdc_runtime_Startup_firstFxns__A)}; /* lastFxns__C */ #pragma DATA_SECTION(xdc_runtime_Startup_lastFxns__C, ".econst:xdc_runtime_Startup_lastFxns__C"); asm(" .sect \".econst:xdc_runtime_Startup_lastFxns__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_lastFxns__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_lastFxns__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_lastFxns xdc_runtime_Startup_lastFxns__C = {0, 0}; /* startModsFxn__C */ #pragma DATA_SECTION(xdc_runtime_Startup_startModsFxn__C, ".econst:xdc_runtime_Startup_startModsFxn__C"); asm(" .sect \".econst:xdc_runtime_Startup_startModsFxn__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_startModsFxn__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_startModsFxn__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_startModsFxn xdc_runtime_Startup_startModsFxn__C = ((CT__xdc_runtime_Startup_startModsFxn)((xdc_Fxn)xdc_runtime_Startup_startMods__I)); /* execImpl__C */ #pragma DATA_SECTION(xdc_runtime_Startup_execImpl__C, ".econst:xdc_runtime_Startup_execImpl__C"); asm(" .sect \".econst:xdc_runtime_Startup_execImpl__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_execImpl__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_execImpl__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_execImpl xdc_runtime_Startup_execImpl__C = ((CT__xdc_runtime_Startup_execImpl)((xdc_Fxn)xdc_runtime_Startup_exec__I)); /* sfxnTab__C */ #pragma DATA_SECTION(xdc_runtime_Startup_sfxnTab__C, ".econst:xdc_runtime_Startup_sfxnTab__C"); asm(" .sect \".econst:xdc_runtime_Startup_sfxnTab__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_sfxnTab__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_sfxnTab__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_sfxnTab xdc_runtime_Startup_sfxnTab__C = ((CT__xdc_runtime_Startup_sfxnTab)xdc_runtime_Startup_sfxnTab__A); /* sfxnRts__C */ #pragma DATA_SECTION(xdc_runtime_Startup_sfxnRts__C, ".econst:xdc_runtime_Startup_sfxnRts__C"); asm(" .sect \".econst:xdc_runtime_Startup_sfxnRts__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Startup_sfxnRts__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Startup_sfxnRts__C\""); asm(" .clink "); const CT__xdc_runtime_Startup_sfxnRts xdc_runtime_Startup_sfxnRts__C = ((CT__xdc_runtime_Startup_sfxnRts)xdc_runtime_Startup_sfxnRts__A); /* * ======== xdc.runtime.SysMin INITIALIZERS ======== */ /* --> xdc_runtime_SysMin_Module_State_0_outbuf__A */ __T1_xdc_runtime_SysMin_Module_State__outbuf xdc_runtime_SysMin_Module_State_0_outbuf__A[256]; /* Module__state__V */ xdc_runtime_SysMin_Module_State__ xdc_runtime_SysMin_Module__state__V = { ((void*)xdc_runtime_SysMin_Module_State_0_outbuf__A), /* outbuf */ (xdc_UInt)0x0, /* outidx */ 0, /* wrapped */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__diagsEnabled__C, ".econst:xdc_runtime_SysMin_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__diagsEnabled xdc_runtime_SysMin_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__diagsIncluded__C, ".econst:xdc_runtime_SysMin_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__diagsIncluded xdc_runtime_SysMin_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__diagsMask__C, ".econst:xdc_runtime_SysMin_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__diagsMask xdc_runtime_SysMin_Module__diagsMask__C = ((CT__xdc_runtime_SysMin_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__gateObj__C, ".econst:xdc_runtime_SysMin_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__gateObj xdc_runtime_SysMin_Module__gateObj__C = ((CT__xdc_runtime_SysMin_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__gatePrms__C, ".econst:xdc_runtime_SysMin_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__gatePrms xdc_runtime_SysMin_Module__gatePrms__C = ((CT__xdc_runtime_SysMin_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__id__C, ".econst:xdc_runtime_SysMin_Module__id__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__id xdc_runtime_SysMin_Module__id__C = (xdc_Bits16)0xb; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerDefined__C, ".econst:xdc_runtime_SysMin_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__loggerDefined xdc_runtime_SysMin_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerObj__C, ".econst:xdc_runtime_SysMin_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__loggerObj xdc_runtime_SysMin_Module__loggerObj__C = ((CT__xdc_runtime_SysMin_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerFxn0__C, ".econst:xdc_runtime_SysMin_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__loggerFxn0 xdc_runtime_SysMin_Module__loggerFxn0__C = ((CT__xdc_runtime_SysMin_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerFxn1__C, ".econst:xdc_runtime_SysMin_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__loggerFxn1 xdc_runtime_SysMin_Module__loggerFxn1__C = ((CT__xdc_runtime_SysMin_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerFxn2__C, ".econst:xdc_runtime_SysMin_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__loggerFxn2 xdc_runtime_SysMin_Module__loggerFxn2__C = ((CT__xdc_runtime_SysMin_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerFxn4__C, ".econst:xdc_runtime_SysMin_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__loggerFxn4 xdc_runtime_SysMin_Module__loggerFxn4__C = ((CT__xdc_runtime_SysMin_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Module__loggerFxn8__C, ".econst:xdc_runtime_SysMin_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Module__loggerFxn8 xdc_runtime_SysMin_Module__loggerFxn8__C = ((CT__xdc_runtime_SysMin_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Object__count__C, ".econst:xdc_runtime_SysMin_Object__count__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Object__count xdc_runtime_SysMin_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Object__heap__C, ".econst:xdc_runtime_SysMin_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Object__heap xdc_runtime_SysMin_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Object__sizeof__C, ".econst:xdc_runtime_SysMin_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Object__sizeof xdc_runtime_SysMin_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_Object__table__C, ".econst:xdc_runtime_SysMin_Object__table__C"); asm(" .sect \".econst:xdc_runtime_SysMin_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_Object__table xdc_runtime_SysMin_Object__table__C = 0; /* bufSize__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_bufSize__C, ".econst:xdc_runtime_SysMin_bufSize__C"); asm(" .sect \".econst:xdc_runtime_SysMin_bufSize__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_bufSize__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_bufSize__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_bufSize xdc_runtime_SysMin_bufSize__C = (xdc_SizeT)0x100; /* flushAtExit__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_flushAtExit__C, ".econst:xdc_runtime_SysMin_flushAtExit__C"); asm(" .sect \".econst:xdc_runtime_SysMin_flushAtExit__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_flushAtExit__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_flushAtExit__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_flushAtExit xdc_runtime_SysMin_flushAtExit__C = 1; /* outputFxn__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_outputFxn__C, ".econst:xdc_runtime_SysMin_outputFxn__C"); asm(" .sect \".econst:xdc_runtime_SysMin_outputFxn__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_outputFxn__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_outputFxn__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_outputFxn xdc_runtime_SysMin_outputFxn__C = ((CT__xdc_runtime_SysMin_outputFxn)((xdc_Fxn)scia_send)); /* outputFunc__C */ #pragma DATA_SECTION(xdc_runtime_SysMin_outputFunc__C, ".econst:xdc_runtime_SysMin_outputFunc__C"); asm(" .sect \".econst:xdc_runtime_SysMin_outputFunc__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_SysMin_outputFunc__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_SysMin_outputFunc__C\""); asm(" .clink "); const CT__xdc_runtime_SysMin_outputFunc xdc_runtime_SysMin_outputFunc__C = ((CT__xdc_runtime_SysMin_outputFunc)((xdc_Fxn)xdc_runtime_SysMin_output__I)); /* * ======== xdc.runtime.System INITIALIZERS ======== */ /* --> xdc_runtime_System_Module_State_0_atexitHandlers__A */ __T1_xdc_runtime_System_Module_State__atexitHandlers xdc_runtime_System_Module_State_0_atexitHandlers__A[8] = { ((void(*)(xdc_Int))0), /* [0] */ ((void(*)(xdc_Int))0), /* [1] */ ((void(*)(xdc_Int))0), /* [2] */ ((void(*)(xdc_Int))0), /* [3] */ ((void(*)(xdc_Int))0), /* [4] */ ((void(*)(xdc_Int))0), /* [5] */ ((void(*)(xdc_Int))0), /* [6] */ ((void(*)(xdc_Int))0), /* [7] */ }; /* Module__state__V */ xdc_runtime_System_Module_State__ xdc_runtime_System_Module__state__V = { ((void*)xdc_runtime_System_Module_State_0_atexitHandlers__A), /* atexitHandlers */ (xdc_Int)0x0, /* numAtexitHandlers */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__diagsEnabled__C, ".econst:xdc_runtime_System_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_System_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__diagsEnabled xdc_runtime_System_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__diagsIncluded__C, ".econst:xdc_runtime_System_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_System_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__diagsIncluded xdc_runtime_System_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__diagsMask__C, ".econst:xdc_runtime_System_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_System_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__diagsMask xdc_runtime_System_Module__diagsMask__C = ((CT__xdc_runtime_System_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__gateObj__C, ".econst:xdc_runtime_System_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_System_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__gateObj xdc_runtime_System_Module__gateObj__C = ((CT__xdc_runtime_System_Module__gateObj)((const void*)(xdc_runtime_IGateProvider_Handle)&ti_sysbios_gates_GateHwi_Object__table__V[0])); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__gatePrms__C, ".econst:xdc_runtime_System_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_System_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__gatePrms xdc_runtime_System_Module__gatePrms__C = ((CT__xdc_runtime_System_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__id__C, ".econst:xdc_runtime_System_Module__id__C"); asm(" .sect \".econst:xdc_runtime_System_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__id xdc_runtime_System_Module__id__C = (xdc_Bits16)0xa; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__loggerDefined__C, ".econst:xdc_runtime_System_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_System_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__loggerDefined xdc_runtime_System_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__loggerObj__C, ".econst:xdc_runtime_System_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_System_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__loggerObj xdc_runtime_System_Module__loggerObj__C = ((CT__xdc_runtime_System_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__loggerFxn0__C, ".econst:xdc_runtime_System_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_System_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__loggerFxn0 xdc_runtime_System_Module__loggerFxn0__C = ((CT__xdc_runtime_System_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__loggerFxn1__C, ".econst:xdc_runtime_System_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_System_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__loggerFxn1 xdc_runtime_System_Module__loggerFxn1__C = ((CT__xdc_runtime_System_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__loggerFxn2__C, ".econst:xdc_runtime_System_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_System_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__loggerFxn2 xdc_runtime_System_Module__loggerFxn2__C = ((CT__xdc_runtime_System_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__loggerFxn4__C, ".econst:xdc_runtime_System_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_System_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__loggerFxn4 xdc_runtime_System_Module__loggerFxn4__C = ((CT__xdc_runtime_System_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_System_Module__loggerFxn8__C, ".econst:xdc_runtime_System_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_System_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_System_Module__loggerFxn8 xdc_runtime_System_Module__loggerFxn8__C = ((CT__xdc_runtime_System_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_System_Object__count__C, ".econst:xdc_runtime_System_Object__count__C"); asm(" .sect \".econst:xdc_runtime_System_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_System_Object__count xdc_runtime_System_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_System_Object__heap__C, ".econst:xdc_runtime_System_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_System_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_System_Object__heap xdc_runtime_System_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_System_Object__sizeof__C, ".econst:xdc_runtime_System_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_System_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_System_Object__sizeof xdc_runtime_System_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_System_Object__table__C, ".econst:xdc_runtime_System_Object__table__C"); asm(" .sect \".econst:xdc_runtime_System_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_System_Object__table xdc_runtime_System_Object__table__C = 0; /* A_cannotFitIntoArg__C */ #pragma DATA_SECTION(xdc_runtime_System_A_cannotFitIntoArg__C, ".econst:xdc_runtime_System_A_cannotFitIntoArg__C"); asm(" .sect \".econst:xdc_runtime_System_A_cannotFitIntoArg__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_A_cannotFitIntoArg__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_A_cannotFitIntoArg__C\""); asm(" .clink "); const CT__xdc_runtime_System_A_cannotFitIntoArg xdc_runtime_System_A_cannotFitIntoArg__C = (((xdc_runtime_Assert_Id)352) << 16 | 16); /* maxAtexitHandlers__C */ #pragma DATA_SECTION(xdc_runtime_System_maxAtexitHandlers__C, ".econst:xdc_runtime_System_maxAtexitHandlers__C"); asm(" .sect \".econst:xdc_runtime_System_maxAtexitHandlers__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_maxAtexitHandlers__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_maxAtexitHandlers__C\""); asm(" .clink "); const CT__xdc_runtime_System_maxAtexitHandlers xdc_runtime_System_maxAtexitHandlers__C = (xdc_Int)0x8; /* abortFxn__C */ #pragma DATA_SECTION(xdc_runtime_System_abortFxn__C, ".econst:xdc_runtime_System_abortFxn__C"); asm(" .sect \".econst:xdc_runtime_System_abortFxn__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_abortFxn__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_abortFxn__C\""); asm(" .clink "); const CT__xdc_runtime_System_abortFxn xdc_runtime_System_abortFxn__C = ((CT__xdc_runtime_System_abortFxn)((xdc_Fxn)xdc_runtime_System_abortStd__E)); /* exitFxn__C */ #pragma DATA_SECTION(xdc_runtime_System_exitFxn__C, ".econst:xdc_runtime_System_exitFxn__C"); asm(" .sect \".econst:xdc_runtime_System_exitFxn__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_exitFxn__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_exitFxn__C\""); asm(" .clink "); const CT__xdc_runtime_System_exitFxn xdc_runtime_System_exitFxn__C = ((CT__xdc_runtime_System_exitFxn)((xdc_Fxn)xdc_runtime_System_exitStd__E)); /* extendFxn__C */ #pragma DATA_SECTION(xdc_runtime_System_extendFxn__C, ".econst:xdc_runtime_System_extendFxn__C"); asm(" .sect \".econst:xdc_runtime_System_extendFxn__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_System_extendFxn__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_System_extendFxn__C\""); asm(" .clink "); const CT__xdc_runtime_System_extendFxn xdc_runtime_System_extendFxn__C = ((CT__xdc_runtime_System_extendFxn)((xdc_Fxn)xdc_runtime_System_printfExtend__I)); /* * ======== xdc.runtime.System_Module_GateProxy INITIALIZERS ======== */ /* * ======== xdc.runtime.System_SupportProxy INITIALIZERS ======== */ /* * ======== xdc.runtime.Text INITIALIZERS ======== */ /* Module__state__V */ xdc_runtime_Text_Module_State__ xdc_runtime_Text_Module__state__V = { ((xdc_CPtr)(&xdc_runtime_Text_charTab__A[0])), /* charBase */ ((xdc_CPtr)(&xdc_runtime_Text_nodeTab__A[0])), /* nodeBase */ }; /* --> xdc_runtime_Text_charTab__A */ #pragma DATA_SECTION(xdc_runtime_Text_charTab__A, ".econst:xdc_runtime_Text_charTab__A"); asm(" .sect \".econst:xdc_runtime_Text_charTab__A\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_charTab__A\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_charTab__A\""); asm(" .clink "); const __T1_xdc_runtime_Text_charTab xdc_runtime_Text_charTab__A[5983] = { (xdc_Char)0x0, /* [0] */ (xdc_Char)0x41, /* [1] */ (xdc_Char)0x5f, /* [2] */ (xdc_Char)0x69, /* [3] */ (xdc_Char)0x6e, /* [4] */ (xdc_Char)0x69, /* [5] */ (xdc_Char)0x74, /* [6] */ (xdc_Char)0x69, /* [7] */ (xdc_Char)0x61, /* [8] */ (xdc_Char)0x6c, /* [9] */ (xdc_Char)0x69, /* [10] */ (xdc_Char)0x7a, /* [11] */ (xdc_Char)0x65, /* [12] */ (xdc_Char)0x64, /* [13] */ (xdc_Char)0x50, /* [14] */ (xdc_Char)0x61, /* [15] */ (xdc_Char)0x72, /* [16] */ (xdc_Char)0x61, /* [17] */ (xdc_Char)0x6d, /* [18] */ (xdc_Char)0x73, /* [19] */ (xdc_Char)0x3a, /* [20] */ (xdc_Char)0x20, /* [21] */ (xdc_Char)0x75, /* [22] */ (xdc_Char)0x6e, /* [23] */ (xdc_Char)0x69, /* [24] */ (xdc_Char)0x6e, /* [25] */ (xdc_Char)0x69, /* [26] */ (xdc_Char)0x74, /* [27] */ (xdc_Char)0x69, /* [28] */ (xdc_Char)0x61, /* [29] */ (xdc_Char)0x6c, /* [30] */ (xdc_Char)0x69, /* [31] */ (xdc_Char)0x7a, /* [32] */ (xdc_Char)0x65, /* [33] */ (xdc_Char)0x64, /* [34] */ (xdc_Char)0x20, /* [35] */ (xdc_Char)0x50, /* [36] */ (xdc_Char)0x61, /* [37] */ (xdc_Char)0x72, /* [38] */ (xdc_Char)0x61, /* [39] */ (xdc_Char)0x6d, /* [40] */ (xdc_Char)0x73, /* [41] */ (xdc_Char)0x20, /* [42] */ (xdc_Char)0x73, /* [43] */ (xdc_Char)0x74, /* [44] */ (xdc_Char)0x72, /* [45] */ (xdc_Char)0x75, /* [46] */ (xdc_Char)0x63, /* [47] */ (xdc_Char)0x74, /* [48] */ (xdc_Char)0x0, /* [49] */ (xdc_Char)0x48, /* [50] */ (xdc_Char)0x65, /* [51] */ (xdc_Char)0x61, /* [52] */ (xdc_Char)0x70, /* [53] */ (xdc_Char)0x4d, /* [54] */ (xdc_Char)0x69, /* [55] */ (xdc_Char)0x6e, /* [56] */ (xdc_Char)0x5f, /* [57] */ (xdc_Char)0x63, /* [58] */ (xdc_Char)0x72, /* [59] */ (xdc_Char)0x65, /* [60] */ (xdc_Char)0x61, /* [61] */ (xdc_Char)0x74, /* [62] */ (xdc_Char)0x65, /* [63] */ (xdc_Char)0x20, /* [64] */ (xdc_Char)0x63, /* [65] */ (xdc_Char)0x61, /* [66] */ (xdc_Char)0x6e, /* [67] */ (xdc_Char)0x6e, /* [68] */ (xdc_Char)0x6f, /* [69] */ (xdc_Char)0x74, /* [70] */ (xdc_Char)0x20, /* [71] */ (xdc_Char)0x68, /* [72] */ (xdc_Char)0x61, /* [73] */ (xdc_Char)0x76, /* [74] */ (xdc_Char)0x65, /* [75] */ (xdc_Char)0x20, /* [76] */ (xdc_Char)0x61, /* [77] */ (xdc_Char)0x20, /* [78] */ (xdc_Char)0x7a, /* [79] */ (xdc_Char)0x65, /* [80] */ (xdc_Char)0x72, /* [81] */ (xdc_Char)0x6f, /* [82] */ (xdc_Char)0x20, /* [83] */ (xdc_Char)0x73, /* [84] */ (xdc_Char)0x69, /* [85] */ (xdc_Char)0x7a, /* [86] */ (xdc_Char)0x65, /* [87] */ (xdc_Char)0x20, /* [88] */ (xdc_Char)0x76, /* [89] */ (xdc_Char)0x61, /* [90] */ (xdc_Char)0x6c, /* [91] */ (xdc_Char)0x75, /* [92] */ (xdc_Char)0x65, /* [93] */ (xdc_Char)0x0, /* [94] */ (xdc_Char)0x48, /* [95] */ (xdc_Char)0x65, /* [96] */ (xdc_Char)0x61, /* [97] */ (xdc_Char)0x70, /* [98] */ (xdc_Char)0x53, /* [99] */ (xdc_Char)0x74, /* [100] */ (xdc_Char)0x64, /* [101] */ (xdc_Char)0x5f, /* [102] */ (xdc_Char)0x63, /* [103] */ (xdc_Char)0x72, /* [104] */ (xdc_Char)0x65, /* [105] */ (xdc_Char)0x61, /* [106] */ (xdc_Char)0x74, /* [107] */ (xdc_Char)0x65, /* [108] */ (xdc_Char)0x20, /* [109] */ (xdc_Char)0x63, /* [110] */ (xdc_Char)0x61, /* [111] */ (xdc_Char)0x6e, /* [112] */ (xdc_Char)0x6e, /* [113] */ (xdc_Char)0x6f, /* [114] */ (xdc_Char)0x74, /* [115] */ (xdc_Char)0x20, /* [116] */ (xdc_Char)0x68, /* [117] */ (xdc_Char)0x61, /* [118] */ (xdc_Char)0x76, /* [119] */ (xdc_Char)0x65, /* [120] */ (xdc_Char)0x20, /* [121] */ (xdc_Char)0x61, /* [122] */ (xdc_Char)0x20, /* [123] */ (xdc_Char)0x7a, /* [124] */ (xdc_Char)0x65, /* [125] */ (xdc_Char)0x72, /* [126] */ (xdc_Char)0x6f, /* [127] */ (xdc_Char)0x20, /* [128] */ (xdc_Char)0x73, /* [129] */ (xdc_Char)0x69, /* [130] */ (xdc_Char)0x7a, /* [131] */ (xdc_Char)0x65, /* [132] */ (xdc_Char)0x20, /* [133] */ (xdc_Char)0x76, /* [134] */ (xdc_Char)0x61, /* [135] */ (xdc_Char)0x6c, /* [136] */ (xdc_Char)0x75, /* [137] */ (xdc_Char)0x65, /* [138] */ (xdc_Char)0x0, /* [139] */ (xdc_Char)0x48, /* [140] */ (xdc_Char)0x65, /* [141] */ (xdc_Char)0x61, /* [142] */ (xdc_Char)0x70, /* [143] */ (xdc_Char)0x53, /* [144] */ (xdc_Char)0x74, /* [145] */ (xdc_Char)0x64, /* [146] */ (xdc_Char)0x5f, /* [147] */ (xdc_Char)0x61, /* [148] */ (xdc_Char)0x6c, /* [149] */ (xdc_Char)0x6c, /* [150] */ (xdc_Char)0x6f, /* [151] */ (xdc_Char)0x63, /* [152] */ (xdc_Char)0x20, /* [153] */ (xdc_Char)0x61, /* [154] */ (xdc_Char)0x6c, /* [155] */ (xdc_Char)0x69, /* [156] */ (xdc_Char)0x67, /* [157] */ (xdc_Char)0x6e, /* [158] */ (xdc_Char)0x6d, /* [159] */ (xdc_Char)0x65, /* [160] */ (xdc_Char)0x6e, /* [161] */ (xdc_Char)0x74, /* [162] */ (xdc_Char)0x20, /* [163] */ (xdc_Char)0x6d, /* [164] */ (xdc_Char)0x75, /* [165] */ (xdc_Char)0x73, /* [166] */ (xdc_Char)0x74, /* [167] */ (xdc_Char)0x20, /* [168] */ (xdc_Char)0x62, /* [169] */ (xdc_Char)0x65, /* [170] */ (xdc_Char)0x20, /* [171] */ (xdc_Char)0x61, /* [172] */ (xdc_Char)0x20, /* [173] */ (xdc_Char)0x70, /* [174] */ (xdc_Char)0x6f, /* [175] */ (xdc_Char)0x77, /* [176] */ (xdc_Char)0x65, /* [177] */ (xdc_Char)0x72, /* [178] */ (xdc_Char)0x20, /* [179] */ (xdc_Char)0x6f, /* [180] */ (xdc_Char)0x66, /* [181] */ (xdc_Char)0x20, /* [182] */ (xdc_Char)0x32, /* [183] */ (xdc_Char)0x0, /* [184] */ (xdc_Char)0x48, /* [185] */ (xdc_Char)0x65, /* [186] */ (xdc_Char)0x61, /* [187] */ (xdc_Char)0x70, /* [188] */ (xdc_Char)0x53, /* [189] */ (xdc_Char)0x74, /* [190] */ (xdc_Char)0x64, /* [191] */ (xdc_Char)0x20, /* [192] */ (xdc_Char)0x69, /* [193] */ (xdc_Char)0x6e, /* [194] */ (xdc_Char)0x73, /* [195] */ (xdc_Char)0x74, /* [196] */ (xdc_Char)0x61, /* [197] */ (xdc_Char)0x6e, /* [198] */ (xdc_Char)0x63, /* [199] */ (xdc_Char)0x65, /* [200] */ (xdc_Char)0x20, /* [201] */ (xdc_Char)0x74, /* [202] */ (xdc_Char)0x6f, /* [203] */ (xdc_Char)0x74, /* [204] */ (xdc_Char)0x61, /* [205] */ (xdc_Char)0x6c, /* [206] */ (xdc_Char)0x46, /* [207] */ (xdc_Char)0x72, /* [208] */ (xdc_Char)0x65, /* [209] */ (xdc_Char)0x65, /* [210] */ (xdc_Char)0x53, /* [211] */ (xdc_Char)0x69, /* [212] */ (xdc_Char)0x7a, /* [213] */ (xdc_Char)0x65, /* [214] */ (xdc_Char)0x20, /* [215] */ (xdc_Char)0x69, /* [216] */ (xdc_Char)0x73, /* [217] */ (xdc_Char)0x20, /* [218] */ (xdc_Char)0x67, /* [219] */ (xdc_Char)0x72, /* [220] */ (xdc_Char)0x65, /* [221] */ (xdc_Char)0x61, /* [222] */ (xdc_Char)0x74, /* [223] */ (xdc_Char)0x65, /* [224] */ (xdc_Char)0x72, /* [225] */ (xdc_Char)0x20, /* [226] */ (xdc_Char)0x74, /* [227] */ (xdc_Char)0x68, /* [228] */ (xdc_Char)0x61, /* [229] */ (xdc_Char)0x6e, /* [230] */ (xdc_Char)0x20, /* [231] */ (xdc_Char)0x73, /* [232] */ (xdc_Char)0x74, /* [233] */ (xdc_Char)0x61, /* [234] */ (xdc_Char)0x72, /* [235] */ (xdc_Char)0x74, /* [236] */ (xdc_Char)0x69, /* [237] */ (xdc_Char)0x6e, /* [238] */ (xdc_Char)0x67, /* [239] */ (xdc_Char)0x20, /* [240] */ (xdc_Char)0x73, /* [241] */ (xdc_Char)0x69, /* [242] */ (xdc_Char)0x7a, /* [243] */ (xdc_Char)0x65, /* [244] */ (xdc_Char)0x0, /* [245] */ (xdc_Char)0x48, /* [246] */ (xdc_Char)0x65, /* [247] */ (xdc_Char)0x61, /* [248] */ (xdc_Char)0x70, /* [249] */ (xdc_Char)0x53, /* [250] */ (xdc_Char)0x74, /* [251] */ (xdc_Char)0x64, /* [252] */ (xdc_Char)0x5f, /* [253] */ (xdc_Char)0x61, /* [254] */ (xdc_Char)0x6c, /* [255] */ (xdc_Char)0x6c, /* [256] */ (xdc_Char)0x6f, /* [257] */ (xdc_Char)0x63, /* [258] */ (xdc_Char)0x20, /* [259] */ (xdc_Char)0x2d, /* [260] */ (xdc_Char)0x20, /* [261] */ (xdc_Char)0x72, /* [262] */ (xdc_Char)0x65, /* [263] */ (xdc_Char)0x71, /* [264] */ (xdc_Char)0x75, /* [265] */ (xdc_Char)0x65, /* [266] */ (xdc_Char)0x73, /* [267] */ (xdc_Char)0x74, /* [268] */ (xdc_Char)0x65, /* [269] */ (xdc_Char)0x64, /* [270] */ (xdc_Char)0x20, /* [271] */ (xdc_Char)0x61, /* [272] */ (xdc_Char)0x6c, /* [273] */ (xdc_Char)0x69, /* [274] */ (xdc_Char)0x67, /* [275] */ (xdc_Char)0x6e, /* [276] */ (xdc_Char)0x6d, /* [277] */ (xdc_Char)0x65, /* [278] */ (xdc_Char)0x6e, /* [279] */ (xdc_Char)0x74, /* [280] */ (xdc_Char)0x20, /* [281] */ (xdc_Char)0x69, /* [282] */ (xdc_Char)0x73, /* [283] */ (xdc_Char)0x20, /* [284] */ (xdc_Char)0x67, /* [285] */ (xdc_Char)0x72, /* [286] */ (xdc_Char)0x65, /* [287] */ (xdc_Char)0x61, /* [288] */ (xdc_Char)0x74, /* [289] */ (xdc_Char)0x65, /* [290] */ (xdc_Char)0x72, /* [291] */ (xdc_Char)0x20, /* [292] */ (xdc_Char)0x74, /* [293] */ (xdc_Char)0x68, /* [294] */ (xdc_Char)0x61, /* [295] */ (xdc_Char)0x6e, /* [296] */ (xdc_Char)0x20, /* [297] */ (xdc_Char)0x61, /* [298] */ (xdc_Char)0x6c, /* [299] */ (xdc_Char)0x6c, /* [300] */ (xdc_Char)0x6f, /* [301] */ (xdc_Char)0x77, /* [302] */ (xdc_Char)0x65, /* [303] */ (xdc_Char)0x64, /* [304] */ (xdc_Char)0x0, /* [305] */ (xdc_Char)0x41, /* [306] */ (xdc_Char)0x5f, /* [307] */ (xdc_Char)0x69, /* [308] */ (xdc_Char)0x6e, /* [309] */ (xdc_Char)0x76, /* [310] */ (xdc_Char)0x61, /* [311] */ (xdc_Char)0x6c, /* [312] */ (xdc_Char)0x69, /* [313] */ (xdc_Char)0x64, /* [314] */ (xdc_Char)0x4c, /* [315] */ (xdc_Char)0x6f, /* [316] */ (xdc_Char)0x67, /* [317] */ (xdc_Char)0x67, /* [318] */ (xdc_Char)0x65, /* [319] */ (xdc_Char)0x72, /* [320] */ (xdc_Char)0x3a, /* [321] */ (xdc_Char)0x20, /* [322] */ (xdc_Char)0x54, /* [323] */ (xdc_Char)0x68, /* [324] */ (xdc_Char)0x65, /* [325] */ (xdc_Char)0x20, /* [326] */ (xdc_Char)0x6c, /* [327] */ (xdc_Char)0x6f, /* [328] */ (xdc_Char)0x67, /* [329] */ (xdc_Char)0x67, /* [330] */ (xdc_Char)0x65, /* [331] */ (xdc_Char)0x72, /* [332] */ (xdc_Char)0x20, /* [333] */ (xdc_Char)0x69, /* [334] */ (xdc_Char)0x64, /* [335] */ (xdc_Char)0x20, /* [336] */ (xdc_Char)0x25, /* [337] */ (xdc_Char)0x64, /* [338] */ (xdc_Char)0x20, /* [339] */ (xdc_Char)0x69, /* [340] */ (xdc_Char)0x73, /* [341] */ (xdc_Char)0x20, /* [342] */ (xdc_Char)0x69, /* [343] */ (xdc_Char)0x6e, /* [344] */ (xdc_Char)0x76, /* [345] */ (xdc_Char)0x61, /* [346] */ (xdc_Char)0x6c, /* [347] */ (xdc_Char)0x69, /* [348] */ (xdc_Char)0x64, /* [349] */ (xdc_Char)0x2e, /* [350] */ (xdc_Char)0x0, /* [351] */ (xdc_Char)0x41, /* [352] */ (xdc_Char)0x5f, /* [353] */ (xdc_Char)0x63, /* [354] */ (xdc_Char)0x61, /* [355] */ (xdc_Char)0x6e, /* [356] */ (xdc_Char)0x6e, /* [357] */ (xdc_Char)0x6f, /* [358] */ (xdc_Char)0x74, /* [359] */ (xdc_Char)0x46, /* [360] */ (xdc_Char)0x69, /* [361] */ (xdc_Char)0x74, /* [362] */ (xdc_Char)0x49, /* [363] */ (xdc_Char)0x6e, /* [364] */ (xdc_Char)0x74, /* [365] */ (xdc_Char)0x6f, /* [366] */ (xdc_Char)0x41, /* [367] */ (xdc_Char)0x72, /* [368] */ (xdc_Char)0x67, /* [369] */ (xdc_Char)0x3a, /* [370] */ (xdc_Char)0x20, /* [371] */ (xdc_Char)0x73, /* [372] */ (xdc_Char)0x69, /* [373] */ (xdc_Char)0x7a, /* [374] */ (xdc_Char)0x65, /* [375] */ (xdc_Char)0x6f, /* [376] */ (xdc_Char)0x66, /* [377] */ (xdc_Char)0x28, /* [378] */ (xdc_Char)0x46, /* [379] */ (xdc_Char)0x6c, /* [380] */ (xdc_Char)0x6f, /* [381] */ (xdc_Char)0x61, /* [382] */ (xdc_Char)0x74, /* [383] */ (xdc_Char)0x29, /* [384] */ (xdc_Char)0x20, /* [385] */ (xdc_Char)0x3e, /* [386] */ (xdc_Char)0x20, /* [387] */ (xdc_Char)0x73, /* [388] */ (xdc_Char)0x69, /* [389] */ (xdc_Char)0x7a, /* [390] */ (xdc_Char)0x65, /* [391] */ (xdc_Char)0x6f, /* [392] */ (xdc_Char)0x66, /* [393] */ (xdc_Char)0x28, /* [394] */ (xdc_Char)0x41, /* [395] */ (xdc_Char)0x72, /* [396] */ (xdc_Char)0x67, /* [397] */ (xdc_Char)0x29, /* [398] */ (xdc_Char)0x0, /* [399] */ (xdc_Char)0x41, /* [400] */ (xdc_Char)0x5f, /* [401] */ (xdc_Char)0x62, /* [402] */ (xdc_Char)0x61, /* [403] */ (xdc_Char)0x64, /* [404] */ (xdc_Char)0x49, /* [405] */ (xdc_Char)0x6e, /* [406] */ (xdc_Char)0x74, /* [407] */ (xdc_Char)0x4e, /* [408] */ (xdc_Char)0x75, /* [409] */ (xdc_Char)0x6d, /* [410] */ (xdc_Char)0x3a, /* [411] */ (xdc_Char)0x20, /* [412] */ (xdc_Char)0x49, /* [413] */ (xdc_Char)0x6e, /* [414] */ (xdc_Char)0x76, /* [415] */ (xdc_Char)0x61, /* [416] */ (xdc_Char)0x6c, /* [417] */ (xdc_Char)0x69, /* [418] */ (xdc_Char)0x64, /* [419] */ (xdc_Char)0x20, /* [420] */ (xdc_Char)0x69, /* [421] */ (xdc_Char)0x6e, /* [422] */ (xdc_Char)0x74, /* [423] */ (xdc_Char)0x65, /* [424] */ (xdc_Char)0x72, /* [425] */ (xdc_Char)0x72, /* [426] */ (xdc_Char)0x75, /* [427] */ (xdc_Char)0x70, /* [428] */ (xdc_Char)0x74, /* [429] */ (xdc_Char)0x20, /* [430] */ (xdc_Char)0x6e, /* [431] */ (xdc_Char)0x75, /* [432] */ (xdc_Char)0x6d, /* [433] */ (xdc_Char)0x62, /* [434] */ (xdc_Char)0x65, /* [435] */ (xdc_Char)0x72, /* [436] */ (xdc_Char)0x0, /* [437] */ (xdc_Char)0x41, /* [438] */ (xdc_Char)0x5f, /* [439] */ (xdc_Char)0x69, /* [440] */ (xdc_Char)0x6e, /* [441] */ (xdc_Char)0x76, /* [442] */ (xdc_Char)0x61, /* [443] */ (xdc_Char)0x6c, /* [444] */ (xdc_Char)0x69, /* [445] */ (xdc_Char)0x64, /* [446] */ (xdc_Char)0x41, /* [447] */ (xdc_Char)0x72, /* [448] */ (xdc_Char)0x67, /* [449] */ (xdc_Char)0x3a, /* [450] */ (xdc_Char)0x20, /* [451] */ (xdc_Char)0x49, /* [452] */ (xdc_Char)0x6e, /* [453] */ (xdc_Char)0x76, /* [454] */ (xdc_Char)0x61, /* [455] */ (xdc_Char)0x6c, /* [456] */ (xdc_Char)0x69, /* [457] */ (xdc_Char)0x64, /* [458] */ (xdc_Char)0x20, /* [459] */ (xdc_Char)0x61, /* [460] */ (xdc_Char)0x72, /* [461] */ (xdc_Char)0x67, /* [462] */ (xdc_Char)0x75, /* [463] */ (xdc_Char)0x6d, /* [464] */ (xdc_Char)0x65, /* [465] */ (xdc_Char)0x6e, /* [466] */ (xdc_Char)0x74, /* [467] */ (xdc_Char)0x0, /* [468] */ (xdc_Char)0x41, /* [469] */ (xdc_Char)0x5f, /* [470] */ (xdc_Char)0x7a, /* [471] */ (xdc_Char)0x65, /* [472] */ (xdc_Char)0x72, /* [473] */ (xdc_Char)0x6f, /* [474] */ (xdc_Char)0x4c, /* [475] */ (xdc_Char)0x61, /* [476] */ (xdc_Char)0x74, /* [477] */ (xdc_Char)0x65, /* [478] */ (xdc_Char)0x6e, /* [479] */ (xdc_Char)0x63, /* [480] */ (xdc_Char)0x79, /* [481] */ (xdc_Char)0x43, /* [482] */ (xdc_Char)0x6f, /* [483] */ (xdc_Char)0x6e, /* [484] */ (xdc_Char)0x66, /* [485] */ (xdc_Char)0x6c, /* [486] */ (xdc_Char)0x69, /* [487] */ (xdc_Char)0x63, /* [488] */ (xdc_Char)0x74, /* [489] */ (xdc_Char)0x3a, /* [490] */ (xdc_Char)0x20, /* [491] */ (xdc_Char)0x43, /* [492] */ (xdc_Char)0x6f, /* [493] */ (xdc_Char)0x6e, /* [494] */ (xdc_Char)0x66, /* [495] */ (xdc_Char)0x6c, /* [496] */ (xdc_Char)0x69, /* [497] */ (xdc_Char)0x63, /* [498] */ (xdc_Char)0x74, /* [499] */ (xdc_Char)0x20, /* [500] */ (xdc_Char)0x77, /* [501] */ (xdc_Char)0x69, /* [502] */ (xdc_Char)0x74, /* [503] */ (xdc_Char)0x68, /* [504] */ (xdc_Char)0x20, /* [505] */ (xdc_Char)0x7a, /* [506] */ (xdc_Char)0x65, /* [507] */ (xdc_Char)0x72, /* [508] */ (xdc_Char)0x6f, /* [509] */ (xdc_Char)0x20, /* [510] */ (xdc_Char)0x6c, /* [511] */ (xdc_Char)0x61, /* [512] */ (xdc_Char)0x74, /* [513] */ (xdc_Char)0x65, /* [514] */ (xdc_Char)0x6e, /* [515] */ (xdc_Char)0x63, /* [516] */ (xdc_Char)0x79, /* [517] */ (xdc_Char)0x20, /* [518] */ (xdc_Char)0x49, /* [519] */ (xdc_Char)0x45, /* [520] */ (xdc_Char)0x52, /* [521] */ (xdc_Char)0x20, /* [522] */ (xdc_Char)0x6d, /* [523] */ (xdc_Char)0x61, /* [524] */ (xdc_Char)0x73, /* [525] */ (xdc_Char)0x6b, /* [526] */ (xdc_Char)0x0, /* [527] */ (xdc_Char)0x41, /* [528] */ (xdc_Char)0x5f, /* [529] */ (xdc_Char)0x69, /* [530] */ (xdc_Char)0x6e, /* [531] */ (xdc_Char)0x76, /* [532] */ (xdc_Char)0x61, /* [533] */ (xdc_Char)0x6c, /* [534] */ (xdc_Char)0x69, /* [535] */ (xdc_Char)0x64, /* [536] */ (xdc_Char)0x54, /* [537] */ (xdc_Char)0x69, /* [538] */ (xdc_Char)0x6d, /* [539] */ (xdc_Char)0x65, /* [540] */ (xdc_Char)0x72, /* [541] */ (xdc_Char)0x3a, /* [542] */ (xdc_Char)0x20, /* [543] */ (xdc_Char)0x54, /* [544] */ (xdc_Char)0x69, /* [545] */ (xdc_Char)0x6d, /* [546] */ (xdc_Char)0x65, /* [547] */ (xdc_Char)0x72, /* [548] */ (xdc_Char)0x20, /* [549] */ (xdc_Char)0x69, /* [550] */ (xdc_Char)0x64, /* [551] */ (xdc_Char)0x20, /* [552] */ (xdc_Char)0x6d, /* [553] */ (xdc_Char)0x75, /* [554] */ (xdc_Char)0x73, /* [555] */ (xdc_Char)0x74, /* [556] */ (xdc_Char)0x20, /* [557] */ (xdc_Char)0x62, /* [558] */ (xdc_Char)0x65, /* [559] */ (xdc_Char)0x20, /* [560] */ (xdc_Char)0x30, /* [561] */ (xdc_Char)0x2d, /* [562] */ (xdc_Char)0x32, /* [563] */ (xdc_Char)0x0, /* [564] */ (xdc_Char)0x41, /* [565] */ (xdc_Char)0x5f, /* [566] */ (xdc_Char)0x69, /* [567] */ (xdc_Char)0x6e, /* [568] */ (xdc_Char)0x76, /* [569] */ (xdc_Char)0x61, /* [570] */ (xdc_Char)0x6c, /* [571] */ (xdc_Char)0x69, /* [572] */ (xdc_Char)0x64, /* [573] */ (xdc_Char)0x52, /* [574] */ (xdc_Char)0x75, /* [575] */ (xdc_Char)0x6e, /* [576] */ (xdc_Char)0x4d, /* [577] */ (xdc_Char)0x6f, /* [578] */ (xdc_Char)0x64, /* [579] */ (xdc_Char)0x65, /* [580] */ (xdc_Char)0x3a, /* [581] */ (xdc_Char)0x20, /* [582] */ (xdc_Char)0x49, /* [583] */ (xdc_Char)0x6e, /* [584] */ (xdc_Char)0x76, /* [585] */ (xdc_Char)0x61, /* [586] */ (xdc_Char)0x6c, /* [587] */ (xdc_Char)0x69, /* [588] */ (xdc_Char)0x64, /* [589] */ (xdc_Char)0x20, /* [590] */ (xdc_Char)0x52, /* [591] */ (xdc_Char)0x75, /* [592] */ (xdc_Char)0x6e, /* [593] */ (xdc_Char)0x4d, /* [594] */ (xdc_Char)0x6f, /* [595] */ (xdc_Char)0x64, /* [596] */ (xdc_Char)0x65, /* [597] */ (xdc_Char)0x0, /* [598] */ (xdc_Char)0x41, /* [599] */ (xdc_Char)0x5f, /* [600] */ (xdc_Char)0x49, /* [601] */ (xdc_Char)0x6e, /* [602] */ (xdc_Char)0x76, /* [603] */ (xdc_Char)0x61, /* [604] */ (xdc_Char)0x6c, /* [605] */ (xdc_Char)0x69, /* [606] */ (xdc_Char)0x64, /* [607] */ (xdc_Char)0x4d, /* [608] */ (xdc_Char)0x61, /* [609] */ (xdc_Char)0x73, /* [610] */ (xdc_Char)0x6b, /* [611] */ (xdc_Char)0x3a, /* [612] */ (xdc_Char)0x20, /* [613] */ (xdc_Char)0x4d, /* [614] */ (xdc_Char)0x61, /* [615] */ (xdc_Char)0x73, /* [616] */ (xdc_Char)0x6b, /* [617] */ (xdc_Char)0x20, /* [618] */ (xdc_Char)0x69, /* [619] */ (xdc_Char)0x6e, /* [620] */ (xdc_Char)0x20, /* [621] */ (xdc_Char)0x68, /* [622] */ (xdc_Char)0x77, /* [623] */ (xdc_Char)0x69, /* [624] */ (xdc_Char)0x50, /* [625] */ (xdc_Char)0x61, /* [626] */ (xdc_Char)0x72, /* [627] */ (xdc_Char)0x61, /* [628] */ (xdc_Char)0x6d, /* [629] */ (xdc_Char)0x73, /* [630] */ (xdc_Char)0x20, /* [631] */ (xdc_Char)0x63, /* [632] */ (xdc_Char)0x61, /* [633] */ (xdc_Char)0x6e, /* [634] */ (xdc_Char)0x6e, /* [635] */ (xdc_Char)0x6f, /* [636] */ (xdc_Char)0x74, /* [637] */ (xdc_Char)0x20, /* [638] */ (xdc_Char)0x65, /* [639] */ (xdc_Char)0x6e, /* [640] */ (xdc_Char)0x61, /* [641] */ (xdc_Char)0x62, /* [642] */ (xdc_Char)0x6c, /* [643] */ (xdc_Char)0x65, /* [644] */ (xdc_Char)0x20, /* [645] */ (xdc_Char)0x73, /* [646] */ (xdc_Char)0x65, /* [647] */ (xdc_Char)0x6c, /* [648] */ (xdc_Char)0x66, /* [649] */ (xdc_Char)0x0, /* [650] */ (xdc_Char)0x45, /* [651] */ (xdc_Char)0x5f, /* [652] */ (xdc_Char)0x63, /* [653] */ (xdc_Char)0x61, /* [654] */ (xdc_Char)0x6e, /* [655] */ (xdc_Char)0x6e, /* [656] */ (xdc_Char)0x6f, /* [657] */ (xdc_Char)0x74, /* [658] */ (xdc_Char)0x53, /* [659] */ (xdc_Char)0x75, /* [660] */ (xdc_Char)0x70, /* [661] */ (xdc_Char)0x70, /* [662] */ (xdc_Char)0x6f, /* [663] */ (xdc_Char)0x72, /* [664] */ (xdc_Char)0x74, /* [665] */ (xdc_Char)0x3a, /* [666] */ (xdc_Char)0x20, /* [667] */ (xdc_Char)0x54, /* [668] */ (xdc_Char)0x69, /* [669] */ (xdc_Char)0x6d, /* [670] */ (xdc_Char)0x65, /* [671] */ (xdc_Char)0x72, /* [672] */ (xdc_Char)0x20, /* [673] */ (xdc_Char)0x63, /* [674] */ (xdc_Char)0x61, /* [675] */ (xdc_Char)0x6e, /* [676] */ (xdc_Char)0x6e, /* [677] */ (xdc_Char)0x6f, /* [678] */ (xdc_Char)0x74, /* [679] */ (xdc_Char)0x20, /* [680] */ (xdc_Char)0x73, /* [681] */ (xdc_Char)0x75, /* [682] */ (xdc_Char)0x70, /* [683] */ (xdc_Char)0x70, /* [684] */ (xdc_Char)0x6f, /* [685] */ (xdc_Char)0x72, /* [686] */ (xdc_Char)0x74, /* [687] */ (xdc_Char)0x20, /* [688] */ (xdc_Char)0x72, /* [689] */ (xdc_Char)0x65, /* [690] */ (xdc_Char)0x71, /* [691] */ (xdc_Char)0x75, /* [692] */ (xdc_Char)0x65, /* [693] */ (xdc_Char)0x73, /* [694] */ (xdc_Char)0x74, /* [695] */ (xdc_Char)0x65, /* [696] */ (xdc_Char)0x64, /* [697] */ (xdc_Char)0x20, /* [698] */ (xdc_Char)0x70, /* [699] */ (xdc_Char)0x65, /* [700] */ (xdc_Char)0x72, /* [701] */ (xdc_Char)0x69, /* [702] */ (xdc_Char)0x6f, /* [703] */ (xdc_Char)0x64, /* [704] */ (xdc_Char)0x0, /* [705] */ (xdc_Char)0x41, /* [706] */ (xdc_Char)0x5f, /* [707] */ (xdc_Char)0x63, /* [708] */ (xdc_Char)0x6c, /* [709] */ (xdc_Char)0x6f, /* [710] */ (xdc_Char)0x63, /* [711] */ (xdc_Char)0x6b, /* [712] */ (xdc_Char)0x44, /* [713] */ (xdc_Char)0x69, /* [714] */ (xdc_Char)0x73, /* [715] */ (xdc_Char)0x61, /* [716] */ (xdc_Char)0x62, /* [717] */ (xdc_Char)0x6c, /* [718] */ (xdc_Char)0x65, /* [719] */ (xdc_Char)0x64, /* [720] */ (xdc_Char)0x3a, /* [721] */ (xdc_Char)0x20, /* [722] */ (xdc_Char)0x43, /* [723] */ (xdc_Char)0x61, /* [724] */ (xdc_Char)0x6e, /* [725] */ (xdc_Char)0x6e, /* [726] */ (xdc_Char)0x6f, /* [727] */ (xdc_Char)0x74, /* [728] */ (xdc_Char)0x20, /* [729] */ (xdc_Char)0x63, /* [730] */ (xdc_Char)0x72, /* [731] */ (xdc_Char)0x65, /* [732] */ (xdc_Char)0x61, /* [733] */ (xdc_Char)0x74, /* [734] */ (xdc_Char)0x65, /* [735] */ (xdc_Char)0x20, /* [736] */ (xdc_Char)0x61, /* [737] */ (xdc_Char)0x20, /* [738] */ (xdc_Char)0x63, /* [739] */ (xdc_Char)0x6c, /* [740] */ (xdc_Char)0x6f, /* [741] */ (xdc_Char)0x63, /* [742] */ (xdc_Char)0x6b, /* [743] */ (xdc_Char)0x20, /* [744] */ (xdc_Char)0x69, /* [745] */ (xdc_Char)0x6e, /* [746] */ (xdc_Char)0x73, /* [747] */ (xdc_Char)0x74, /* [748] */ (xdc_Char)0x61, /* [749] */ (xdc_Char)0x6e, /* [750] */ (xdc_Char)0x63, /* [751] */ (xdc_Char)0x65, /* [752] */ (xdc_Char)0x20, /* [753] */ (xdc_Char)0x77, /* [754] */ (xdc_Char)0x68, /* [755] */ (xdc_Char)0x65, /* [756] */ (xdc_Char)0x6e, /* [757] */ (xdc_Char)0x20, /* [758] */ (xdc_Char)0x42, /* [759] */ (xdc_Char)0x49, /* [760] */ (xdc_Char)0x4f, /* [761] */ (xdc_Char)0x53, /* [762] */ (xdc_Char)0x2e, /* [763] */ (xdc_Char)0x63, /* [764] */ (xdc_Char)0x6c, /* [765] */ (xdc_Char)0x6f, /* [766] */ (xdc_Char)0x63, /* [767] */ (xdc_Char)0x6b, /* [768] */ (xdc_Char)0x45, /* [769] */ (xdc_Char)0x6e, /* [770] */ (xdc_Char)0x61, /* [771] */ (xdc_Char)0x62, /* [772] */ (xdc_Char)0x6c, /* [773] */ (xdc_Char)0x65, /* [774] */ (xdc_Char)0x64, /* [775] */ (xdc_Char)0x20, /* [776] */ (xdc_Char)0x69, /* [777] */ (xdc_Char)0x73, /* [778] */ (xdc_Char)0x20, /* [779] */ (xdc_Char)0x66, /* [780] */ (xdc_Char)0x61, /* [781] */ (xdc_Char)0x6c, /* [782] */ (xdc_Char)0x73, /* [783] */ (xdc_Char)0x65, /* [784] */ (xdc_Char)0x2e, /* [785] */ (xdc_Char)0x0, /* [786] */ (xdc_Char)0x41, /* [787] */ (xdc_Char)0x5f, /* [788] */ (xdc_Char)0x62, /* [789] */ (xdc_Char)0x61, /* [790] */ (xdc_Char)0x64, /* [791] */ (xdc_Char)0x54, /* [792] */ (xdc_Char)0x68, /* [793] */ (xdc_Char)0x72, /* [794] */ (xdc_Char)0x65, /* [795] */ (xdc_Char)0x61, /* [796] */ (xdc_Char)0x64, /* [797] */ (xdc_Char)0x54, /* [798] */ (xdc_Char)0x79, /* [799] */ (xdc_Char)0x70, /* [800] */ (xdc_Char)0x65, /* [801] */ (xdc_Char)0x3a, /* [802] */ (xdc_Char)0x20, /* [803] */ (xdc_Char)0x43, /* [804] */ (xdc_Char)0x61, /* [805] */ (xdc_Char)0x6e, /* [806] */ (xdc_Char)0x6e, /* [807] */ (xdc_Char)0x6f, /* [808] */ (xdc_Char)0x74, /* [809] */ (xdc_Char)0x20, /* [810] */ (xdc_Char)0x63, /* [811] */ (xdc_Char)0x72, /* [812] */ (xdc_Char)0x65, /* [813] */ (xdc_Char)0x61, /* [814] */ (xdc_Char)0x74, /* [815] */ (xdc_Char)0x65, /* [816] */ (xdc_Char)0x2f, /* [817] */ (xdc_Char)0x64, /* [818] */ (xdc_Char)0x65, /* [819] */ (xdc_Char)0x6c, /* [820] */ (xdc_Char)0x65, /* [821] */ (xdc_Char)0x74, /* [822] */ (xdc_Char)0x65, /* [823] */ (xdc_Char)0x20, /* [824] */ (xdc_Char)0x61, /* [825] */ (xdc_Char)0x20, /* [826] */ (xdc_Char)0x43, /* [827] */ (xdc_Char)0x6c, /* [828] */ (xdc_Char)0x6f, /* [829] */ (xdc_Char)0x63, /* [830] */ (xdc_Char)0x6b, /* [831] */ (xdc_Char)0x20, /* [832] */ (xdc_Char)0x66, /* [833] */ (xdc_Char)0x72, /* [834] */ (xdc_Char)0x6f, /* [835] */ (xdc_Char)0x6d, /* [836] */ (xdc_Char)0x20, /* [837] */ (xdc_Char)0x48, /* [838] */ (xdc_Char)0x77, /* [839] */ (xdc_Char)0x69, /* [840] */ (xdc_Char)0x20, /* [841] */ (xdc_Char)0x6f, /* [842] */ (xdc_Char)0x72, /* [843] */ (xdc_Char)0x20, /* [844] */ (xdc_Char)0x53, /* [845] */ (xdc_Char)0x77, /* [846] */ (xdc_Char)0x69, /* [847] */ (xdc_Char)0x20, /* [848] */ (xdc_Char)0x74, /* [849] */ (xdc_Char)0x68, /* [850] */ (xdc_Char)0x72, /* [851] */ (xdc_Char)0x65, /* [852] */ (xdc_Char)0x61, /* [853] */ (xdc_Char)0x64, /* [854] */ (xdc_Char)0x2e, /* [855] */ (xdc_Char)0x0, /* [856] */ (xdc_Char)0x41, /* [857] */ (xdc_Char)0x5f, /* [858] */ (xdc_Char)0x6e, /* [859] */ (xdc_Char)0x75, /* [860] */ (xdc_Char)0x6c, /* [861] */ (xdc_Char)0x6c, /* [862] */ (xdc_Char)0x45, /* [863] */ (xdc_Char)0x76, /* [864] */ (xdc_Char)0x65, /* [865] */ (xdc_Char)0x6e, /* [866] */ (xdc_Char)0x74, /* [867] */ (xdc_Char)0x4d, /* [868] */ (xdc_Char)0x61, /* [869] */ (xdc_Char)0x73, /* [870] */ (xdc_Char)0x6b, /* [871] */ (xdc_Char)0x73, /* [872] */ (xdc_Char)0x3a, /* [873] */ (xdc_Char)0x20, /* [874] */ (xdc_Char)0x6f, /* [875] */ (xdc_Char)0x72, /* [876] */ (xdc_Char)0x4d, /* [877] */ (xdc_Char)0x61, /* [878] */ (xdc_Char)0x73, /* [879] */ (xdc_Char)0x6b, /* [880] */ (xdc_Char)0x20, /* [881] */ (xdc_Char)0x61, /* [882] */ (xdc_Char)0x6e, /* [883] */ (xdc_Char)0x64, /* [884] */ (xdc_Char)0x20, /* [885] */ (xdc_Char)0x61, /* [886] */ (xdc_Char)0x6e, /* [887] */ (xdc_Char)0x64, /* [888] */ (xdc_Char)0x4d, /* [889] */ (xdc_Char)0x61, /* [890] */ (xdc_Char)0x73, /* [891] */ (xdc_Char)0x6b, /* [892] */ (xdc_Char)0x20, /* [893] */ (xdc_Char)0x61, /* [894] */ (xdc_Char)0x72, /* [895] */ (xdc_Char)0x65, /* [896] */ (xdc_Char)0x20, /* [897] */ (xdc_Char)0x6e, /* [898] */ (xdc_Char)0x75, /* [899] */ (xdc_Char)0x6c, /* [900] */ (xdc_Char)0x6c, /* [901] */ (xdc_Char)0x2e, /* [902] */ (xdc_Char)0x0, /* [903] */ (xdc_Char)0x41, /* [904] */ (xdc_Char)0x5f, /* [905] */ (xdc_Char)0x6e, /* [906] */ (xdc_Char)0x75, /* [907] */ (xdc_Char)0x6c, /* [908] */ (xdc_Char)0x6c, /* [909] */ (xdc_Char)0x45, /* [910] */ (xdc_Char)0x76, /* [911] */ (xdc_Char)0x65, /* [912] */ (xdc_Char)0x6e, /* [913] */ (xdc_Char)0x74, /* [914] */ (xdc_Char)0x49, /* [915] */ (xdc_Char)0x64, /* [916] */ (xdc_Char)0x3a, /* [917] */ (xdc_Char)0x20, /* [918] */ (xdc_Char)0x70, /* [919] */ (xdc_Char)0x6f, /* [920] */ (xdc_Char)0x73, /* [921] */ (xdc_Char)0x74, /* [922] */ (xdc_Char)0x65, /* [923] */ (xdc_Char)0x64, /* [924] */ (xdc_Char)0x20, /* [925] */ (xdc_Char)0x65, /* [926] */ (xdc_Char)0x76, /* [927] */ (xdc_Char)0x65, /* [928] */ (xdc_Char)0x6e, /* [929] */ (xdc_Char)0x74, /* [930] */ (xdc_Char)0x49, /* [931] */ (xdc_Char)0x64, /* [932] */ (xdc_Char)0x20, /* [933] */ (xdc_Char)0x69, /* [934] */ (xdc_Char)0x73, /* [935] */ (xdc_Char)0x20, /* [936] */ (xdc_Char)0x6e, /* [937] */ (xdc_Char)0x75, /* [938] */ (xdc_Char)0x6c, /* [939] */ (xdc_Char)0x6c, /* [940] */ (xdc_Char)0x2e, /* [941] */ (xdc_Char)0x0, /* [942] */ (xdc_Char)0x41, /* [943] */ (xdc_Char)0x5f, /* [944] */ (xdc_Char)0x65, /* [945] */ (xdc_Char)0x76, /* [946] */ (xdc_Char)0x65, /* [947] */ (xdc_Char)0x6e, /* [948] */ (xdc_Char)0x74, /* [949] */ (xdc_Char)0x49, /* [950] */ (xdc_Char)0x6e, /* [951] */ (xdc_Char)0x55, /* [952] */ (xdc_Char)0x73, /* [953] */ (xdc_Char)0x65, /* [954] */ (xdc_Char)0x3a, /* [955] */ (xdc_Char)0x20, /* [956] */ (xdc_Char)0x45, /* [957] */ (xdc_Char)0x76, /* [958] */ (xdc_Char)0x65, /* [959] */ (xdc_Char)0x6e, /* [960] */ (xdc_Char)0x74, /* [961] */ (xdc_Char)0x20, /* [962] */ (xdc_Char)0x6f, /* [963] */ (xdc_Char)0x62, /* [964] */ (xdc_Char)0x6a, /* [965] */ (xdc_Char)0x65, /* [966] */ (xdc_Char)0x63, /* [967] */ (xdc_Char)0x74, /* [968] */ (xdc_Char)0x20, /* [969] */ (xdc_Char)0x61, /* [970] */ (xdc_Char)0x6c, /* [971] */ (xdc_Char)0x72, /* [972] */ (xdc_Char)0x65, /* [973] */ (xdc_Char)0x61, /* [974] */ (xdc_Char)0x64, /* [975] */ (xdc_Char)0x79, /* [976] */ (xdc_Char)0x20, /* [977] */ (xdc_Char)0x69, /* [978] */ (xdc_Char)0x6e, /* [979] */ (xdc_Char)0x20, /* [980] */ (xdc_Char)0x75, /* [981] */ (xdc_Char)0x73, /* [982] */ (xdc_Char)0x65, /* [983] */ (xdc_Char)0x2e, /* [984] */ (xdc_Char)0x0, /* [985] */ (xdc_Char)0x41, /* [986] */ (xdc_Char)0x5f, /* [987] */ (xdc_Char)0x62, /* [988] */ (xdc_Char)0x61, /* [989] */ (xdc_Char)0x64, /* [990] */ (xdc_Char)0x43, /* [991] */ (xdc_Char)0x6f, /* [992] */ (xdc_Char)0x6e, /* [993] */ (xdc_Char)0x74, /* [994] */ (xdc_Char)0x65, /* [995] */ (xdc_Char)0x78, /* [996] */ (xdc_Char)0x74, /* [997] */ (xdc_Char)0x3a, /* [998] */ (xdc_Char)0x20, /* [999] */ (xdc_Char)0x62, /* [1000] */ (xdc_Char)0x61, /* [1001] */ (xdc_Char)0x64, /* [1002] */ (xdc_Char)0x20, /* [1003] */ (xdc_Char)0x63, /* [1004] */ (xdc_Char)0x61, /* [1005] */ (xdc_Char)0x6c, /* [1006] */ (xdc_Char)0x6c, /* [1007] */ (xdc_Char)0x69, /* [1008] */ (xdc_Char)0x6e, /* [1009] */ (xdc_Char)0x67, /* [1010] */ (xdc_Char)0x20, /* [1011] */ (xdc_Char)0x63, /* [1012] */ (xdc_Char)0x6f, /* [1013] */ (xdc_Char)0x6e, /* [1014] */ (xdc_Char)0x74, /* [1015] */ (xdc_Char)0x65, /* [1016] */ (xdc_Char)0x78, /* [1017] */ (xdc_Char)0x74, /* [1018] */ (xdc_Char)0x2e, /* [1019] */ (xdc_Char)0x20, /* [1020] */ (xdc_Char)0x4d, /* [1021] */ (xdc_Char)0x75, /* [1022] */ (xdc_Char)0x73, /* [1023] */ (xdc_Char)0x74, /* [1024] */ (xdc_Char)0x20, /* [1025] */ (xdc_Char)0x62, /* [1026] */ (xdc_Char)0x65, /* [1027] */ (xdc_Char)0x20, /* [1028] */ (xdc_Char)0x63, /* [1029] */ (xdc_Char)0x61, /* [1030] */ (xdc_Char)0x6c, /* [1031] */ (xdc_Char)0x6c, /* [1032] */ (xdc_Char)0x65, /* [1033] */ (xdc_Char)0x64, /* [1034] */ (xdc_Char)0x20, /* [1035] */ (xdc_Char)0x66, /* [1036] */ (xdc_Char)0x72, /* [1037] */ (xdc_Char)0x6f, /* [1038] */ (xdc_Char)0x6d, /* [1039] */ (xdc_Char)0x20, /* [1040] */ (xdc_Char)0x61, /* [1041] */ (xdc_Char)0x20, /* [1042] */ (xdc_Char)0x54, /* [1043] */ (xdc_Char)0x61, /* [1044] */ (xdc_Char)0x73, /* [1045] */ (xdc_Char)0x6b, /* [1046] */ (xdc_Char)0x2e, /* [1047] */ (xdc_Char)0x0, /* [1048] */ (xdc_Char)0x41, /* [1049] */ (xdc_Char)0x5f, /* [1050] */ (xdc_Char)0x70, /* [1051] */ (xdc_Char)0x65, /* [1052] */ (xdc_Char)0x6e, /* [1053] */ (xdc_Char)0x64, /* [1054] */ (xdc_Char)0x54, /* [1055] */ (xdc_Char)0x61, /* [1056] */ (xdc_Char)0x73, /* [1057] */ (xdc_Char)0x6b, /* [1058] */ (xdc_Char)0x44, /* [1059] */ (xdc_Char)0x69, /* [1060] */ (xdc_Char)0x73, /* [1061] */ (xdc_Char)0x61, /* [1062] */ (xdc_Char)0x62, /* [1063] */ (xdc_Char)0x6c, /* [1064] */ (xdc_Char)0x65, /* [1065] */ (xdc_Char)0x64, /* [1066] */ (xdc_Char)0x3a, /* [1067] */ (xdc_Char)0x20, /* [1068] */ (xdc_Char)0x43, /* [1069] */ (xdc_Char)0x61, /* [1070] */ (xdc_Char)0x6e, /* [1071] */ (xdc_Char)0x6e, /* [1072] */ (xdc_Char)0x6f, /* [1073] */ (xdc_Char)0x74, /* [1074] */ (xdc_Char)0x20, /* [1075] */ (xdc_Char)0x63, /* [1076] */ (xdc_Char)0x61, /* [1077] */ (xdc_Char)0x6c, /* [1078] */ (xdc_Char)0x6c, /* [1079] */ (xdc_Char)0x20, /* [1080] */ (xdc_Char)0x45, /* [1081] */ (xdc_Char)0x76, /* [1082] */ (xdc_Char)0x65, /* [1083] */ (xdc_Char)0x6e, /* [1084] */ (xdc_Char)0x74, /* [1085] */ (xdc_Char)0x5f, /* [1086] */ (xdc_Char)0x70, /* [1087] */ (xdc_Char)0x65, /* [1088] */ (xdc_Char)0x6e, /* [1089] */ (xdc_Char)0x64, /* [1090] */ (xdc_Char)0x28, /* [1091] */ (xdc_Char)0x29, /* [1092] */ (xdc_Char)0x20, /* [1093] */ (xdc_Char)0x77, /* [1094] */ (xdc_Char)0x68, /* [1095] */ (xdc_Char)0x69, /* [1096] */ (xdc_Char)0x6c, /* [1097] */ (xdc_Char)0x65, /* [1098] */ (xdc_Char)0x20, /* [1099] */ (xdc_Char)0x74, /* [1100] */ (xdc_Char)0x68, /* [1101] */ (xdc_Char)0x65, /* [1102] */ (xdc_Char)0x20, /* [1103] */ (xdc_Char)0x54, /* [1104] */ (xdc_Char)0x61, /* [1105] */ (xdc_Char)0x73, /* [1106] */ (xdc_Char)0x6b, /* [1107] */ (xdc_Char)0x20, /* [1108] */ (xdc_Char)0x6f, /* [1109] */ (xdc_Char)0x72, /* [1110] */ (xdc_Char)0x20, /* [1111] */ (xdc_Char)0x53, /* [1112] */ (xdc_Char)0x77, /* [1113] */ (xdc_Char)0x69, /* [1114] */ (xdc_Char)0x20, /* [1115] */ (xdc_Char)0x73, /* [1116] */ (xdc_Char)0x63, /* [1117] */ (xdc_Char)0x68, /* [1118] */ (xdc_Char)0x65, /* [1119] */ (xdc_Char)0x64, /* [1120] */ (xdc_Char)0x75, /* [1121] */ (xdc_Char)0x6c, /* [1122] */ (xdc_Char)0x65, /* [1123] */ (xdc_Char)0x72, /* [1124] */ (xdc_Char)0x20, /* [1125] */ (xdc_Char)0x69, /* [1126] */ (xdc_Char)0x73, /* [1127] */ (xdc_Char)0x20, /* [1128] */ (xdc_Char)0x64, /* [1129] */ (xdc_Char)0x69, /* [1130] */ (xdc_Char)0x73, /* [1131] */ (xdc_Char)0x61, /* [1132] */ (xdc_Char)0x62, /* [1133] */ (xdc_Char)0x6c, /* [1134] */ (xdc_Char)0x65, /* [1135] */ (xdc_Char)0x64, /* [1136] */ (xdc_Char)0x2e, /* [1137] */ (xdc_Char)0x0, /* [1138] */ (xdc_Char)0x4d, /* [1139] */ (xdc_Char)0x61, /* [1140] */ (xdc_Char)0x69, /* [1141] */ (xdc_Char)0x6c, /* [1142] */ (xdc_Char)0x62, /* [1143] */ (xdc_Char)0x6f, /* [1144] */ (xdc_Char)0x78, /* [1145] */ (xdc_Char)0x5f, /* [1146] */ (xdc_Char)0x63, /* [1147] */ (xdc_Char)0x72, /* [1148] */ (xdc_Char)0x65, /* [1149] */ (xdc_Char)0x61, /* [1150] */ (xdc_Char)0x74, /* [1151] */ (xdc_Char)0x65, /* [1152] */ (xdc_Char)0x27, /* [1153] */ (xdc_Char)0x73, /* [1154] */ (xdc_Char)0x20, /* [1155] */ (xdc_Char)0x62, /* [1156] */ (xdc_Char)0x75, /* [1157] */ (xdc_Char)0x66, /* [1158] */ (xdc_Char)0x53, /* [1159] */ (xdc_Char)0x69, /* [1160] */ (xdc_Char)0x7a, /* [1161] */ (xdc_Char)0x65, /* [1162] */ (xdc_Char)0x20, /* [1163] */ (xdc_Char)0x70, /* [1164] */ (xdc_Char)0x61, /* [1165] */ (xdc_Char)0x72, /* [1166] */ (xdc_Char)0x61, /* [1167] */ (xdc_Char)0x6d, /* [1168] */ (xdc_Char)0x65, /* [1169] */ (xdc_Char)0x74, /* [1170] */ (xdc_Char)0x65, /* [1171] */ (xdc_Char)0x72, /* [1172] */ (xdc_Char)0x20, /* [1173] */ (xdc_Char)0x69, /* [1174] */ (xdc_Char)0x73, /* [1175] */ (xdc_Char)0x20, /* [1176] */ (xdc_Char)0x69, /* [1177] */ (xdc_Char)0x6e, /* [1178] */ (xdc_Char)0x76, /* [1179] */ (xdc_Char)0x61, /* [1180] */ (xdc_Char)0x6c, /* [1181] */ (xdc_Char)0x69, /* [1182] */ (xdc_Char)0x64, /* [1183] */ (xdc_Char)0x20, /* [1184] */ (xdc_Char)0x28, /* [1185] */ (xdc_Char)0x74, /* [1186] */ (xdc_Char)0x6f, /* [1187] */ (xdc_Char)0x6f, /* [1188] */ (xdc_Char)0x20, /* [1189] */ (xdc_Char)0x73, /* [1190] */ (xdc_Char)0x6d, /* [1191] */ (xdc_Char)0x61, /* [1192] */ (xdc_Char)0x6c, /* [1193] */ (xdc_Char)0x6c, /* [1194] */ (xdc_Char)0x29, /* [1195] */ (xdc_Char)0x0, /* [1196] */ (xdc_Char)0x41, /* [1197] */ (xdc_Char)0x5f, /* [1198] */ (xdc_Char)0x6e, /* [1199] */ (xdc_Char)0x6f, /* [1200] */ (xdc_Char)0x45, /* [1201] */ (xdc_Char)0x76, /* [1202] */ (xdc_Char)0x65, /* [1203] */ (xdc_Char)0x6e, /* [1204] */ (xdc_Char)0x74, /* [1205] */ (xdc_Char)0x73, /* [1206] */ (xdc_Char)0x3a, /* [1207] */ (xdc_Char)0x20, /* [1208] */ (xdc_Char)0x54, /* [1209] */ (xdc_Char)0x68, /* [1210] */ (xdc_Char)0x65, /* [1211] */ (xdc_Char)0x20, /* [1212] */ (xdc_Char)0x45, /* [1213] */ (xdc_Char)0x76, /* [1214] */ (xdc_Char)0x65, /* [1215] */ (xdc_Char)0x6e, /* [1216] */ (xdc_Char)0x74, /* [1217] */ (xdc_Char)0x2e, /* [1218] */ (xdc_Char)0x73, /* [1219] */ (xdc_Char)0x75, /* [1220] */ (xdc_Char)0x70, /* [1221] */ (xdc_Char)0x70, /* [1222] */ (xdc_Char)0x6f, /* [1223] */ (xdc_Char)0x72, /* [1224] */ (xdc_Char)0x74, /* [1225] */ (xdc_Char)0x73, /* [1226] */ (xdc_Char)0x45, /* [1227] */ (xdc_Char)0x76, /* [1228] */ (xdc_Char)0x65, /* [1229] */ (xdc_Char)0x6e, /* [1230] */ (xdc_Char)0x74, /* [1231] */ (xdc_Char)0x73, /* [1232] */ (xdc_Char)0x20, /* [1233] */ (xdc_Char)0x66, /* [1234] */ (xdc_Char)0x6c, /* [1235] */ (xdc_Char)0x61, /* [1236] */ (xdc_Char)0x67, /* [1237] */ (xdc_Char)0x20, /* [1238] */ (xdc_Char)0x69, /* [1239] */ (xdc_Char)0x73, /* [1240] */ (xdc_Char)0x20, /* [1241] */ (xdc_Char)0x64, /* [1242] */ (xdc_Char)0x69, /* [1243] */ (xdc_Char)0x73, /* [1244] */ (xdc_Char)0x61, /* [1245] */ (xdc_Char)0x62, /* [1246] */ (xdc_Char)0x6c, /* [1247] */ (xdc_Char)0x65, /* [1248] */ (xdc_Char)0x64, /* [1249] */ (xdc_Char)0x2e, /* [1250] */ (xdc_Char)0x0, /* [1251] */ (xdc_Char)0x41, /* [1252] */ (xdc_Char)0x5f, /* [1253] */ (xdc_Char)0x69, /* [1254] */ (xdc_Char)0x6e, /* [1255] */ (xdc_Char)0x76, /* [1256] */ (xdc_Char)0x54, /* [1257] */ (xdc_Char)0x69, /* [1258] */ (xdc_Char)0x6d, /* [1259] */ (xdc_Char)0x65, /* [1260] */ (xdc_Char)0x6f, /* [1261] */ (xdc_Char)0x75, /* [1262] */ (xdc_Char)0x74, /* [1263] */ (xdc_Char)0x3a, /* [1264] */ (xdc_Char)0x20, /* [1265] */ (xdc_Char)0x43, /* [1266] */ (xdc_Char)0x61, /* [1267] */ (xdc_Char)0x6e, /* [1268] */ (xdc_Char)0x27, /* [1269] */ (xdc_Char)0x74, /* [1270] */ (xdc_Char)0x20, /* [1271] */ (xdc_Char)0x75, /* [1272] */ (xdc_Char)0x73, /* [1273] */ (xdc_Char)0x65, /* [1274] */ (xdc_Char)0x20, /* [1275] */ (xdc_Char)0x42, /* [1276] */ (xdc_Char)0x49, /* [1277] */ (xdc_Char)0x4f, /* [1278] */ (xdc_Char)0x53, /* [1279] */ (xdc_Char)0x5f, /* [1280] */ (xdc_Char)0x45, /* [1281] */ (xdc_Char)0x56, /* [1282] */ (xdc_Char)0x45, /* [1283] */ (xdc_Char)0x4e, /* [1284] */ (xdc_Char)0x54, /* [1285] */ (xdc_Char)0x5f, /* [1286] */ (xdc_Char)0x41, /* [1287] */ (xdc_Char)0x43, /* [1288] */ (xdc_Char)0x51, /* [1289] */ (xdc_Char)0x55, /* [1290] */ (xdc_Char)0x49, /* [1291] */ (xdc_Char)0x52, /* [1292] */ (xdc_Char)0x45, /* [1293] */ (xdc_Char)0x44, /* [1294] */ (xdc_Char)0x20, /* [1295] */ (xdc_Char)0x77, /* [1296] */ (xdc_Char)0x69, /* [1297] */ (xdc_Char)0x74, /* [1298] */ (xdc_Char)0x68, /* [1299] */ (xdc_Char)0x20, /* [1300] */ (xdc_Char)0x74, /* [1301] */ (xdc_Char)0x68, /* [1302] */ (xdc_Char)0x69, /* [1303] */ (xdc_Char)0x73, /* [1304] */ (xdc_Char)0x20, /* [1305] */ (xdc_Char)0x53, /* [1306] */ (xdc_Char)0x65, /* [1307] */ (xdc_Char)0x6d, /* [1308] */ (xdc_Char)0x61, /* [1309] */ (xdc_Char)0x70, /* [1310] */ (xdc_Char)0x68, /* [1311] */ (xdc_Char)0x6f, /* [1312] */ (xdc_Char)0x72, /* [1313] */ (xdc_Char)0x65, /* [1314] */ (xdc_Char)0x2e, /* [1315] */ (xdc_Char)0x0, /* [1316] */ (xdc_Char)0x41, /* [1317] */ (xdc_Char)0x5f, /* [1318] */ (xdc_Char)0x6f, /* [1319] */ (xdc_Char)0x76, /* [1320] */ (xdc_Char)0x65, /* [1321] */ (xdc_Char)0x72, /* [1322] */ (xdc_Char)0x66, /* [1323] */ (xdc_Char)0x6c, /* [1324] */ (xdc_Char)0x6f, /* [1325] */ (xdc_Char)0x77, /* [1326] */ (xdc_Char)0x3a, /* [1327] */ (xdc_Char)0x20, /* [1328] */ (xdc_Char)0x43, /* [1329] */ (xdc_Char)0x6f, /* [1330] */ (xdc_Char)0x75, /* [1331] */ (xdc_Char)0x6e, /* [1332] */ (xdc_Char)0x74, /* [1333] */ (xdc_Char)0x20, /* [1334] */ (xdc_Char)0x68, /* [1335] */ (xdc_Char)0x61, /* [1336] */ (xdc_Char)0x73, /* [1337] */ (xdc_Char)0x20, /* [1338] */ (xdc_Char)0x65, /* [1339] */ (xdc_Char)0x78, /* [1340] */ (xdc_Char)0x63, /* [1341] */ (xdc_Char)0x65, /* [1342] */ (xdc_Char)0x65, /* [1343] */ (xdc_Char)0x64, /* [1344] */ (xdc_Char)0x65, /* [1345] */ (xdc_Char)0x64, /* [1346] */ (xdc_Char)0x20, /* [1347] */ (xdc_Char)0x36, /* [1348] */ (xdc_Char)0x35, /* [1349] */ (xdc_Char)0x35, /* [1350] */ (xdc_Char)0x33, /* [1351] */ (xdc_Char)0x35, /* [1352] */ (xdc_Char)0x20, /* [1353] */ (xdc_Char)0x61, /* [1354] */ (xdc_Char)0x6e, /* [1355] */ (xdc_Char)0x64, /* [1356] */ (xdc_Char)0x20, /* [1357] */ (xdc_Char)0x72, /* [1358] */ (xdc_Char)0x6f, /* [1359] */ (xdc_Char)0x6c, /* [1360] */ (xdc_Char)0x6c, /* [1361] */ (xdc_Char)0x65, /* [1362] */ (xdc_Char)0x64, /* [1363] */ (xdc_Char)0x20, /* [1364] */ (xdc_Char)0x6f, /* [1365] */ (xdc_Char)0x76, /* [1366] */ (xdc_Char)0x65, /* [1367] */ (xdc_Char)0x72, /* [1368] */ (xdc_Char)0x2e, /* [1369] */ (xdc_Char)0x0, /* [1370] */ (xdc_Char)0x41, /* [1371] */ (xdc_Char)0x5f, /* [1372] */ (xdc_Char)0x70, /* [1373] */ (xdc_Char)0x65, /* [1374] */ (xdc_Char)0x6e, /* [1375] */ (xdc_Char)0x64, /* [1376] */ (xdc_Char)0x54, /* [1377] */ (xdc_Char)0x61, /* [1378] */ (xdc_Char)0x73, /* [1379] */ (xdc_Char)0x6b, /* [1380] */ (xdc_Char)0x44, /* [1381] */ (xdc_Char)0x69, /* [1382] */ (xdc_Char)0x73, /* [1383] */ (xdc_Char)0x61, /* [1384] */ (xdc_Char)0x62, /* [1385] */ (xdc_Char)0x6c, /* [1386] */ (xdc_Char)0x65, /* [1387] */ (xdc_Char)0x64, /* [1388] */ (xdc_Char)0x3a, /* [1389] */ (xdc_Char)0x20, /* [1390] */ (xdc_Char)0x43, /* [1391] */ (xdc_Char)0x61, /* [1392] */ (xdc_Char)0x6e, /* [1393] */ (xdc_Char)0x6e, /* [1394] */ (xdc_Char)0x6f, /* [1395] */ (xdc_Char)0x74, /* [1396] */ (xdc_Char)0x20, /* [1397] */ (xdc_Char)0x63, /* [1398] */ (xdc_Char)0x61, /* [1399] */ (xdc_Char)0x6c, /* [1400] */ (xdc_Char)0x6c, /* [1401] */ (xdc_Char)0x20, /* [1402] */ (xdc_Char)0x53, /* [1403] */ (xdc_Char)0x65, /* [1404] */ (xdc_Char)0x6d, /* [1405] */ (xdc_Char)0x61, /* [1406] */ (xdc_Char)0x70, /* [1407] */ (xdc_Char)0x68, /* [1408] */ (xdc_Char)0x6f, /* [1409] */ (xdc_Char)0x72, /* [1410] */ (xdc_Char)0x65, /* [1411] */ (xdc_Char)0x5f, /* [1412] */ (xdc_Char)0x70, /* [1413] */ (xdc_Char)0x65, /* [1414] */ (xdc_Char)0x6e, /* [1415] */ (xdc_Char)0x64, /* [1416] */ (xdc_Char)0x28, /* [1417] */ (xdc_Char)0x29, /* [1418] */ (xdc_Char)0x20, /* [1419] */ (xdc_Char)0x77, /* [1420] */ (xdc_Char)0x68, /* [1421] */ (xdc_Char)0x69, /* [1422] */ (xdc_Char)0x6c, /* [1423] */ (xdc_Char)0x65, /* [1424] */ (xdc_Char)0x20, /* [1425] */ (xdc_Char)0x74, /* [1426] */ (xdc_Char)0x68, /* [1427] */ (xdc_Char)0x65, /* [1428] */ (xdc_Char)0x20, /* [1429] */ (xdc_Char)0x54, /* [1430] */ (xdc_Char)0x61, /* [1431] */ (xdc_Char)0x73, /* [1432] */ (xdc_Char)0x6b, /* [1433] */ (xdc_Char)0x20, /* [1434] */ (xdc_Char)0x6f, /* [1435] */ (xdc_Char)0x72, /* [1436] */ (xdc_Char)0x20, /* [1437] */ (xdc_Char)0x53, /* [1438] */ (xdc_Char)0x77, /* [1439] */ (xdc_Char)0x69, /* [1440] */ (xdc_Char)0x20, /* [1441] */ (xdc_Char)0x73, /* [1442] */ (xdc_Char)0x63, /* [1443] */ (xdc_Char)0x68, /* [1444] */ (xdc_Char)0x65, /* [1445] */ (xdc_Char)0x64, /* [1446] */ (xdc_Char)0x75, /* [1447] */ (xdc_Char)0x6c, /* [1448] */ (xdc_Char)0x65, /* [1449] */ (xdc_Char)0x72, /* [1450] */ (xdc_Char)0x20, /* [1451] */ (xdc_Char)0x69, /* [1452] */ (xdc_Char)0x73, /* [1453] */ (xdc_Char)0x20, /* [1454] */ (xdc_Char)0x64, /* [1455] */ (xdc_Char)0x69, /* [1456] */ (xdc_Char)0x73, /* [1457] */ (xdc_Char)0x61, /* [1458] */ (xdc_Char)0x62, /* [1459] */ (xdc_Char)0x6c, /* [1460] */ (xdc_Char)0x65, /* [1461] */ (xdc_Char)0x64, /* [1462] */ (xdc_Char)0x2e, /* [1463] */ (xdc_Char)0x0, /* [1464] */ (xdc_Char)0x41, /* [1465] */ (xdc_Char)0x5f, /* [1466] */ (xdc_Char)0x73, /* [1467] */ (xdc_Char)0x77, /* [1468] */ (xdc_Char)0x69, /* [1469] */ (xdc_Char)0x44, /* [1470] */ (xdc_Char)0x69, /* [1471] */ (xdc_Char)0x73, /* [1472] */ (xdc_Char)0x61, /* [1473] */ (xdc_Char)0x62, /* [1474] */ (xdc_Char)0x6c, /* [1475] */ (xdc_Char)0x65, /* [1476] */ (xdc_Char)0x64, /* [1477] */ (xdc_Char)0x3a, /* [1478] */ (xdc_Char)0x20, /* [1479] */ (xdc_Char)0x43, /* [1480] */ (xdc_Char)0x61, /* [1481] */ (xdc_Char)0x6e, /* [1482] */ (xdc_Char)0x6e, /* [1483] */ (xdc_Char)0x6f, /* [1484] */ (xdc_Char)0x74, /* [1485] */ (xdc_Char)0x20, /* [1486] */ (xdc_Char)0x63, /* [1487] */ (xdc_Char)0x72, /* [1488] */ (xdc_Char)0x65, /* [1489] */ (xdc_Char)0x61, /* [1490] */ (xdc_Char)0x74, /* [1491] */ (xdc_Char)0x65, /* [1492] */ (xdc_Char)0x20, /* [1493] */ (xdc_Char)0x61, /* [1494] */ (xdc_Char)0x20, /* [1495] */ (xdc_Char)0x53, /* [1496] */ (xdc_Char)0x77, /* [1497] */ (xdc_Char)0x69, /* [1498] */ (xdc_Char)0x20, /* [1499] */ (xdc_Char)0x77, /* [1500] */ (xdc_Char)0x68, /* [1501] */ (xdc_Char)0x65, /* [1502] */ (xdc_Char)0x6e, /* [1503] */ (xdc_Char)0x20, /* [1504] */ (xdc_Char)0x53, /* [1505] */ (xdc_Char)0x77, /* [1506] */ (xdc_Char)0x69, /* [1507] */ (xdc_Char)0x20, /* [1508] */ (xdc_Char)0x69, /* [1509] */ (xdc_Char)0x73, /* [1510] */ (xdc_Char)0x20, /* [1511] */ (xdc_Char)0x64, /* [1512] */ (xdc_Char)0x69, /* [1513] */ (xdc_Char)0x73, /* [1514] */ (xdc_Char)0x61, /* [1515] */ (xdc_Char)0x62, /* [1516] */ (xdc_Char)0x6c, /* [1517] */ (xdc_Char)0x65, /* [1518] */ (xdc_Char)0x64, /* [1519] */ (xdc_Char)0x2e, /* [1520] */ (xdc_Char)0x0, /* [1521] */ (xdc_Char)0x41, /* [1522] */ (xdc_Char)0x5f, /* [1523] */ (xdc_Char)0x62, /* [1524] */ (xdc_Char)0x61, /* [1525] */ (xdc_Char)0x64, /* [1526] */ (xdc_Char)0x50, /* [1527] */ (xdc_Char)0x72, /* [1528] */ (xdc_Char)0x69, /* [1529] */ (xdc_Char)0x6f, /* [1530] */ (xdc_Char)0x72, /* [1531] */ (xdc_Char)0x69, /* [1532] */ (xdc_Char)0x74, /* [1533] */ (xdc_Char)0x79, /* [1534] */ (xdc_Char)0x3a, /* [1535] */ (xdc_Char)0x20, /* [1536] */ (xdc_Char)0x41, /* [1537] */ (xdc_Char)0x6e, /* [1538] */ (xdc_Char)0x20, /* [1539] */ (xdc_Char)0x69, /* [1540] */ (xdc_Char)0x6e, /* [1541] */ (xdc_Char)0x76, /* [1542] */ (xdc_Char)0x61, /* [1543] */ (xdc_Char)0x6c, /* [1544] */ (xdc_Char)0x69, /* [1545] */ (xdc_Char)0x64, /* [1546] */ (xdc_Char)0x20, /* [1547] */ (xdc_Char)0x53, /* [1548] */ (xdc_Char)0x77, /* [1549] */ (xdc_Char)0x69, /* [1550] */ (xdc_Char)0x20, /* [1551] */ (xdc_Char)0x70, /* [1552] */ (xdc_Char)0x72, /* [1553] */ (xdc_Char)0x69, /* [1554] */ (xdc_Char)0x6f, /* [1555] */ (xdc_Char)0x72, /* [1556] */ (xdc_Char)0x69, /* [1557] */ (xdc_Char)0x74, /* [1558] */ (xdc_Char)0x79, /* [1559] */ (xdc_Char)0x20, /* [1560] */ (xdc_Char)0x77, /* [1561] */ (xdc_Char)0x61, /* [1562] */ (xdc_Char)0x73, /* [1563] */ (xdc_Char)0x20, /* [1564] */ (xdc_Char)0x75, /* [1565] */ (xdc_Char)0x73, /* [1566] */ (xdc_Char)0x65, /* [1567] */ (xdc_Char)0x64, /* [1568] */ (xdc_Char)0x2e, /* [1569] */ (xdc_Char)0x0, /* [1570] */ (xdc_Char)0x41, /* [1571] */ (xdc_Char)0x5f, /* [1572] */ (xdc_Char)0x62, /* [1573] */ (xdc_Char)0x61, /* [1574] */ (xdc_Char)0x64, /* [1575] */ (xdc_Char)0x54, /* [1576] */ (xdc_Char)0x68, /* [1577] */ (xdc_Char)0x72, /* [1578] */ (xdc_Char)0x65, /* [1579] */ (xdc_Char)0x61, /* [1580] */ (xdc_Char)0x64, /* [1581] */ (xdc_Char)0x54, /* [1582] */ (xdc_Char)0x79, /* [1583] */ (xdc_Char)0x70, /* [1584] */ (xdc_Char)0x65, /* [1585] */ (xdc_Char)0x3a, /* [1586] */ (xdc_Char)0x20, /* [1587] */ (xdc_Char)0x43, /* [1588] */ (xdc_Char)0x61, /* [1589] */ (xdc_Char)0x6e, /* [1590] */ (xdc_Char)0x6e, /* [1591] */ (xdc_Char)0x6f, /* [1592] */ (xdc_Char)0x74, /* [1593] */ (xdc_Char)0x20, /* [1594] */ (xdc_Char)0x63, /* [1595] */ (xdc_Char)0x72, /* [1596] */ (xdc_Char)0x65, /* [1597] */ (xdc_Char)0x61, /* [1598] */ (xdc_Char)0x74, /* [1599] */ (xdc_Char)0x65, /* [1600] */ (xdc_Char)0x2f, /* [1601] */ (xdc_Char)0x64, /* [1602] */ (xdc_Char)0x65, /* [1603] */ (xdc_Char)0x6c, /* [1604] */ (xdc_Char)0x65, /* [1605] */ (xdc_Char)0x74, /* [1606] */ (xdc_Char)0x65, /* [1607] */ (xdc_Char)0x20, /* [1608] */ (xdc_Char)0x61, /* [1609] */ (xdc_Char)0x20, /* [1610] */ (xdc_Char)0x74, /* [1611] */ (xdc_Char)0x61, /* [1612] */ (xdc_Char)0x73, /* [1613] */ (xdc_Char)0x6b, /* [1614] */ (xdc_Char)0x20, /* [1615] */ (xdc_Char)0x66, /* [1616] */ (xdc_Char)0x72, /* [1617] */ (xdc_Char)0x6f, /* [1618] */ (xdc_Char)0x6d, /* [1619] */ (xdc_Char)0x20, /* [1620] */ (xdc_Char)0x48, /* [1621] */ (xdc_Char)0x77, /* [1622] */ (xdc_Char)0x69, /* [1623] */ (xdc_Char)0x20, /* [1624] */ (xdc_Char)0x6f, /* [1625] */ (xdc_Char)0x72, /* [1626] */ (xdc_Char)0x20, /* [1627] */ (xdc_Char)0x53, /* [1628] */ (xdc_Char)0x77, /* [1629] */ (xdc_Char)0x69, /* [1630] */ (xdc_Char)0x20, /* [1631] */ (xdc_Char)0x74, /* [1632] */ (xdc_Char)0x68, /* [1633] */ (xdc_Char)0x72, /* [1634] */ (xdc_Char)0x65, /* [1635] */ (xdc_Char)0x61, /* [1636] */ (xdc_Char)0x64, /* [1637] */ (xdc_Char)0x2e, /* [1638] */ (xdc_Char)0x0, /* [1639] */ (xdc_Char)0x41, /* [1640] */ (xdc_Char)0x5f, /* [1641] */ (xdc_Char)0x62, /* [1642] */ (xdc_Char)0x61, /* [1643] */ (xdc_Char)0x64, /* [1644] */ (xdc_Char)0x54, /* [1645] */ (xdc_Char)0x61, /* [1646] */ (xdc_Char)0x73, /* [1647] */ (xdc_Char)0x6b, /* [1648] */ (xdc_Char)0x53, /* [1649] */ (xdc_Char)0x74, /* [1650] */ (xdc_Char)0x61, /* [1651] */ (xdc_Char)0x74, /* [1652] */ (xdc_Char)0x65, /* [1653] */ (xdc_Char)0x3a, /* [1654] */ (xdc_Char)0x20, /* [1655] */ (xdc_Char)0x43, /* [1656] */ (xdc_Char)0x61, /* [1657] */ (xdc_Char)0x6e, /* [1658] */ (xdc_Char)0x27, /* [1659] */ (xdc_Char)0x74, /* [1660] */ (xdc_Char)0x20, /* [1661] */ (xdc_Char)0x64, /* [1662] */ (xdc_Char)0x65, /* [1663] */ (xdc_Char)0x6c, /* [1664] */ (xdc_Char)0x65, /* [1665] */ (xdc_Char)0x74, /* [1666] */ (xdc_Char)0x65, /* [1667] */ (xdc_Char)0x20, /* [1668] */ (xdc_Char)0x61, /* [1669] */ (xdc_Char)0x20, /* [1670] */ (xdc_Char)0x74, /* [1671] */ (xdc_Char)0x61, /* [1672] */ (xdc_Char)0x73, /* [1673] */ (xdc_Char)0x6b, /* [1674] */ (xdc_Char)0x20, /* [1675] */ (xdc_Char)0x69, /* [1676] */ (xdc_Char)0x6e, /* [1677] */ (xdc_Char)0x20, /* [1678] */ (xdc_Char)0x52, /* [1679] */ (xdc_Char)0x55, /* [1680] */ (xdc_Char)0x4e, /* [1681] */ (xdc_Char)0x4e, /* [1682] */ (xdc_Char)0x49, /* [1683] */ (xdc_Char)0x4e, /* [1684] */ (xdc_Char)0x47, /* [1685] */ (xdc_Char)0x20, /* [1686] */ (xdc_Char)0x73, /* [1687] */ (xdc_Char)0x74, /* [1688] */ (xdc_Char)0x61, /* [1689] */ (xdc_Char)0x74, /* [1690] */ (xdc_Char)0x65, /* [1691] */ (xdc_Char)0x2e, /* [1692] */ (xdc_Char)0x0, /* [1693] */ (xdc_Char)0x41, /* [1694] */ (xdc_Char)0x5f, /* [1695] */ (xdc_Char)0x6e, /* [1696] */ (xdc_Char)0x6f, /* [1697] */ (xdc_Char)0x50, /* [1698] */ (xdc_Char)0x65, /* [1699] */ (xdc_Char)0x6e, /* [1700] */ (xdc_Char)0x64, /* [1701] */ (xdc_Char)0x45, /* [1702] */ (xdc_Char)0x6c, /* [1703] */ (xdc_Char)0x65, /* [1704] */ (xdc_Char)0x6d, /* [1705] */ (xdc_Char)0x3a, /* [1706] */ (xdc_Char)0x20, /* [1707] */ (xdc_Char)0x4e, /* [1708] */ (xdc_Char)0x6f, /* [1709] */ (xdc_Char)0x74, /* [1710] */ (xdc_Char)0x20, /* [1711] */ (xdc_Char)0x65, /* [1712] */ (xdc_Char)0x6e, /* [1713] */ (xdc_Char)0x6f, /* [1714] */ (xdc_Char)0x75, /* [1715] */ (xdc_Char)0x67, /* [1716] */ (xdc_Char)0x68, /* [1717] */ (xdc_Char)0x20, /* [1718] */ (xdc_Char)0x69, /* [1719] */ (xdc_Char)0x6e, /* [1720] */ (xdc_Char)0x66, /* [1721] */ (xdc_Char)0x6f, /* [1722] */ (xdc_Char)0x20, /* [1723] */ (xdc_Char)0x74, /* [1724] */ (xdc_Char)0x6f, /* [1725] */ (xdc_Char)0x20, /* [1726] */ (xdc_Char)0x64, /* [1727] */ (xdc_Char)0x65, /* [1728] */ (xdc_Char)0x6c, /* [1729] */ (xdc_Char)0x65, /* [1730] */ (xdc_Char)0x74, /* [1731] */ (xdc_Char)0x65, /* [1732] */ (xdc_Char)0x20, /* [1733] */ (xdc_Char)0x42, /* [1734] */ (xdc_Char)0x4c, /* [1735] */ (xdc_Char)0x4f, /* [1736] */ (xdc_Char)0x43, /* [1737] */ (xdc_Char)0x4b, /* [1738] */ (xdc_Char)0x45, /* [1739] */ (xdc_Char)0x44, /* [1740] */ (xdc_Char)0x20, /* [1741] */ (xdc_Char)0x74, /* [1742] */ (xdc_Char)0x61, /* [1743] */ (xdc_Char)0x73, /* [1744] */ (xdc_Char)0x6b, /* [1745] */ (xdc_Char)0x2e, /* [1746] */ (xdc_Char)0x0, /* [1747] */ (xdc_Char)0x41, /* [1748] */ (xdc_Char)0x5f, /* [1749] */ (xdc_Char)0x74, /* [1750] */ (xdc_Char)0x61, /* [1751] */ (xdc_Char)0x73, /* [1752] */ (xdc_Char)0x6b, /* [1753] */ (xdc_Char)0x44, /* [1754] */ (xdc_Char)0x69, /* [1755] */ (xdc_Char)0x73, /* [1756] */ (xdc_Char)0x61, /* [1757] */ (xdc_Char)0x62, /* [1758] */ (xdc_Char)0x6c, /* [1759] */ (xdc_Char)0x65, /* [1760] */ (xdc_Char)0x64, /* [1761] */ (xdc_Char)0x3a, /* [1762] */ (xdc_Char)0x20, /* [1763] */ (xdc_Char)0x43, /* [1764] */ (xdc_Char)0x61, /* [1765] */ (xdc_Char)0x6e, /* [1766] */ (xdc_Char)0x6e, /* [1767] */ (xdc_Char)0x6f, /* [1768] */ (xdc_Char)0x74, /* [1769] */ (xdc_Char)0x20, /* [1770] */ (xdc_Char)0x63, /* [1771] */ (xdc_Char)0x72, /* [1772] */ (xdc_Char)0x65, /* [1773] */ (xdc_Char)0x61, /* [1774] */ (xdc_Char)0x74, /* [1775] */ (xdc_Char)0x65, /* [1776] */ (xdc_Char)0x20, /* [1777] */ (xdc_Char)0x61, /* [1778] */ (xdc_Char)0x20, /* [1779] */ (xdc_Char)0x74, /* [1780] */ (xdc_Char)0x61, /* [1781] */ (xdc_Char)0x73, /* [1782] */ (xdc_Char)0x6b, /* [1783] */ (xdc_Char)0x20, /* [1784] */ (xdc_Char)0x77, /* [1785] */ (xdc_Char)0x68, /* [1786] */ (xdc_Char)0x65, /* [1787] */ (xdc_Char)0x6e, /* [1788] */ (xdc_Char)0x20, /* [1789] */ (xdc_Char)0x74, /* [1790] */ (xdc_Char)0x61, /* [1791] */ (xdc_Char)0x73, /* [1792] */ (xdc_Char)0x6b, /* [1793] */ (xdc_Char)0x69, /* [1794] */ (xdc_Char)0x6e, /* [1795] */ (xdc_Char)0x67, /* [1796] */ (xdc_Char)0x20, /* [1797] */ (xdc_Char)0x69, /* [1798] */ (xdc_Char)0x73, /* [1799] */ (xdc_Char)0x20, /* [1800] */ (xdc_Char)0x64, /* [1801] */ (xdc_Char)0x69, /* [1802] */ (xdc_Char)0x73, /* [1803] */ (xdc_Char)0x61, /* [1804] */ (xdc_Char)0x62, /* [1805] */ (xdc_Char)0x6c, /* [1806] */ (xdc_Char)0x65, /* [1807] */ (xdc_Char)0x64, /* [1808] */ (xdc_Char)0x2e, /* [1809] */ (xdc_Char)0x0, /* [1810] */ (xdc_Char)0x41, /* [1811] */ (xdc_Char)0x5f, /* [1812] */ (xdc_Char)0x62, /* [1813] */ (xdc_Char)0x61, /* [1814] */ (xdc_Char)0x64, /* [1815] */ (xdc_Char)0x50, /* [1816] */ (xdc_Char)0x72, /* [1817] */ (xdc_Char)0x69, /* [1818] */ (xdc_Char)0x6f, /* [1819] */ (xdc_Char)0x72, /* [1820] */ (xdc_Char)0x69, /* [1821] */ (xdc_Char)0x74, /* [1822] */ (xdc_Char)0x79, /* [1823] */ (xdc_Char)0x3a, /* [1824] */ (xdc_Char)0x20, /* [1825] */ (xdc_Char)0x41, /* [1826] */ (xdc_Char)0x6e, /* [1827] */ (xdc_Char)0x20, /* [1828] */ (xdc_Char)0x69, /* [1829] */ (xdc_Char)0x6e, /* [1830] */ (xdc_Char)0x76, /* [1831] */ (xdc_Char)0x61, /* [1832] */ (xdc_Char)0x6c, /* [1833] */ (xdc_Char)0x69, /* [1834] */ (xdc_Char)0x64, /* [1835] */ (xdc_Char)0x20, /* [1836] */ (xdc_Char)0x74, /* [1837] */ (xdc_Char)0x61, /* [1838] */ (xdc_Char)0x73, /* [1839] */ (xdc_Char)0x6b, /* [1840] */ (xdc_Char)0x20, /* [1841] */ (xdc_Char)0x70, /* [1842] */ (xdc_Char)0x72, /* [1843] */ (xdc_Char)0x69, /* [1844] */ (xdc_Char)0x6f, /* [1845] */ (xdc_Char)0x72, /* [1846] */ (xdc_Char)0x69, /* [1847] */ (xdc_Char)0x74, /* [1848] */ (xdc_Char)0x79, /* [1849] */ (xdc_Char)0x20, /* [1850] */ (xdc_Char)0x77, /* [1851] */ (xdc_Char)0x61, /* [1852] */ (xdc_Char)0x73, /* [1853] */ (xdc_Char)0x20, /* [1854] */ (xdc_Char)0x75, /* [1855] */ (xdc_Char)0x73, /* [1856] */ (xdc_Char)0x65, /* [1857] */ (xdc_Char)0x64, /* [1858] */ (xdc_Char)0x2e, /* [1859] */ (xdc_Char)0x0, /* [1860] */ (xdc_Char)0x41, /* [1861] */ (xdc_Char)0x5f, /* [1862] */ (xdc_Char)0x62, /* [1863] */ (xdc_Char)0x61, /* [1864] */ (xdc_Char)0x64, /* [1865] */ (xdc_Char)0x54, /* [1866] */ (xdc_Char)0x69, /* [1867] */ (xdc_Char)0x6d, /* [1868] */ (xdc_Char)0x65, /* [1869] */ (xdc_Char)0x6f, /* [1870] */ (xdc_Char)0x75, /* [1871] */ (xdc_Char)0x74, /* [1872] */ (xdc_Char)0x3a, /* [1873] */ (xdc_Char)0x20, /* [1874] */ (xdc_Char)0x43, /* [1875] */ (xdc_Char)0x61, /* [1876] */ (xdc_Char)0x6e, /* [1877] */ (xdc_Char)0x27, /* [1878] */ (xdc_Char)0x74, /* [1879] */ (xdc_Char)0x20, /* [1880] */ (xdc_Char)0x73, /* [1881] */ (xdc_Char)0x6c, /* [1882] */ (xdc_Char)0x65, /* [1883] */ (xdc_Char)0x65, /* [1884] */ (xdc_Char)0x70, /* [1885] */ (xdc_Char)0x20, /* [1886] */ (xdc_Char)0x46, /* [1887] */ (xdc_Char)0x4f, /* [1888] */ (xdc_Char)0x52, /* [1889] */ (xdc_Char)0x45, /* [1890] */ (xdc_Char)0x56, /* [1891] */ (xdc_Char)0x45, /* [1892] */ (xdc_Char)0x52, /* [1893] */ (xdc_Char)0x2e, /* [1894] */ (xdc_Char)0x0, /* [1895] */ (xdc_Char)0x41, /* [1896] */ (xdc_Char)0x5f, /* [1897] */ (xdc_Char)0x62, /* [1898] */ (xdc_Char)0x61, /* [1899] */ (xdc_Char)0x64, /* [1900] */ (xdc_Char)0x41, /* [1901] */ (xdc_Char)0x66, /* [1902] */ (xdc_Char)0x66, /* [1903] */ (xdc_Char)0x69, /* [1904] */ (xdc_Char)0x6e, /* [1905] */ (xdc_Char)0x69, /* [1906] */ (xdc_Char)0x74, /* [1907] */ (xdc_Char)0x79, /* [1908] */ (xdc_Char)0x3a, /* [1909] */ (xdc_Char)0x20, /* [1910] */ (xdc_Char)0x49, /* [1911] */ (xdc_Char)0x6e, /* [1912] */ (xdc_Char)0x76, /* [1913] */ (xdc_Char)0x61, /* [1914] */ (xdc_Char)0x6c, /* [1915] */ (xdc_Char)0x69, /* [1916] */ (xdc_Char)0x64, /* [1917] */ (xdc_Char)0x20, /* [1918] */ (xdc_Char)0x61, /* [1919] */ (xdc_Char)0x66, /* [1920] */ (xdc_Char)0x66, /* [1921] */ (xdc_Char)0x69, /* [1922] */ (xdc_Char)0x6e, /* [1923] */ (xdc_Char)0x69, /* [1924] */ (xdc_Char)0x74, /* [1925] */ (xdc_Char)0x79, /* [1926] */ (xdc_Char)0x2e, /* [1927] */ (xdc_Char)0x0, /* [1928] */ (xdc_Char)0x41, /* [1929] */ (xdc_Char)0x5f, /* [1930] */ (xdc_Char)0x73, /* [1931] */ (xdc_Char)0x6c, /* [1932] */ (xdc_Char)0x65, /* [1933] */ (xdc_Char)0x65, /* [1934] */ (xdc_Char)0x70, /* [1935] */ (xdc_Char)0x54, /* [1936] */ (xdc_Char)0x61, /* [1937] */ (xdc_Char)0x73, /* [1938] */ (xdc_Char)0x6b, /* [1939] */ (xdc_Char)0x44, /* [1940] */ (xdc_Char)0x69, /* [1941] */ (xdc_Char)0x73, /* [1942] */ (xdc_Char)0x61, /* [1943] */ (xdc_Char)0x62, /* [1944] */ (xdc_Char)0x6c, /* [1945] */ (xdc_Char)0x65, /* [1946] */ (xdc_Char)0x64, /* [1947] */ (xdc_Char)0x3a, /* [1948] */ (xdc_Char)0x20, /* [1949] */ (xdc_Char)0x43, /* [1950] */ (xdc_Char)0x61, /* [1951] */ (xdc_Char)0x6e, /* [1952] */ (xdc_Char)0x6e, /* [1953] */ (xdc_Char)0x6f, /* [1954] */ (xdc_Char)0x74, /* [1955] */ (xdc_Char)0x20, /* [1956] */ (xdc_Char)0x63, /* [1957] */ (xdc_Char)0x61, /* [1958] */ (xdc_Char)0x6c, /* [1959] */ (xdc_Char)0x6c, /* [1960] */ (xdc_Char)0x20, /* [1961] */ (xdc_Char)0x54, /* [1962] */ (xdc_Char)0x61, /* [1963] */ (xdc_Char)0x73, /* [1964] */ (xdc_Char)0x6b, /* [1965] */ (xdc_Char)0x5f, /* [1966] */ (xdc_Char)0x73, /* [1967] */ (xdc_Char)0x6c, /* [1968] */ (xdc_Char)0x65, /* [1969] */ (xdc_Char)0x65, /* [1970] */ (xdc_Char)0x70, /* [1971] */ (xdc_Char)0x28, /* [1972] */ (xdc_Char)0x29, /* [1973] */ (xdc_Char)0x20, /* [1974] */ (xdc_Char)0x77, /* [1975] */ (xdc_Char)0x68, /* [1976] */ (xdc_Char)0x69, /* [1977] */ (xdc_Char)0x6c, /* [1978] */ (xdc_Char)0x65, /* [1979] */ (xdc_Char)0x20, /* [1980] */ (xdc_Char)0x74, /* [1981] */ (xdc_Char)0x68, /* [1982] */ (xdc_Char)0x65, /* [1983] */ (xdc_Char)0x20, /* [1984] */ (xdc_Char)0x54, /* [1985] */ (xdc_Char)0x61, /* [1986] */ (xdc_Char)0x73, /* [1987] */ (xdc_Char)0x6b, /* [1988] */ (xdc_Char)0x20, /* [1989] */ (xdc_Char)0x73, /* [1990] */ (xdc_Char)0x63, /* [1991] */ (xdc_Char)0x68, /* [1992] */ (xdc_Char)0x65, /* [1993] */ (xdc_Char)0x64, /* [1994] */ (xdc_Char)0x75, /* [1995] */ (xdc_Char)0x6c, /* [1996] */ (xdc_Char)0x65, /* [1997] */ (xdc_Char)0x72, /* [1998] */ (xdc_Char)0x20, /* [1999] */ (xdc_Char)0x69, /* [2000] */ (xdc_Char)0x73, /* [2001] */ (xdc_Char)0x20, /* [2002] */ (xdc_Char)0x64, /* [2003] */ (xdc_Char)0x69, /* [2004] */ (xdc_Char)0x73, /* [2005] */ (xdc_Char)0x61, /* [2006] */ (xdc_Char)0x62, /* [2007] */ (xdc_Char)0x6c, /* [2008] */ (xdc_Char)0x65, /* [2009] */ (xdc_Char)0x64, /* [2010] */ (xdc_Char)0x2e, /* [2011] */ (xdc_Char)0x0, /* [2012] */ (xdc_Char)0x41, /* [2013] */ (xdc_Char)0x5f, /* [2014] */ (xdc_Char)0x69, /* [2015] */ (xdc_Char)0x6e, /* [2016] */ (xdc_Char)0x76, /* [2017] */ (xdc_Char)0x61, /* [2018] */ (xdc_Char)0x6c, /* [2019] */ (xdc_Char)0x69, /* [2020] */ (xdc_Char)0x64, /* [2021] */ (xdc_Char)0x43, /* [2022] */ (xdc_Char)0x6f, /* [2023] */ (xdc_Char)0x72, /* [2024] */ (xdc_Char)0x65, /* [2025] */ (xdc_Char)0x49, /* [2026] */ (xdc_Char)0x64, /* [2027] */ (xdc_Char)0x3a, /* [2028] */ (xdc_Char)0x20, /* [2029] */ (xdc_Char)0x43, /* [2030] */ (xdc_Char)0x61, /* [2031] */ (xdc_Char)0x6e, /* [2032] */ (xdc_Char)0x6e, /* [2033] */ (xdc_Char)0x6f, /* [2034] */ (xdc_Char)0x74, /* [2035] */ (xdc_Char)0x20, /* [2036] */ (xdc_Char)0x70, /* [2037] */ (xdc_Char)0x61, /* [2038] */ (xdc_Char)0x73, /* [2039] */ (xdc_Char)0x73, /* [2040] */ (xdc_Char)0x20, /* [2041] */ (xdc_Char)0x61, /* [2042] */ (xdc_Char)0x20, /* [2043] */ (xdc_Char)0x6e, /* [2044] */ (xdc_Char)0x6f, /* [2045] */ (xdc_Char)0x6e, /* [2046] */ (xdc_Char)0x2d, /* [2047] */ (xdc_Char)0x7a, /* [2048] */ (xdc_Char)0x65, /* [2049] */ (xdc_Char)0x72, /* [2050] */ (xdc_Char)0x6f, /* [2051] */ (xdc_Char)0x20, /* [2052] */ (xdc_Char)0x43, /* [2053] */ (xdc_Char)0x6f, /* [2054] */ (xdc_Char)0x72, /* [2055] */ (xdc_Char)0x65, /* [2056] */ (xdc_Char)0x49, /* [2057] */ (xdc_Char)0x64, /* [2058] */ (xdc_Char)0x20, /* [2059] */ (xdc_Char)0x69, /* [2060] */ (xdc_Char)0x6e, /* [2061] */ (xdc_Char)0x20, /* [2062] */ (xdc_Char)0x61, /* [2063] */ (xdc_Char)0x20, /* [2064] */ (xdc_Char)0x6e, /* [2065] */ (xdc_Char)0x6f, /* [2066] */ (xdc_Char)0x6e, /* [2067] */ (xdc_Char)0x2d, /* [2068] */ (xdc_Char)0x53, /* [2069] */ (xdc_Char)0x4d, /* [2070] */ (xdc_Char)0x50, /* [2071] */ (xdc_Char)0x20, /* [2072] */ (xdc_Char)0x61, /* [2073] */ (xdc_Char)0x70, /* [2074] */ (xdc_Char)0x70, /* [2075] */ (xdc_Char)0x6c, /* [2076] */ (xdc_Char)0x69, /* [2077] */ (xdc_Char)0x63, /* [2078] */ (xdc_Char)0x61, /* [2079] */ (xdc_Char)0x74, /* [2080] */ (xdc_Char)0x69, /* [2081] */ (xdc_Char)0x6f, /* [2082] */ (xdc_Char)0x6e, /* [2083] */ (xdc_Char)0x2e, /* [2084] */ (xdc_Char)0x0, /* [2085] */ (xdc_Char)0x41, /* [2086] */ (xdc_Char)0x5f, /* [2087] */ (xdc_Char)0x7a, /* [2088] */ (xdc_Char)0x65, /* [2089] */ (xdc_Char)0x72, /* [2090] */ (xdc_Char)0x6f, /* [2091] */ (xdc_Char)0x54, /* [2092] */ (xdc_Char)0x69, /* [2093] */ (xdc_Char)0x6d, /* [2094] */ (xdc_Char)0x65, /* [2095] */ (xdc_Char)0x6f, /* [2096] */ (xdc_Char)0x75, /* [2097] */ (xdc_Char)0x74, /* [2098] */ (xdc_Char)0x3a, /* [2099] */ (xdc_Char)0x20, /* [2100] */ (xdc_Char)0x54, /* [2101] */ (xdc_Char)0x69, /* [2102] */ (xdc_Char)0x6d, /* [2103] */ (xdc_Char)0x65, /* [2104] */ (xdc_Char)0x6f, /* [2105] */ (xdc_Char)0x75, /* [2106] */ (xdc_Char)0x74, /* [2107] */ (xdc_Char)0x20, /* [2108] */ (xdc_Char)0x76, /* [2109] */ (xdc_Char)0x61, /* [2110] */ (xdc_Char)0x6c, /* [2111] */ (xdc_Char)0x75, /* [2112] */ (xdc_Char)0x65, /* [2113] */ (xdc_Char)0x20, /* [2114] */ (xdc_Char)0x61, /* [2115] */ (xdc_Char)0x6e, /* [2116] */ (xdc_Char)0x6e, /* [2117] */ (xdc_Char)0x6f, /* [2118] */ (xdc_Char)0x74, /* [2119] */ (xdc_Char)0x20, /* [2120] */ (xdc_Char)0x62, /* [2121] */ (xdc_Char)0x65, /* [2122] */ (xdc_Char)0x20, /* [2123] */ (xdc_Char)0x7a, /* [2124] */ (xdc_Char)0x65, /* [2125] */ (xdc_Char)0x72, /* [2126] */ (xdc_Char)0x6f, /* [2127] */ (xdc_Char)0x0, /* [2128] */ (xdc_Char)0x41, /* [2129] */ (xdc_Char)0x5f, /* [2130] */ (xdc_Char)0x69, /* [2131] */ (xdc_Char)0x6e, /* [2132] */ (xdc_Char)0x76, /* [2133] */ (xdc_Char)0x61, /* [2134] */ (xdc_Char)0x6c, /* [2135] */ (xdc_Char)0x69, /* [2136] */ (xdc_Char)0x64, /* [2137] */ (xdc_Char)0x4b, /* [2138] */ (xdc_Char)0x65, /* [2139] */ (xdc_Char)0x79, /* [2140] */ (xdc_Char)0x3a, /* [2141] */ (xdc_Char)0x20, /* [2142] */ (xdc_Char)0x74, /* [2143] */ (xdc_Char)0x68, /* [2144] */ (xdc_Char)0x65, /* [2145] */ (xdc_Char)0x20, /* [2146] */ (xdc_Char)0x6b, /* [2147] */ (xdc_Char)0x65, /* [2148] */ (xdc_Char)0x79, /* [2149] */ (xdc_Char)0x20, /* [2150] */ (xdc_Char)0x6d, /* [2151] */ (xdc_Char)0x75, /* [2152] */ (xdc_Char)0x73, /* [2153] */ (xdc_Char)0x74, /* [2154] */ (xdc_Char)0x20, /* [2155] */ (xdc_Char)0x62, /* [2156] */ (xdc_Char)0x65, /* [2157] */ (xdc_Char)0x20, /* [2158] */ (xdc_Char)0x73, /* [2159] */ (xdc_Char)0x65, /* [2160] */ (xdc_Char)0x74, /* [2161] */ (xdc_Char)0x20, /* [2162] */ (xdc_Char)0x74, /* [2163] */ (xdc_Char)0x6f, /* [2164] */ (xdc_Char)0x20, /* [2165] */ (xdc_Char)0x61, /* [2166] */ (xdc_Char)0x20, /* [2167] */ (xdc_Char)0x6e, /* [2168] */ (xdc_Char)0x6f, /* [2169] */ (xdc_Char)0x6e, /* [2170] */ (xdc_Char)0x2d, /* [2171] */ (xdc_Char)0x64, /* [2172] */ (xdc_Char)0x65, /* [2173] */ (xdc_Char)0x66, /* [2174] */ (xdc_Char)0x61, /* [2175] */ (xdc_Char)0x75, /* [2176] */ (xdc_Char)0x6c, /* [2177] */ (xdc_Char)0x74, /* [2178] */ (xdc_Char)0x20, /* [2179] */ (xdc_Char)0x76, /* [2180] */ (xdc_Char)0x61, /* [2181] */ (xdc_Char)0x6c, /* [2182] */ (xdc_Char)0x75, /* [2183] */ (xdc_Char)0x65, /* [2184] */ (xdc_Char)0x0, /* [2185] */ (xdc_Char)0x41, /* [2186] */ (xdc_Char)0x5f, /* [2187] */ (xdc_Char)0x62, /* [2188] */ (xdc_Char)0x61, /* [2189] */ (xdc_Char)0x64, /* [2190] */ (xdc_Char)0x43, /* [2191] */ (xdc_Char)0x6f, /* [2192] */ (xdc_Char)0x6e, /* [2193] */ (xdc_Char)0x74, /* [2194] */ (xdc_Char)0x65, /* [2195] */ (xdc_Char)0x78, /* [2196] */ (xdc_Char)0x74, /* [2197] */ (xdc_Char)0x3a, /* [2198] */ (xdc_Char)0x20, /* [2199] */ (xdc_Char)0x62, /* [2200] */ (xdc_Char)0x61, /* [2201] */ (xdc_Char)0x64, /* [2202] */ (xdc_Char)0x20, /* [2203] */ (xdc_Char)0x63, /* [2204] */ (xdc_Char)0x61, /* [2205] */ (xdc_Char)0x6c, /* [2206] */ (xdc_Char)0x6c, /* [2207] */ (xdc_Char)0x69, /* [2208] */ (xdc_Char)0x6e, /* [2209] */ (xdc_Char)0x67, /* [2210] */ (xdc_Char)0x20, /* [2211] */ (xdc_Char)0x63, /* [2212] */ (xdc_Char)0x6f, /* [2213] */ (xdc_Char)0x6e, /* [2214] */ (xdc_Char)0x74, /* [2215] */ (xdc_Char)0x65, /* [2216] */ (xdc_Char)0x78, /* [2217] */ (xdc_Char)0x74, /* [2218] */ (xdc_Char)0x2e, /* [2219] */ (xdc_Char)0x20, /* [2220] */ (xdc_Char)0x4d, /* [2221] */ (xdc_Char)0x61, /* [2222] */ (xdc_Char)0x79, /* [2223] */ (xdc_Char)0x20, /* [2224] */ (xdc_Char)0x6e, /* [2225] */ (xdc_Char)0x6f, /* [2226] */ (xdc_Char)0x74, /* [2227] */ (xdc_Char)0x20, /* [2228] */ (xdc_Char)0x62, /* [2229] */ (xdc_Char)0x65, /* [2230] */ (xdc_Char)0x20, /* [2231] */ (xdc_Char)0x65, /* [2232] */ (xdc_Char)0x6e, /* [2233] */ (xdc_Char)0x74, /* [2234] */ (xdc_Char)0x65, /* [2235] */ (xdc_Char)0x72, /* [2236] */ (xdc_Char)0x65, /* [2237] */ (xdc_Char)0x64, /* [2238] */ (xdc_Char)0x20, /* [2239] */ (xdc_Char)0x66, /* [2240] */ (xdc_Char)0x72, /* [2241] */ (xdc_Char)0x6f, /* [2242] */ (xdc_Char)0x6d, /* [2243] */ (xdc_Char)0x20, /* [2244] */ (xdc_Char)0x61, /* [2245] */ (xdc_Char)0x20, /* [2246] */ (xdc_Char)0x68, /* [2247] */ (xdc_Char)0x61, /* [2248] */ (xdc_Char)0x72, /* [2249] */ (xdc_Char)0x64, /* [2250] */ (xdc_Char)0x77, /* [2251] */ (xdc_Char)0x61, /* [2252] */ (xdc_Char)0x72, /* [2253] */ (xdc_Char)0x65, /* [2254] */ (xdc_Char)0x20, /* [2255] */ (xdc_Char)0x69, /* [2256] */ (xdc_Char)0x6e, /* [2257] */ (xdc_Char)0x74, /* [2258] */ (xdc_Char)0x65, /* [2259] */ (xdc_Char)0x72, /* [2260] */ (xdc_Char)0x72, /* [2261] */ (xdc_Char)0x75, /* [2262] */ (xdc_Char)0x70, /* [2263] */ (xdc_Char)0x74, /* [2264] */ (xdc_Char)0x20, /* [2265] */ (xdc_Char)0x74, /* [2266] */ (xdc_Char)0x68, /* [2267] */ (xdc_Char)0x72, /* [2268] */ (xdc_Char)0x65, /* [2269] */ (xdc_Char)0x61, /* [2270] */ (xdc_Char)0x64, /* [2271] */ (xdc_Char)0x2e, /* [2272] */ (xdc_Char)0x0, /* [2273] */ (xdc_Char)0x41, /* [2274] */ (xdc_Char)0x5f, /* [2275] */ (xdc_Char)0x62, /* [2276] */ (xdc_Char)0x61, /* [2277] */ (xdc_Char)0x64, /* [2278] */ (xdc_Char)0x43, /* [2279] */ (xdc_Char)0x6f, /* [2280] */ (xdc_Char)0x6e, /* [2281] */ (xdc_Char)0x74, /* [2282] */ (xdc_Char)0x65, /* [2283] */ (xdc_Char)0x78, /* [2284] */ (xdc_Char)0x74, /* [2285] */ (xdc_Char)0x3a, /* [2286] */ (xdc_Char)0x20, /* [2287] */ (xdc_Char)0x62, /* [2288] */ (xdc_Char)0x61, /* [2289] */ (xdc_Char)0x64, /* [2290] */ (xdc_Char)0x20, /* [2291] */ (xdc_Char)0x63, /* [2292] */ (xdc_Char)0x61, /* [2293] */ (xdc_Char)0x6c, /* [2294] */ (xdc_Char)0x6c, /* [2295] */ (xdc_Char)0x69, /* [2296] */ (xdc_Char)0x6e, /* [2297] */ (xdc_Char)0x67, /* [2298] */ (xdc_Char)0x20, /* [2299] */ (xdc_Char)0x63, /* [2300] */ (xdc_Char)0x6f, /* [2301] */ (xdc_Char)0x6e, /* [2302] */ (xdc_Char)0x74, /* [2303] */ (xdc_Char)0x65, /* [2304] */ (xdc_Char)0x78, /* [2305] */ (xdc_Char)0x74, /* [2306] */ (xdc_Char)0x2e, /* [2307] */ (xdc_Char)0x20, /* [2308] */ (xdc_Char)0x4d, /* [2309] */ (xdc_Char)0x61, /* [2310] */ (xdc_Char)0x79, /* [2311] */ (xdc_Char)0x20, /* [2312] */ (xdc_Char)0x6e, /* [2313] */ (xdc_Char)0x6f, /* [2314] */ (xdc_Char)0x74, /* [2315] */ (xdc_Char)0x20, /* [2316] */ (xdc_Char)0x62, /* [2317] */ (xdc_Char)0x65, /* [2318] */ (xdc_Char)0x20, /* [2319] */ (xdc_Char)0x65, /* [2320] */ (xdc_Char)0x6e, /* [2321] */ (xdc_Char)0x74, /* [2322] */ (xdc_Char)0x65, /* [2323] */ (xdc_Char)0x72, /* [2324] */ (xdc_Char)0x65, /* [2325] */ (xdc_Char)0x64, /* [2326] */ (xdc_Char)0x20, /* [2327] */ (xdc_Char)0x66, /* [2328] */ (xdc_Char)0x72, /* [2329] */ (xdc_Char)0x6f, /* [2330] */ (xdc_Char)0x6d, /* [2331] */ (xdc_Char)0x20, /* [2332] */ (xdc_Char)0x61, /* [2333] */ (xdc_Char)0x20, /* [2334] */ (xdc_Char)0x73, /* [2335] */ (xdc_Char)0x6f, /* [2336] */ (xdc_Char)0x66, /* [2337] */ (xdc_Char)0x74, /* [2338] */ (xdc_Char)0x77, /* [2339] */ (xdc_Char)0x61, /* [2340] */ (xdc_Char)0x72, /* [2341] */ (xdc_Char)0x65, /* [2342] */ (xdc_Char)0x20, /* [2343] */ (xdc_Char)0x6f, /* [2344] */ (xdc_Char)0x72, /* [2345] */ (xdc_Char)0x20, /* [2346] */ (xdc_Char)0x68, /* [2347] */ (xdc_Char)0x61, /* [2348] */ (xdc_Char)0x72, /* [2349] */ (xdc_Char)0x64, /* [2350] */ (xdc_Char)0x77, /* [2351] */ (xdc_Char)0x61, /* [2352] */ (xdc_Char)0x72, /* [2353] */ (xdc_Char)0x65, /* [2354] */ (xdc_Char)0x20, /* [2355] */ (xdc_Char)0x69, /* [2356] */ (xdc_Char)0x6e, /* [2357] */ (xdc_Char)0x74, /* [2358] */ (xdc_Char)0x65, /* [2359] */ (xdc_Char)0x72, /* [2360] */ (xdc_Char)0x72, /* [2361] */ (xdc_Char)0x75, /* [2362] */ (xdc_Char)0x70, /* [2363] */ (xdc_Char)0x74, /* [2364] */ (xdc_Char)0x20, /* [2365] */ (xdc_Char)0x74, /* [2366] */ (xdc_Char)0x68, /* [2367] */ (xdc_Char)0x72, /* [2368] */ (xdc_Char)0x65, /* [2369] */ (xdc_Char)0x61, /* [2370] */ (xdc_Char)0x64, /* [2371] */ (xdc_Char)0x2e, /* [2372] */ (xdc_Char)0x0, /* [2373] */ (xdc_Char)0x41, /* [2374] */ (xdc_Char)0x5f, /* [2375] */ (xdc_Char)0x62, /* [2376] */ (xdc_Char)0x61, /* [2377] */ (xdc_Char)0x64, /* [2378] */ (xdc_Char)0x43, /* [2379] */ (xdc_Char)0x6f, /* [2380] */ (xdc_Char)0x6e, /* [2381] */ (xdc_Char)0x74, /* [2382] */ (xdc_Char)0x65, /* [2383] */ (xdc_Char)0x78, /* [2384] */ (xdc_Char)0x74, /* [2385] */ (xdc_Char)0x3a, /* [2386] */ (xdc_Char)0x20, /* [2387] */ (xdc_Char)0x62, /* [2388] */ (xdc_Char)0x61, /* [2389] */ (xdc_Char)0x64, /* [2390] */ (xdc_Char)0x20, /* [2391] */ (xdc_Char)0x63, /* [2392] */ (xdc_Char)0x61, /* [2393] */ (xdc_Char)0x6c, /* [2394] */ (xdc_Char)0x6c, /* [2395] */ (xdc_Char)0x69, /* [2396] */ (xdc_Char)0x6e, /* [2397] */ (xdc_Char)0x67, /* [2398] */ (xdc_Char)0x20, /* [2399] */ (xdc_Char)0x63, /* [2400] */ (xdc_Char)0x6f, /* [2401] */ (xdc_Char)0x6e, /* [2402] */ (xdc_Char)0x74, /* [2403] */ (xdc_Char)0x65, /* [2404] */ (xdc_Char)0x78, /* [2405] */ (xdc_Char)0x74, /* [2406] */ (xdc_Char)0x2e, /* [2407] */ (xdc_Char)0x20, /* [2408] */ (xdc_Char)0x53, /* [2409] */ (xdc_Char)0x65, /* [2410] */ (xdc_Char)0x65, /* [2411] */ (xdc_Char)0x20, /* [2412] */ (xdc_Char)0x47, /* [2413] */ (xdc_Char)0x61, /* [2414] */ (xdc_Char)0x74, /* [2415] */ (xdc_Char)0x65, /* [2416] */ (xdc_Char)0x4d, /* [2417] */ (xdc_Char)0x75, /* [2418] */ (xdc_Char)0x74, /* [2419] */ (xdc_Char)0x65, /* [2420] */ (xdc_Char)0x78, /* [2421] */ (xdc_Char)0x50, /* [2422] */ (xdc_Char)0x72, /* [2423] */ (xdc_Char)0x69, /* [2424] */ (xdc_Char)0x20, /* [2425] */ (xdc_Char)0x41, /* [2426] */ (xdc_Char)0x50, /* [2427] */ (xdc_Char)0x49, /* [2428] */ (xdc_Char)0x20, /* [2429] */ (xdc_Char)0x64, /* [2430] */ (xdc_Char)0x6f, /* [2431] */ (xdc_Char)0x63, /* [2432] */ (xdc_Char)0x20, /* [2433] */ (xdc_Char)0x66, /* [2434] */ (xdc_Char)0x6f, /* [2435] */ (xdc_Char)0x72, /* [2436] */ (xdc_Char)0x20, /* [2437] */ (xdc_Char)0x64, /* [2438] */ (xdc_Char)0x65, /* [2439] */ (xdc_Char)0x74, /* [2440] */ (xdc_Char)0x61, /* [2441] */ (xdc_Char)0x69, /* [2442] */ (xdc_Char)0x6c, /* [2443] */ (xdc_Char)0x73, /* [2444] */ (xdc_Char)0x2e, /* [2445] */ (xdc_Char)0x0, /* [2446] */ (xdc_Char)0x41, /* [2447] */ (xdc_Char)0x5f, /* [2448] */ (xdc_Char)0x65, /* [2449] */ (xdc_Char)0x6e, /* [2450] */ (xdc_Char)0x74, /* [2451] */ (xdc_Char)0x65, /* [2452] */ (xdc_Char)0x72, /* [2453] */ (xdc_Char)0x54, /* [2454] */ (xdc_Char)0x61, /* [2455] */ (xdc_Char)0x73, /* [2456] */ (xdc_Char)0x6b, /* [2457] */ (xdc_Char)0x44, /* [2458] */ (xdc_Char)0x69, /* [2459] */ (xdc_Char)0x73, /* [2460] */ (xdc_Char)0x61, /* [2461] */ (xdc_Char)0x62, /* [2462] */ (xdc_Char)0x6c, /* [2463] */ (xdc_Char)0x65, /* [2464] */ (xdc_Char)0x64, /* [2465] */ (xdc_Char)0x3a, /* [2466] */ (xdc_Char)0x20, /* [2467] */ (xdc_Char)0x43, /* [2468] */ (xdc_Char)0x61, /* [2469] */ (xdc_Char)0x6e, /* [2470] */ (xdc_Char)0x6e, /* [2471] */ (xdc_Char)0x6f, /* [2472] */ (xdc_Char)0x74, /* [2473] */ (xdc_Char)0x20, /* [2474] */ (xdc_Char)0x63, /* [2475] */ (xdc_Char)0x61, /* [2476] */ (xdc_Char)0x6c, /* [2477] */ (xdc_Char)0x6c, /* [2478] */ (xdc_Char)0x20, /* [2479] */ (xdc_Char)0x47, /* [2480] */ (xdc_Char)0x61, /* [2481] */ (xdc_Char)0x74, /* [2482] */ (xdc_Char)0x65, /* [2483] */ (xdc_Char)0x4d, /* [2484] */ (xdc_Char)0x75, /* [2485] */ (xdc_Char)0x74, /* [2486] */ (xdc_Char)0x65, /* [2487] */ (xdc_Char)0x78, /* [2488] */ (xdc_Char)0x50, /* [2489] */ (xdc_Char)0x72, /* [2490] */ (xdc_Char)0x69, /* [2491] */ (xdc_Char)0x5f, /* [2492] */ (xdc_Char)0x65, /* [2493] */ (xdc_Char)0x6e, /* [2494] */ (xdc_Char)0x74, /* [2495] */ (xdc_Char)0x65, /* [2496] */ (xdc_Char)0x72, /* [2497] */ (xdc_Char)0x28, /* [2498] */ (xdc_Char)0x29, /* [2499] */ (xdc_Char)0x20, /* [2500] */ (xdc_Char)0x77, /* [2501] */ (xdc_Char)0x68, /* [2502] */ (xdc_Char)0x69, /* [2503] */ (xdc_Char)0x6c, /* [2504] */ (xdc_Char)0x65, /* [2505] */ (xdc_Char)0x20, /* [2506] */ (xdc_Char)0x74, /* [2507] */ (xdc_Char)0x68, /* [2508] */ (xdc_Char)0x65, /* [2509] */ (xdc_Char)0x20, /* [2510] */ (xdc_Char)0x54, /* [2511] */ (xdc_Char)0x61, /* [2512] */ (xdc_Char)0x73, /* [2513] */ (xdc_Char)0x6b, /* [2514] */ (xdc_Char)0x20, /* [2515] */ (xdc_Char)0x6f, /* [2516] */ (xdc_Char)0x72, /* [2517] */ (xdc_Char)0x20, /* [2518] */ (xdc_Char)0x53, /* [2519] */ (xdc_Char)0x77, /* [2520] */ (xdc_Char)0x69, /* [2521] */ (xdc_Char)0x20, /* [2522] */ (xdc_Char)0x73, /* [2523] */ (xdc_Char)0x63, /* [2524] */ (xdc_Char)0x68, /* [2525] */ (xdc_Char)0x65, /* [2526] */ (xdc_Char)0x64, /* [2527] */ (xdc_Char)0x75, /* [2528] */ (xdc_Char)0x6c, /* [2529] */ (xdc_Char)0x65, /* [2530] */ (xdc_Char)0x72, /* [2531] */ (xdc_Char)0x20, /* [2532] */ (xdc_Char)0x69, /* [2533] */ (xdc_Char)0x73, /* [2534] */ (xdc_Char)0x20, /* [2535] */ (xdc_Char)0x64, /* [2536] */ (xdc_Char)0x69, /* [2537] */ (xdc_Char)0x73, /* [2538] */ (xdc_Char)0x61, /* [2539] */ (xdc_Char)0x62, /* [2540] */ (xdc_Char)0x6c, /* [2541] */ (xdc_Char)0x65, /* [2542] */ (xdc_Char)0x64, /* [2543] */ (xdc_Char)0x2e, /* [2544] */ (xdc_Char)0x0, /* [2545] */ (xdc_Char)0x41, /* [2546] */ (xdc_Char)0x5f, /* [2547] */ (xdc_Char)0x62, /* [2548] */ (xdc_Char)0x61, /* [2549] */ (xdc_Char)0x64, /* [2550] */ (xdc_Char)0x43, /* [2551] */ (xdc_Char)0x6f, /* [2552] */ (xdc_Char)0x6e, /* [2553] */ (xdc_Char)0x74, /* [2554] */ (xdc_Char)0x65, /* [2555] */ (xdc_Char)0x78, /* [2556] */ (xdc_Char)0x74, /* [2557] */ (xdc_Char)0x3a, /* [2558] */ (xdc_Char)0x20, /* [2559] */ (xdc_Char)0x62, /* [2560] */ (xdc_Char)0x61, /* [2561] */ (xdc_Char)0x64, /* [2562] */ (xdc_Char)0x20, /* [2563] */ (xdc_Char)0x63, /* [2564] */ (xdc_Char)0x61, /* [2565] */ (xdc_Char)0x6c, /* [2566] */ (xdc_Char)0x6c, /* [2567] */ (xdc_Char)0x69, /* [2568] */ (xdc_Char)0x6e, /* [2569] */ (xdc_Char)0x67, /* [2570] */ (xdc_Char)0x20, /* [2571] */ (xdc_Char)0x63, /* [2572] */ (xdc_Char)0x6f, /* [2573] */ (xdc_Char)0x6e, /* [2574] */ (xdc_Char)0x74, /* [2575] */ (xdc_Char)0x65, /* [2576] */ (xdc_Char)0x78, /* [2577] */ (xdc_Char)0x74, /* [2578] */ (xdc_Char)0x2e, /* [2579] */ (xdc_Char)0x20, /* [2580] */ (xdc_Char)0x53, /* [2581] */ (xdc_Char)0x65, /* [2582] */ (xdc_Char)0x65, /* [2583] */ (xdc_Char)0x20, /* [2584] */ (xdc_Char)0x47, /* [2585] */ (xdc_Char)0x61, /* [2586] */ (xdc_Char)0x74, /* [2587] */ (xdc_Char)0x65, /* [2588] */ (xdc_Char)0x4d, /* [2589] */ (xdc_Char)0x75, /* [2590] */ (xdc_Char)0x74, /* [2591] */ (xdc_Char)0x65, /* [2592] */ (xdc_Char)0x78, /* [2593] */ (xdc_Char)0x20, /* [2594] */ (xdc_Char)0x41, /* [2595] */ (xdc_Char)0x50, /* [2596] */ (xdc_Char)0x49, /* [2597] */ (xdc_Char)0x20, /* [2598] */ (xdc_Char)0x64, /* [2599] */ (xdc_Char)0x6f, /* [2600] */ (xdc_Char)0x63, /* [2601] */ (xdc_Char)0x20, /* [2602] */ (xdc_Char)0x66, /* [2603] */ (xdc_Char)0x6f, /* [2604] */ (xdc_Char)0x72, /* [2605] */ (xdc_Char)0x20, /* [2606] */ (xdc_Char)0x64, /* [2607] */ (xdc_Char)0x65, /* [2608] */ (xdc_Char)0x74, /* [2609] */ (xdc_Char)0x61, /* [2610] */ (xdc_Char)0x69, /* [2611] */ (xdc_Char)0x6c, /* [2612] */ (xdc_Char)0x73, /* [2613] */ (xdc_Char)0x2e, /* [2614] */ (xdc_Char)0x0, /* [2615] */ (xdc_Char)0x41, /* [2616] */ (xdc_Char)0x5f, /* [2617] */ (xdc_Char)0x62, /* [2618] */ (xdc_Char)0x61, /* [2619] */ (xdc_Char)0x64, /* [2620] */ (xdc_Char)0x43, /* [2621] */ (xdc_Char)0x6f, /* [2622] */ (xdc_Char)0x6e, /* [2623] */ (xdc_Char)0x74, /* [2624] */ (xdc_Char)0x65, /* [2625] */ (xdc_Char)0x78, /* [2626] */ (xdc_Char)0x74, /* [2627] */ (xdc_Char)0x3a, /* [2628] */ (xdc_Char)0x20, /* [2629] */ (xdc_Char)0x62, /* [2630] */ (xdc_Char)0x61, /* [2631] */ (xdc_Char)0x64, /* [2632] */ (xdc_Char)0x20, /* [2633] */ (xdc_Char)0x63, /* [2634] */ (xdc_Char)0x61, /* [2635] */ (xdc_Char)0x6c, /* [2636] */ (xdc_Char)0x6c, /* [2637] */ (xdc_Char)0x69, /* [2638] */ (xdc_Char)0x6e, /* [2639] */ (xdc_Char)0x67, /* [2640] */ (xdc_Char)0x20, /* [2641] */ (xdc_Char)0x63, /* [2642] */ (xdc_Char)0x6f, /* [2643] */ (xdc_Char)0x6e, /* [2644] */ (xdc_Char)0x74, /* [2645] */ (xdc_Char)0x65, /* [2646] */ (xdc_Char)0x78, /* [2647] */ (xdc_Char)0x74, /* [2648] */ (xdc_Char)0x2e, /* [2649] */ (xdc_Char)0x20, /* [2650] */ (xdc_Char)0x53, /* [2651] */ (xdc_Char)0x65, /* [2652] */ (xdc_Char)0x65, /* [2653] */ (xdc_Char)0x20, /* [2654] */ (xdc_Char)0x47, /* [2655] */ (xdc_Char)0x61, /* [2656] */ (xdc_Char)0x74, /* [2657] */ (xdc_Char)0x65, /* [2658] */ (xdc_Char)0x53, /* [2659] */ (xdc_Char)0x70, /* [2660] */ (xdc_Char)0x69, /* [2661] */ (xdc_Char)0x6e, /* [2662] */ (xdc_Char)0x6c, /* [2663] */ (xdc_Char)0x6f, /* [2664] */ (xdc_Char)0x63, /* [2665] */ (xdc_Char)0x6b, /* [2666] */ (xdc_Char)0x20, /* [2667] */ (xdc_Char)0x41, /* [2668] */ (xdc_Char)0x50, /* [2669] */ (xdc_Char)0x49, /* [2670] */ (xdc_Char)0x20, /* [2671] */ (xdc_Char)0x64, /* [2672] */ (xdc_Char)0x6f, /* [2673] */ (xdc_Char)0x63, /* [2674] */ (xdc_Char)0x20, /* [2675] */ (xdc_Char)0x66, /* [2676] */ (xdc_Char)0x6f, /* [2677] */ (xdc_Char)0x72, /* [2678] */ (xdc_Char)0x20, /* [2679] */ (xdc_Char)0x64, /* [2680] */ (xdc_Char)0x65, /* [2681] */ (xdc_Char)0x74, /* [2682] */ (xdc_Char)0x61, /* [2683] */ (xdc_Char)0x69, /* [2684] */ (xdc_Char)0x6c, /* [2685] */ (xdc_Char)0x73, /* [2686] */ (xdc_Char)0x2e, /* [2687] */ (xdc_Char)0x0, /* [2688] */ (xdc_Char)0x41, /* [2689] */ (xdc_Char)0x5f, /* [2690] */ (xdc_Char)0x69, /* [2691] */ (xdc_Char)0x6e, /* [2692] */ (xdc_Char)0x76, /* [2693] */ (xdc_Char)0x61, /* [2694] */ (xdc_Char)0x6c, /* [2695] */ (xdc_Char)0x69, /* [2696] */ (xdc_Char)0x64, /* [2697] */ (xdc_Char)0x51, /* [2698] */ (xdc_Char)0x75, /* [2699] */ (xdc_Char)0x61, /* [2700] */ (xdc_Char)0x6c, /* [2701] */ (xdc_Char)0x69, /* [2702] */ (xdc_Char)0x74, /* [2703] */ (xdc_Char)0x79, /* [2704] */ (xdc_Char)0x3a, /* [2705] */ (xdc_Char)0x20, /* [2706] */ (xdc_Char)0x53, /* [2707] */ (xdc_Char)0x65, /* [2708] */ (xdc_Char)0x65, /* [2709] */ (xdc_Char)0x20, /* [2710] */ (xdc_Char)0x47, /* [2711] */ (xdc_Char)0x61, /* [2712] */ (xdc_Char)0x74, /* [2713] */ (xdc_Char)0x65, /* [2714] */ (xdc_Char)0x53, /* [2715] */ (xdc_Char)0x70, /* [2716] */ (xdc_Char)0x69, /* [2717] */ (xdc_Char)0x6e, /* [2718] */ (xdc_Char)0x6c, /* [2719] */ (xdc_Char)0x6f, /* [2720] */ (xdc_Char)0x63, /* [2721] */ (xdc_Char)0x6b, /* [2722] */ (xdc_Char)0x20, /* [2723] */ (xdc_Char)0x41, /* [2724] */ (xdc_Char)0x50, /* [2725] */ (xdc_Char)0x49, /* [2726] */ (xdc_Char)0x20, /* [2727] */ (xdc_Char)0x64, /* [2728] */ (xdc_Char)0x6f, /* [2729] */ (xdc_Char)0x63, /* [2730] */ (xdc_Char)0x20, /* [2731] */ (xdc_Char)0x66, /* [2732] */ (xdc_Char)0x6f, /* [2733] */ (xdc_Char)0x72, /* [2734] */ (xdc_Char)0x20, /* [2735] */ (xdc_Char)0x64, /* [2736] */ (xdc_Char)0x65, /* [2737] */ (xdc_Char)0x74, /* [2738] */ (xdc_Char)0x61, /* [2739] */ (xdc_Char)0x69, /* [2740] */ (xdc_Char)0x6c, /* [2741] */ (xdc_Char)0x73, /* [2742] */ (xdc_Char)0x2e, /* [2743] */ (xdc_Char)0x0, /* [2744] */ (xdc_Char)0x62, /* [2745] */ (xdc_Char)0x75, /* [2746] */ (xdc_Char)0x66, /* [2747] */ (xdc_Char)0x20, /* [2748] */ (xdc_Char)0x70, /* [2749] */ (xdc_Char)0x61, /* [2750] */ (xdc_Char)0x72, /* [2751] */ (xdc_Char)0x61, /* [2752] */ (xdc_Char)0x6d, /* [2753] */ (xdc_Char)0x65, /* [2754] */ (xdc_Char)0x74, /* [2755] */ (xdc_Char)0x65, /* [2756] */ (xdc_Char)0x72, /* [2757] */ (xdc_Char)0x20, /* [2758] */ (xdc_Char)0x63, /* [2759] */ (xdc_Char)0x61, /* [2760] */ (xdc_Char)0x6e, /* [2761] */ (xdc_Char)0x6e, /* [2762] */ (xdc_Char)0x6f, /* [2763] */ (xdc_Char)0x74, /* [2764] */ (xdc_Char)0x20, /* [2765] */ (xdc_Char)0x62, /* [2766] */ (xdc_Char)0x65, /* [2767] */ (xdc_Char)0x20, /* [2768] */ (xdc_Char)0x6e, /* [2769] */ (xdc_Char)0x75, /* [2770] */ (xdc_Char)0x6c, /* [2771] */ (xdc_Char)0x6c, /* [2772] */ (xdc_Char)0x0, /* [2773] */ (xdc_Char)0x62, /* [2774] */ (xdc_Char)0x75, /* [2775] */ (xdc_Char)0x66, /* [2776] */ (xdc_Char)0x20, /* [2777] */ (xdc_Char)0x6e, /* [2778] */ (xdc_Char)0x6f, /* [2779] */ (xdc_Char)0x74, /* [2780] */ (xdc_Char)0x20, /* [2781] */ (xdc_Char)0x70, /* [2782] */ (xdc_Char)0x72, /* [2783] */ (xdc_Char)0x6f, /* [2784] */ (xdc_Char)0x70, /* [2785] */ (xdc_Char)0x65, /* [2786] */ (xdc_Char)0x72, /* [2787] */ (xdc_Char)0x6c, /* [2788] */ (xdc_Char)0x79, /* [2789] */ (xdc_Char)0x20, /* [2790] */ (xdc_Char)0x61, /* [2791] */ (xdc_Char)0x6c, /* [2792] */ (xdc_Char)0x69, /* [2793] */ (xdc_Char)0x67, /* [2794] */ (xdc_Char)0x6e, /* [2795] */ (xdc_Char)0x65, /* [2796] */ (xdc_Char)0x64, /* [2797] */ (xdc_Char)0x0, /* [2798] */ (xdc_Char)0x61, /* [2799] */ (xdc_Char)0x6c, /* [2800] */ (xdc_Char)0x69, /* [2801] */ (xdc_Char)0x67, /* [2802] */ (xdc_Char)0x6e, /* [2803] */ (xdc_Char)0x20, /* [2804] */ (xdc_Char)0x70, /* [2805] */ (xdc_Char)0x61, /* [2806] */ (xdc_Char)0x72, /* [2807] */ (xdc_Char)0x61, /* [2808] */ (xdc_Char)0x6d, /* [2809] */ (xdc_Char)0x65, /* [2810] */ (xdc_Char)0x74, /* [2811] */ (xdc_Char)0x65, /* [2812] */ (xdc_Char)0x72, /* [2813] */ (xdc_Char)0x20, /* [2814] */ (xdc_Char)0x6d, /* [2815] */ (xdc_Char)0x75, /* [2816] */ (xdc_Char)0x73, /* [2817] */ (xdc_Char)0x74, /* [2818] */ (xdc_Char)0x20, /* [2819] */ (xdc_Char)0x62, /* [2820] */ (xdc_Char)0x65, /* [2821] */ (xdc_Char)0x20, /* [2822] */ (xdc_Char)0x30, /* [2823] */ (xdc_Char)0x20, /* [2824] */ (xdc_Char)0x6f, /* [2825] */ (xdc_Char)0x72, /* [2826] */ (xdc_Char)0x20, /* [2827] */ (xdc_Char)0x61, /* [2828] */ (xdc_Char)0x20, /* [2829] */ (xdc_Char)0x70, /* [2830] */ (xdc_Char)0x6f, /* [2831] */ (xdc_Char)0x77, /* [2832] */ (xdc_Char)0x65, /* [2833] */ (xdc_Char)0x72, /* [2834] */ (xdc_Char)0x20, /* [2835] */ (xdc_Char)0x6f, /* [2836] */ (xdc_Char)0x66, /* [2837] */ (xdc_Char)0x20, /* [2838] */ (xdc_Char)0x32, /* [2839] */ (xdc_Char)0x20, /* [2840] */ (xdc_Char)0x3e, /* [2841] */ (xdc_Char)0x3d, /* [2842] */ (xdc_Char)0x20, /* [2843] */ (xdc_Char)0x74, /* [2844] */ (xdc_Char)0x68, /* [2845] */ (xdc_Char)0x65, /* [2846] */ (xdc_Char)0x20, /* [2847] */ (xdc_Char)0x76, /* [2848] */ (xdc_Char)0x61, /* [2849] */ (xdc_Char)0x6c, /* [2850] */ (xdc_Char)0x75, /* [2851] */ (xdc_Char)0x65, /* [2852] */ (xdc_Char)0x20, /* [2853] */ (xdc_Char)0x6f, /* [2854] */ (xdc_Char)0x66, /* [2855] */ (xdc_Char)0x20, /* [2856] */ (xdc_Char)0x4d, /* [2857] */ (xdc_Char)0x65, /* [2858] */ (xdc_Char)0x6d, /* [2859] */ (xdc_Char)0x6f, /* [2860] */ (xdc_Char)0x72, /* [2861] */ (xdc_Char)0x79, /* [2862] */ (xdc_Char)0x5f, /* [2863] */ (xdc_Char)0x67, /* [2864] */ (xdc_Char)0x65, /* [2865] */ (xdc_Char)0x74, /* [2866] */ (xdc_Char)0x4d, /* [2867] */ (xdc_Char)0x61, /* [2868] */ (xdc_Char)0x78, /* [2869] */ (xdc_Char)0x44, /* [2870] */ (xdc_Char)0x65, /* [2871] */ (xdc_Char)0x66, /* [2872] */ (xdc_Char)0x61, /* [2873] */ (xdc_Char)0x75, /* [2874] */ (xdc_Char)0x6c, /* [2875] */ (xdc_Char)0x74, /* [2876] */ (xdc_Char)0x54, /* [2877] */ (xdc_Char)0x79, /* [2878] */ (xdc_Char)0x70, /* [2879] */ (xdc_Char)0x65, /* [2880] */ (xdc_Char)0x41, /* [2881] */ (xdc_Char)0x6c, /* [2882] */ (xdc_Char)0x69, /* [2883] */ (xdc_Char)0x67, /* [2884] */ (xdc_Char)0x6e, /* [2885] */ (xdc_Char)0x28, /* [2886] */ (xdc_Char)0x29, /* [2887] */ (xdc_Char)0x0, /* [2888] */ (xdc_Char)0x61, /* [2889] */ (xdc_Char)0x6c, /* [2890] */ (xdc_Char)0x69, /* [2891] */ (xdc_Char)0x67, /* [2892] */ (xdc_Char)0x6e, /* [2893] */ (xdc_Char)0x20, /* [2894] */ (xdc_Char)0x70, /* [2895] */ (xdc_Char)0x61, /* [2896] */ (xdc_Char)0x72, /* [2897] */ (xdc_Char)0x61, /* [2898] */ (xdc_Char)0x6d, /* [2899] */ (xdc_Char)0x65, /* [2900] */ (xdc_Char)0x74, /* [2901] */ (xdc_Char)0x65, /* [2902] */ (xdc_Char)0x72, /* [2903] */ (xdc_Char)0x20, /* [2904] */ (xdc_Char)0x31, /* [2905] */ (xdc_Char)0x29, /* [2906] */ (xdc_Char)0x20, /* [2907] */ (xdc_Char)0x6d, /* [2908] */ (xdc_Char)0x75, /* [2909] */ (xdc_Char)0x73, /* [2910] */ (xdc_Char)0x74, /* [2911] */ (xdc_Char)0x20, /* [2912] */ (xdc_Char)0x62, /* [2913] */ (xdc_Char)0x65, /* [2914] */ (xdc_Char)0x20, /* [2915] */ (xdc_Char)0x30, /* [2916] */ (xdc_Char)0x20, /* [2917] */ (xdc_Char)0x6f, /* [2918] */ (xdc_Char)0x72, /* [2919] */ (xdc_Char)0x20, /* [2920] */ (xdc_Char)0x61, /* [2921] */ (xdc_Char)0x20, /* [2922] */ (xdc_Char)0x70, /* [2923] */ (xdc_Char)0x6f, /* [2924] */ (xdc_Char)0x77, /* [2925] */ (xdc_Char)0x65, /* [2926] */ (xdc_Char)0x72, /* [2927] */ (xdc_Char)0x20, /* [2928] */ (xdc_Char)0x6f, /* [2929] */ (xdc_Char)0x66, /* [2930] */ (xdc_Char)0x20, /* [2931] */ (xdc_Char)0x32, /* [2932] */ (xdc_Char)0x20, /* [2933] */ (xdc_Char)0x61, /* [2934] */ (xdc_Char)0x6e, /* [2935] */ (xdc_Char)0x64, /* [2936] */ (xdc_Char)0x20, /* [2937] */ (xdc_Char)0x32, /* [2938] */ (xdc_Char)0x29, /* [2939] */ (xdc_Char)0x20, /* [2940] */ (xdc_Char)0x6e, /* [2941] */ (xdc_Char)0x6f, /* [2942] */ (xdc_Char)0x74, /* [2943] */ (xdc_Char)0x20, /* [2944] */ (xdc_Char)0x67, /* [2945] */ (xdc_Char)0x72, /* [2946] */ (xdc_Char)0x65, /* [2947] */ (xdc_Char)0x61, /* [2948] */ (xdc_Char)0x74, /* [2949] */ (xdc_Char)0x65, /* [2950] */ (xdc_Char)0x72, /* [2951] */ (xdc_Char)0x20, /* [2952] */ (xdc_Char)0x74, /* [2953] */ (xdc_Char)0x68, /* [2954] */ (xdc_Char)0x61, /* [2955] */ (xdc_Char)0x6e, /* [2956] */ (xdc_Char)0x20, /* [2957] */ (xdc_Char)0x74, /* [2958] */ (xdc_Char)0x68, /* [2959] */ (xdc_Char)0x65, /* [2960] */ (xdc_Char)0x20, /* [2961] */ (xdc_Char)0x68, /* [2962] */ (xdc_Char)0x65, /* [2963] */ (xdc_Char)0x61, /* [2964] */ (xdc_Char)0x70, /* [2965] */ (xdc_Char)0x73, /* [2966] */ (xdc_Char)0x20, /* [2967] */ (xdc_Char)0x61, /* [2968] */ (xdc_Char)0x6c, /* [2969] */ (xdc_Char)0x69, /* [2970] */ (xdc_Char)0x67, /* [2971] */ (xdc_Char)0x6e, /* [2972] */ (xdc_Char)0x6d, /* [2973] */ (xdc_Char)0x65, /* [2974] */ (xdc_Char)0x6e, /* [2975] */ (xdc_Char)0x74, /* [2976] */ (xdc_Char)0x0, /* [2977] */ (xdc_Char)0x62, /* [2978] */ (xdc_Char)0x6c, /* [2979] */ (xdc_Char)0x6f, /* [2980] */ (xdc_Char)0x63, /* [2981] */ (xdc_Char)0x6b, /* [2982] */ (xdc_Char)0x53, /* [2983] */ (xdc_Char)0x69, /* [2984] */ (xdc_Char)0x7a, /* [2985] */ (xdc_Char)0x65, /* [2986] */ (xdc_Char)0x20, /* [2987] */ (xdc_Char)0x6d, /* [2988] */ (xdc_Char)0x75, /* [2989] */ (xdc_Char)0x73, /* [2990] */ (xdc_Char)0x74, /* [2991] */ (xdc_Char)0x20, /* [2992] */ (xdc_Char)0x62, /* [2993] */ (xdc_Char)0x65, /* [2994] */ (xdc_Char)0x20, /* [2995] */ (xdc_Char)0x6c, /* [2996] */ (xdc_Char)0x61, /* [2997] */ (xdc_Char)0x72, /* [2998] */ (xdc_Char)0x67, /* [2999] */ (xdc_Char)0x65, /* [3000] */ (xdc_Char)0x20, /* [3001] */ (xdc_Char)0x65, /* [3002] */ (xdc_Char)0x6e, /* [3003] */ (xdc_Char)0x6f, /* [3004] */ (xdc_Char)0x75, /* [3005] */ (xdc_Char)0x67, /* [3006] */ (xdc_Char)0x68, /* [3007] */ (xdc_Char)0x20, /* [3008] */ (xdc_Char)0x74, /* [3009] */ (xdc_Char)0x6f, /* [3010] */ (xdc_Char)0x20, /* [3011] */ (xdc_Char)0x68, /* [3012] */ (xdc_Char)0x6f, /* [3013] */ (xdc_Char)0x6c, /* [3014] */ (xdc_Char)0x64, /* [3015] */ (xdc_Char)0x20, /* [3016] */ (xdc_Char)0x61, /* [3017] */ (xdc_Char)0x74, /* [3018] */ (xdc_Char)0x6c, /* [3019] */ (xdc_Char)0x65, /* [3020] */ (xdc_Char)0x61, /* [3021] */ (xdc_Char)0x73, /* [3022] */ (xdc_Char)0x74, /* [3023] */ (xdc_Char)0x20, /* [3024] */ (xdc_Char)0x74, /* [3025] */ (xdc_Char)0x77, /* [3026] */ (xdc_Char)0x6f, /* [3027] */ (xdc_Char)0x20, /* [3028] */ (xdc_Char)0x70, /* [3029] */ (xdc_Char)0x6f, /* [3030] */ (xdc_Char)0x69, /* [3031] */ (xdc_Char)0x6e, /* [3032] */ (xdc_Char)0x74, /* [3033] */ (xdc_Char)0x65, /* [3034] */ (xdc_Char)0x72, /* [3035] */ (xdc_Char)0x73, /* [3036] */ (xdc_Char)0x0, /* [3037] */ (xdc_Char)0x6e, /* [3038] */ (xdc_Char)0x75, /* [3039] */ (xdc_Char)0x6d, /* [3040] */ (xdc_Char)0x42, /* [3041] */ (xdc_Char)0x6c, /* [3042] */ (xdc_Char)0x6f, /* [3043] */ (xdc_Char)0x63, /* [3044] */ (xdc_Char)0x6b, /* [3045] */ (xdc_Char)0x73, /* [3046] */ (xdc_Char)0x20, /* [3047] */ (xdc_Char)0x63, /* [3048] */ (xdc_Char)0x61, /* [3049] */ (xdc_Char)0x6e, /* [3050] */ (xdc_Char)0x6e, /* [3051] */ (xdc_Char)0x6f, /* [3052] */ (xdc_Char)0x74, /* [3053] */ (xdc_Char)0x20, /* [3054] */ (xdc_Char)0x62, /* [3055] */ (xdc_Char)0x65, /* [3056] */ (xdc_Char)0x20, /* [3057] */ (xdc_Char)0x7a, /* [3058] */ (xdc_Char)0x65, /* [3059] */ (xdc_Char)0x72, /* [3060] */ (xdc_Char)0x6f, /* [3061] */ (xdc_Char)0x0, /* [3062] */ (xdc_Char)0x62, /* [3063] */ (xdc_Char)0x75, /* [3064] */ (xdc_Char)0x66, /* [3065] */ (xdc_Char)0x53, /* [3066] */ (xdc_Char)0x69, /* [3067] */ (xdc_Char)0x7a, /* [3068] */ (xdc_Char)0x65, /* [3069] */ (xdc_Char)0x20, /* [3070] */ (xdc_Char)0x63, /* [3071] */ (xdc_Char)0x61, /* [3072] */ (xdc_Char)0x6e, /* [3073] */ (xdc_Char)0x6e, /* [3074] */ (xdc_Char)0x6f, /* [3075] */ (xdc_Char)0x74, /* [3076] */ (xdc_Char)0x20, /* [3077] */ (xdc_Char)0x62, /* [3078] */ (xdc_Char)0x65, /* [3079] */ (xdc_Char)0x20, /* [3080] */ (xdc_Char)0x7a, /* [3081] */ (xdc_Char)0x65, /* [3082] */ (xdc_Char)0x72, /* [3083] */ (xdc_Char)0x6f, /* [3084] */ (xdc_Char)0x0, /* [3085] */ (xdc_Char)0x48, /* [3086] */ (xdc_Char)0x65, /* [3087] */ (xdc_Char)0x61, /* [3088] */ (xdc_Char)0x70, /* [3089] */ (xdc_Char)0x42, /* [3090] */ (xdc_Char)0x75, /* [3091] */ (xdc_Char)0x66, /* [3092] */ (xdc_Char)0x5f, /* [3093] */ (xdc_Char)0x63, /* [3094] */ (xdc_Char)0x72, /* [3095] */ (xdc_Char)0x65, /* [3096] */ (xdc_Char)0x61, /* [3097] */ (xdc_Char)0x74, /* [3098] */ (xdc_Char)0x65, /* [3099] */ (xdc_Char)0x27, /* [3100] */ (xdc_Char)0x73, /* [3101] */ (xdc_Char)0x20, /* [3102] */ (xdc_Char)0x62, /* [3103] */ (xdc_Char)0x75, /* [3104] */ (xdc_Char)0x66, /* [3105] */ (xdc_Char)0x53, /* [3106] */ (xdc_Char)0x69, /* [3107] */ (xdc_Char)0x7a, /* [3108] */ (xdc_Char)0x65, /* [3109] */ (xdc_Char)0x20, /* [3110] */ (xdc_Char)0x70, /* [3111] */ (xdc_Char)0x61, /* [3112] */ (xdc_Char)0x72, /* [3113] */ (xdc_Char)0x61, /* [3114] */ (xdc_Char)0x6d, /* [3115] */ (xdc_Char)0x65, /* [3116] */ (xdc_Char)0x74, /* [3117] */ (xdc_Char)0x65, /* [3118] */ (xdc_Char)0x72, /* [3119] */ (xdc_Char)0x20, /* [3120] */ (xdc_Char)0x69, /* [3121] */ (xdc_Char)0x73, /* [3122] */ (xdc_Char)0x20, /* [3123] */ (xdc_Char)0x69, /* [3124] */ (xdc_Char)0x6e, /* [3125] */ (xdc_Char)0x76, /* [3126] */ (xdc_Char)0x61, /* [3127] */ (xdc_Char)0x6c, /* [3128] */ (xdc_Char)0x69, /* [3129] */ (xdc_Char)0x64, /* [3130] */ (xdc_Char)0x20, /* [3131] */ (xdc_Char)0x28, /* [3132] */ (xdc_Char)0x74, /* [3133] */ (xdc_Char)0x6f, /* [3134] */ (xdc_Char)0x6f, /* [3135] */ (xdc_Char)0x20, /* [3136] */ (xdc_Char)0x73, /* [3137] */ (xdc_Char)0x6d, /* [3138] */ (xdc_Char)0x61, /* [3139] */ (xdc_Char)0x6c, /* [3140] */ (xdc_Char)0x6c, /* [3141] */ (xdc_Char)0x29, /* [3142] */ (xdc_Char)0x0, /* [3143] */ (xdc_Char)0x43, /* [3144] */ (xdc_Char)0x61, /* [3145] */ (xdc_Char)0x6e, /* [3146] */ (xdc_Char)0x6e, /* [3147] */ (xdc_Char)0x6f, /* [3148] */ (xdc_Char)0x74, /* [3149] */ (xdc_Char)0x20, /* [3150] */ (xdc_Char)0x63, /* [3151] */ (xdc_Char)0x61, /* [3152] */ (xdc_Char)0x6c, /* [3153] */ (xdc_Char)0x6c, /* [3154] */ (xdc_Char)0x20, /* [3155] */ (xdc_Char)0x48, /* [3156] */ (xdc_Char)0x65, /* [3157] */ (xdc_Char)0x61, /* [3158] */ (xdc_Char)0x70, /* [3159] */ (xdc_Char)0x42, /* [3160] */ (xdc_Char)0x75, /* [3161] */ (xdc_Char)0x66, /* [3162] */ (xdc_Char)0x5f, /* [3163] */ (xdc_Char)0x66, /* [3164] */ (xdc_Char)0x72, /* [3165] */ (xdc_Char)0x65, /* [3166] */ (xdc_Char)0x65, /* [3167] */ (xdc_Char)0x20, /* [3168] */ (xdc_Char)0x77, /* [3169] */ (xdc_Char)0x68, /* [3170] */ (xdc_Char)0x65, /* [3171] */ (xdc_Char)0x6e, /* [3172] */ (xdc_Char)0x20, /* [3173] */ (xdc_Char)0x6e, /* [3174] */ (xdc_Char)0x6f, /* [3175] */ (xdc_Char)0x20, /* [3176] */ (xdc_Char)0x62, /* [3177] */ (xdc_Char)0x6c, /* [3178] */ (xdc_Char)0x6f, /* [3179] */ (xdc_Char)0x63, /* [3180] */ (xdc_Char)0x6b, /* [3181] */ (xdc_Char)0x73, /* [3182] */ (xdc_Char)0x20, /* [3183] */ (xdc_Char)0x68, /* [3184] */ (xdc_Char)0x61, /* [3185] */ (xdc_Char)0x76, /* [3186] */ (xdc_Char)0x65, /* [3187] */ (xdc_Char)0x20, /* [3188] */ (xdc_Char)0x62, /* [3189] */ (xdc_Char)0x65, /* [3190] */ (xdc_Char)0x65, /* [3191] */ (xdc_Char)0x6e, /* [3192] */ (xdc_Char)0x20, /* [3193] */ (xdc_Char)0x61, /* [3194] */ (xdc_Char)0x6c, /* [3195] */ (xdc_Char)0x6c, /* [3196] */ (xdc_Char)0x6f, /* [3197] */ (xdc_Char)0x63, /* [3198] */ (xdc_Char)0x61, /* [3199] */ (xdc_Char)0x74, /* [3200] */ (xdc_Char)0x65, /* [3201] */ (xdc_Char)0x64, /* [3202] */ (xdc_Char)0x0, /* [3203] */ (xdc_Char)0x41, /* [3204] */ (xdc_Char)0x5f, /* [3205] */ (xdc_Char)0x69, /* [3206] */ (xdc_Char)0x6e, /* [3207] */ (xdc_Char)0x76, /* [3208] */ (xdc_Char)0x61, /* [3209] */ (xdc_Char)0x6c, /* [3210] */ (xdc_Char)0x69, /* [3211] */ (xdc_Char)0x64, /* [3212] */ (xdc_Char)0x46, /* [3213] */ (xdc_Char)0x72, /* [3214] */ (xdc_Char)0x65, /* [3215] */ (xdc_Char)0x65, /* [3216] */ (xdc_Char)0x3a, /* [3217] */ (xdc_Char)0x20, /* [3218] */ (xdc_Char)0x49, /* [3219] */ (xdc_Char)0x6e, /* [3220] */ (xdc_Char)0x76, /* [3221] */ (xdc_Char)0x61, /* [3222] */ (xdc_Char)0x6c, /* [3223] */ (xdc_Char)0x69, /* [3224] */ (xdc_Char)0x64, /* [3225] */ (xdc_Char)0x20, /* [3226] */ (xdc_Char)0x66, /* [3227] */ (xdc_Char)0x72, /* [3228] */ (xdc_Char)0x65, /* [3229] */ (xdc_Char)0x65, /* [3230] */ (xdc_Char)0x0, /* [3231] */ (xdc_Char)0x41, /* [3232] */ (xdc_Char)0x5f, /* [3233] */ (xdc_Char)0x7a, /* [3234] */ (xdc_Char)0x65, /* [3235] */ (xdc_Char)0x72, /* [3236] */ (xdc_Char)0x6f, /* [3237] */ (xdc_Char)0x42, /* [3238] */ (xdc_Char)0x6c, /* [3239] */ (xdc_Char)0x6f, /* [3240] */ (xdc_Char)0x63, /* [3241] */ (xdc_Char)0x6b, /* [3242] */ (xdc_Char)0x3a, /* [3243] */ (xdc_Char)0x20, /* [3244] */ (xdc_Char)0x43, /* [3245] */ (xdc_Char)0x61, /* [3246] */ (xdc_Char)0x6e, /* [3247] */ (xdc_Char)0x6e, /* [3248] */ (xdc_Char)0x6f, /* [3249] */ (xdc_Char)0x74, /* [3250] */ (xdc_Char)0x20, /* [3251] */ (xdc_Char)0x61, /* [3252] */ (xdc_Char)0x6c, /* [3253] */ (xdc_Char)0x6c, /* [3254] */ (xdc_Char)0x6f, /* [3255] */ (xdc_Char)0x63, /* [3256] */ (xdc_Char)0x61, /* [3257] */ (xdc_Char)0x74, /* [3258] */ (xdc_Char)0x65, /* [3259] */ (xdc_Char)0x20, /* [3260] */ (xdc_Char)0x73, /* [3261] */ (xdc_Char)0x69, /* [3262] */ (xdc_Char)0x7a, /* [3263] */ (xdc_Char)0x65, /* [3264] */ (xdc_Char)0x20, /* [3265] */ (xdc_Char)0x30, /* [3266] */ (xdc_Char)0x0, /* [3267] */ (xdc_Char)0x41, /* [3268] */ (xdc_Char)0x5f, /* [3269] */ (xdc_Char)0x68, /* [3270] */ (xdc_Char)0x65, /* [3271] */ (xdc_Char)0x61, /* [3272] */ (xdc_Char)0x70, /* [3273] */ (xdc_Char)0x53, /* [3274] */ (xdc_Char)0x69, /* [3275] */ (xdc_Char)0x7a, /* [3276] */ (xdc_Char)0x65, /* [3277] */ (xdc_Char)0x3a, /* [3278] */ (xdc_Char)0x20, /* [3279] */ (xdc_Char)0x52, /* [3280] */ (xdc_Char)0x65, /* [3281] */ (xdc_Char)0x71, /* [3282] */ (xdc_Char)0x75, /* [3283] */ (xdc_Char)0x65, /* [3284] */ (xdc_Char)0x73, /* [3285] */ (xdc_Char)0x74, /* [3286] */ (xdc_Char)0x65, /* [3287] */ (xdc_Char)0x64, /* [3288] */ (xdc_Char)0x20, /* [3289] */ (xdc_Char)0x68, /* [3290] */ (xdc_Char)0x65, /* [3291] */ (xdc_Char)0x61, /* [3292] */ (xdc_Char)0x70, /* [3293] */ (xdc_Char)0x20, /* [3294] */ (xdc_Char)0x73, /* [3295] */ (xdc_Char)0x69, /* [3296] */ (xdc_Char)0x7a, /* [3297] */ (xdc_Char)0x65, /* [3298] */ (xdc_Char)0x20, /* [3299] */ (xdc_Char)0x69, /* [3300] */ (xdc_Char)0x73, /* [3301] */ (xdc_Char)0x20, /* [3302] */ (xdc_Char)0x74, /* [3303] */ (xdc_Char)0x6f, /* [3304] */ (xdc_Char)0x6f, /* [3305] */ (xdc_Char)0x20, /* [3306] */ (xdc_Char)0x73, /* [3307] */ (xdc_Char)0x6d, /* [3308] */ (xdc_Char)0x61, /* [3309] */ (xdc_Char)0x6c, /* [3310] */ (xdc_Char)0x6c, /* [3311] */ (xdc_Char)0x0, /* [3312] */ (xdc_Char)0x41, /* [3313] */ (xdc_Char)0x5f, /* [3314] */ (xdc_Char)0x61, /* [3315] */ (xdc_Char)0x6c, /* [3316] */ (xdc_Char)0x69, /* [3317] */ (xdc_Char)0x67, /* [3318] */ (xdc_Char)0x6e, /* [3319] */ (xdc_Char)0x3a, /* [3320] */ (xdc_Char)0x20, /* [3321] */ (xdc_Char)0x52, /* [3322] */ (xdc_Char)0x65, /* [3323] */ (xdc_Char)0x71, /* [3324] */ (xdc_Char)0x75, /* [3325] */ (xdc_Char)0x65, /* [3326] */ (xdc_Char)0x73, /* [3327] */ (xdc_Char)0x74, /* [3328] */ (xdc_Char)0x65, /* [3329] */ (xdc_Char)0x64, /* [3330] */ (xdc_Char)0x20, /* [3331] */ (xdc_Char)0x61, /* [3332] */ (xdc_Char)0x6c, /* [3333] */ (xdc_Char)0x69, /* [3334] */ (xdc_Char)0x67, /* [3335] */ (xdc_Char)0x6e, /* [3336] */ (xdc_Char)0x20, /* [3337] */ (xdc_Char)0x69, /* [3338] */ (xdc_Char)0x73, /* [3339] */ (xdc_Char)0x20, /* [3340] */ (xdc_Char)0x6e, /* [3341] */ (xdc_Char)0x6f, /* [3342] */ (xdc_Char)0x74, /* [3343] */ (xdc_Char)0x20, /* [3344] */ (xdc_Char)0x61, /* [3345] */ (xdc_Char)0x20, /* [3346] */ (xdc_Char)0x70, /* [3347] */ (xdc_Char)0x6f, /* [3348] */ (xdc_Char)0x77, /* [3349] */ (xdc_Char)0x65, /* [3350] */ (xdc_Char)0x72, /* [3351] */ (xdc_Char)0x20, /* [3352] */ (xdc_Char)0x6f, /* [3353] */ (xdc_Char)0x66, /* [3354] */ (xdc_Char)0x20, /* [3355] */ (xdc_Char)0x32, /* [3356] */ (xdc_Char)0x0, /* [3357] */ (xdc_Char)0x49, /* [3358] */ (xdc_Char)0x6e, /* [3359] */ (xdc_Char)0x76, /* [3360] */ (xdc_Char)0x61, /* [3361] */ (xdc_Char)0x6c, /* [3362] */ (xdc_Char)0x69, /* [3363] */ (xdc_Char)0x64, /* [3364] */ (xdc_Char)0x20, /* [3365] */ (xdc_Char)0x62, /* [3366] */ (xdc_Char)0x6c, /* [3367] */ (xdc_Char)0x6f, /* [3368] */ (xdc_Char)0x63, /* [3369] */ (xdc_Char)0x6b, /* [3370] */ (xdc_Char)0x20, /* [3371] */ (xdc_Char)0x61, /* [3372] */ (xdc_Char)0x64, /* [3373] */ (xdc_Char)0x64, /* [3374] */ (xdc_Char)0x72, /* [3375] */ (xdc_Char)0x65, /* [3376] */ (xdc_Char)0x73, /* [3377] */ (xdc_Char)0x73, /* [3378] */ (xdc_Char)0x20, /* [3379] */ (xdc_Char)0x6f, /* [3380] */ (xdc_Char)0x6e, /* [3381] */ (xdc_Char)0x20, /* [3382] */ (xdc_Char)0x74, /* [3383] */ (xdc_Char)0x68, /* [3384] */ (xdc_Char)0x65, /* [3385] */ (xdc_Char)0x20, /* [3386] */ (xdc_Char)0x66, /* [3387] */ (xdc_Char)0x72, /* [3388] */ (xdc_Char)0x65, /* [3389] */ (xdc_Char)0x65, /* [3390] */ (xdc_Char)0x2e, /* [3391] */ (xdc_Char)0x20, /* [3392] */ (xdc_Char)0x46, /* [3393] */ (xdc_Char)0x61, /* [3394] */ (xdc_Char)0x69, /* [3395] */ (xdc_Char)0x6c, /* [3396] */ (xdc_Char)0x65, /* [3397] */ (xdc_Char)0x64, /* [3398] */ (xdc_Char)0x20, /* [3399] */ (xdc_Char)0x74, /* [3400] */ (xdc_Char)0x6f, /* [3401] */ (xdc_Char)0x20, /* [3402] */ (xdc_Char)0x66, /* [3403] */ (xdc_Char)0x72, /* [3404] */ (xdc_Char)0x65, /* [3405] */ (xdc_Char)0x65, /* [3406] */ (xdc_Char)0x20, /* [3407] */ (xdc_Char)0x62, /* [3408] */ (xdc_Char)0x6c, /* [3409] */ (xdc_Char)0x6f, /* [3410] */ (xdc_Char)0x63, /* [3411] */ (xdc_Char)0x6b, /* [3412] */ (xdc_Char)0x20, /* [3413] */ (xdc_Char)0x62, /* [3414] */ (xdc_Char)0x61, /* [3415] */ (xdc_Char)0x63, /* [3416] */ (xdc_Char)0x6b, /* [3417] */ (xdc_Char)0x20, /* [3418] */ (xdc_Char)0x74, /* [3419] */ (xdc_Char)0x6f, /* [3420] */ (xdc_Char)0x20, /* [3421] */ (xdc_Char)0x68, /* [3422] */ (xdc_Char)0x65, /* [3423] */ (xdc_Char)0x61, /* [3424] */ (xdc_Char)0x70, /* [3425] */ (xdc_Char)0x2e, /* [3426] */ (xdc_Char)0x0, /* [3427] */ (xdc_Char)0x41, /* [3428] */ (xdc_Char)0x5f, /* [3429] */ (xdc_Char)0x64, /* [3430] */ (xdc_Char)0x6f, /* [3431] */ (xdc_Char)0x75, /* [3432] */ (xdc_Char)0x62, /* [3433] */ (xdc_Char)0x6c, /* [3434] */ (xdc_Char)0x65, /* [3435] */ (xdc_Char)0x46, /* [3436] */ (xdc_Char)0x72, /* [3437] */ (xdc_Char)0x65, /* [3438] */ (xdc_Char)0x65, /* [3439] */ (xdc_Char)0x3a, /* [3440] */ (xdc_Char)0x20, /* [3441] */ (xdc_Char)0x42, /* [3442] */ (xdc_Char)0x75, /* [3443] */ (xdc_Char)0x66, /* [3444] */ (xdc_Char)0x66, /* [3445] */ (xdc_Char)0x65, /* [3446] */ (xdc_Char)0x72, /* [3447] */ (xdc_Char)0x20, /* [3448] */ (xdc_Char)0x61, /* [3449] */ (xdc_Char)0x6c, /* [3450] */ (xdc_Char)0x72, /* [3451] */ (xdc_Char)0x65, /* [3452] */ (xdc_Char)0x61, /* [3453] */ (xdc_Char)0x64, /* [3454] */ (xdc_Char)0x79, /* [3455] */ (xdc_Char)0x20, /* [3456] */ (xdc_Char)0x66, /* [3457] */ (xdc_Char)0x72, /* [3458] */ (xdc_Char)0x65, /* [3459] */ (xdc_Char)0x65, /* [3460] */ (xdc_Char)0x0, /* [3461] */ (xdc_Char)0x41, /* [3462] */ (xdc_Char)0x5f, /* [3463] */ (xdc_Char)0x62, /* [3464] */ (xdc_Char)0x75, /* [3465] */ (xdc_Char)0x66, /* [3466] */ (xdc_Char)0x4f, /* [3467] */ (xdc_Char)0x76, /* [3468] */ (xdc_Char)0x65, /* [3469] */ (xdc_Char)0x72, /* [3470] */ (xdc_Char)0x66, /* [3471] */ (xdc_Char)0x6c, /* [3472] */ (xdc_Char)0x6f, /* [3473] */ (xdc_Char)0x77, /* [3474] */ (xdc_Char)0x3a, /* [3475] */ (xdc_Char)0x20, /* [3476] */ (xdc_Char)0x42, /* [3477] */ (xdc_Char)0x75, /* [3478] */ (xdc_Char)0x66, /* [3479] */ (xdc_Char)0x66, /* [3480] */ (xdc_Char)0x65, /* [3481] */ (xdc_Char)0x72, /* [3482] */ (xdc_Char)0x20, /* [3483] */ (xdc_Char)0x6f, /* [3484] */ (xdc_Char)0x76, /* [3485] */ (xdc_Char)0x65, /* [3486] */ (xdc_Char)0x72, /* [3487] */ (xdc_Char)0x66, /* [3488] */ (xdc_Char)0x6c, /* [3489] */ (xdc_Char)0x6f, /* [3490] */ (xdc_Char)0x77, /* [3491] */ (xdc_Char)0x0, /* [3492] */ (xdc_Char)0x41, /* [3493] */ (xdc_Char)0x5f, /* [3494] */ (xdc_Char)0x6e, /* [3495] */ (xdc_Char)0x6f, /* [3496] */ (xdc_Char)0x74, /* [3497] */ (xdc_Char)0x45, /* [3498] */ (xdc_Char)0x6d, /* [3499] */ (xdc_Char)0x70, /* [3500] */ (xdc_Char)0x74, /* [3501] */ (xdc_Char)0x79, /* [3502] */ (xdc_Char)0x3a, /* [3503] */ (xdc_Char)0x20, /* [3504] */ (xdc_Char)0x48, /* [3505] */ (xdc_Char)0x65, /* [3506] */ (xdc_Char)0x61, /* [3507] */ (xdc_Char)0x70, /* [3508] */ (xdc_Char)0x20, /* [3509] */ (xdc_Char)0x6e, /* [3510] */ (xdc_Char)0x6f, /* [3511] */ (xdc_Char)0x74, /* [3512] */ (xdc_Char)0x20, /* [3513] */ (xdc_Char)0x65, /* [3514] */ (xdc_Char)0x6d, /* [3515] */ (xdc_Char)0x70, /* [3516] */ (xdc_Char)0x74, /* [3517] */ (xdc_Char)0x79, /* [3518] */ (xdc_Char)0x0, /* [3519] */ (xdc_Char)0x41, /* [3520] */ (xdc_Char)0x5f, /* [3521] */ (xdc_Char)0x6e, /* [3522] */ (xdc_Char)0x75, /* [3523] */ (xdc_Char)0x6c, /* [3524] */ (xdc_Char)0x6c, /* [3525] */ (xdc_Char)0x4f, /* [3526] */ (xdc_Char)0x62, /* [3527] */ (xdc_Char)0x6a, /* [3528] */ (xdc_Char)0x65, /* [3529] */ (xdc_Char)0x63, /* [3530] */ (xdc_Char)0x74, /* [3531] */ (xdc_Char)0x3a, /* [3532] */ (xdc_Char)0x20, /* [3533] */ (xdc_Char)0x48, /* [3534] */ (xdc_Char)0x65, /* [3535] */ (xdc_Char)0x61, /* [3536] */ (xdc_Char)0x70, /* [3537] */ (xdc_Char)0x54, /* [3538] */ (xdc_Char)0x72, /* [3539] */ (xdc_Char)0x61, /* [3540] */ (xdc_Char)0x63, /* [3541] */ (xdc_Char)0x6b, /* [3542] */ (xdc_Char)0x5f, /* [3543] */ (xdc_Char)0x70, /* [3544] */ (xdc_Char)0x72, /* [3545] */ (xdc_Char)0x69, /* [3546] */ (xdc_Char)0x6e, /* [3547] */ (xdc_Char)0x74, /* [3548] */ (xdc_Char)0x48, /* [3549] */ (xdc_Char)0x65, /* [3550] */ (xdc_Char)0x61, /* [3551] */ (xdc_Char)0x70, /* [3552] */ (xdc_Char)0x20, /* [3553] */ (xdc_Char)0x63, /* [3554] */ (xdc_Char)0x61, /* [3555] */ (xdc_Char)0x6c, /* [3556] */ (xdc_Char)0x6c, /* [3557] */ (xdc_Char)0x65, /* [3558] */ (xdc_Char)0x64, /* [3559] */ (xdc_Char)0x20, /* [3560] */ (xdc_Char)0x77, /* [3561] */ (xdc_Char)0x69, /* [3562] */ (xdc_Char)0x74, /* [3563] */ (xdc_Char)0x68, /* [3564] */ (xdc_Char)0x20, /* [3565] */ (xdc_Char)0x6e, /* [3566] */ (xdc_Char)0x75, /* [3567] */ (xdc_Char)0x6c, /* [3568] */ (xdc_Char)0x6c, /* [3569] */ (xdc_Char)0x20, /* [3570] */ (xdc_Char)0x6f, /* [3571] */ (xdc_Char)0x62, /* [3572] */ (xdc_Char)0x6a, /* [3573] */ (xdc_Char)0x0, /* [3574] */ (xdc_Char)0x61, /* [3575] */ (xdc_Char)0x73, /* [3576] */ (xdc_Char)0x73, /* [3577] */ (xdc_Char)0x65, /* [3578] */ (xdc_Char)0x72, /* [3579] */ (xdc_Char)0x74, /* [3580] */ (xdc_Char)0x69, /* [3581] */ (xdc_Char)0x6f, /* [3582] */ (xdc_Char)0x6e, /* [3583] */ (xdc_Char)0x20, /* [3584] */ (xdc_Char)0x66, /* [3585] */ (xdc_Char)0x61, /* [3586] */ (xdc_Char)0x69, /* [3587] */ (xdc_Char)0x6c, /* [3588] */ (xdc_Char)0x75, /* [3589] */ (xdc_Char)0x72, /* [3590] */ (xdc_Char)0x65, /* [3591] */ (xdc_Char)0x25, /* [3592] */ (xdc_Char)0x73, /* [3593] */ (xdc_Char)0x25, /* [3594] */ (xdc_Char)0x73, /* [3595] */ (xdc_Char)0x0, /* [3596] */ (xdc_Char)0x25, /* [3597] */ (xdc_Char)0x24, /* [3598] */ (xdc_Char)0x53, /* [3599] */ (xdc_Char)0x0, /* [3600] */ (xdc_Char)0x6f, /* [3601] */ (xdc_Char)0x75, /* [3602] */ (xdc_Char)0x74, /* [3603] */ (xdc_Char)0x20, /* [3604] */ (xdc_Char)0x6f, /* [3605] */ (xdc_Char)0x66, /* [3606] */ (xdc_Char)0x20, /* [3607] */ (xdc_Char)0x6d, /* [3608] */ (xdc_Char)0x65, /* [3609] */ (xdc_Char)0x6d, /* [3610] */ (xdc_Char)0x6f, /* [3611] */ (xdc_Char)0x72, /* [3612] */ (xdc_Char)0x79, /* [3613] */ (xdc_Char)0x3a, /* [3614] */ (xdc_Char)0x20, /* [3615] */ (xdc_Char)0x68, /* [3616] */ (xdc_Char)0x65, /* [3617] */ (xdc_Char)0x61, /* [3618] */ (xdc_Char)0x70, /* [3619] */ (xdc_Char)0x3d, /* [3620] */ (xdc_Char)0x30, /* [3621] */ (xdc_Char)0x78, /* [3622] */ (xdc_Char)0x25, /* [3623] */ (xdc_Char)0x78, /* [3624] */ (xdc_Char)0x2c, /* [3625] */ (xdc_Char)0x20, /* [3626] */ (xdc_Char)0x73, /* [3627] */ (xdc_Char)0x69, /* [3628] */ (xdc_Char)0x7a, /* [3629] */ (xdc_Char)0x65, /* [3630] */ (xdc_Char)0x3d, /* [3631] */ (xdc_Char)0x25, /* [3632] */ (xdc_Char)0x75, /* [3633] */ (xdc_Char)0x0, /* [3634] */ (xdc_Char)0x25, /* [3635] */ (xdc_Char)0x73, /* [3636] */ (xdc_Char)0x20, /* [3637] */ (xdc_Char)0x30, /* [3638] */ (xdc_Char)0x78, /* [3639] */ (xdc_Char)0x25, /* [3640] */ (xdc_Char)0x78, /* [3641] */ (xdc_Char)0x0, /* [3642] */ (xdc_Char)0x45, /* [3643] */ (xdc_Char)0x5f, /* [3644] */ (xdc_Char)0x62, /* [3645] */ (xdc_Char)0x61, /* [3646] */ (xdc_Char)0x64, /* [3647] */ (xdc_Char)0x4c, /* [3648] */ (xdc_Char)0x65, /* [3649] */ (xdc_Char)0x76, /* [3650] */ (xdc_Char)0x65, /* [3651] */ (xdc_Char)0x6c, /* [3652] */ (xdc_Char)0x3a, /* [3653] */ (xdc_Char)0x20, /* [3654] */ (xdc_Char)0x42, /* [3655] */ (xdc_Char)0x61, /* [3656] */ (xdc_Char)0x64, /* [3657] */ (xdc_Char)0x20, /* [3658] */ (xdc_Char)0x66, /* [3659] */ (xdc_Char)0x69, /* [3660] */ (xdc_Char)0x6c, /* [3661] */ (xdc_Char)0x74, /* [3662] */ (xdc_Char)0x65, /* [3663] */ (xdc_Char)0x72, /* [3664] */ (xdc_Char)0x20, /* [3665] */ (xdc_Char)0x6c, /* [3666] */ (xdc_Char)0x65, /* [3667] */ (xdc_Char)0x76, /* [3668] */ (xdc_Char)0x65, /* [3669] */ (xdc_Char)0x6c, /* [3670] */ (xdc_Char)0x20, /* [3671] */ (xdc_Char)0x76, /* [3672] */ (xdc_Char)0x61, /* [3673] */ (xdc_Char)0x6c, /* [3674] */ (xdc_Char)0x75, /* [3675] */ (xdc_Char)0x65, /* [3676] */ (xdc_Char)0x3a, /* [3677] */ (xdc_Char)0x20, /* [3678] */ (xdc_Char)0x25, /* [3679] */ (xdc_Char)0x64, /* [3680] */ (xdc_Char)0x0, /* [3681] */ (xdc_Char)0x66, /* [3682] */ (xdc_Char)0x72, /* [3683] */ (xdc_Char)0x65, /* [3684] */ (xdc_Char)0x65, /* [3685] */ (xdc_Char)0x28, /* [3686] */ (xdc_Char)0x29, /* [3687] */ (xdc_Char)0x20, /* [3688] */ (xdc_Char)0x69, /* [3689] */ (xdc_Char)0x6e, /* [3690] */ (xdc_Char)0x76, /* [3691] */ (xdc_Char)0x61, /* [3692] */ (xdc_Char)0x6c, /* [3693] */ (xdc_Char)0x69, /* [3694] */ (xdc_Char)0x64, /* [3695] */ (xdc_Char)0x20, /* [3696] */ (xdc_Char)0x69, /* [3697] */ (xdc_Char)0x6e, /* [3698] */ (xdc_Char)0x20, /* [3699] */ (xdc_Char)0x67, /* [3700] */ (xdc_Char)0x72, /* [3701] */ (xdc_Char)0x6f, /* [3702] */ (xdc_Char)0x77, /* [3703] */ (xdc_Char)0x74, /* [3704] */ (xdc_Char)0x68, /* [3705] */ (xdc_Char)0x2d, /* [3706] */ (xdc_Char)0x6f, /* [3707] */ (xdc_Char)0x6e, /* [3708] */ (xdc_Char)0x6c, /* [3709] */ (xdc_Char)0x79, /* [3710] */ (xdc_Char)0x20, /* [3711] */ (xdc_Char)0x48, /* [3712] */ (xdc_Char)0x65, /* [3713] */ (xdc_Char)0x61, /* [3714] */ (xdc_Char)0x70, /* [3715] */ (xdc_Char)0x4d, /* [3716] */ (xdc_Char)0x69, /* [3717] */ (xdc_Char)0x6e, /* [3718] */ (xdc_Char)0x0, /* [3719] */ (xdc_Char)0x54, /* [3720] */ (xdc_Char)0x68, /* [3721] */ (xdc_Char)0x65, /* [3722] */ (xdc_Char)0x20, /* [3723] */ (xdc_Char)0x52, /* [3724] */ (xdc_Char)0x54, /* [3725] */ (xdc_Char)0x53, /* [3726] */ (xdc_Char)0x20, /* [3727] */ (xdc_Char)0x68, /* [3728] */ (xdc_Char)0x65, /* [3729] */ (xdc_Char)0x61, /* [3730] */ (xdc_Char)0x70, /* [3731] */ (xdc_Char)0x20, /* [3732] */ (xdc_Char)0x69, /* [3733] */ (xdc_Char)0x73, /* [3734] */ (xdc_Char)0x20, /* [3735] */ (xdc_Char)0x75, /* [3736] */ (xdc_Char)0x73, /* [3737] */ (xdc_Char)0x65, /* [3738] */ (xdc_Char)0x64, /* [3739] */ (xdc_Char)0x20, /* [3740] */ (xdc_Char)0x75, /* [3741] */ (xdc_Char)0x70, /* [3742] */ (xdc_Char)0x2e, /* [3743] */ (xdc_Char)0x20, /* [3744] */ (xdc_Char)0x45, /* [3745] */ (xdc_Char)0x78, /* [3746] */ (xdc_Char)0x61, /* [3747] */ (xdc_Char)0x6d, /* [3748] */ (xdc_Char)0x69, /* [3749] */ (xdc_Char)0x6e, /* [3750] */ (xdc_Char)0x65, /* [3751] */ (xdc_Char)0x20, /* [3752] */ (xdc_Char)0x50, /* [3753] */ (xdc_Char)0x72, /* [3754] */ (xdc_Char)0x6f, /* [3755] */ (xdc_Char)0x67, /* [3756] */ (xdc_Char)0x72, /* [3757] */ (xdc_Char)0x61, /* [3758] */ (xdc_Char)0x6d, /* [3759] */ (xdc_Char)0x2e, /* [3760] */ (xdc_Char)0x68, /* [3761] */ (xdc_Char)0x65, /* [3762] */ (xdc_Char)0x61, /* [3763] */ (xdc_Char)0x70, /* [3764] */ (xdc_Char)0x2e, /* [3765] */ (xdc_Char)0x0, /* [3766] */ (xdc_Char)0x45, /* [3767] */ (xdc_Char)0x5f, /* [3768] */ (xdc_Char)0x62, /* [3769] */ (xdc_Char)0x61, /* [3770] */ (xdc_Char)0x64, /* [3771] */ (xdc_Char)0x43, /* [3772] */ (xdc_Char)0x6f, /* [3773] */ (xdc_Char)0x6d, /* [3774] */ (xdc_Char)0x6d, /* [3775] */ (xdc_Char)0x61, /* [3776] */ (xdc_Char)0x6e, /* [3777] */ (xdc_Char)0x64, /* [3778] */ (xdc_Char)0x3a, /* [3779] */ (xdc_Char)0x20, /* [3780] */ (xdc_Char)0x52, /* [3781] */ (xdc_Char)0x65, /* [3782] */ (xdc_Char)0x63, /* [3783] */ (xdc_Char)0x65, /* [3784] */ (xdc_Char)0x69, /* [3785] */ (xdc_Char)0x76, /* [3786] */ (xdc_Char)0x65, /* [3787] */ (xdc_Char)0x64, /* [3788] */ (xdc_Char)0x20, /* [3789] */ (xdc_Char)0x69, /* [3790] */ (xdc_Char)0x6e, /* [3791] */ (xdc_Char)0x76, /* [3792] */ (xdc_Char)0x61, /* [3793] */ (xdc_Char)0x6c, /* [3794] */ (xdc_Char)0x69, /* [3795] */ (xdc_Char)0x64, /* [3796] */ (xdc_Char)0x20, /* [3797] */ (xdc_Char)0x63, /* [3798] */ (xdc_Char)0x6f, /* [3799] */ (xdc_Char)0x6d, /* [3800] */ (xdc_Char)0x6d, /* [3801] */ (xdc_Char)0x61, /* [3802] */ (xdc_Char)0x6e, /* [3803] */ (xdc_Char)0x64, /* [3804] */ (xdc_Char)0x2c, /* [3805] */ (xdc_Char)0x20, /* [3806] */ (xdc_Char)0x69, /* [3807] */ (xdc_Char)0x64, /* [3808] */ (xdc_Char)0x3a, /* [3809] */ (xdc_Char)0x20, /* [3810] */ (xdc_Char)0x25, /* [3811] */ (xdc_Char)0x64, /* [3812] */ (xdc_Char)0x2e, /* [3813] */ (xdc_Char)0x0, /* [3814] */ (xdc_Char)0x45, /* [3815] */ (xdc_Char)0x5f, /* [3816] */ (xdc_Char)0x75, /* [3817] */ (xdc_Char)0x6e, /* [3818] */ (xdc_Char)0x70, /* [3819] */ (xdc_Char)0x6c, /* [3820] */ (xdc_Char)0x75, /* [3821] */ (xdc_Char)0x67, /* [3822] */ (xdc_Char)0x67, /* [3823] */ (xdc_Char)0x65, /* [3824] */ (xdc_Char)0x64, /* [3825] */ (xdc_Char)0x49, /* [3826] */ (xdc_Char)0x6e, /* [3827] */ (xdc_Char)0x74, /* [3828] */ (xdc_Char)0x65, /* [3829] */ (xdc_Char)0x72, /* [3830] */ (xdc_Char)0x72, /* [3831] */ (xdc_Char)0x75, /* [3832] */ (xdc_Char)0x70, /* [3833] */ (xdc_Char)0x74, /* [3834] */ (xdc_Char)0x3a, /* [3835] */ (xdc_Char)0x20, /* [3836] */ (xdc_Char)0x55, /* [3837] */ (xdc_Char)0x6e, /* [3838] */ (xdc_Char)0x70, /* [3839] */ (xdc_Char)0x6c, /* [3840] */ (xdc_Char)0x75, /* [3841] */ (xdc_Char)0x67, /* [3842] */ (xdc_Char)0x67, /* [3843] */ (xdc_Char)0x65, /* [3844] */ (xdc_Char)0x64, /* [3845] */ (xdc_Char)0x20, /* [3846] */ (xdc_Char)0x69, /* [3847] */ (xdc_Char)0x6e, /* [3848] */ (xdc_Char)0x74, /* [3849] */ (xdc_Char)0x65, /* [3850] */ (xdc_Char)0x72, /* [3851] */ (xdc_Char)0x72, /* [3852] */ (xdc_Char)0x75, /* [3853] */ (xdc_Char)0x70, /* [3854] */ (xdc_Char)0x74, /* [3855] */ (xdc_Char)0x20, /* [3856] */ (xdc_Char)0x66, /* [3857] */ (xdc_Char)0x6c, /* [3858] */ (xdc_Char)0x61, /* [3859] */ (xdc_Char)0x67, /* [3860] */ (xdc_Char)0x67, /* [3861] */ (xdc_Char)0x65, /* [3862] */ (xdc_Char)0x64, /* [3863] */ (xdc_Char)0x3a, /* [3864] */ (xdc_Char)0x20, /* [3865] */ (xdc_Char)0x69, /* [3866] */ (xdc_Char)0x6e, /* [3867] */ (xdc_Char)0x74, /* [3868] */ (xdc_Char)0x72, /* [3869] */ (xdc_Char)0x23, /* [3870] */ (xdc_Char)0x20, /* [3871] */ (xdc_Char)0x25, /* [3872] */ (xdc_Char)0x64, /* [3873] */ (xdc_Char)0x0, /* [3874] */ (xdc_Char)0x45, /* [3875] */ (xdc_Char)0x5f, /* [3876] */ (xdc_Char)0x61, /* [3877] */ (xdc_Char)0x6c, /* [3878] */ (xdc_Char)0x72, /* [3879] */ (xdc_Char)0x65, /* [3880] */ (xdc_Char)0x61, /* [3881] */ (xdc_Char)0x64, /* [3882] */ (xdc_Char)0x79, /* [3883] */ (xdc_Char)0x44, /* [3884] */ (xdc_Char)0x65, /* [3885] */ (xdc_Char)0x66, /* [3886] */ (xdc_Char)0x69, /* [3887] */ (xdc_Char)0x6e, /* [3888] */ (xdc_Char)0x65, /* [3889] */ (xdc_Char)0x64, /* [3890] */ (xdc_Char)0x3a, /* [3891] */ (xdc_Char)0x20, /* [3892] */ (xdc_Char)0x48, /* [3893] */ (xdc_Char)0x77, /* [3894] */ (xdc_Char)0x69, /* [3895] */ (xdc_Char)0x20, /* [3896] */ (xdc_Char)0x61, /* [3897] */ (xdc_Char)0x6c, /* [3898] */ (xdc_Char)0x72, /* [3899] */ (xdc_Char)0x65, /* [3900] */ (xdc_Char)0x61, /* [3901] */ (xdc_Char)0x64, /* [3902] */ (xdc_Char)0x79, /* [3903] */ (xdc_Char)0x20, /* [3904] */ (xdc_Char)0x64, /* [3905] */ (xdc_Char)0x65, /* [3906] */ (xdc_Char)0x66, /* [3907] */ (xdc_Char)0x69, /* [3908] */ (xdc_Char)0x6e, /* [3909] */ (xdc_Char)0x65, /* [3910] */ (xdc_Char)0x64, /* [3911] */ (xdc_Char)0x3a, /* [3912] */ (xdc_Char)0x20, /* [3913] */ (xdc_Char)0x69, /* [3914] */ (xdc_Char)0x6e, /* [3915] */ (xdc_Char)0x74, /* [3916] */ (xdc_Char)0x72, /* [3917] */ (xdc_Char)0x23, /* [3918] */ (xdc_Char)0x20, /* [3919] */ (xdc_Char)0x25, /* [3920] */ (xdc_Char)0x64, /* [3921] */ (xdc_Char)0x0, /* [3922] */ (xdc_Char)0x45, /* [3923] */ (xdc_Char)0x5f, /* [3924] */ (xdc_Char)0x6e, /* [3925] */ (xdc_Char)0x6f, /* [3926] */ (xdc_Char)0x74, /* [3927] */ (xdc_Char)0x41, /* [3928] */ (xdc_Char)0x76, /* [3929] */ (xdc_Char)0x61, /* [3930] */ (xdc_Char)0x69, /* [3931] */ (xdc_Char)0x6c, /* [3932] */ (xdc_Char)0x61, /* [3933] */ (xdc_Char)0x62, /* [3934] */ (xdc_Char)0x6c, /* [3935] */ (xdc_Char)0x65, /* [3936] */ (xdc_Char)0x3a, /* [3937] */ (xdc_Char)0x20, /* [3938] */ (xdc_Char)0x54, /* [3939] */ (xdc_Char)0x69, /* [3940] */ (xdc_Char)0x6d, /* [3941] */ (xdc_Char)0x65, /* [3942] */ (xdc_Char)0x72, /* [3943] */ (xdc_Char)0x20, /* [3944] */ (xdc_Char)0x6e, /* [3945] */ (xdc_Char)0x6f, /* [3946] */ (xdc_Char)0x74, /* [3947] */ (xdc_Char)0x20, /* [3948] */ (xdc_Char)0x61, /* [3949] */ (xdc_Char)0x76, /* [3950] */ (xdc_Char)0x61, /* [3951] */ (xdc_Char)0x69, /* [3952] */ (xdc_Char)0x6c, /* [3953] */ (xdc_Char)0x61, /* [3954] */ (xdc_Char)0x62, /* [3955] */ (xdc_Char)0x6c, /* [3956] */ (xdc_Char)0x65, /* [3957] */ (xdc_Char)0x20, /* [3958] */ (xdc_Char)0x25, /* [3959] */ (xdc_Char)0x64, /* [3960] */ (xdc_Char)0x0, /* [3961] */ (xdc_Char)0x53, /* [3962] */ (xdc_Char)0x74, /* [3963] */ (xdc_Char)0x61, /* [3964] */ (xdc_Char)0x63, /* [3965] */ (xdc_Char)0x6b, /* [3966] */ (xdc_Char)0x20, /* [3967] */ (xdc_Char)0x28, /* [3968] */ (xdc_Char)0x30, /* [3969] */ (xdc_Char)0x78, /* [3970] */ (xdc_Char)0x25, /* [3971] */ (xdc_Char)0x78, /* [3972] */ (xdc_Char)0x29, /* [3973] */ (xdc_Char)0x20, /* [3974] */ (xdc_Char)0x6e, /* [3975] */ (xdc_Char)0x6f, /* [3976] */ (xdc_Char)0x74, /* [3977] */ (xdc_Char)0x20, /* [3978] */ (xdc_Char)0x6c, /* [3979] */ (xdc_Char)0x6f, /* [3980] */ (xdc_Char)0x63, /* [3981] */ (xdc_Char)0x61, /* [3982] */ (xdc_Char)0x74, /* [3983] */ (xdc_Char)0x65, /* [3984] */ (xdc_Char)0x64, /* [3985] */ (xdc_Char)0x20, /* [3986] */ (xdc_Char)0x6f, /* [3987] */ (xdc_Char)0x6e, /* [3988] */ (xdc_Char)0x20, /* [3989] */ (xdc_Char)0x50, /* [3990] */ (xdc_Char)0x41, /* [3991] */ (xdc_Char)0x47, /* [3992] */ (xdc_Char)0x45, /* [3993] */ (xdc_Char)0x20, /* [3994] */ (xdc_Char)0x30, /* [3995] */ (xdc_Char)0x20, /* [3996] */ (xdc_Char)0x28, /* [3997] */ (xdc_Char)0x73, /* [3998] */ (xdc_Char)0x74, /* [3999] */ (xdc_Char)0x61, /* [4000] */ (xdc_Char)0x63, /* [4001] */ (xdc_Char)0x6b, /* [4002] */ (xdc_Char)0x20, /* [4003] */ (xdc_Char)0x6d, /* [4004] */ (xdc_Char)0x75, /* [4005] */ (xdc_Char)0x73, /* [4006] */ (xdc_Char)0x74, /* [4007] */ (xdc_Char)0x20, /* [4008] */ (xdc_Char)0x62, /* [4009] */ (xdc_Char)0x65, /* [4010] */ (xdc_Char)0x20, /* [4011] */ (xdc_Char)0x6c, /* [4012] */ (xdc_Char)0x6f, /* [4013] */ (xdc_Char)0x63, /* [4014] */ (xdc_Char)0x61, /* [4015] */ (xdc_Char)0x74, /* [4016] */ (xdc_Char)0x65, /* [4017] */ (xdc_Char)0x64, /* [4018] */ (xdc_Char)0x20, /* [4019] */ (xdc_Char)0x65, /* [4020] */ (xdc_Char)0x6e, /* [4021] */ (xdc_Char)0x74, /* [4022] */ (xdc_Char)0x69, /* [4023] */ (xdc_Char)0x72, /* [4024] */ (xdc_Char)0x65, /* [4025] */ (xdc_Char)0x6c, /* [4026] */ (xdc_Char)0x79, /* [4027] */ (xdc_Char)0x20, /* [4028] */ (xdc_Char)0x62, /* [4029] */ (xdc_Char)0x65, /* [4030] */ (xdc_Char)0x6c, /* [4031] */ (xdc_Char)0x6f, /* [4032] */ (xdc_Char)0x77, /* [4033] */ (xdc_Char)0x20, /* [4034] */ (xdc_Char)0x30, /* [4035] */ (xdc_Char)0x78, /* [4036] */ (xdc_Char)0x31, /* [4037] */ (xdc_Char)0x30, /* [4038] */ (xdc_Char)0x30, /* [4039] */ (xdc_Char)0x30, /* [4040] */ (xdc_Char)0x30, /* [4041] */ (xdc_Char)0x29, /* [4042] */ (xdc_Char)0x0, /* [4043] */ (xdc_Char)0x45, /* [4044] */ (xdc_Char)0x5f, /* [4045] */ (xdc_Char)0x73, /* [4046] */ (xdc_Char)0x74, /* [4047] */ (xdc_Char)0x61, /* [4048] */ (xdc_Char)0x63, /* [4049] */ (xdc_Char)0x6b, /* [4050] */ (xdc_Char)0x4f, /* [4051] */ (xdc_Char)0x76, /* [4052] */ (xdc_Char)0x65, /* [4053] */ (xdc_Char)0x72, /* [4054] */ (xdc_Char)0x66, /* [4055] */ (xdc_Char)0x6c, /* [4056] */ (xdc_Char)0x6f, /* [4057] */ (xdc_Char)0x77, /* [4058] */ (xdc_Char)0x3a, /* [4059] */ (xdc_Char)0x20, /* [4060] */ (xdc_Char)0x54, /* [4061] */ (xdc_Char)0x61, /* [4062] */ (xdc_Char)0x73, /* [4063] */ (xdc_Char)0x6b, /* [4064] */ (xdc_Char)0x20, /* [4065] */ (xdc_Char)0x30, /* [4066] */ (xdc_Char)0x78, /* [4067] */ (xdc_Char)0x25, /* [4068] */ (xdc_Char)0x78, /* [4069] */ (xdc_Char)0x20, /* [4070] */ (xdc_Char)0x73, /* [4071] */ (xdc_Char)0x74, /* [4072] */ (xdc_Char)0x61, /* [4073] */ (xdc_Char)0x63, /* [4074] */ (xdc_Char)0x6b, /* [4075] */ (xdc_Char)0x20, /* [4076] */ (xdc_Char)0x6f, /* [4077] */ (xdc_Char)0x76, /* [4078] */ (xdc_Char)0x65, /* [4079] */ (xdc_Char)0x72, /* [4080] */ (xdc_Char)0x66, /* [4081] */ (xdc_Char)0x6c, /* [4082] */ (xdc_Char)0x6f, /* [4083] */ (xdc_Char)0x77, /* [4084] */ (xdc_Char)0x2e, /* [4085] */ (xdc_Char)0x0, /* [4086] */ (xdc_Char)0x45, /* [4087] */ (xdc_Char)0x5f, /* [4088] */ (xdc_Char)0x73, /* [4089] */ (xdc_Char)0x70, /* [4090] */ (xdc_Char)0x4f, /* [4091] */ (xdc_Char)0x75, /* [4092] */ (xdc_Char)0x74, /* [4093] */ (xdc_Char)0x4f, /* [4094] */ (xdc_Char)0x66, /* [4095] */ (xdc_Char)0x42, /* [4096] */ (xdc_Char)0x6f, /* [4097] */ (xdc_Char)0x75, /* [4098] */ (xdc_Char)0x6e, /* [4099] */ (xdc_Char)0x64, /* [4100] */ (xdc_Char)0x73, /* [4101] */ (xdc_Char)0x3a, /* [4102] */ (xdc_Char)0x20, /* [4103] */ (xdc_Char)0x54, /* [4104] */ (xdc_Char)0x61, /* [4105] */ (xdc_Char)0x73, /* [4106] */ (xdc_Char)0x6b, /* [4107] */ (xdc_Char)0x20, /* [4108] */ (xdc_Char)0x30, /* [4109] */ (xdc_Char)0x78, /* [4110] */ (xdc_Char)0x25, /* [4111] */ (xdc_Char)0x78, /* [4112] */ (xdc_Char)0x20, /* [4113] */ (xdc_Char)0x73, /* [4114] */ (xdc_Char)0x74, /* [4115] */ (xdc_Char)0x61, /* [4116] */ (xdc_Char)0x63, /* [4117] */ (xdc_Char)0x6b, /* [4118] */ (xdc_Char)0x20, /* [4119] */ (xdc_Char)0x65, /* [4120] */ (xdc_Char)0x72, /* [4121] */ (xdc_Char)0x72, /* [4122] */ (xdc_Char)0x6f, /* [4123] */ (xdc_Char)0x72, /* [4124] */ (xdc_Char)0x2c, /* [4125] */ (xdc_Char)0x20, /* [4126] */ (xdc_Char)0x53, /* [4127] */ (xdc_Char)0x50, /* [4128] */ (xdc_Char)0x20, /* [4129] */ (xdc_Char)0x3d, /* [4130] */ (xdc_Char)0x20, /* [4131] */ (xdc_Char)0x30, /* [4132] */ (xdc_Char)0x78, /* [4133] */ (xdc_Char)0x25, /* [4134] */ (xdc_Char)0x78, /* [4135] */ (xdc_Char)0x2e, /* [4136] */ (xdc_Char)0x0, /* [4137] */ (xdc_Char)0x45, /* [4138] */ (xdc_Char)0x5f, /* [4139] */ (xdc_Char)0x64, /* [4140] */ (xdc_Char)0x65, /* [4141] */ (xdc_Char)0x6c, /* [4142] */ (xdc_Char)0x65, /* [4143] */ (xdc_Char)0x74, /* [4144] */ (xdc_Char)0x65, /* [4145] */ (xdc_Char)0x4e, /* [4146] */ (xdc_Char)0x6f, /* [4147] */ (xdc_Char)0x74, /* [4148] */ (xdc_Char)0x41, /* [4149] */ (xdc_Char)0x6c, /* [4150] */ (xdc_Char)0x6c, /* [4151] */ (xdc_Char)0x6f, /* [4152] */ (xdc_Char)0x77, /* [4153] */ (xdc_Char)0x65, /* [4154] */ (xdc_Char)0x64, /* [4155] */ (xdc_Char)0x3a, /* [4156] */ (xdc_Char)0x20, /* [4157] */ (xdc_Char)0x54, /* [4158] */ (xdc_Char)0x61, /* [4159] */ (xdc_Char)0x73, /* [4160] */ (xdc_Char)0x6b, /* [4161] */ (xdc_Char)0x20, /* [4162] */ (xdc_Char)0x30, /* [4163] */ (xdc_Char)0x78, /* [4164] */ (xdc_Char)0x25, /* [4165] */ (xdc_Char)0x78, /* [4166] */ (xdc_Char)0x2e, /* [4167] */ (xdc_Char)0x0, /* [4168] */ (xdc_Char)0x45, /* [4169] */ (xdc_Char)0x5f, /* [4170] */ (xdc_Char)0x6d, /* [4171] */ (xdc_Char)0x6f, /* [4172] */ (xdc_Char)0x64, /* [4173] */ (xdc_Char)0x75, /* [4174] */ (xdc_Char)0x6c, /* [4175] */ (xdc_Char)0x65, /* [4176] */ (xdc_Char)0x53, /* [4177] */ (xdc_Char)0x74, /* [4178] */ (xdc_Char)0x61, /* [4179] */ (xdc_Char)0x74, /* [4180] */ (xdc_Char)0x65, /* [4181] */ (xdc_Char)0x43, /* [4182] */ (xdc_Char)0x68, /* [4183] */ (xdc_Char)0x65, /* [4184] */ (xdc_Char)0x63, /* [4185] */ (xdc_Char)0x6b, /* [4186] */ (xdc_Char)0x46, /* [4187] */ (xdc_Char)0x61, /* [4188] */ (xdc_Char)0x69, /* [4189] */ (xdc_Char)0x6c, /* [4190] */ (xdc_Char)0x65, /* [4191] */ (xdc_Char)0x64, /* [4192] */ (xdc_Char)0x3a, /* [4193] */ (xdc_Char)0x20, /* [4194] */ (xdc_Char)0x54, /* [4195] */ (xdc_Char)0x61, /* [4196] */ (xdc_Char)0x73, /* [4197] */ (xdc_Char)0x6b, /* [4198] */ (xdc_Char)0x20, /* [4199] */ (xdc_Char)0x6d, /* [4200] */ (xdc_Char)0x6f, /* [4201] */ (xdc_Char)0x64, /* [4202] */ (xdc_Char)0x75, /* [4203] */ (xdc_Char)0x6c, /* [4204] */ (xdc_Char)0x65, /* [4205] */ (xdc_Char)0x20, /* [4206] */ (xdc_Char)0x73, /* [4207] */ (xdc_Char)0x74, /* [4208] */ (xdc_Char)0x61, /* [4209] */ (xdc_Char)0x74, /* [4210] */ (xdc_Char)0x65, /* [4211] */ (xdc_Char)0x20, /* [4212] */ (xdc_Char)0x64, /* [4213] */ (xdc_Char)0x61, /* [4214] */ (xdc_Char)0x74, /* [4215] */ (xdc_Char)0x61, /* [4216] */ (xdc_Char)0x20, /* [4217] */ (xdc_Char)0x69, /* [4218] */ (xdc_Char)0x6e, /* [4219] */ (xdc_Char)0x74, /* [4220] */ (xdc_Char)0x65, /* [4221] */ (xdc_Char)0x67, /* [4222] */ (xdc_Char)0x72, /* [4223] */ (xdc_Char)0x69, /* [4224] */ (xdc_Char)0x74, /* [4225] */ (xdc_Char)0x79, /* [4226] */ (xdc_Char)0x20, /* [4227] */ (xdc_Char)0x63, /* [4228] */ (xdc_Char)0x68, /* [4229] */ (xdc_Char)0x65, /* [4230] */ (xdc_Char)0x63, /* [4231] */ (xdc_Char)0x6b, /* [4232] */ (xdc_Char)0x20, /* [4233] */ (xdc_Char)0x66, /* [4234] */ (xdc_Char)0x61, /* [4235] */ (xdc_Char)0x69, /* [4236] */ (xdc_Char)0x6c, /* [4237] */ (xdc_Char)0x65, /* [4238] */ (xdc_Char)0x64, /* [4239] */ (xdc_Char)0x2e, /* [4240] */ (xdc_Char)0x0, /* [4241] */ (xdc_Char)0x45, /* [4242] */ (xdc_Char)0x5f, /* [4243] */ (xdc_Char)0x6f, /* [4244] */ (xdc_Char)0x62, /* [4245] */ (xdc_Char)0x6a, /* [4246] */ (xdc_Char)0x65, /* [4247] */ (xdc_Char)0x63, /* [4248] */ (xdc_Char)0x74, /* [4249] */ (xdc_Char)0x43, /* [4250] */ (xdc_Char)0x68, /* [4251] */ (xdc_Char)0x65, /* [4252] */ (xdc_Char)0x63, /* [4253] */ (xdc_Char)0x6b, /* [4254] */ (xdc_Char)0x46, /* [4255] */ (xdc_Char)0x61, /* [4256] */ (xdc_Char)0x69, /* [4257] */ (xdc_Char)0x6c, /* [4258] */ (xdc_Char)0x65, /* [4259] */ (xdc_Char)0x64, /* [4260] */ (xdc_Char)0x3a, /* [4261] */ (xdc_Char)0x20, /* [4262] */ (xdc_Char)0x54, /* [4263] */ (xdc_Char)0x61, /* [4264] */ (xdc_Char)0x73, /* [4265] */ (xdc_Char)0x6b, /* [4266] */ (xdc_Char)0x20, /* [4267] */ (xdc_Char)0x30, /* [4268] */ (xdc_Char)0x78, /* [4269] */ (xdc_Char)0x25, /* [4270] */ (xdc_Char)0x78, /* [4271] */ (xdc_Char)0x20, /* [4272] */ (xdc_Char)0x6f, /* [4273] */ (xdc_Char)0x62, /* [4274] */ (xdc_Char)0x6a, /* [4275] */ (xdc_Char)0x65, /* [4276] */ (xdc_Char)0x63, /* [4277] */ (xdc_Char)0x74, /* [4278] */ (xdc_Char)0x20, /* [4279] */ (xdc_Char)0x64, /* [4280] */ (xdc_Char)0x61, /* [4281] */ (xdc_Char)0x74, /* [4282] */ (xdc_Char)0x61, /* [4283] */ (xdc_Char)0x20, /* [4284] */ (xdc_Char)0x69, /* [4285] */ (xdc_Char)0x6e, /* [4286] */ (xdc_Char)0x74, /* [4287] */ (xdc_Char)0x65, /* [4288] */ (xdc_Char)0x67, /* [4289] */ (xdc_Char)0x72, /* [4290] */ (xdc_Char)0x69, /* [4291] */ (xdc_Char)0x74, /* [4292] */ (xdc_Char)0x79, /* [4293] */ (xdc_Char)0x20, /* [4294] */ (xdc_Char)0x63, /* [4295] */ (xdc_Char)0x68, /* [4296] */ (xdc_Char)0x65, /* [4297] */ (xdc_Char)0x63, /* [4298] */ (xdc_Char)0x6b, /* [4299] */ (xdc_Char)0x20, /* [4300] */ (xdc_Char)0x66, /* [4301] */ (xdc_Char)0x61, /* [4302] */ (xdc_Char)0x69, /* [4303] */ (xdc_Char)0x6c, /* [4304] */ (xdc_Char)0x65, /* [4305] */ (xdc_Char)0x64, /* [4306] */ (xdc_Char)0x2e, /* [4307] */ (xdc_Char)0x0, /* [4308] */ (xdc_Char)0x45, /* [4309] */ (xdc_Char)0x5f, /* [4310] */ (xdc_Char)0x73, /* [4311] */ (xdc_Char)0x74, /* [4312] */ (xdc_Char)0x61, /* [4313] */ (xdc_Char)0x63, /* [4314] */ (xdc_Char)0x6b, /* [4315] */ (xdc_Char)0x4f, /* [4316] */ (xdc_Char)0x76, /* [4317] */ (xdc_Char)0x65, /* [4318] */ (xdc_Char)0x72, /* [4319] */ (xdc_Char)0x66, /* [4320] */ (xdc_Char)0x6c, /* [4321] */ (xdc_Char)0x6f, /* [4322] */ (xdc_Char)0x77, /* [4323] */ (xdc_Char)0x3a, /* [4324] */ (xdc_Char)0x20, /* [4325] */ (xdc_Char)0x49, /* [4326] */ (xdc_Char)0x53, /* [4327] */ (xdc_Char)0x52, /* [4328] */ (xdc_Char)0x20, /* [4329] */ (xdc_Char)0x73, /* [4330] */ (xdc_Char)0x74, /* [4331] */ (xdc_Char)0x61, /* [4332] */ (xdc_Char)0x63, /* [4333] */ (xdc_Char)0x6b, /* [4334] */ (xdc_Char)0x20, /* [4335] */ (xdc_Char)0x6f, /* [4336] */ (xdc_Char)0x76, /* [4337] */ (xdc_Char)0x65, /* [4338] */ (xdc_Char)0x72, /* [4339] */ (xdc_Char)0x66, /* [4340] */ (xdc_Char)0x6c, /* [4341] */ (xdc_Char)0x6f, /* [4342] */ (xdc_Char)0x77, /* [4343] */ (xdc_Char)0x2e, /* [4344] */ (xdc_Char)0x0, /* [4345] */ (xdc_Char)0x45, /* [4346] */ (xdc_Char)0x5f, /* [4347] */ (xdc_Char)0x70, /* [4348] */ (xdc_Char)0x72, /* [4349] */ (xdc_Char)0x69, /* [4350] */ (xdc_Char)0x6f, /* [4351] */ (xdc_Char)0x72, /* [4352] */ (xdc_Char)0x69, /* [4353] */ (xdc_Char)0x74, /* [4354] */ (xdc_Char)0x79, /* [4355] */ (xdc_Char)0x3a, /* [4356] */ (xdc_Char)0x20, /* [4357] */ (xdc_Char)0x54, /* [4358] */ (xdc_Char)0x68, /* [4359] */ (xdc_Char)0x72, /* [4360] */ (xdc_Char)0x65, /* [4361] */ (xdc_Char)0x61, /* [4362] */ (xdc_Char)0x64, /* [4363] */ (xdc_Char)0x20, /* [4364] */ (xdc_Char)0x70, /* [4365] */ (xdc_Char)0x72, /* [4366] */ (xdc_Char)0x69, /* [4367] */ (xdc_Char)0x6f, /* [4368] */ (xdc_Char)0x72, /* [4369] */ (xdc_Char)0x69, /* [4370] */ (xdc_Char)0x74, /* [4371] */ (xdc_Char)0x79, /* [4372] */ (xdc_Char)0x20, /* [4373] */ (xdc_Char)0x69, /* [4374] */ (xdc_Char)0x73, /* [4375] */ (xdc_Char)0x20, /* [4376] */ (xdc_Char)0x69, /* [4377] */ (xdc_Char)0x6e, /* [4378] */ (xdc_Char)0x76, /* [4379] */ (xdc_Char)0x61, /* [4380] */ (xdc_Char)0x6c, /* [4381] */ (xdc_Char)0x69, /* [4382] */ (xdc_Char)0x64, /* [4383] */ (xdc_Char)0x20, /* [4384] */ (xdc_Char)0x25, /* [4385] */ (xdc_Char)0x64, /* [4386] */ (xdc_Char)0x0, /* [4387] */ (xdc_Char)0x72, /* [4388] */ (xdc_Char)0x65, /* [4389] */ (xdc_Char)0x71, /* [4390] */ (xdc_Char)0x75, /* [4391] */ (xdc_Char)0x65, /* [4392] */ (xdc_Char)0x73, /* [4393] */ (xdc_Char)0x74, /* [4394] */ (xdc_Char)0x65, /* [4395] */ (xdc_Char)0x64, /* [4396] */ (xdc_Char)0x20, /* [4397] */ (xdc_Char)0x73, /* [4398] */ (xdc_Char)0x69, /* [4399] */ (xdc_Char)0x7a, /* [4400] */ (xdc_Char)0x65, /* [4401] */ (xdc_Char)0x20, /* [4402] */ (xdc_Char)0x69, /* [4403] */ (xdc_Char)0x73, /* [4404] */ (xdc_Char)0x20, /* [4405] */ (xdc_Char)0x74, /* [4406] */ (xdc_Char)0x6f, /* [4407] */ (xdc_Char)0x6f, /* [4408] */ (xdc_Char)0x20, /* [4409] */ (xdc_Char)0x62, /* [4410] */ (xdc_Char)0x69, /* [4411] */ (xdc_Char)0x67, /* [4412] */ (xdc_Char)0x3a, /* [4413] */ (xdc_Char)0x20, /* [4414] */ (xdc_Char)0x68, /* [4415] */ (xdc_Char)0x61, /* [4416] */ (xdc_Char)0x6e, /* [4417] */ (xdc_Char)0x64, /* [4418] */ (xdc_Char)0x6c, /* [4419] */ (xdc_Char)0x65, /* [4420] */ (xdc_Char)0x3d, /* [4421] */ (xdc_Char)0x30, /* [4422] */ (xdc_Char)0x78, /* [4423] */ (xdc_Char)0x25, /* [4424] */ (xdc_Char)0x78, /* [4425] */ (xdc_Char)0x2c, /* [4426] */ (xdc_Char)0x20, /* [4427] */ (xdc_Char)0x73, /* [4428] */ (xdc_Char)0x69, /* [4429] */ (xdc_Char)0x7a, /* [4430] */ (xdc_Char)0x65, /* [4431] */ (xdc_Char)0x3d, /* [4432] */ (xdc_Char)0x25, /* [4433] */ (xdc_Char)0x75, /* [4434] */ (xdc_Char)0x0, /* [4435] */ (xdc_Char)0x6f, /* [4436] */ (xdc_Char)0x75, /* [4437] */ (xdc_Char)0x74, /* [4438] */ (xdc_Char)0x20, /* [4439] */ (xdc_Char)0x6f, /* [4440] */ (xdc_Char)0x66, /* [4441] */ (xdc_Char)0x20, /* [4442] */ (xdc_Char)0x6d, /* [4443] */ (xdc_Char)0x65, /* [4444] */ (xdc_Char)0x6d, /* [4445] */ (xdc_Char)0x6f, /* [4446] */ (xdc_Char)0x72, /* [4447] */ (xdc_Char)0x79, /* [4448] */ (xdc_Char)0x3a, /* [4449] */ (xdc_Char)0x20, /* [4450] */ (xdc_Char)0x68, /* [4451] */ (xdc_Char)0x61, /* [4452] */ (xdc_Char)0x6e, /* [4453] */ (xdc_Char)0x64, /* [4454] */ (xdc_Char)0x6c, /* [4455] */ (xdc_Char)0x65, /* [4456] */ (xdc_Char)0x3d, /* [4457] */ (xdc_Char)0x30, /* [4458] */ (xdc_Char)0x78, /* [4459] */ (xdc_Char)0x25, /* [4460] */ (xdc_Char)0x78, /* [4461] */ (xdc_Char)0x2c, /* [4462] */ (xdc_Char)0x20, /* [4463] */ (xdc_Char)0x73, /* [4464] */ (xdc_Char)0x69, /* [4465] */ (xdc_Char)0x7a, /* [4466] */ (xdc_Char)0x65, /* [4467] */ (xdc_Char)0x3d, /* [4468] */ (xdc_Char)0x25, /* [4469] */ (xdc_Char)0x75, /* [4470] */ (xdc_Char)0x0, /* [4471] */ (xdc_Char)0x3c, /* [4472] */ (xdc_Char)0x2d, /* [4473] */ (xdc_Char)0x2d, /* [4474] */ (xdc_Char)0x20, /* [4475] */ (xdc_Char)0x63, /* [4476] */ (xdc_Char)0x6f, /* [4477] */ (xdc_Char)0x6e, /* [4478] */ (xdc_Char)0x73, /* [4479] */ (xdc_Char)0x74, /* [4480] */ (xdc_Char)0x72, /* [4481] */ (xdc_Char)0x75, /* [4482] */ (xdc_Char)0x63, /* [4483] */ (xdc_Char)0x74, /* [4484] */ (xdc_Char)0x3a, /* [4485] */ (xdc_Char)0x20, /* [4486] */ (xdc_Char)0x25, /* [4487] */ (xdc_Char)0x70, /* [4488] */ (xdc_Char)0x28, /* [4489] */ (xdc_Char)0x27, /* [4490] */ (xdc_Char)0x25, /* [4491] */ (xdc_Char)0x73, /* [4492] */ (xdc_Char)0x27, /* [4493] */ (xdc_Char)0x29, /* [4494] */ (xdc_Char)0x0, /* [4495] */ (xdc_Char)0x3c, /* [4496] */ (xdc_Char)0x2d, /* [4497] */ (xdc_Char)0x2d, /* [4498] */ (xdc_Char)0x20, /* [4499] */ (xdc_Char)0x63, /* [4500] */ (xdc_Char)0x72, /* [4501] */ (xdc_Char)0x65, /* [4502] */ (xdc_Char)0x61, /* [4503] */ (xdc_Char)0x74, /* [4504] */ (xdc_Char)0x65, /* [4505] */ (xdc_Char)0x3a, /* [4506] */ (xdc_Char)0x20, /* [4507] */ (xdc_Char)0x25, /* [4508] */ (xdc_Char)0x70, /* [4509] */ (xdc_Char)0x28, /* [4510] */ (xdc_Char)0x27, /* [4511] */ (xdc_Char)0x25, /* [4512] */ (xdc_Char)0x73, /* [4513] */ (xdc_Char)0x27, /* [4514] */ (xdc_Char)0x29, /* [4515] */ (xdc_Char)0x0, /* [4516] */ (xdc_Char)0x2d, /* [4517] */ (xdc_Char)0x2d, /* [4518] */ (xdc_Char)0x3e, /* [4519] */ (xdc_Char)0x20, /* [4520] */ (xdc_Char)0x64, /* [4521] */ (xdc_Char)0x65, /* [4522] */ (xdc_Char)0x73, /* [4523] */ (xdc_Char)0x74, /* [4524] */ (xdc_Char)0x72, /* [4525] */ (xdc_Char)0x75, /* [4526] */ (xdc_Char)0x63, /* [4527] */ (xdc_Char)0x74, /* [4528] */ (xdc_Char)0x3a, /* [4529] */ (xdc_Char)0x20, /* [4530] */ (xdc_Char)0x28, /* [4531] */ (xdc_Char)0x25, /* [4532] */ (xdc_Char)0x70, /* [4533] */ (xdc_Char)0x29, /* [4534] */ (xdc_Char)0x0, /* [4535] */ (xdc_Char)0x2d, /* [4536] */ (xdc_Char)0x2d, /* [4537] */ (xdc_Char)0x3e, /* [4538] */ (xdc_Char)0x20, /* [4539] */ (xdc_Char)0x64, /* [4540] */ (xdc_Char)0x65, /* [4541] */ (xdc_Char)0x6c, /* [4542] */ (xdc_Char)0x65, /* [4543] */ (xdc_Char)0x74, /* [4544] */ (xdc_Char)0x65, /* [4545] */ (xdc_Char)0x3a, /* [4546] */ (xdc_Char)0x20, /* [4547] */ (xdc_Char)0x28, /* [4548] */ (xdc_Char)0x25, /* [4549] */ (xdc_Char)0x70, /* [4550] */ (xdc_Char)0x29, /* [4551] */ (xdc_Char)0x0, /* [4552] */ (xdc_Char)0x45, /* [4553] */ (xdc_Char)0x52, /* [4554] */ (xdc_Char)0x52, /* [4555] */ (xdc_Char)0x4f, /* [4556] */ (xdc_Char)0x52, /* [4557] */ (xdc_Char)0x3a, /* [4558] */ (xdc_Char)0x20, /* [4559] */ (xdc_Char)0x25, /* [4560] */ (xdc_Char)0x24, /* [4561] */ (xdc_Char)0x46, /* [4562] */ (xdc_Char)0x25, /* [4563] */ (xdc_Char)0x24, /* [4564] */ (xdc_Char)0x53, /* [4565] */ (xdc_Char)0x0, /* [4566] */ (xdc_Char)0x57, /* [4567] */ (xdc_Char)0x41, /* [4568] */ (xdc_Char)0x52, /* [4569] */ (xdc_Char)0x4e, /* [4570] */ (xdc_Char)0x49, /* [4571] */ (xdc_Char)0x4e, /* [4572] */ (xdc_Char)0x47, /* [4573] */ (xdc_Char)0x3a, /* [4574] */ (xdc_Char)0x20, /* [4575] */ (xdc_Char)0x25, /* [4576] */ (xdc_Char)0x24, /* [4577] */ (xdc_Char)0x46, /* [4578] */ (xdc_Char)0x25, /* [4579] */ (xdc_Char)0x24, /* [4580] */ (xdc_Char)0x53, /* [4581] */ (xdc_Char)0x0, /* [4582] */ (xdc_Char)0x25, /* [4583] */ (xdc_Char)0x24, /* [4584] */ (xdc_Char)0x46, /* [4585] */ (xdc_Char)0x25, /* [4586] */ (xdc_Char)0x24, /* [4587] */ (xdc_Char)0x53, /* [4588] */ (xdc_Char)0x0, /* [4589] */ (xdc_Char)0x53, /* [4590] */ (xdc_Char)0x74, /* [4591] */ (xdc_Char)0x61, /* [4592] */ (xdc_Char)0x72, /* [4593] */ (xdc_Char)0x74, /* [4594] */ (xdc_Char)0x3a, /* [4595] */ (xdc_Char)0x20, /* [4596] */ (xdc_Char)0x25, /* [4597] */ (xdc_Char)0x24, /* [4598] */ (xdc_Char)0x53, /* [4599] */ (xdc_Char)0x0, /* [4600] */ (xdc_Char)0x53, /* [4601] */ (xdc_Char)0x74, /* [4602] */ (xdc_Char)0x6f, /* [4603] */ (xdc_Char)0x70, /* [4604] */ (xdc_Char)0x3a, /* [4605] */ (xdc_Char)0x20, /* [4606] */ (xdc_Char)0x25, /* [4607] */ (xdc_Char)0x24, /* [4608] */ (xdc_Char)0x53, /* [4609] */ (xdc_Char)0x0, /* [4610] */ (xdc_Char)0x53, /* [4611] */ (xdc_Char)0x74, /* [4612] */ (xdc_Char)0x61, /* [4613] */ (xdc_Char)0x72, /* [4614] */ (xdc_Char)0x74, /* [4615] */ (xdc_Char)0x49, /* [4616] */ (xdc_Char)0x6e, /* [4617] */ (xdc_Char)0x73, /* [4618] */ (xdc_Char)0x74, /* [4619] */ (xdc_Char)0x61, /* [4620] */ (xdc_Char)0x6e, /* [4621] */ (xdc_Char)0x63, /* [4622] */ (xdc_Char)0x65, /* [4623] */ (xdc_Char)0x3a, /* [4624] */ (xdc_Char)0x20, /* [4625] */ (xdc_Char)0x25, /* [4626] */ (xdc_Char)0x24, /* [4627] */ (xdc_Char)0x53, /* [4628] */ (xdc_Char)0x0, /* [4629] */ (xdc_Char)0x53, /* [4630] */ (xdc_Char)0x74, /* [4631] */ (xdc_Char)0x6f, /* [4632] */ (xdc_Char)0x70, /* [4633] */ (xdc_Char)0x49, /* [4634] */ (xdc_Char)0x6e, /* [4635] */ (xdc_Char)0x73, /* [4636] */ (xdc_Char)0x74, /* [4637] */ (xdc_Char)0x61, /* [4638] */ (xdc_Char)0x6e, /* [4639] */ (xdc_Char)0x63, /* [4640] */ (xdc_Char)0x65, /* [4641] */ (xdc_Char)0x3a, /* [4642] */ (xdc_Char)0x20, /* [4643] */ (xdc_Char)0x25, /* [4644] */ (xdc_Char)0x24, /* [4645] */ (xdc_Char)0x53, /* [4646] */ (xdc_Char)0x0, /* [4647] */ (xdc_Char)0x4c, /* [4648] */ (xdc_Char)0x4d, /* [4649] */ (xdc_Char)0x5f, /* [4650] */ (xdc_Char)0x62, /* [4651] */ (xdc_Char)0x65, /* [4652] */ (xdc_Char)0x67, /* [4653] */ (xdc_Char)0x69, /* [4654] */ (xdc_Char)0x6e, /* [4655] */ (xdc_Char)0x3a, /* [4656] */ (xdc_Char)0x20, /* [4657] */ (xdc_Char)0x68, /* [4658] */ (xdc_Char)0x77, /* [4659] */ (xdc_Char)0x69, /* [4660] */ (xdc_Char)0x3a, /* [4661] */ (xdc_Char)0x20, /* [4662] */ (xdc_Char)0x30, /* [4663] */ (xdc_Char)0x78, /* [4664] */ (xdc_Char)0x25, /* [4665] */ (xdc_Char)0x78, /* [4666] */ (xdc_Char)0x2c, /* [4667] */ (xdc_Char)0x20, /* [4668] */ (xdc_Char)0x66, /* [4669] */ (xdc_Char)0x75, /* [4670] */ (xdc_Char)0x6e, /* [4671] */ (xdc_Char)0x63, /* [4672] */ (xdc_Char)0x3a, /* [4673] */ (xdc_Char)0x20, /* [4674] */ (xdc_Char)0x30, /* [4675] */ (xdc_Char)0x78, /* [4676] */ (xdc_Char)0x25, /* [4677] */ (xdc_Char)0x78, /* [4678] */ (xdc_Char)0x2c, /* [4679] */ (xdc_Char)0x20, /* [4680] */ (xdc_Char)0x70, /* [4681] */ (xdc_Char)0x72, /* [4682] */ (xdc_Char)0x65, /* [4683] */ (xdc_Char)0x54, /* [4684] */ (xdc_Char)0x68, /* [4685] */ (xdc_Char)0x72, /* [4686] */ (xdc_Char)0x65, /* [4687] */ (xdc_Char)0x61, /* [4688] */ (xdc_Char)0x64, /* [4689] */ (xdc_Char)0x3a, /* [4690] */ (xdc_Char)0x20, /* [4691] */ (xdc_Char)0x25, /* [4692] */ (xdc_Char)0x64, /* [4693] */ (xdc_Char)0x2c, /* [4694] */ (xdc_Char)0x20, /* [4695] */ (xdc_Char)0x69, /* [4696] */ (xdc_Char)0x6e, /* [4697] */ (xdc_Char)0x74, /* [4698] */ (xdc_Char)0x4e, /* [4699] */ (xdc_Char)0x75, /* [4700] */ (xdc_Char)0x6d, /* [4701] */ (xdc_Char)0x3a, /* [4702] */ (xdc_Char)0x20, /* [4703] */ (xdc_Char)0x25, /* [4704] */ (xdc_Char)0x64, /* [4705] */ (xdc_Char)0x2c, /* [4706] */ (xdc_Char)0x20, /* [4707] */ (xdc_Char)0x69, /* [4708] */ (xdc_Char)0x72, /* [4709] */ (xdc_Char)0x70, /* [4710] */ (xdc_Char)0x3a, /* [4711] */ (xdc_Char)0x20, /* [4712] */ (xdc_Char)0x30, /* [4713] */ (xdc_Char)0x78, /* [4714] */ (xdc_Char)0x25, /* [4715] */ (xdc_Char)0x78, /* [4716] */ (xdc_Char)0x0, /* [4717] */ (xdc_Char)0x4c, /* [4718] */ (xdc_Char)0x44, /* [4719] */ (xdc_Char)0x5f, /* [4720] */ (xdc_Char)0x65, /* [4721] */ (xdc_Char)0x6e, /* [4722] */ (xdc_Char)0x64, /* [4723] */ (xdc_Char)0x3a, /* [4724] */ (xdc_Char)0x20, /* [4725] */ (xdc_Char)0x68, /* [4726] */ (xdc_Char)0x77, /* [4727] */ (xdc_Char)0x69, /* [4728] */ (xdc_Char)0x3a, /* [4729] */ (xdc_Char)0x20, /* [4730] */ (xdc_Char)0x30, /* [4731] */ (xdc_Char)0x78, /* [4732] */ (xdc_Char)0x25, /* [4733] */ (xdc_Char)0x78, /* [4734] */ (xdc_Char)0x0, /* [4735] */ (xdc_Char)0x4c, /* [4736] */ (xdc_Char)0x57, /* [4737] */ (xdc_Char)0x5f, /* [4738] */ (xdc_Char)0x64, /* [4739] */ (xdc_Char)0x65, /* [4740] */ (xdc_Char)0x6c, /* [4741] */ (xdc_Char)0x61, /* [4742] */ (xdc_Char)0x79, /* [4743] */ (xdc_Char)0x65, /* [4744] */ (xdc_Char)0x64, /* [4745] */ (xdc_Char)0x3a, /* [4746] */ (xdc_Char)0x20, /* [4747] */ (xdc_Char)0x64, /* [4748] */ (xdc_Char)0x65, /* [4749] */ (xdc_Char)0x6c, /* [4750] */ (xdc_Char)0x61, /* [4751] */ (xdc_Char)0x79, /* [4752] */ (xdc_Char)0x3a, /* [4753] */ (xdc_Char)0x20, /* [4754] */ (xdc_Char)0x25, /* [4755] */ (xdc_Char)0x64, /* [4756] */ (xdc_Char)0x0, /* [4757] */ (xdc_Char)0x4c, /* [4758] */ (xdc_Char)0x4d, /* [4759] */ (xdc_Char)0x5f, /* [4760] */ (xdc_Char)0x74, /* [4761] */ (xdc_Char)0x69, /* [4762] */ (xdc_Char)0x63, /* [4763] */ (xdc_Char)0x6b, /* [4764] */ (xdc_Char)0x3a, /* [4765] */ (xdc_Char)0x20, /* [4766] */ (xdc_Char)0x74, /* [4767] */ (xdc_Char)0x69, /* [4768] */ (xdc_Char)0x63, /* [4769] */ (xdc_Char)0x6b, /* [4770] */ (xdc_Char)0x3a, /* [4771] */ (xdc_Char)0x20, /* [4772] */ (xdc_Char)0x25, /* [4773] */ (xdc_Char)0x64, /* [4774] */ (xdc_Char)0x0, /* [4775] */ (xdc_Char)0x4c, /* [4776] */ (xdc_Char)0x4d, /* [4777] */ (xdc_Char)0x5f, /* [4778] */ (xdc_Char)0x62, /* [4779] */ (xdc_Char)0x65, /* [4780] */ (xdc_Char)0x67, /* [4781] */ (xdc_Char)0x69, /* [4782] */ (xdc_Char)0x6e, /* [4783] */ (xdc_Char)0x3a, /* [4784] */ (xdc_Char)0x20, /* [4785] */ (xdc_Char)0x63, /* [4786] */ (xdc_Char)0x6c, /* [4787] */ (xdc_Char)0x6b, /* [4788] */ (xdc_Char)0x3a, /* [4789] */ (xdc_Char)0x20, /* [4790] */ (xdc_Char)0x30, /* [4791] */ (xdc_Char)0x78, /* [4792] */ (xdc_Char)0x25, /* [4793] */ (xdc_Char)0x78, /* [4794] */ (xdc_Char)0x2c, /* [4795] */ (xdc_Char)0x20, /* [4796] */ (xdc_Char)0x66, /* [4797] */ (xdc_Char)0x75, /* [4798] */ (xdc_Char)0x6e, /* [4799] */ (xdc_Char)0x63, /* [4800] */ (xdc_Char)0x3a, /* [4801] */ (xdc_Char)0x20, /* [4802] */ (xdc_Char)0x30, /* [4803] */ (xdc_Char)0x78, /* [4804] */ (xdc_Char)0x25, /* [4805] */ (xdc_Char)0x78, /* [4806] */ (xdc_Char)0x0, /* [4807] */ (xdc_Char)0x4c, /* [4808] */ (xdc_Char)0x4d, /* [4809] */ (xdc_Char)0x5f, /* [4810] */ (xdc_Char)0x70, /* [4811] */ (xdc_Char)0x6f, /* [4812] */ (xdc_Char)0x73, /* [4813] */ (xdc_Char)0x74, /* [4814] */ (xdc_Char)0x3a, /* [4815] */ (xdc_Char)0x20, /* [4816] */ (xdc_Char)0x73, /* [4817] */ (xdc_Char)0x65, /* [4818] */ (xdc_Char)0x6d, /* [4819] */ (xdc_Char)0x3a, /* [4820] */ (xdc_Char)0x20, /* [4821] */ (xdc_Char)0x30, /* [4822] */ (xdc_Char)0x78, /* [4823] */ (xdc_Char)0x25, /* [4824] */ (xdc_Char)0x78, /* [4825] */ (xdc_Char)0x2c, /* [4826] */ (xdc_Char)0x20, /* [4827] */ (xdc_Char)0x63, /* [4828] */ (xdc_Char)0x6f, /* [4829] */ (xdc_Char)0x75, /* [4830] */ (xdc_Char)0x6e, /* [4831] */ (xdc_Char)0x74, /* [4832] */ (xdc_Char)0x3a, /* [4833] */ (xdc_Char)0x20, /* [4834] */ (xdc_Char)0x25, /* [4835] */ (xdc_Char)0x64, /* [4836] */ (xdc_Char)0x0, /* [4837] */ (xdc_Char)0x4c, /* [4838] */ (xdc_Char)0x4d, /* [4839] */ (xdc_Char)0x5f, /* [4840] */ (xdc_Char)0x70, /* [4841] */ (xdc_Char)0x65, /* [4842] */ (xdc_Char)0x6e, /* [4843] */ (xdc_Char)0x64, /* [4844] */ (xdc_Char)0x3a, /* [4845] */ (xdc_Char)0x20, /* [4846] */ (xdc_Char)0x73, /* [4847] */ (xdc_Char)0x65, /* [4848] */ (xdc_Char)0x6d, /* [4849] */ (xdc_Char)0x3a, /* [4850] */ (xdc_Char)0x20, /* [4851] */ (xdc_Char)0x30, /* [4852] */ (xdc_Char)0x78, /* [4853] */ (xdc_Char)0x25, /* [4854] */ (xdc_Char)0x78, /* [4855] */ (xdc_Char)0x2c, /* [4856] */ (xdc_Char)0x20, /* [4857] */ (xdc_Char)0x63, /* [4858] */ (xdc_Char)0x6f, /* [4859] */ (xdc_Char)0x75, /* [4860] */ (xdc_Char)0x6e, /* [4861] */ (xdc_Char)0x74, /* [4862] */ (xdc_Char)0x3a, /* [4863] */ (xdc_Char)0x20, /* [4864] */ (xdc_Char)0x25, /* [4865] */ (xdc_Char)0x64, /* [4866] */ (xdc_Char)0x2c, /* [4867] */ (xdc_Char)0x20, /* [4868] */ (xdc_Char)0x74, /* [4869] */ (xdc_Char)0x69, /* [4870] */ (xdc_Char)0x6d, /* [4871] */ (xdc_Char)0x65, /* [4872] */ (xdc_Char)0x6f, /* [4873] */ (xdc_Char)0x75, /* [4874] */ (xdc_Char)0x74, /* [4875] */ (xdc_Char)0x3a, /* [4876] */ (xdc_Char)0x20, /* [4877] */ (xdc_Char)0x25, /* [4878] */ (xdc_Char)0x64, /* [4879] */ (xdc_Char)0x0, /* [4880] */ (xdc_Char)0x4c, /* [4881] */ (xdc_Char)0x4d, /* [4882] */ (xdc_Char)0x5f, /* [4883] */ (xdc_Char)0x62, /* [4884] */ (xdc_Char)0x65, /* [4885] */ (xdc_Char)0x67, /* [4886] */ (xdc_Char)0x69, /* [4887] */ (xdc_Char)0x6e, /* [4888] */ (xdc_Char)0x3a, /* [4889] */ (xdc_Char)0x20, /* [4890] */ (xdc_Char)0x73, /* [4891] */ (xdc_Char)0x77, /* [4892] */ (xdc_Char)0x69, /* [4893] */ (xdc_Char)0x3a, /* [4894] */ (xdc_Char)0x20, /* [4895] */ (xdc_Char)0x30, /* [4896] */ (xdc_Char)0x78, /* [4897] */ (xdc_Char)0x25, /* [4898] */ (xdc_Char)0x78, /* [4899] */ (xdc_Char)0x2c, /* [4900] */ (xdc_Char)0x20, /* [4901] */ (xdc_Char)0x66, /* [4902] */ (xdc_Char)0x75, /* [4903] */ (xdc_Char)0x6e, /* [4904] */ (xdc_Char)0x63, /* [4905] */ (xdc_Char)0x3a, /* [4906] */ (xdc_Char)0x20, /* [4907] */ (xdc_Char)0x30, /* [4908] */ (xdc_Char)0x78, /* [4909] */ (xdc_Char)0x25, /* [4910] */ (xdc_Char)0x78, /* [4911] */ (xdc_Char)0x2c, /* [4912] */ (xdc_Char)0x20, /* [4913] */ (xdc_Char)0x70, /* [4914] */ (xdc_Char)0x72, /* [4915] */ (xdc_Char)0x65, /* [4916] */ (xdc_Char)0x54, /* [4917] */ (xdc_Char)0x68, /* [4918] */ (xdc_Char)0x72, /* [4919] */ (xdc_Char)0x65, /* [4920] */ (xdc_Char)0x61, /* [4921] */ (xdc_Char)0x64, /* [4922] */ (xdc_Char)0x3a, /* [4923] */ (xdc_Char)0x20, /* [4924] */ (xdc_Char)0x25, /* [4925] */ (xdc_Char)0x64, /* [4926] */ (xdc_Char)0x0, /* [4927] */ (xdc_Char)0x4c, /* [4928] */ (xdc_Char)0x44, /* [4929] */ (xdc_Char)0x5f, /* [4930] */ (xdc_Char)0x65, /* [4931] */ (xdc_Char)0x6e, /* [4932] */ (xdc_Char)0x64, /* [4933] */ (xdc_Char)0x3a, /* [4934] */ (xdc_Char)0x20, /* [4935] */ (xdc_Char)0x73, /* [4936] */ (xdc_Char)0x77, /* [4937] */ (xdc_Char)0x69, /* [4938] */ (xdc_Char)0x3a, /* [4939] */ (xdc_Char)0x20, /* [4940] */ (xdc_Char)0x30, /* [4941] */ (xdc_Char)0x78, /* [4942] */ (xdc_Char)0x25, /* [4943] */ (xdc_Char)0x78, /* [4944] */ (xdc_Char)0x0, /* [4945] */ (xdc_Char)0x4c, /* [4946] */ (xdc_Char)0x4d, /* [4947] */ (xdc_Char)0x5f, /* [4948] */ (xdc_Char)0x70, /* [4949] */ (xdc_Char)0x6f, /* [4950] */ (xdc_Char)0x73, /* [4951] */ (xdc_Char)0x74, /* [4952] */ (xdc_Char)0x3a, /* [4953] */ (xdc_Char)0x20, /* [4954] */ (xdc_Char)0x73, /* [4955] */ (xdc_Char)0x77, /* [4956] */ (xdc_Char)0x69, /* [4957] */ (xdc_Char)0x3a, /* [4958] */ (xdc_Char)0x20, /* [4959] */ (xdc_Char)0x30, /* [4960] */ (xdc_Char)0x78, /* [4961] */ (xdc_Char)0x25, /* [4962] */ (xdc_Char)0x78, /* [4963] */ (xdc_Char)0x2c, /* [4964] */ (xdc_Char)0x20, /* [4965] */ (xdc_Char)0x66, /* [4966] */ (xdc_Char)0x75, /* [4967] */ (xdc_Char)0x6e, /* [4968] */ (xdc_Char)0x63, /* [4969] */ (xdc_Char)0x3a, /* [4970] */ (xdc_Char)0x20, /* [4971] */ (xdc_Char)0x30, /* [4972] */ (xdc_Char)0x78, /* [4973] */ (xdc_Char)0x25, /* [4974] */ (xdc_Char)0x78, /* [4975] */ (xdc_Char)0x2c, /* [4976] */ (xdc_Char)0x20, /* [4977] */ (xdc_Char)0x70, /* [4978] */ (xdc_Char)0x72, /* [4979] */ (xdc_Char)0x69, /* [4980] */ (xdc_Char)0x3a, /* [4981] */ (xdc_Char)0x20, /* [4982] */ (xdc_Char)0x25, /* [4983] */ (xdc_Char)0x64, /* [4984] */ (xdc_Char)0x0, /* [4985] */ (xdc_Char)0x4c, /* [4986] */ (xdc_Char)0x4d, /* [4987] */ (xdc_Char)0x5f, /* [4988] */ (xdc_Char)0x73, /* [4989] */ (xdc_Char)0x77, /* [4990] */ (xdc_Char)0x69, /* [4991] */ (xdc_Char)0x74, /* [4992] */ (xdc_Char)0x63, /* [4993] */ (xdc_Char)0x68, /* [4994] */ (xdc_Char)0x3a, /* [4995] */ (xdc_Char)0x20, /* [4996] */ (xdc_Char)0x6f, /* [4997] */ (xdc_Char)0x6c, /* [4998] */ (xdc_Char)0x64, /* [4999] */ (xdc_Char)0x74, /* [5000] */ (xdc_Char)0x73, /* [5001] */ (xdc_Char)0x6b, /* [5002] */ (xdc_Char)0x3a, /* [5003] */ (xdc_Char)0x20, /* [5004] */ (xdc_Char)0x30, /* [5005] */ (xdc_Char)0x78, /* [5006] */ (xdc_Char)0x25, /* [5007] */ (xdc_Char)0x78, /* [5008] */ (xdc_Char)0x2c, /* [5009] */ (xdc_Char)0x20, /* [5010] */ (xdc_Char)0x6f, /* [5011] */ (xdc_Char)0x6c, /* [5012] */ (xdc_Char)0x64, /* [5013] */ (xdc_Char)0x66, /* [5014] */ (xdc_Char)0x75, /* [5015] */ (xdc_Char)0x6e, /* [5016] */ (xdc_Char)0x63, /* [5017] */ (xdc_Char)0x3a, /* [5018] */ (xdc_Char)0x20, /* [5019] */ (xdc_Char)0x30, /* [5020] */ (xdc_Char)0x78, /* [5021] */ (xdc_Char)0x25, /* [5022] */ (xdc_Char)0x78, /* [5023] */ (xdc_Char)0x2c, /* [5024] */ (xdc_Char)0x20, /* [5025] */ (xdc_Char)0x6e, /* [5026] */ (xdc_Char)0x65, /* [5027] */ (xdc_Char)0x77, /* [5028] */ (xdc_Char)0x74, /* [5029] */ (xdc_Char)0x73, /* [5030] */ (xdc_Char)0x6b, /* [5031] */ (xdc_Char)0x3a, /* [5032] */ (xdc_Char)0x20, /* [5033] */ (xdc_Char)0x30, /* [5034] */ (xdc_Char)0x78, /* [5035] */ (xdc_Char)0x25, /* [5036] */ (xdc_Char)0x78, /* [5037] */ (xdc_Char)0x2c, /* [5038] */ (xdc_Char)0x20, /* [5039] */ (xdc_Char)0x6e, /* [5040] */ (xdc_Char)0x65, /* [5041] */ (xdc_Char)0x77, /* [5042] */ (xdc_Char)0x66, /* [5043] */ (xdc_Char)0x75, /* [5044] */ (xdc_Char)0x6e, /* [5045] */ (xdc_Char)0x63, /* [5046] */ (xdc_Char)0x3a, /* [5047] */ (xdc_Char)0x20, /* [5048] */ (xdc_Char)0x30, /* [5049] */ (xdc_Char)0x78, /* [5050] */ (xdc_Char)0x25, /* [5051] */ (xdc_Char)0x78, /* [5052] */ (xdc_Char)0x0, /* [5053] */ (xdc_Char)0x4c, /* [5054] */ (xdc_Char)0x4d, /* [5055] */ (xdc_Char)0x5f, /* [5056] */ (xdc_Char)0x73, /* [5057] */ (xdc_Char)0x6c, /* [5058] */ (xdc_Char)0x65, /* [5059] */ (xdc_Char)0x65, /* [5060] */ (xdc_Char)0x70, /* [5061] */ (xdc_Char)0x3a, /* [5062] */ (xdc_Char)0x20, /* [5063] */ (xdc_Char)0x74, /* [5064] */ (xdc_Char)0x73, /* [5065] */ (xdc_Char)0x6b, /* [5066] */ (xdc_Char)0x3a, /* [5067] */ (xdc_Char)0x20, /* [5068] */ (xdc_Char)0x30, /* [5069] */ (xdc_Char)0x78, /* [5070] */ (xdc_Char)0x25, /* [5071] */ (xdc_Char)0x78, /* [5072] */ (xdc_Char)0x2c, /* [5073] */ (xdc_Char)0x20, /* [5074] */ (xdc_Char)0x66, /* [5075] */ (xdc_Char)0x75, /* [5076] */ (xdc_Char)0x6e, /* [5077] */ (xdc_Char)0x63, /* [5078] */ (xdc_Char)0x3a, /* [5079] */ (xdc_Char)0x20, /* [5080] */ (xdc_Char)0x30, /* [5081] */ (xdc_Char)0x78, /* [5082] */ (xdc_Char)0x25, /* [5083] */ (xdc_Char)0x78, /* [5084] */ (xdc_Char)0x2c, /* [5085] */ (xdc_Char)0x20, /* [5086] */ (xdc_Char)0x74, /* [5087] */ (xdc_Char)0x69, /* [5088] */ (xdc_Char)0x6d, /* [5089] */ (xdc_Char)0x65, /* [5090] */ (xdc_Char)0x6f, /* [5091] */ (xdc_Char)0x75, /* [5092] */ (xdc_Char)0x74, /* [5093] */ (xdc_Char)0x3a, /* [5094] */ (xdc_Char)0x20, /* [5095] */ (xdc_Char)0x25, /* [5096] */ (xdc_Char)0x64, /* [5097] */ (xdc_Char)0x0, /* [5098] */ (xdc_Char)0x4c, /* [5099] */ (xdc_Char)0x44, /* [5100] */ (xdc_Char)0x5f, /* [5101] */ (xdc_Char)0x72, /* [5102] */ (xdc_Char)0x65, /* [5103] */ (xdc_Char)0x61, /* [5104] */ (xdc_Char)0x64, /* [5105] */ (xdc_Char)0x79, /* [5106] */ (xdc_Char)0x3a, /* [5107] */ (xdc_Char)0x20, /* [5108] */ (xdc_Char)0x74, /* [5109] */ (xdc_Char)0x73, /* [5110] */ (xdc_Char)0x6b, /* [5111] */ (xdc_Char)0x3a, /* [5112] */ (xdc_Char)0x20, /* [5113] */ (xdc_Char)0x30, /* [5114] */ (xdc_Char)0x78, /* [5115] */ (xdc_Char)0x25, /* [5116] */ (xdc_Char)0x78, /* [5117] */ (xdc_Char)0x2c, /* [5118] */ (xdc_Char)0x20, /* [5119] */ (xdc_Char)0x66, /* [5120] */ (xdc_Char)0x75, /* [5121] */ (xdc_Char)0x6e, /* [5122] */ (xdc_Char)0x63, /* [5123] */ (xdc_Char)0x3a, /* [5124] */ (xdc_Char)0x20, /* [5125] */ (xdc_Char)0x30, /* [5126] */ (xdc_Char)0x78, /* [5127] */ (xdc_Char)0x25, /* [5128] */ (xdc_Char)0x78, /* [5129] */ (xdc_Char)0x2c, /* [5130] */ (xdc_Char)0x20, /* [5131] */ (xdc_Char)0x70, /* [5132] */ (xdc_Char)0x72, /* [5133] */ (xdc_Char)0x69, /* [5134] */ (xdc_Char)0x3a, /* [5135] */ (xdc_Char)0x20, /* [5136] */ (xdc_Char)0x25, /* [5137] */ (xdc_Char)0x64, /* [5138] */ (xdc_Char)0x0, /* [5139] */ (xdc_Char)0x4c, /* [5140] */ (xdc_Char)0x44, /* [5141] */ (xdc_Char)0x5f, /* [5142] */ (xdc_Char)0x62, /* [5143] */ (xdc_Char)0x6c, /* [5144] */ (xdc_Char)0x6f, /* [5145] */ (xdc_Char)0x63, /* [5146] */ (xdc_Char)0x6b, /* [5147] */ (xdc_Char)0x3a, /* [5148] */ (xdc_Char)0x20, /* [5149] */ (xdc_Char)0x74, /* [5150] */ (xdc_Char)0x73, /* [5151] */ (xdc_Char)0x6b, /* [5152] */ (xdc_Char)0x3a, /* [5153] */ (xdc_Char)0x20, /* [5154] */ (xdc_Char)0x30, /* [5155] */ (xdc_Char)0x78, /* [5156] */ (xdc_Char)0x25, /* [5157] */ (xdc_Char)0x78, /* [5158] */ (xdc_Char)0x2c, /* [5159] */ (xdc_Char)0x20, /* [5160] */ (xdc_Char)0x66, /* [5161] */ (xdc_Char)0x75, /* [5162] */ (xdc_Char)0x6e, /* [5163] */ (xdc_Char)0x63, /* [5164] */ (xdc_Char)0x3a, /* [5165] */ (xdc_Char)0x20, /* [5166] */ (xdc_Char)0x30, /* [5167] */ (xdc_Char)0x78, /* [5168] */ (xdc_Char)0x25, /* [5169] */ (xdc_Char)0x78, /* [5170] */ (xdc_Char)0x0, /* [5171] */ (xdc_Char)0x4c, /* [5172] */ (xdc_Char)0x4d, /* [5173] */ (xdc_Char)0x5f, /* [5174] */ (xdc_Char)0x79, /* [5175] */ (xdc_Char)0x69, /* [5176] */ (xdc_Char)0x65, /* [5177] */ (xdc_Char)0x6c, /* [5178] */ (xdc_Char)0x64, /* [5179] */ (xdc_Char)0x3a, /* [5180] */ (xdc_Char)0x20, /* [5181] */ (xdc_Char)0x74, /* [5182] */ (xdc_Char)0x73, /* [5183] */ (xdc_Char)0x6b, /* [5184] */ (xdc_Char)0x3a, /* [5185] */ (xdc_Char)0x20, /* [5186] */ (xdc_Char)0x30, /* [5187] */ (xdc_Char)0x78, /* [5188] */ (xdc_Char)0x25, /* [5189] */ (xdc_Char)0x78, /* [5190] */ (xdc_Char)0x2c, /* [5191] */ (xdc_Char)0x20, /* [5192] */ (xdc_Char)0x66, /* [5193] */ (xdc_Char)0x75, /* [5194] */ (xdc_Char)0x6e, /* [5195] */ (xdc_Char)0x63, /* [5196] */ (xdc_Char)0x3a, /* [5197] */ (xdc_Char)0x20, /* [5198] */ (xdc_Char)0x30, /* [5199] */ (xdc_Char)0x78, /* [5200] */ (xdc_Char)0x25, /* [5201] */ (xdc_Char)0x78, /* [5202] */ (xdc_Char)0x2c, /* [5203] */ (xdc_Char)0x20, /* [5204] */ (xdc_Char)0x63, /* [5205] */ (xdc_Char)0x75, /* [5206] */ (xdc_Char)0x72, /* [5207] */ (xdc_Char)0x72, /* [5208] */ (xdc_Char)0x54, /* [5209] */ (xdc_Char)0x68, /* [5210] */ (xdc_Char)0x72, /* [5211] */ (xdc_Char)0x65, /* [5212] */ (xdc_Char)0x61, /* [5213] */ (xdc_Char)0x64, /* [5214] */ (xdc_Char)0x3a, /* [5215] */ (xdc_Char)0x20, /* [5216] */ (xdc_Char)0x25, /* [5217] */ (xdc_Char)0x64, /* [5218] */ (xdc_Char)0x0, /* [5219] */ (xdc_Char)0x4c, /* [5220] */ (xdc_Char)0x4d, /* [5221] */ (xdc_Char)0x5f, /* [5222] */ (xdc_Char)0x73, /* [5223] */ (xdc_Char)0x65, /* [5224] */ (xdc_Char)0x74, /* [5225] */ (xdc_Char)0x50, /* [5226] */ (xdc_Char)0x72, /* [5227] */ (xdc_Char)0x69, /* [5228] */ (xdc_Char)0x3a, /* [5229] */ (xdc_Char)0x20, /* [5230] */ (xdc_Char)0x74, /* [5231] */ (xdc_Char)0x73, /* [5232] */ (xdc_Char)0x6b, /* [5233] */ (xdc_Char)0x3a, /* [5234] */ (xdc_Char)0x20, /* [5235] */ (xdc_Char)0x30, /* [5236] */ (xdc_Char)0x78, /* [5237] */ (xdc_Char)0x25, /* [5238] */ (xdc_Char)0x78, /* [5239] */ (xdc_Char)0x2c, /* [5240] */ (xdc_Char)0x20, /* [5241] */ (xdc_Char)0x66, /* [5242] */ (xdc_Char)0x75, /* [5243] */ (xdc_Char)0x6e, /* [5244] */ (xdc_Char)0x63, /* [5245] */ (xdc_Char)0x3a, /* [5246] */ (xdc_Char)0x20, /* [5247] */ (xdc_Char)0x30, /* [5248] */ (xdc_Char)0x78, /* [5249] */ (xdc_Char)0x25, /* [5250] */ (xdc_Char)0x78, /* [5251] */ (xdc_Char)0x2c, /* [5252] */ (xdc_Char)0x20, /* [5253] */ (xdc_Char)0x6f, /* [5254] */ (xdc_Char)0x6c, /* [5255] */ (xdc_Char)0x64, /* [5256] */ (xdc_Char)0x50, /* [5257] */ (xdc_Char)0x72, /* [5258] */ (xdc_Char)0x69, /* [5259] */ (xdc_Char)0x3a, /* [5260] */ (xdc_Char)0x20, /* [5261] */ (xdc_Char)0x25, /* [5262] */ (xdc_Char)0x64, /* [5263] */ (xdc_Char)0x2c, /* [5264] */ (xdc_Char)0x20, /* [5265] */ (xdc_Char)0x6e, /* [5266] */ (xdc_Char)0x65, /* [5267] */ (xdc_Char)0x77, /* [5268] */ (xdc_Char)0x50, /* [5269] */ (xdc_Char)0x72, /* [5270] */ (xdc_Char)0x69, /* [5271] */ (xdc_Char)0x20, /* [5272] */ (xdc_Char)0x25, /* [5273] */ (xdc_Char)0x64, /* [5274] */ (xdc_Char)0x0, /* [5275] */ (xdc_Char)0x4c, /* [5276] */ (xdc_Char)0x44, /* [5277] */ (xdc_Char)0x5f, /* [5278] */ (xdc_Char)0x65, /* [5279] */ (xdc_Char)0x78, /* [5280] */ (xdc_Char)0x69, /* [5281] */ (xdc_Char)0x74, /* [5282] */ (xdc_Char)0x3a, /* [5283] */ (xdc_Char)0x20, /* [5284] */ (xdc_Char)0x74, /* [5285] */ (xdc_Char)0x73, /* [5286] */ (xdc_Char)0x6b, /* [5287] */ (xdc_Char)0x3a, /* [5288] */ (xdc_Char)0x20, /* [5289] */ (xdc_Char)0x30, /* [5290] */ (xdc_Char)0x78, /* [5291] */ (xdc_Char)0x25, /* [5292] */ (xdc_Char)0x78, /* [5293] */ (xdc_Char)0x2c, /* [5294] */ (xdc_Char)0x20, /* [5295] */ (xdc_Char)0x66, /* [5296] */ (xdc_Char)0x75, /* [5297] */ (xdc_Char)0x6e, /* [5298] */ (xdc_Char)0x63, /* [5299] */ (xdc_Char)0x3a, /* [5300] */ (xdc_Char)0x20, /* [5301] */ (xdc_Char)0x30, /* [5302] */ (xdc_Char)0x78, /* [5303] */ (xdc_Char)0x25, /* [5304] */ (xdc_Char)0x78, /* [5305] */ (xdc_Char)0x0, /* [5306] */ (xdc_Char)0x4c, /* [5307] */ (xdc_Char)0x4d, /* [5308] */ (xdc_Char)0x5f, /* [5309] */ (xdc_Char)0x73, /* [5310] */ (xdc_Char)0x65, /* [5311] */ (xdc_Char)0x74, /* [5312] */ (xdc_Char)0x41, /* [5313] */ (xdc_Char)0x66, /* [5314] */ (xdc_Char)0x66, /* [5315] */ (xdc_Char)0x69, /* [5316] */ (xdc_Char)0x6e, /* [5317] */ (xdc_Char)0x69, /* [5318] */ (xdc_Char)0x74, /* [5319] */ (xdc_Char)0x79, /* [5320] */ (xdc_Char)0x3a, /* [5321] */ (xdc_Char)0x20, /* [5322] */ (xdc_Char)0x74, /* [5323] */ (xdc_Char)0x73, /* [5324] */ (xdc_Char)0x6b, /* [5325] */ (xdc_Char)0x3a, /* [5326] */ (xdc_Char)0x20, /* [5327] */ (xdc_Char)0x30, /* [5328] */ (xdc_Char)0x78, /* [5329] */ (xdc_Char)0x25, /* [5330] */ (xdc_Char)0x78, /* [5331] */ (xdc_Char)0x2c, /* [5332] */ (xdc_Char)0x20, /* [5333] */ (xdc_Char)0x66, /* [5334] */ (xdc_Char)0x75, /* [5335] */ (xdc_Char)0x6e, /* [5336] */ (xdc_Char)0x63, /* [5337] */ (xdc_Char)0x3a, /* [5338] */ (xdc_Char)0x20, /* [5339] */ (xdc_Char)0x30, /* [5340] */ (xdc_Char)0x78, /* [5341] */ (xdc_Char)0x25, /* [5342] */ (xdc_Char)0x78, /* [5343] */ (xdc_Char)0x2c, /* [5344] */ (xdc_Char)0x20, /* [5345] */ (xdc_Char)0x6f, /* [5346] */ (xdc_Char)0x6c, /* [5347] */ (xdc_Char)0x64, /* [5348] */ (xdc_Char)0x43, /* [5349] */ (xdc_Char)0x6f, /* [5350] */ (xdc_Char)0x72, /* [5351] */ (xdc_Char)0x65, /* [5352] */ (xdc_Char)0x3a, /* [5353] */ (xdc_Char)0x20, /* [5354] */ (xdc_Char)0x25, /* [5355] */ (xdc_Char)0x64, /* [5356] */ (xdc_Char)0x2c, /* [5357] */ (xdc_Char)0x20, /* [5358] */ (xdc_Char)0x6f, /* [5359] */ (xdc_Char)0x6c, /* [5360] */ (xdc_Char)0x64, /* [5361] */ (xdc_Char)0x41, /* [5362] */ (xdc_Char)0x66, /* [5363] */ (xdc_Char)0x66, /* [5364] */ (xdc_Char)0x69, /* [5365] */ (xdc_Char)0x6e, /* [5366] */ (xdc_Char)0x69, /* [5367] */ (xdc_Char)0x74, /* [5368] */ (xdc_Char)0x79, /* [5369] */ (xdc_Char)0x20, /* [5370] */ (xdc_Char)0x25, /* [5371] */ (xdc_Char)0x64, /* [5372] */ (xdc_Char)0x2c, /* [5373] */ (xdc_Char)0x20, /* [5374] */ (xdc_Char)0x6e, /* [5375] */ (xdc_Char)0x65, /* [5376] */ (xdc_Char)0x77, /* [5377] */ (xdc_Char)0x41, /* [5378] */ (xdc_Char)0x66, /* [5379] */ (xdc_Char)0x66, /* [5380] */ (xdc_Char)0x69, /* [5381] */ (xdc_Char)0x6e, /* [5382] */ (xdc_Char)0x69, /* [5383] */ (xdc_Char)0x74, /* [5384] */ (xdc_Char)0x79, /* [5385] */ (xdc_Char)0x20, /* [5386] */ (xdc_Char)0x25, /* [5387] */ (xdc_Char)0x64, /* [5388] */ (xdc_Char)0x0, /* [5389] */ (xdc_Char)0x4c, /* [5390] */ (xdc_Char)0x44, /* [5391] */ (xdc_Char)0x5f, /* [5392] */ (xdc_Char)0x73, /* [5393] */ (xdc_Char)0x63, /* [5394] */ (xdc_Char)0x68, /* [5395] */ (xdc_Char)0x65, /* [5396] */ (xdc_Char)0x64, /* [5397] */ (xdc_Char)0x75, /* [5398] */ (xdc_Char)0x6c, /* [5399] */ (xdc_Char)0x65, /* [5400] */ (xdc_Char)0x3a, /* [5401] */ (xdc_Char)0x20, /* [5402] */ (xdc_Char)0x63, /* [5403] */ (xdc_Char)0x6f, /* [5404] */ (xdc_Char)0x72, /* [5405] */ (xdc_Char)0x65, /* [5406] */ (xdc_Char)0x49, /* [5407] */ (xdc_Char)0x64, /* [5408] */ (xdc_Char)0x3a, /* [5409] */ (xdc_Char)0x20, /* [5410] */ (xdc_Char)0x25, /* [5411] */ (xdc_Char)0x64, /* [5412] */ (xdc_Char)0x2c, /* [5413] */ (xdc_Char)0x20, /* [5414] */ (xdc_Char)0x77, /* [5415] */ (xdc_Char)0x6f, /* [5416] */ (xdc_Char)0x72, /* [5417] */ (xdc_Char)0x6b, /* [5418] */ (xdc_Char)0x46, /* [5419] */ (xdc_Char)0x6c, /* [5420] */ (xdc_Char)0x61, /* [5421] */ (xdc_Char)0x67, /* [5422] */ (xdc_Char)0x3a, /* [5423] */ (xdc_Char)0x20, /* [5424] */ (xdc_Char)0x25, /* [5425] */ (xdc_Char)0x64, /* [5426] */ (xdc_Char)0x2c, /* [5427] */ (xdc_Char)0x20, /* [5428] */ (xdc_Char)0x63, /* [5429] */ (xdc_Char)0x75, /* [5430] */ (xdc_Char)0x72, /* [5431] */ (xdc_Char)0x53, /* [5432] */ (xdc_Char)0x65, /* [5433] */ (xdc_Char)0x74, /* [5434] */ (xdc_Char)0x4c, /* [5435] */ (xdc_Char)0x6f, /* [5436] */ (xdc_Char)0x63, /* [5437] */ (xdc_Char)0x61, /* [5438] */ (xdc_Char)0x6c, /* [5439] */ (xdc_Char)0x3a, /* [5440] */ (xdc_Char)0x20, /* [5441] */ (xdc_Char)0x25, /* [5442] */ (xdc_Char)0x64, /* [5443] */ (xdc_Char)0x2c, /* [5444] */ (xdc_Char)0x20, /* [5445] */ (xdc_Char)0x63, /* [5446] */ (xdc_Char)0x75, /* [5447] */ (xdc_Char)0x72, /* [5448] */ (xdc_Char)0x53, /* [5449] */ (xdc_Char)0x65, /* [5450] */ (xdc_Char)0x74, /* [5451] */ (xdc_Char)0x58, /* [5452] */ (xdc_Char)0x3a, /* [5453] */ (xdc_Char)0x20, /* [5454] */ (xdc_Char)0x25, /* [5455] */ (xdc_Char)0x64, /* [5456] */ (xdc_Char)0x2c, /* [5457] */ (xdc_Char)0x20, /* [5458] */ (xdc_Char)0x63, /* [5459] */ (xdc_Char)0x75, /* [5460] */ (xdc_Char)0x72, /* [5461] */ (xdc_Char)0x4d, /* [5462] */ (xdc_Char)0x61, /* [5463] */ (xdc_Char)0x73, /* [5464] */ (xdc_Char)0x6b, /* [5465] */ (xdc_Char)0x4c, /* [5466] */ (xdc_Char)0x6f, /* [5467] */ (xdc_Char)0x63, /* [5468] */ (xdc_Char)0x61, /* [5469] */ (xdc_Char)0x6c, /* [5470] */ (xdc_Char)0x3a, /* [5471] */ (xdc_Char)0x20, /* [5472] */ (xdc_Char)0x25, /* [5473] */ (xdc_Char)0x64, /* [5474] */ (xdc_Char)0x0, /* [5475] */ (xdc_Char)0x4c, /* [5476] */ (xdc_Char)0x44, /* [5477] */ (xdc_Char)0x5f, /* [5478] */ (xdc_Char)0x6e, /* [5479] */ (xdc_Char)0x6f, /* [5480] */ (xdc_Char)0x57, /* [5481] */ (xdc_Char)0x6f, /* [5482] */ (xdc_Char)0x72, /* [5483] */ (xdc_Char)0x6b, /* [5484] */ (xdc_Char)0x3a, /* [5485] */ (xdc_Char)0x20, /* [5486] */ (xdc_Char)0x63, /* [5487] */ (xdc_Char)0x6f, /* [5488] */ (xdc_Char)0x72, /* [5489] */ (xdc_Char)0x65, /* [5490] */ (xdc_Char)0x49, /* [5491] */ (xdc_Char)0x64, /* [5492] */ (xdc_Char)0x3a, /* [5493] */ (xdc_Char)0x20, /* [5494] */ (xdc_Char)0x25, /* [5495] */ (xdc_Char)0x64, /* [5496] */ (xdc_Char)0x2c, /* [5497] */ (xdc_Char)0x20, /* [5498] */ (xdc_Char)0x63, /* [5499] */ (xdc_Char)0x75, /* [5500] */ (xdc_Char)0x72, /* [5501] */ (xdc_Char)0x53, /* [5502] */ (xdc_Char)0x65, /* [5503] */ (xdc_Char)0x74, /* [5504] */ (xdc_Char)0x4c, /* [5505] */ (xdc_Char)0x6f, /* [5506] */ (xdc_Char)0x63, /* [5507] */ (xdc_Char)0x61, /* [5508] */ (xdc_Char)0x6c, /* [5509] */ (xdc_Char)0x3a, /* [5510] */ (xdc_Char)0x20, /* [5511] */ (xdc_Char)0x25, /* [5512] */ (xdc_Char)0x64, /* [5513] */ (xdc_Char)0x2c, /* [5514] */ (xdc_Char)0x20, /* [5515] */ (xdc_Char)0x63, /* [5516] */ (xdc_Char)0x75, /* [5517] */ (xdc_Char)0x72, /* [5518] */ (xdc_Char)0x53, /* [5519] */ (xdc_Char)0x65, /* [5520] */ (xdc_Char)0x74, /* [5521] */ (xdc_Char)0x58, /* [5522] */ (xdc_Char)0x3a, /* [5523] */ (xdc_Char)0x20, /* [5524] */ (xdc_Char)0x25, /* [5525] */ (xdc_Char)0x64, /* [5526] */ (xdc_Char)0x2c, /* [5527] */ (xdc_Char)0x20, /* [5528] */ (xdc_Char)0x63, /* [5529] */ (xdc_Char)0x75, /* [5530] */ (xdc_Char)0x72, /* [5531] */ (xdc_Char)0x4d, /* [5532] */ (xdc_Char)0x61, /* [5533] */ (xdc_Char)0x73, /* [5534] */ (xdc_Char)0x6b, /* [5535] */ (xdc_Char)0x4c, /* [5536] */ (xdc_Char)0x6f, /* [5537] */ (xdc_Char)0x63, /* [5538] */ (xdc_Char)0x61, /* [5539] */ (xdc_Char)0x6c, /* [5540] */ (xdc_Char)0x3a, /* [5541] */ (xdc_Char)0x20, /* [5542] */ (xdc_Char)0x25, /* [5543] */ (xdc_Char)0x64, /* [5544] */ (xdc_Char)0x0, /* [5545] */ (xdc_Char)0x4c, /* [5546] */ (xdc_Char)0x53, /* [5547] */ (xdc_Char)0x5f, /* [5548] */ (xdc_Char)0x63, /* [5549] */ (xdc_Char)0x70, /* [5550] */ (xdc_Char)0x75, /* [5551] */ (xdc_Char)0x4c, /* [5552] */ (xdc_Char)0x6f, /* [5553] */ (xdc_Char)0x61, /* [5554] */ (xdc_Char)0x64, /* [5555] */ (xdc_Char)0x3a, /* [5556] */ (xdc_Char)0x20, /* [5557] */ (xdc_Char)0x25, /* [5558] */ (xdc_Char)0x64, /* [5559] */ (xdc_Char)0x25, /* [5560] */ (xdc_Char)0x25, /* [5561] */ (xdc_Char)0x0, /* [5562] */ (xdc_Char)0x4c, /* [5563] */ (xdc_Char)0x53, /* [5564] */ (xdc_Char)0x5f, /* [5565] */ (xdc_Char)0x68, /* [5566] */ (xdc_Char)0x77, /* [5567] */ (xdc_Char)0x69, /* [5568] */ (xdc_Char)0x4c, /* [5569] */ (xdc_Char)0x6f, /* [5570] */ (xdc_Char)0x61, /* [5571] */ (xdc_Char)0x64, /* [5572] */ (xdc_Char)0x3a, /* [5573] */ (xdc_Char)0x20, /* [5574] */ (xdc_Char)0x25, /* [5575] */ (xdc_Char)0x64, /* [5576] */ (xdc_Char)0x2c, /* [5577] */ (xdc_Char)0x25, /* [5578] */ (xdc_Char)0x64, /* [5579] */ (xdc_Char)0x0, /* [5580] */ (xdc_Char)0x4c, /* [5581] */ (xdc_Char)0x53, /* [5582] */ (xdc_Char)0x5f, /* [5583] */ (xdc_Char)0x73, /* [5584] */ (xdc_Char)0x77, /* [5585] */ (xdc_Char)0x69, /* [5586] */ (xdc_Char)0x4c, /* [5587] */ (xdc_Char)0x6f, /* [5588] */ (xdc_Char)0x61, /* [5589] */ (xdc_Char)0x64, /* [5590] */ (xdc_Char)0x3a, /* [5591] */ (xdc_Char)0x20, /* [5592] */ (xdc_Char)0x25, /* [5593] */ (xdc_Char)0x64, /* [5594] */ (xdc_Char)0x2c, /* [5595] */ (xdc_Char)0x25, /* [5596] */ (xdc_Char)0x64, /* [5597] */ (xdc_Char)0x0, /* [5598] */ (xdc_Char)0x4c, /* [5599] */ (xdc_Char)0x53, /* [5600] */ (xdc_Char)0x5f, /* [5601] */ (xdc_Char)0x74, /* [5602] */ (xdc_Char)0x61, /* [5603] */ (xdc_Char)0x73, /* [5604] */ (xdc_Char)0x6b, /* [5605] */ (xdc_Char)0x4c, /* [5606] */ (xdc_Char)0x6f, /* [5607] */ (xdc_Char)0x61, /* [5608] */ (xdc_Char)0x64, /* [5609] */ (xdc_Char)0x3a, /* [5610] */ (xdc_Char)0x20, /* [5611] */ (xdc_Char)0x30, /* [5612] */ (xdc_Char)0x78, /* [5613] */ (xdc_Char)0x25, /* [5614] */ (xdc_Char)0x78, /* [5615] */ (xdc_Char)0x2c, /* [5616] */ (xdc_Char)0x25, /* [5617] */ (xdc_Char)0x64, /* [5618] */ (xdc_Char)0x2c, /* [5619] */ (xdc_Char)0x25, /* [5620] */ (xdc_Char)0x64, /* [5621] */ (xdc_Char)0x2c, /* [5622] */ (xdc_Char)0x30, /* [5623] */ (xdc_Char)0x78, /* [5624] */ (xdc_Char)0x25, /* [5625] */ (xdc_Char)0x78, /* [5626] */ (xdc_Char)0x0, /* [5627] */ (xdc_Char)0x78, /* [5628] */ (xdc_Char)0x64, /* [5629] */ (xdc_Char)0x63, /* [5630] */ (xdc_Char)0x2e, /* [5631] */ (xdc_Char)0x0, /* [5632] */ (xdc_Char)0x72, /* [5633] */ (xdc_Char)0x75, /* [5634] */ (xdc_Char)0x6e, /* [5635] */ (xdc_Char)0x74, /* [5636] */ (xdc_Char)0x69, /* [5637] */ (xdc_Char)0x6d, /* [5638] */ (xdc_Char)0x65, /* [5639] */ (xdc_Char)0x2e, /* [5640] */ (xdc_Char)0x0, /* [5641] */ (xdc_Char)0x4d, /* [5642] */ (xdc_Char)0x61, /* [5643] */ (xdc_Char)0x69, /* [5644] */ (xdc_Char)0x6e, /* [5645] */ (xdc_Char)0x0, /* [5646] */ (xdc_Char)0x4d, /* [5647] */ (xdc_Char)0x65, /* [5648] */ (xdc_Char)0x6d, /* [5649] */ (xdc_Char)0x6f, /* [5650] */ (xdc_Char)0x72, /* [5651] */ (xdc_Char)0x79, /* [5652] */ (xdc_Char)0x0, /* [5653] */ (xdc_Char)0x68, /* [5654] */ (xdc_Char)0x77, /* [5655] */ (xdc_Char)0x69, /* [5656] */ (xdc_Char)0x53, /* [5657] */ (xdc_Char)0x70, /* [5658] */ (xdc_Char)0x69, /* [5659] */ (xdc_Char)0x41, /* [5660] */ (xdc_Char)0x0, /* [5661] */ (xdc_Char)0x68, /* [5662] */ (xdc_Char)0x77, /* [5663] */ (xdc_Char)0x69, /* [5664] */ (xdc_Char)0x53, /* [5665] */ (xdc_Char)0x70, /* [5666] */ (xdc_Char)0x69, /* [5667] */ (xdc_Char)0x43, /* [5668] */ (xdc_Char)0x0, /* [5669] */ (xdc_Char)0x68, /* [5670] */ (xdc_Char)0x77, /* [5671] */ (xdc_Char)0x69, /* [5672] */ (xdc_Char)0x49, /* [5673] */ (xdc_Char)0x32, /* [5674] */ (xdc_Char)0x63, /* [5675] */ (xdc_Char)0x42, /* [5676] */ (xdc_Char)0x0, /* [5677] */ (xdc_Char)0x68, /* [5678] */ (xdc_Char)0x77, /* [5679] */ (xdc_Char)0x69, /* [5680] */ (xdc_Char)0x49, /* [5681] */ (xdc_Char)0x32, /* [5682] */ (xdc_Char)0x63, /* [5683] */ (xdc_Char)0x41, /* [5684] */ (xdc_Char)0x0, /* [5685] */ (xdc_Char)0x63, /* [5686] */ (xdc_Char)0x79, /* [5687] */ (xdc_Char)0x63, /* [5688] */ (xdc_Char)0x6c, /* [5689] */ (xdc_Char)0x65, /* [5690] */ (xdc_Char)0x54, /* [5691] */ (xdc_Char)0x69, /* [5692] */ (xdc_Char)0x6d, /* [5693] */ (xdc_Char)0x65, /* [5694] */ (xdc_Char)0x72, /* [5695] */ (xdc_Char)0x5f, /* [5696] */ (xdc_Char)0x68, /* [5697] */ (xdc_Char)0x61, /* [5698] */ (xdc_Char)0x6e, /* [5699] */ (xdc_Char)0x64, /* [5700] */ (xdc_Char)0x6c, /* [5701] */ (xdc_Char)0x65, /* [5702] */ (xdc_Char)0x0, /* [5703] */ (xdc_Char)0x53, /* [5704] */ (xdc_Char)0x65, /* [5705] */ (xdc_Char)0x6d, /* [5706] */ (xdc_Char)0x47, /* [5707] */ (xdc_Char)0x79, /* [5708] */ (xdc_Char)0x72, /* [5709] */ (xdc_Char)0x6f, /* [5710] */ (xdc_Char)0x0, /* [5711] */ (xdc_Char)0x53, /* [5712] */ (xdc_Char)0x65, /* [5713] */ (xdc_Char)0x6d, /* [5714] */ (xdc_Char)0x41, /* [5715] */ (xdc_Char)0x43, /* [5716] */ (xdc_Char)0x43, /* [5717] */ (xdc_Char)0x0, /* [5718] */ (xdc_Char)0x53, /* [5719] */ (xdc_Char)0x65, /* [5720] */ (xdc_Char)0x6d, /* [5721] */ (xdc_Char)0x53, /* [5722] */ (xdc_Char)0x70, /* [5723] */ (xdc_Char)0x69, /* [5724] */ (xdc_Char)0x41, /* [5725] */ (xdc_Char)0x0, /* [5726] */ (xdc_Char)0x53, /* [5727] */ (xdc_Char)0x65, /* [5728] */ (xdc_Char)0x6d, /* [5729] */ (xdc_Char)0x53, /* [5730] */ (xdc_Char)0x70, /* [5731] */ (xdc_Char)0x69, /* [5732] */ (xdc_Char)0x43, /* [5733] */ (xdc_Char)0x0, /* [5734] */ (xdc_Char)0x53, /* [5735] */ (xdc_Char)0x65, /* [5736] */ (xdc_Char)0x6d, /* [5737] */ (xdc_Char)0x49, /* [5738] */ (xdc_Char)0x32, /* [5739] */ (xdc_Char)0x63, /* [5740] */ (xdc_Char)0x41, /* [5741] */ (xdc_Char)0x0, /* [5742] */ (xdc_Char)0x53, /* [5743] */ (xdc_Char)0x65, /* [5744] */ (xdc_Char)0x6d, /* [5745] */ (xdc_Char)0x49, /* [5746] */ (xdc_Char)0x32, /* [5747] */ (xdc_Char)0x63, /* [5748] */ (xdc_Char)0x42, /* [5749] */ (xdc_Char)0x0, /* [5750] */ (xdc_Char)0x53, /* [5751] */ (xdc_Char)0x65, /* [5752] */ (xdc_Char)0x6d, /* [5753] */ (xdc_Char)0x4d, /* [5754] */ (xdc_Char)0x6f, /* [5755] */ (xdc_Char)0x74, /* [5756] */ (xdc_Char)0x6f, /* [5757] */ (xdc_Char)0x72, /* [5758] */ (xdc_Char)0x0, /* [5759] */ (xdc_Char)0x53, /* [5760] */ (xdc_Char)0x65, /* [5761] */ (xdc_Char)0x6d, /* [5762] */ (xdc_Char)0x49, /* [5763] */ (xdc_Char)0x32, /* [5764] */ (xdc_Char)0x63, /* [5765] */ (xdc_Char)0x42, /* [5766] */ (xdc_Char)0x42, /* [5767] */ (xdc_Char)0x75, /* [5768] */ (xdc_Char)0x73, /* [5769] */ (xdc_Char)0x79, /* [5770] */ (xdc_Char)0x0, /* [5771] */ (xdc_Char)0x53, /* [5772] */ (xdc_Char)0x65, /* [5773] */ (xdc_Char)0x6d, /* [5774] */ (xdc_Char)0x49, /* [5775] */ (xdc_Char)0x32, /* [5776] */ (xdc_Char)0x63, /* [5777] */ (xdc_Char)0x41, /* [5778] */ (xdc_Char)0x42, /* [5779] */ (xdc_Char)0x75, /* [5780] */ (xdc_Char)0x73, /* [5781] */ (xdc_Char)0x79, /* [5782] */ (xdc_Char)0x0, /* [5783] */ (xdc_Char)0x53, /* [5784] */ (xdc_Char)0x65, /* [5785] */ (xdc_Char)0x6d, /* [5786] */ (xdc_Char)0x49, /* [5787] */ (xdc_Char)0x32, /* [5788] */ (xdc_Char)0x63, /* [5789] */ (xdc_Char)0x41, /* [5790] */ (xdc_Char)0x42, /* [5791] */ (xdc_Char)0x75, /* [5792] */ (xdc_Char)0x73, /* [5793] */ (xdc_Char)0x79, /* [5794] */ (xdc_Char)0x54, /* [5795] */ (xdc_Char)0x61, /* [5796] */ (xdc_Char)0x73, /* [5797] */ (xdc_Char)0x6b, /* [5798] */ (xdc_Char)0x4c, /* [5799] */ (xdc_Char)0x65, /* [5800] */ (xdc_Char)0x76, /* [5801] */ (xdc_Char)0x65, /* [5802] */ (xdc_Char)0x6c, /* [5803] */ (xdc_Char)0x0, /* [5804] */ (xdc_Char)0x53, /* [5805] */ (xdc_Char)0x65, /* [5806] */ (xdc_Char)0x6d, /* [5807] */ (xdc_Char)0x49, /* [5808] */ (xdc_Char)0x32, /* [5809] */ (xdc_Char)0x63, /* [5810] */ (xdc_Char)0x42, /* [5811] */ (xdc_Char)0x42, /* [5812] */ (xdc_Char)0x75, /* [5813] */ (xdc_Char)0x73, /* [5814] */ (xdc_Char)0x79, /* [5815] */ (xdc_Char)0x54, /* [5816] */ (xdc_Char)0x61, /* [5817] */ (xdc_Char)0x73, /* [5818] */ (xdc_Char)0x6b, /* [5819] */ (xdc_Char)0x4c, /* [5820] */ (xdc_Char)0x65, /* [5821] */ (xdc_Char)0x76, /* [5822] */ (xdc_Char)0x65, /* [5823] */ (xdc_Char)0x6c, /* [5824] */ (xdc_Char)0x0, /* [5825] */ (xdc_Char)0x53, /* [5826] */ (xdc_Char)0x65, /* [5827] */ (xdc_Char)0x6d, /* [5828] */ (xdc_Char)0x49, /* [5829] */ (xdc_Char)0x32, /* [5830] */ (xdc_Char)0x63, /* [5831] */ (xdc_Char)0x54, /* [5832] */ (xdc_Char)0x61, /* [5833] */ (xdc_Char)0x73, /* [5834] */ (xdc_Char)0x6b, /* [5835] */ (xdc_Char)0x0, /* [5836] */ (xdc_Char)0x53, /* [5837] */ (xdc_Char)0x65, /* [5838] */ (xdc_Char)0x6d, /* [5839] */ (xdc_Char)0x43, /* [5840] */ (xdc_Char)0x6f, /* [5841] */ (xdc_Char)0x6e, /* [5842] */ (xdc_Char)0x74, /* [5843] */ (xdc_Char)0x72, /* [5844] */ (xdc_Char)0x6f, /* [5845] */ (xdc_Char)0x6c, /* [5846] */ (xdc_Char)0x0, /* [5847] */ (xdc_Char)0x53, /* [5848] */ (xdc_Char)0x65, /* [5849] */ (xdc_Char)0x6d, /* [5850] */ (xdc_Char)0x49, /* [5851] */ (xdc_Char)0x6d, /* [5852] */ (xdc_Char)0x75, /* [5853] */ (xdc_Char)0x0, /* [5854] */ (xdc_Char)0x66, /* [5855] */ (xdc_Char)0x75, /* [5856] */ (xdc_Char)0x6e, /* [5857] */ (xdc_Char)0x63, /* [5858] */ (xdc_Char)0x74, /* [5859] */ (xdc_Char)0x69, /* [5860] */ (xdc_Char)0x6f, /* [5861] */ (xdc_Char)0x6e, /* [5862] */ (xdc_Char)0x43, /* [5863] */ (xdc_Char)0x61, /* [5864] */ (xdc_Char)0x6c, /* [5865] */ (xdc_Char)0x6c, /* [5866] */ (xdc_Char)0x53, /* [5867] */ (xdc_Char)0x77, /* [5868] */ (xdc_Char)0x69, /* [5869] */ (xdc_Char)0x48, /* [5870] */ (xdc_Char)0x61, /* [5871] */ (xdc_Char)0x6e, /* [5872] */ (xdc_Char)0x64, /* [5873] */ (xdc_Char)0x6c, /* [5874] */ (xdc_Char)0x65, /* [5875] */ (xdc_Char)0x0, /* [5876] */ (xdc_Char)0x47, /* [5877] */ (xdc_Char)0x79, /* [5878] */ (xdc_Char)0x72, /* [5879] */ (xdc_Char)0x6f, /* [5880] */ (xdc_Char)0x54, /* [5881] */ (xdc_Char)0x61, /* [5882] */ (xdc_Char)0x73, /* [5883] */ (xdc_Char)0x6b, /* [5884] */ (xdc_Char)0x48, /* [5885] */ (xdc_Char)0x61, /* [5886] */ (xdc_Char)0x6e, /* [5887] */ (xdc_Char)0x64, /* [5888] */ (xdc_Char)0x6c, /* [5889] */ (xdc_Char)0x65, /* [5890] */ (xdc_Char)0x0, /* [5891] */ (xdc_Char)0x41, /* [5892] */ (xdc_Char)0x43, /* [5893] */ (xdc_Char)0x43, /* [5894] */ (xdc_Char)0x54, /* [5895] */ (xdc_Char)0x61, /* [5896] */ (xdc_Char)0x73, /* [5897] */ (xdc_Char)0x6b, /* [5898] */ (xdc_Char)0x48, /* [5899] */ (xdc_Char)0x61, /* [5900] */ (xdc_Char)0x6e, /* [5901] */ (xdc_Char)0x64, /* [5902] */ (xdc_Char)0x6c, /* [5903] */ (xdc_Char)0x65, /* [5904] */ (xdc_Char)0x0, /* [5905] */ (xdc_Char)0x4d, /* [5906] */ (xdc_Char)0x6f, /* [5907] */ (xdc_Char)0x74, /* [5908] */ (xdc_Char)0x6f, /* [5909] */ (xdc_Char)0x72, /* [5910] */ (xdc_Char)0x54, /* [5911] */ (xdc_Char)0x61, /* [5912] */ (xdc_Char)0x73, /* [5913] */ (xdc_Char)0x6b, /* [5914] */ (xdc_Char)0x48, /* [5915] */ (xdc_Char)0x61, /* [5916] */ (xdc_Char)0x6e, /* [5917] */ (xdc_Char)0x64, /* [5918] */ (xdc_Char)0x6c, /* [5919] */ (xdc_Char)0x65, /* [5920] */ (xdc_Char)0x0, /* [5921] */ (xdc_Char)0x49, /* [5922] */ (xdc_Char)0x32, /* [5923] */ (xdc_Char)0x43, /* [5924] */ (xdc_Char)0x54, /* [5925] */ (xdc_Char)0x61, /* [5926] */ (xdc_Char)0x73, /* [5927] */ (xdc_Char)0x6b, /* [5928] */ (xdc_Char)0x48, /* [5929] */ (xdc_Char)0x61, /* [5930] */ (xdc_Char)0x6e, /* [5931] */ (xdc_Char)0x64, /* [5932] */ (xdc_Char)0x6c, /* [5933] */ (xdc_Char)0x65, /* [5934] */ (xdc_Char)0x0, /* [5935] */ (xdc_Char)0x43, /* [5936] */ (xdc_Char)0x6f, /* [5937] */ (xdc_Char)0x6e, /* [5938] */ (xdc_Char)0x74, /* [5939] */ (xdc_Char)0x72, /* [5940] */ (xdc_Char)0x6f, /* [5941] */ (xdc_Char)0x6c, /* [5942] */ (xdc_Char)0x54, /* [5943] */ (xdc_Char)0x61, /* [5944] */ (xdc_Char)0x73, /* [5945] */ (xdc_Char)0x6b, /* [5946] */ (xdc_Char)0x48, /* [5947] */ (xdc_Char)0x61, /* [5948] */ (xdc_Char)0x6e, /* [5949] */ (xdc_Char)0x64, /* [5950] */ (xdc_Char)0x6c, /* [5951] */ (xdc_Char)0x65, /* [5952] */ (xdc_Char)0x0, /* [5953] */ (xdc_Char)0x74, /* [5954] */ (xdc_Char)0x69, /* [5955] */ (xdc_Char)0x2e, /* [5956] */ (xdc_Char)0x73, /* [5957] */ (xdc_Char)0x79, /* [5958] */ (xdc_Char)0x73, /* [5959] */ (xdc_Char)0x62, /* [5960] */ (xdc_Char)0x69, /* [5961] */ (xdc_Char)0x6f, /* [5962] */ (xdc_Char)0x73, /* [5963] */ (xdc_Char)0x2e, /* [5964] */ (xdc_Char)0x6b, /* [5965] */ (xdc_Char)0x6e, /* [5966] */ (xdc_Char)0x6c, /* [5967] */ (xdc_Char)0x2e, /* [5968] */ (xdc_Char)0x54, /* [5969] */ (xdc_Char)0x61, /* [5970] */ (xdc_Char)0x73, /* [5971] */ (xdc_Char)0x6b, /* [5972] */ (xdc_Char)0x2e, /* [5973] */ (xdc_Char)0x49, /* [5974] */ (xdc_Char)0x64, /* [5975] */ (xdc_Char)0x6c, /* [5976] */ (xdc_Char)0x65, /* [5977] */ (xdc_Char)0x54, /* [5978] */ (xdc_Char)0x61, /* [5979] */ (xdc_Char)0x73, /* [5980] */ (xdc_Char)0x6b, /* [5981] */ (xdc_Char)0x0, /* [5982] */ }; /* --> xdc_runtime_Text_nodeTab__A */ #pragma DATA_SECTION(xdc_runtime_Text_nodeTab__A, ".econst:xdc_runtime_Text_nodeTab__A"); asm(" .sect \".econst:xdc_runtime_Text_nodeTab__A\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_nodeTab__A\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_nodeTab__A\""); asm(" .clink "); const __T1_xdc_runtime_Text_nodeTab xdc_runtime_Text_nodeTab__A[4] = { { (xdc_Bits16)0x0, /* left */ (xdc_Bits16)0x0, /* right */ }, /* [0] */ { (xdc_Bits16)0x15fc, /* left */ (xdc_Bits16)0x1601, /* right */ }, /* [1] */ { (xdc_Bits16)0x8001, /* left */ (xdc_Bits16)0x160a, /* right */ }, /* [2] */ { (xdc_Bits16)0x8001, /* left */ (xdc_Bits16)0x160f, /* right */ }, /* [3] */ }; /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__diagsEnabled__C, ".econst:xdc_runtime_Text_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__diagsEnabled xdc_runtime_Text_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__diagsIncluded__C, ".econst:xdc_runtime_Text_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__diagsIncluded xdc_runtime_Text_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__diagsMask__C, ".econst:xdc_runtime_Text_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__diagsMask xdc_runtime_Text_Module__diagsMask__C = ((CT__xdc_runtime_Text_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__gateObj__C, ".econst:xdc_runtime_Text_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__gateObj xdc_runtime_Text_Module__gateObj__C = ((CT__xdc_runtime_Text_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__gatePrms__C, ".econst:xdc_runtime_Text_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__gatePrms xdc_runtime_Text_Module__gatePrms__C = ((CT__xdc_runtime_Text_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__id__C, ".econst:xdc_runtime_Text_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__id xdc_runtime_Text_Module__id__C = (xdc_Bits16)0xc; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__loggerDefined__C, ".econst:xdc_runtime_Text_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__loggerDefined xdc_runtime_Text_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__loggerObj__C, ".econst:xdc_runtime_Text_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__loggerObj xdc_runtime_Text_Module__loggerObj__C = ((CT__xdc_runtime_Text_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__loggerFxn0__C, ".econst:xdc_runtime_Text_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__loggerFxn0 xdc_runtime_Text_Module__loggerFxn0__C = ((CT__xdc_runtime_Text_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__loggerFxn1__C, ".econst:xdc_runtime_Text_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__loggerFxn1 xdc_runtime_Text_Module__loggerFxn1__C = ((CT__xdc_runtime_Text_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__loggerFxn2__C, ".econst:xdc_runtime_Text_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__loggerFxn2 xdc_runtime_Text_Module__loggerFxn2__C = ((CT__xdc_runtime_Text_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__loggerFxn4__C, ".econst:xdc_runtime_Text_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__loggerFxn4 xdc_runtime_Text_Module__loggerFxn4__C = ((CT__xdc_runtime_Text_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Text_Module__loggerFxn8__C, ".econst:xdc_runtime_Text_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Text_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Module__loggerFxn8 xdc_runtime_Text_Module__loggerFxn8__C = ((CT__xdc_runtime_Text_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Text_Object__count__C, ".econst:xdc_runtime_Text_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Text_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Object__count xdc_runtime_Text_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Text_Object__heap__C, ".econst:xdc_runtime_Text_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Text_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Object__heap xdc_runtime_Text_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Text_Object__sizeof__C, ".econst:xdc_runtime_Text_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Text_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Object__sizeof xdc_runtime_Text_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Text_Object__table__C, ".econst:xdc_runtime_Text_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Text_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Text_Object__table xdc_runtime_Text_Object__table__C = 0; /* nameUnknown__C */ #pragma DATA_SECTION(xdc_runtime_Text_nameUnknown__C, ".econst:xdc_runtime_Text_nameUnknown__C"); asm(" .sect \".econst:xdc_runtime_Text_nameUnknown__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_nameUnknown__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_nameUnknown__C\""); asm(" .clink "); const CT__xdc_runtime_Text_nameUnknown xdc_runtime_Text_nameUnknown__C = "{unknown-instance-name}"; /* nameEmpty__C */ #pragma DATA_SECTION(xdc_runtime_Text_nameEmpty__C, ".econst:xdc_runtime_Text_nameEmpty__C"); asm(" .sect \".econst:xdc_runtime_Text_nameEmpty__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_nameEmpty__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_nameEmpty__C\""); asm(" .clink "); const CT__xdc_runtime_Text_nameEmpty xdc_runtime_Text_nameEmpty__C = "{empty-instance-name}"; /* nameStatic__C */ #pragma DATA_SECTION(xdc_runtime_Text_nameStatic__C, ".econst:xdc_runtime_Text_nameStatic__C"); asm(" .sect \".econst:xdc_runtime_Text_nameStatic__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_nameStatic__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_nameStatic__C\""); asm(" .clink "); const CT__xdc_runtime_Text_nameStatic xdc_runtime_Text_nameStatic__C = "{static-instance-name}"; /* isLoaded__C */ #pragma DATA_SECTION(xdc_runtime_Text_isLoaded__C, ".econst:xdc_runtime_Text_isLoaded__C"); asm(" .sect \".econst:xdc_runtime_Text_isLoaded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_isLoaded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_isLoaded__C\""); asm(" .clink "); const CT__xdc_runtime_Text_isLoaded xdc_runtime_Text_isLoaded__C = 1; /* charTab__C */ #pragma DATA_SECTION(xdc_runtime_Text_charTab__C, ".econst:xdc_runtime_Text_charTab__C"); asm(" .sect \".econst:xdc_runtime_Text_charTab__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_charTab__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_charTab__C\""); asm(" .clink "); const CT__xdc_runtime_Text_charTab xdc_runtime_Text_charTab__C = ((CT__xdc_runtime_Text_charTab)xdc_runtime_Text_charTab__A); /* nodeTab__C */ #pragma DATA_SECTION(xdc_runtime_Text_nodeTab__C, ".econst:xdc_runtime_Text_nodeTab__C"); asm(" .sect \".econst:xdc_runtime_Text_nodeTab__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_nodeTab__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_nodeTab__C\""); asm(" .clink "); const CT__xdc_runtime_Text_nodeTab xdc_runtime_Text_nodeTab__C = ((CT__xdc_runtime_Text_nodeTab)xdc_runtime_Text_nodeTab__A); /* charCnt__C */ #pragma DATA_SECTION(xdc_runtime_Text_charCnt__C, ".econst:xdc_runtime_Text_charCnt__C"); asm(" .sect \".econst:xdc_runtime_Text_charCnt__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_charCnt__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_charCnt__C\""); asm(" .clink "); const CT__xdc_runtime_Text_charCnt xdc_runtime_Text_charCnt__C = (xdc_Int16)0x175f; /* nodeCnt__C */ #pragma DATA_SECTION(xdc_runtime_Text_nodeCnt__C, ".econst:xdc_runtime_Text_nodeCnt__C"); asm(" .sect \".econst:xdc_runtime_Text_nodeCnt__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_nodeCnt__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_nodeCnt__C\""); asm(" .clink "); const CT__xdc_runtime_Text_nodeCnt xdc_runtime_Text_nodeCnt__C = (xdc_Int16)0x4; /* unnamedModsLastId__C */ #pragma DATA_SECTION(xdc_runtime_Text_unnamedModsLastId__C, ".econst:xdc_runtime_Text_unnamedModsLastId__C"); asm(" .sect \".econst:xdc_runtime_Text_unnamedModsLastId__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_unnamedModsLastId__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_unnamedModsLastId__C\""); asm(" .clink "); const CT__xdc_runtime_Text_unnamedModsLastId xdc_runtime_Text_unnamedModsLastId__C = (xdc_UInt16)0x4000; /* registryModsLastId__C */ #pragma DATA_SECTION(xdc_runtime_Text_registryModsLastId__C, ".econst:xdc_runtime_Text_registryModsLastId__C"); asm(" .sect \".econst:xdc_runtime_Text_registryModsLastId__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_registryModsLastId__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_registryModsLastId__C\""); asm(" .clink "); const CT__xdc_runtime_Text_registryModsLastId xdc_runtime_Text_registryModsLastId__C = (xdc_UInt16)0x7fff; /* visitRopeFxn__C */ #pragma DATA_SECTION(xdc_runtime_Text_visitRopeFxn__C, ".econst:xdc_runtime_Text_visitRopeFxn__C"); asm(" .sect \".econst:xdc_runtime_Text_visitRopeFxn__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_visitRopeFxn__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_visitRopeFxn__C\""); asm(" .clink "); const CT__xdc_runtime_Text_visitRopeFxn xdc_runtime_Text_visitRopeFxn__C = ((CT__xdc_runtime_Text_visitRopeFxn)((xdc_Fxn)xdc_runtime_Text_visitRope__I)); /* visitRopeFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Text_visitRopeFxn2__C, ".econst:xdc_runtime_Text_visitRopeFxn2__C"); asm(" .sect \".econst:xdc_runtime_Text_visitRopeFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Text_visitRopeFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Text_visitRopeFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Text_visitRopeFxn2 xdc_runtime_Text_visitRopeFxn2__C = ((CT__xdc_runtime_Text_visitRopeFxn2)((xdc_Fxn)xdc_runtime_Text_visitRope2__I)); /* * ======== xdc.runtime.Timestamp INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__diagsEnabled__C, ".econst:xdc_runtime_Timestamp_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__diagsEnabled xdc_runtime_Timestamp_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__diagsIncluded__C, ".econst:xdc_runtime_Timestamp_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__diagsIncluded xdc_runtime_Timestamp_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__diagsMask__C, ".econst:xdc_runtime_Timestamp_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__diagsMask xdc_runtime_Timestamp_Module__diagsMask__C = ((CT__xdc_runtime_Timestamp_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__gateObj__C, ".econst:xdc_runtime_Timestamp_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__gateObj xdc_runtime_Timestamp_Module__gateObj__C = ((CT__xdc_runtime_Timestamp_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__gatePrms__C, ".econst:xdc_runtime_Timestamp_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__gatePrms xdc_runtime_Timestamp_Module__gatePrms__C = ((CT__xdc_runtime_Timestamp_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__id__C, ".econst:xdc_runtime_Timestamp_Module__id__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__id xdc_runtime_Timestamp_Module__id__C = (xdc_Bits16)0xd; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerDefined__C, ".econst:xdc_runtime_Timestamp_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__loggerDefined xdc_runtime_Timestamp_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerObj__C, ".econst:xdc_runtime_Timestamp_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__loggerObj xdc_runtime_Timestamp_Module__loggerObj__C = ((CT__xdc_runtime_Timestamp_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerFxn0__C, ".econst:xdc_runtime_Timestamp_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__loggerFxn0 xdc_runtime_Timestamp_Module__loggerFxn0__C = ((CT__xdc_runtime_Timestamp_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerFxn1__C, ".econst:xdc_runtime_Timestamp_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__loggerFxn1 xdc_runtime_Timestamp_Module__loggerFxn1__C = ((CT__xdc_runtime_Timestamp_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerFxn2__C, ".econst:xdc_runtime_Timestamp_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__loggerFxn2 xdc_runtime_Timestamp_Module__loggerFxn2__C = ((CT__xdc_runtime_Timestamp_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerFxn4__C, ".econst:xdc_runtime_Timestamp_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__loggerFxn4 xdc_runtime_Timestamp_Module__loggerFxn4__C = ((CT__xdc_runtime_Timestamp_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Module__loggerFxn8__C, ".econst:xdc_runtime_Timestamp_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Module__loggerFxn8 xdc_runtime_Timestamp_Module__loggerFxn8__C = ((CT__xdc_runtime_Timestamp_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Object__count__C, ".econst:xdc_runtime_Timestamp_Object__count__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Object__count xdc_runtime_Timestamp_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Object__heap__C, ".econst:xdc_runtime_Timestamp_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Object__heap xdc_runtime_Timestamp_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Object__sizeof__C, ".econst:xdc_runtime_Timestamp_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Object__sizeof xdc_runtime_Timestamp_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_Timestamp_Object__table__C, ".econst:xdc_runtime_Timestamp_Object__table__C"); asm(" .sect \".econst:xdc_runtime_Timestamp_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_Timestamp_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_Timestamp_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_Timestamp_Object__table xdc_runtime_Timestamp_Object__table__C = 0; /* * ======== xdc.runtime.TimestampNull INITIALIZERS ======== */ /* Module__diagsEnabled__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__diagsEnabled__C, ".econst:xdc_runtime_TimestampNull_Module__diagsEnabled__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__diagsEnabled__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__diagsEnabled__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__diagsEnabled xdc_runtime_TimestampNull_Module__diagsEnabled__C = (xdc_Bits32)0x10; /* Module__diagsIncluded__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__diagsIncluded__C, ".econst:xdc_runtime_TimestampNull_Module__diagsIncluded__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__diagsIncluded__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__diagsIncluded__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__diagsIncluded xdc_runtime_TimestampNull_Module__diagsIncluded__C = (xdc_Bits32)0x10; /* Module__diagsMask__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__diagsMask__C, ".econst:xdc_runtime_TimestampNull_Module__diagsMask__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__diagsMask__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__diagsMask__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__diagsMask xdc_runtime_TimestampNull_Module__diagsMask__C = ((CT__xdc_runtime_TimestampNull_Module__diagsMask)0); /* Module__gateObj__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__gateObj__C, ".econst:xdc_runtime_TimestampNull_Module__gateObj__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__gateObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__gateObj__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__gateObj xdc_runtime_TimestampNull_Module__gateObj__C = ((CT__xdc_runtime_TimestampNull_Module__gateObj)0); /* Module__gatePrms__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__gatePrms__C, ".econst:xdc_runtime_TimestampNull_Module__gatePrms__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__gatePrms__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__gatePrms__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__gatePrms xdc_runtime_TimestampNull_Module__gatePrms__C = ((CT__xdc_runtime_TimestampNull_Module__gatePrms)0); /* Module__id__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__id__C, ".econst:xdc_runtime_TimestampNull_Module__id__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__id__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__id__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__id__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__id xdc_runtime_TimestampNull_Module__id__C = (xdc_Bits16)0xe; /* Module__loggerDefined__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__loggerDefined__C, ".econst:xdc_runtime_TimestampNull_Module__loggerDefined__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__loggerDefined__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__loggerDefined__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__loggerDefined xdc_runtime_TimestampNull_Module__loggerDefined__C = 0; /* Module__loggerObj__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__loggerObj__C, ".econst:xdc_runtime_TimestampNull_Module__loggerObj__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__loggerObj__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__loggerObj__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__loggerObj xdc_runtime_TimestampNull_Module__loggerObj__C = ((CT__xdc_runtime_TimestampNull_Module__loggerObj)0); /* Module__loggerFxn0__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__loggerFxn0__C, ".econst:xdc_runtime_TimestampNull_Module__loggerFxn0__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__loggerFxn0__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__loggerFxn0__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__loggerFxn0 xdc_runtime_TimestampNull_Module__loggerFxn0__C = ((CT__xdc_runtime_TimestampNull_Module__loggerFxn0)0); /* Module__loggerFxn1__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__loggerFxn1__C, ".econst:xdc_runtime_TimestampNull_Module__loggerFxn1__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__loggerFxn1__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__loggerFxn1__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__loggerFxn1 xdc_runtime_TimestampNull_Module__loggerFxn1__C = ((CT__xdc_runtime_TimestampNull_Module__loggerFxn1)0); /* Module__loggerFxn2__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__loggerFxn2__C, ".econst:xdc_runtime_TimestampNull_Module__loggerFxn2__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__loggerFxn2__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__loggerFxn2__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__loggerFxn2 xdc_runtime_TimestampNull_Module__loggerFxn2__C = ((CT__xdc_runtime_TimestampNull_Module__loggerFxn2)0); /* Module__loggerFxn4__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__loggerFxn4__C, ".econst:xdc_runtime_TimestampNull_Module__loggerFxn4__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__loggerFxn4__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__loggerFxn4__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__loggerFxn4 xdc_runtime_TimestampNull_Module__loggerFxn4__C = ((CT__xdc_runtime_TimestampNull_Module__loggerFxn4)0); /* Module__loggerFxn8__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Module__loggerFxn8__C, ".econst:xdc_runtime_TimestampNull_Module__loggerFxn8__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Module__loggerFxn8__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Module__loggerFxn8__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Module__loggerFxn8 xdc_runtime_TimestampNull_Module__loggerFxn8__C = ((CT__xdc_runtime_TimestampNull_Module__loggerFxn8)0); /* Object__count__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Object__count__C, ".econst:xdc_runtime_TimestampNull_Object__count__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Object__count__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Object__count__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Object__count__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Object__count xdc_runtime_TimestampNull_Object__count__C = 0; /* Object__heap__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Object__heap__C, ".econst:xdc_runtime_TimestampNull_Object__heap__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Object__heap__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Object__heap__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Object__heap xdc_runtime_TimestampNull_Object__heap__C = 0; /* Object__sizeof__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Object__sizeof__C, ".econst:xdc_runtime_TimestampNull_Object__sizeof__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Object__sizeof__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Object__sizeof__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Object__sizeof xdc_runtime_TimestampNull_Object__sizeof__C = 0; /* Object__table__C */ #pragma DATA_SECTION(xdc_runtime_TimestampNull_Object__table__C, ".econst:xdc_runtime_TimestampNull_Object__table__C"); asm(" .sect \".econst:xdc_runtime_TimestampNull_Object__table__C\""); asm(" .clink "); asm(" .sect \"[0].econst:xdc_runtime_TimestampNull_Object__table__C\""); asm(" .clink "); asm(" .sect \"[1].econst:xdc_runtime_TimestampNull_Object__table__C\""); asm(" .clink "); const CT__xdc_runtime_TimestampNull_Object__table xdc_runtime_TimestampNull_Object__table__C = 0; /* * ======== xdc.runtime.Timestamp_SupportProxy INITIALIZERS ======== */ /* * ======== xdc.runtime.System FUNCTION STUBS ======== */ /* printf_va__E */ xdc_Int xdc_runtime_System_printf_va__E( xdc_CString fmt, va_list __va ) { return xdc_runtime_System_printf_va__F(fmt, __va); } /* printf__E */ xdc_Int xdc_runtime_System_printf__E( xdc_CString fmt, ... ) { xdc_Int __ret; va_list __va; (__va = ((va_list)__va_parmadr(fmt))); __ret = xdc_runtime_System_printf_va__F(fmt, __va); ((void)0); return __ret; } /* aprintf_va__E */ xdc_Int xdc_runtime_System_aprintf_va__E( xdc_CString fmt, va_list __va ) { return xdc_runtime_System_aprintf_va__F(fmt, __va); } /* aprintf__E */ xdc_Int xdc_runtime_System_aprintf__E( xdc_CString fmt, ... ) { xdc_Int __ret; va_list __va; (__va = ((va_list)__va_parmadr(fmt))); __ret = xdc_runtime_System_aprintf_va__F(fmt, __va); ((void)0); return __ret; } /* sprintf_va__E */ xdc_Int xdc_runtime_System_sprintf_va__E( xdc_Char buf[], xdc_CString fmt, va_list __va ) { return xdc_runtime_System_sprintf_va__F(buf, fmt, __va); } /* sprintf__E */ xdc_Int xdc_runtime_System_sprintf__E( xdc_Char buf[], xdc_CString fmt, ... ) { xdc_Int __ret; va_list __va; (__va = ((va_list)__va_parmadr(fmt))); __ret = xdc_runtime_System_sprintf_va__F(buf, fmt, __va); ((void)0); return __ret; } /* asprintf_va__E */ xdc_Int xdc_runtime_System_asprintf_va__E( xdc_Char buf[], xdc_CString fmt, va_list __va ) { return xdc_runtime_System_asprintf_va__F(buf, fmt, __va); } /* asprintf__E */ xdc_Int xdc_runtime_System_asprintf__E( xdc_Char buf[], xdc_CString fmt, ... ) { xdc_Int __ret; va_list __va; (__va = ((va_list)__va_parmadr(fmt))); __ret = xdc_runtime_System_asprintf_va__F(buf, fmt, __va); ((void)0); return __ret; } /* snprintf_va__E */ xdc_Int xdc_runtime_System_snprintf_va__E( xdc_Char buf[], xdc_SizeT n, xdc_CString fmt, va_list __va ) { return xdc_runtime_System_snprintf_va__F(buf, n, fmt, __va); } /* snprintf__E */ xdc_Int xdc_runtime_System_snprintf__E( xdc_Char buf[], xdc_SizeT n, xdc_CString fmt, ... ) { xdc_Int __ret; va_list __va; (__va = ((va_list)__va_parmadr(fmt))); __ret = xdc_runtime_System_snprintf_va__F(buf, n, fmt, __va); ((void)0); return __ret; } /* * ======== ti.sysbios.BIOS_RtsGateProxy PROXY BODY ======== */ /* DELEGATES TO ti.sysbios.gates.GateMutex */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_BIOS_RtsGateProxy_Module__startupDone__S( void ) { return ti_sysbios_gates_GateMutex_Module__startupDone__S(); } /* create */ ti_sysbios_BIOS_RtsGateProxy_Handle ti_sysbios_BIOS_RtsGateProxy_create( const ti_sysbios_BIOS_RtsGateProxy_Params *prms, xdc_runtime_Error_Block *eb ) { return (ti_sysbios_BIOS_RtsGateProxy_Handle)ti_sysbios_gates_GateMutex_create((const ti_sysbios_gates_GateMutex_Params *)prms, eb); } /* delete */ void ti_sysbios_BIOS_RtsGateProxy_delete(ti_sysbios_BIOS_RtsGateProxy_Handle *instp) { ti_sysbios_gates_GateMutex_Object__delete__S(instp); } /* Params__init__S */ void ti_sysbios_BIOS_RtsGateProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { ti_sysbios_gates_GateMutex_Params__init__S(dst, src, psz, isz); } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_BIOS_RtsGateProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { return ti_sysbios_gates_GateMutex_Handle__label__S(obj, lab); } /* query__E */ xdc_Bool ti_sysbios_BIOS_RtsGateProxy_query__E( xdc_Int qual ) { return ti_sysbios_gates_GateMutex_query__E(qual); } /* enter__E */ xdc_IArg ti_sysbios_BIOS_RtsGateProxy_enter__E( ti_sysbios_BIOS_RtsGateProxy_Handle __inst ) { return ti_sysbios_gates_GateMutex_enter__E((ti_sysbios_gates_GateMutex_Handle)__inst); } /* leave__E */ void ti_sysbios_BIOS_RtsGateProxy_leave__E( ti_sysbios_BIOS_RtsGateProxy_Handle __inst, xdc_IArg key ) { ti_sysbios_gates_GateMutex_leave__E((ti_sysbios_gates_GateMutex_Handle)__inst, key); } /* * ======== ti.sysbios.hal.Hwi_HwiProxy PROXY BODY ======== */ /* DELEGATES TO ti.sysbios.family.c28.Hwi */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S( void ) { return ti_sysbios_family_c28_Hwi_Module__startupDone__S(); } /* create */ ti_sysbios_hal_Hwi_HwiProxy_Handle ti_sysbios_hal_Hwi_HwiProxy_create( xdc_Int intNum, ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn, const ti_sysbios_hal_Hwi_HwiProxy_Params *prms, xdc_runtime_Error_Block *eb ) { return (ti_sysbios_hal_Hwi_HwiProxy_Handle)ti_sysbios_family_c28_Hwi_create(intNum, hwiFxn, (const ti_sysbios_family_c28_Hwi_Params *)prms, eb); } /* delete */ void ti_sysbios_hal_Hwi_HwiProxy_delete(ti_sysbios_hal_Hwi_HwiProxy_Handle *instp) { ti_sysbios_family_c28_Hwi_Object__delete__S(instp); } /* Params__init__S */ void ti_sysbios_hal_Hwi_HwiProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { ti_sysbios_family_c28_Hwi_Params__init__S(dst, src, psz, isz); } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_hal_Hwi_HwiProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { return ti_sysbios_family_c28_Hwi_Handle__label__S(obj, lab); } /* getStackInfo__E */ xdc_Bool ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E( ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth ) { return ti_sysbios_family_c28_Hwi_getStackInfo__E(stkInfo, computeStackDepth); } /* getCoreStackInfo__E */ xdc_Bool ti_sysbios_hal_Hwi_HwiProxy_getCoreStackInfo__E( ti_sysbios_interfaces_IHwi_StackInfo *stkInfo, xdc_Bool computeStackDepth, xdc_UInt coreId ) { return ti_sysbios_family_c28_Hwi_getCoreStackInfo__E(stkInfo, computeStackDepth, coreId); } /* startup__E */ void ti_sysbios_hal_Hwi_HwiProxy_startup__E( void ) { ti_sysbios_family_c28_Hwi_startup__E(); } /* disable__E */ xdc_UInt ti_sysbios_hal_Hwi_HwiProxy_disable__E( void ) { return ti_sysbios_family_c28_Hwi_disable(); } /* enable__E */ xdc_UInt ti_sysbios_hal_Hwi_HwiProxy_enable__E( void ) { return ti_sysbios_family_c28_Hwi_enable(); } /* restore__E */ void ti_sysbios_hal_Hwi_HwiProxy_restore__E( xdc_UInt key ) { ti_sysbios_family_c28_Hwi_restore(key); } /* switchFromBootStack__E */ void ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E( void ) { ti_sysbios_family_c28_Hwi_switchFromBootStack__E(); } /* post__E */ void ti_sysbios_hal_Hwi_HwiProxy_post__E( xdc_UInt intNum ) { ti_sysbios_family_c28_Hwi_post__E(intNum); } /* getTaskSP__E */ xdc_Char *ti_sysbios_hal_Hwi_HwiProxy_getTaskSP__E( void ) { return ti_sysbios_family_c28_Hwi_getTaskSP__E(); } /* disableInterrupt__E */ xdc_UInt ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E( xdc_UInt intNum ) { return ti_sysbios_family_c28_Hwi_disableInterrupt__E(intNum); } /* enableInterrupt__E */ xdc_UInt ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E( xdc_UInt intNum ) { return ti_sysbios_family_c28_Hwi_enableInterrupt__E(intNum); } /* restoreInterrupt__E */ void ti_sysbios_hal_Hwi_HwiProxy_restoreInterrupt__E( xdc_UInt intNum, xdc_UInt key ) { ti_sysbios_family_c28_Hwi_restoreInterrupt__E(intNum, key); } /* clearInterrupt__E */ void ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E( xdc_UInt intNum ) { ti_sysbios_family_c28_Hwi_clearInterrupt__E(intNum); } /* getFunc__E */ ti_sysbios_interfaces_IHwi_FuncPtr ti_sysbios_hal_Hwi_HwiProxy_getFunc__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, xdc_UArg *arg ) { return ti_sysbios_family_c28_Hwi_getFunc__E((ti_sysbios_family_c28_Hwi_Handle)__inst, arg); } /* setFunc__E */ void ti_sysbios_hal_Hwi_HwiProxy_setFunc__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, ti_sysbios_interfaces_IHwi_FuncPtr fxn, xdc_UArg arg ) { ti_sysbios_family_c28_Hwi_setFunc__E((ti_sysbios_family_c28_Hwi_Handle)__inst, fxn, arg); } /* getHookContext__E */ xdc_Ptr ti_sysbios_hal_Hwi_HwiProxy_getHookContext__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, xdc_Int id ) { return ti_sysbios_family_c28_Hwi_getHookContext__E((ti_sysbios_family_c28_Hwi_Handle)__inst, id); } /* setHookContext__E */ void ti_sysbios_hal_Hwi_HwiProxy_setHookContext__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst, xdc_Int id, xdc_Ptr hookContext ) { ti_sysbios_family_c28_Hwi_setHookContext__E((ti_sysbios_family_c28_Hwi_Handle)__inst, id, hookContext); } /* getIrp__E */ ti_sysbios_interfaces_IHwi_Irp ti_sysbios_hal_Hwi_HwiProxy_getIrp__E( ti_sysbios_hal_Hwi_HwiProxy_Handle __inst ) { return ti_sysbios_family_c28_Hwi_getIrp__E((ti_sysbios_family_c28_Hwi_Handle)__inst); } /* * ======== ti.sysbios.hal.Timer_TimerProxy PROXY BODY ======== */ /* DELEGATES TO ti.sysbios.family.c28.Timer */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_hal_Timer_TimerProxy_Module__startupDone__S( void ) { return ti_sysbios_family_c28_Timer_Module__startupDone__S(); } /* create */ ti_sysbios_hal_Timer_TimerProxy_Handle ti_sysbios_hal_Timer_TimerProxy_create( xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_hal_Timer_TimerProxy_Params *prms, xdc_runtime_Error_Block *eb ) { return (ti_sysbios_hal_Timer_TimerProxy_Handle)ti_sysbios_family_c28_Timer_create(id, tickFxn, (const ti_sysbios_family_c28_Timer_Params *)prms, eb); } /* delete */ void ti_sysbios_hal_Timer_TimerProxy_delete(ti_sysbios_hal_Timer_TimerProxy_Handle *instp) { ti_sysbios_family_c28_Timer_Object__delete__S(instp); } /* Params__init__S */ void ti_sysbios_hal_Timer_TimerProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { ti_sysbios_family_c28_Timer_Params__init__S(dst, src, psz, isz); } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_hal_Timer_TimerProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { return ti_sysbios_family_c28_Timer_Handle__label__S(obj, lab); } /* getNumTimers__E */ xdc_UInt ti_sysbios_hal_Timer_TimerProxy_getNumTimers__E( void ) { return ti_sysbios_family_c28_Timer_getNumTimers__E(); } /* getStatus__E */ ti_sysbios_interfaces_ITimer_Status ti_sysbios_hal_Timer_TimerProxy_getStatus__E( xdc_UInt id ) { return ti_sysbios_family_c28_Timer_getStatus__E(id); } /* startup__E */ void ti_sysbios_hal_Timer_TimerProxy_startup__E( void ) { ti_sysbios_family_c28_Timer_startup__E(); } /* getMaxTicks__E */ xdc_UInt32 ti_sysbios_hal_Timer_TimerProxy_getMaxTicks__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst ) { return ti_sysbios_family_c28_Timer_getMaxTicks__E((ti_sysbios_family_c28_Timer_Handle)__inst); } /* setNextTick__E */ void ti_sysbios_hal_Timer_TimerProxy_setNextTick__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 ticks ) { ti_sysbios_family_c28_Timer_setNextTick__E((ti_sysbios_family_c28_Timer_Handle)__inst, ticks); } /* start__E */ void ti_sysbios_hal_Timer_TimerProxy_start__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst ) { ti_sysbios_family_c28_Timer_start__E((ti_sysbios_family_c28_Timer_Handle)__inst); } /* stop__E */ void ti_sysbios_hal_Timer_TimerProxy_stop__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst ) { ti_sysbios_family_c28_Timer_stop__E((ti_sysbios_family_c28_Timer_Handle)__inst); } /* setPeriod__E */ void ti_sysbios_hal_Timer_TimerProxy_setPeriod__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 period ) { ti_sysbios_family_c28_Timer_setPeriod__E((ti_sysbios_family_c28_Timer_Handle)__inst, period); } /* setPeriodMicroSecs__E */ xdc_Bool ti_sysbios_hal_Timer_TimerProxy_setPeriodMicroSecs__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 microsecs ) { return ti_sysbios_family_c28_Timer_setPeriodMicroSecs__E((ti_sysbios_family_c28_Timer_Handle)__inst, microsecs); } /* getPeriod__E */ xdc_UInt32 ti_sysbios_hal_Timer_TimerProxy_getPeriod__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst ) { return ti_sysbios_family_c28_Timer_getPeriod__E((ti_sysbios_family_c28_Timer_Handle)__inst); } /* getCount__E */ xdc_UInt32 ti_sysbios_hal_Timer_TimerProxy_getCount__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst ) { return ti_sysbios_family_c28_Timer_getCount__E((ti_sysbios_family_c28_Timer_Handle)__inst); } /* getFreq__E */ void ti_sysbios_hal_Timer_TimerProxy_getFreq__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_runtime_Types_FreqHz *freq ) { ti_sysbios_family_c28_Timer_getFreq__E((ti_sysbios_family_c28_Timer_Handle)__inst, freq); } /* getFunc__E */ ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_hal_Timer_TimerProxy_getFunc__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UArg *arg ) { return ti_sysbios_family_c28_Timer_getFunc__E((ti_sysbios_family_c28_Timer_Handle)__inst, arg); } /* setFunc__E */ void ti_sysbios_hal_Timer_TimerProxy_setFunc__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg ) { ti_sysbios_family_c28_Timer_setFunc__E((ti_sysbios_family_c28_Timer_Handle)__inst, fxn, arg); } /* trigger__E */ void ti_sysbios_hal_Timer_TimerProxy_trigger__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 cycles ) { ti_sysbios_family_c28_Timer_trigger__E((ti_sysbios_family_c28_Timer_Handle)__inst, cycles); } /* getExpiredCounts__E */ xdc_UInt32 ti_sysbios_hal_Timer_TimerProxy_getExpiredCounts__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst ) { return ti_sysbios_family_c28_Timer_getExpiredCounts__E((ti_sysbios_family_c28_Timer_Handle)__inst); } /* getExpiredTicks__E */ xdc_UInt32 ti_sysbios_hal_Timer_TimerProxy_getExpiredTicks__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_UInt32 tickPeriod ) { return ti_sysbios_family_c28_Timer_getExpiredTicks__E((ti_sysbios_family_c28_Timer_Handle)__inst, tickPeriod); } /* getCurrentTick__E */ xdc_UInt32 ti_sysbios_hal_Timer_TimerProxy_getCurrentTick__E( ti_sysbios_hal_Timer_TimerProxy_Handle __inst, xdc_Bool save ) { return ti_sysbios_family_c28_Timer_getCurrentTick__E((ti_sysbios_family_c28_Timer_Handle)__inst, save); } /* * ======== ti.sysbios.heaps.HeapMem_Module_GateProxy PROXY BODY ======== */ /* DELEGATES TO ti.sysbios.gates.GateMutex */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_heaps_HeapMem_Module_GateProxy_Module__startupDone__S( void ) { return ti_sysbios_gates_GateMutex_Module__startupDone__S(); } /* create */ ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle ti_sysbios_heaps_HeapMem_Module_GateProxy_create( const ti_sysbios_heaps_HeapMem_Module_GateProxy_Params *prms, xdc_runtime_Error_Block *eb ) { return (ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle)ti_sysbios_gates_GateMutex_create((const ti_sysbios_gates_GateMutex_Params *)prms, eb); } /* delete */ void ti_sysbios_heaps_HeapMem_Module_GateProxy_delete(ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle *instp) { ti_sysbios_gates_GateMutex_Object__delete__S(instp); } /* Params__init__S */ void ti_sysbios_heaps_HeapMem_Module_GateProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { ti_sysbios_gates_GateMutex_Params__init__S(dst, src, psz, isz); } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { return ti_sysbios_gates_GateMutex_Handle__label__S(obj, lab); } /* query__E */ xdc_Bool ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E( xdc_Int qual ) { return ti_sysbios_gates_GateMutex_query__E(qual); } /* enter__E */ xdc_IArg ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E( ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle __inst ) { return ti_sysbios_gates_GateMutex_enter__E((ti_sysbios_gates_GateMutex_Handle)__inst); } /* leave__E */ void ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E( ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle __inst, xdc_IArg key ) { ti_sysbios_gates_GateMutex_leave__E((ti_sysbios_gates_GateMutex_Handle)__inst, key); } /* * ======== ti.sysbios.knl.Clock_TimerProxy PROXY BODY ======== */ /* DELEGATES TO ti.sysbios.family.c28.Timer */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S( void ) { return ti_sysbios_family_c28_Timer_Module__startupDone__S(); } /* create */ ti_sysbios_knl_Clock_TimerProxy_Handle ti_sysbios_knl_Clock_TimerProxy_create( xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_knl_Clock_TimerProxy_Params *prms, xdc_runtime_Error_Block *eb ) { return (ti_sysbios_knl_Clock_TimerProxy_Handle)ti_sysbios_family_c28_Timer_create(id, tickFxn, (const ti_sysbios_family_c28_Timer_Params *)prms, eb); } /* delete */ void ti_sysbios_knl_Clock_TimerProxy_delete(ti_sysbios_knl_Clock_TimerProxy_Handle *instp) { ti_sysbios_family_c28_Timer_Object__delete__S(instp); } /* Params__init__S */ void ti_sysbios_knl_Clock_TimerProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { ti_sysbios_family_c28_Timer_Params__init__S(dst, src, psz, isz); } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_knl_Clock_TimerProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { return ti_sysbios_family_c28_Timer_Handle__label__S(obj, lab); } /* getNumTimers__E */ xdc_UInt ti_sysbios_knl_Clock_TimerProxy_getNumTimers__E( void ) { return ti_sysbios_family_c28_Timer_getNumTimers__E(); } /* getStatus__E */ ti_sysbios_interfaces_ITimer_Status ti_sysbios_knl_Clock_TimerProxy_getStatus__E( xdc_UInt id ) { return ti_sysbios_family_c28_Timer_getStatus__E(id); } /* startup__E */ void ti_sysbios_knl_Clock_TimerProxy_startup__E( void ) { ti_sysbios_family_c28_Timer_startup__E(); } /* getMaxTicks__E */ xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ) { return ti_sysbios_family_c28_Timer_getMaxTicks__E((ti_sysbios_family_c28_Timer_Handle)__inst); } /* setNextTick__E */ void ti_sysbios_knl_Clock_TimerProxy_setNextTick__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 ticks ) { ti_sysbios_family_c28_Timer_setNextTick__E((ti_sysbios_family_c28_Timer_Handle)__inst, ticks); } /* start__E */ void ti_sysbios_knl_Clock_TimerProxy_start__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ) { ti_sysbios_family_c28_Timer_start__E((ti_sysbios_family_c28_Timer_Handle)__inst); } /* stop__E */ void ti_sysbios_knl_Clock_TimerProxy_stop__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ) { ti_sysbios_family_c28_Timer_stop__E((ti_sysbios_family_c28_Timer_Handle)__inst); } /* setPeriod__E */ void ti_sysbios_knl_Clock_TimerProxy_setPeriod__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 period ) { ti_sysbios_family_c28_Timer_setPeriod__E((ti_sysbios_family_c28_Timer_Handle)__inst, period); } /* setPeriodMicroSecs__E */ xdc_Bool ti_sysbios_knl_Clock_TimerProxy_setPeriodMicroSecs__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 microsecs ) { return ti_sysbios_family_c28_Timer_setPeriodMicroSecs__E((ti_sysbios_family_c28_Timer_Handle)__inst, microsecs); } /* getPeriod__E */ xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getPeriod__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ) { return ti_sysbios_family_c28_Timer_getPeriod__E((ti_sysbios_family_c28_Timer_Handle)__inst); } /* getCount__E */ xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getCount__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ) { return ti_sysbios_family_c28_Timer_getCount__E((ti_sysbios_family_c28_Timer_Handle)__inst); } /* getFreq__E */ void ti_sysbios_knl_Clock_TimerProxy_getFreq__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_runtime_Types_FreqHz *freq ) { ti_sysbios_family_c28_Timer_getFreq__E((ti_sysbios_family_c28_Timer_Handle)__inst, freq); } /* getFunc__E */ ti_sysbios_interfaces_ITimer_FuncPtr ti_sysbios_knl_Clock_TimerProxy_getFunc__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UArg *arg ) { return ti_sysbios_family_c28_Timer_getFunc__E((ti_sysbios_family_c28_Timer_Handle)__inst, arg); } /* setFunc__E */ void ti_sysbios_knl_Clock_TimerProxy_setFunc__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, ti_sysbios_interfaces_ITimer_FuncPtr fxn, xdc_UArg arg ) { ti_sysbios_family_c28_Timer_setFunc__E((ti_sysbios_family_c28_Timer_Handle)__inst, fxn, arg); } /* trigger__E */ void ti_sysbios_knl_Clock_TimerProxy_trigger__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 cycles ) { ti_sysbios_family_c28_Timer_trigger__E((ti_sysbios_family_c28_Timer_Handle)__inst, cycles); } /* getExpiredCounts__E */ xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getExpiredCounts__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst ) { return ti_sysbios_family_c28_Timer_getExpiredCounts__E((ti_sysbios_family_c28_Timer_Handle)__inst); } /* getExpiredTicks__E */ xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getExpiredTicks__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_UInt32 tickPeriod ) { return ti_sysbios_family_c28_Timer_getExpiredTicks__E((ti_sysbios_family_c28_Timer_Handle)__inst, tickPeriod); } /* getCurrentTick__E */ xdc_UInt32 ti_sysbios_knl_Clock_TimerProxy_getCurrentTick__E( ti_sysbios_knl_Clock_TimerProxy_Handle __inst, xdc_Bool save ) { return ti_sysbios_family_c28_Timer_getCurrentTick__E((ti_sysbios_family_c28_Timer_Handle)__inst, save); } /* * ======== ti.sysbios.knl.Intrinsics_SupportProxy PROXY BODY ======== */ /* DELEGATES TO ti.sysbios.family.c28.IntrinsicsSupport */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_knl_Intrinsics_SupportProxy_Module__startupDone__S( void ) { return ti_sysbios_family_c28_IntrinsicsSupport_Module__startupDone__S(); } /* maxbit__E */ xdc_UInt ti_sysbios_knl_Intrinsics_SupportProxy_maxbit__E( xdc_UInt bits ) { return ti_sysbios_family_c28_IntrinsicsSupport_maxbit__E(bits); } /* * ======== ti.sysbios.knl.Task_SupportProxy PROXY BODY ======== */ /* DELEGATES TO ti.sysbios.family.c28.TaskSupport */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S( void ) { return ti_sysbios_family_c28_TaskSupport_Module__startupDone__S(); } /* start__E */ xdc_Ptr ti_sysbios_knl_Task_SupportProxy_start__E( xdc_Ptr curTask, ti_sysbios_interfaces_ITaskSupport_FuncPtr enter, ti_sysbios_interfaces_ITaskSupport_FuncPtr exit, xdc_runtime_Error_Block *eb ) { return ti_sysbios_family_c28_TaskSupport_start__E(curTask, enter, exit, eb); } /* swap__E */ void ti_sysbios_knl_Task_SupportProxy_swap__E( xdc_Ptr *oldtskContext, xdc_Ptr *newtskContext ) { ti_sysbios_family_c28_TaskSupport_swap__E(oldtskContext, newtskContext); } /* checkStack__E */ xdc_Bool ti_sysbios_knl_Task_SupportProxy_checkStack__E( xdc_Char *stack, xdc_SizeT size ) { return ti_sysbios_family_c28_TaskSupport_checkStack__E(stack, size); } /* stackUsed__E */ xdc_SizeT ti_sysbios_knl_Task_SupportProxy_stackUsed__E( xdc_Char *stack, xdc_SizeT size ) { return ti_sysbios_family_c28_TaskSupport_stackUsed__E(stack, size); } /* getStackAlignment__E */ xdc_UInt ti_sysbios_knl_Task_SupportProxy_getStackAlignment__E( void ) { return ti_sysbios_family_c28_TaskSupport_getStackAlignment__E(); } /* getDefaultStackSize__E */ xdc_SizeT ti_sysbios_knl_Task_SupportProxy_getDefaultStackSize__E( void ) { return ti_sysbios_family_c28_TaskSupport_getDefaultStackSize__E(); } /* getCheckValueAddr__E */ xdc_Ptr ti_sysbios_knl_Task_SupportProxy_getCheckValueAddr__E( xdc_Ptr curTask ) { return ti_sysbios_family_c28_TaskSupport_getCheckValueAddr__E(curTask); } /* * ======== xdc.runtime.Main_Module_GateProxy PROXY BODY ======== */ /* DELEGATES TO ti.sysbios.gates.GateHwi */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Main_Module_GateProxy_Module__startupDone__S( void ) { return ti_sysbios_gates_GateHwi_Module__startupDone__S(); } /* create */ xdc_runtime_Main_Module_GateProxy_Handle xdc_runtime_Main_Module_GateProxy_create( const xdc_runtime_Main_Module_GateProxy_Params *prms, xdc_runtime_Error_Block *eb ) { return (xdc_runtime_Main_Module_GateProxy_Handle)ti_sysbios_gates_GateHwi_create((const ti_sysbios_gates_GateHwi_Params *)prms, eb); } /* delete */ void xdc_runtime_Main_Module_GateProxy_delete(xdc_runtime_Main_Module_GateProxy_Handle *instp) { ti_sysbios_gates_GateHwi_Object__delete__S(instp); } /* Params__init__S */ void xdc_runtime_Main_Module_GateProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { ti_sysbios_gates_GateHwi_Params__init__S(dst, src, psz, isz); } /* Handle__label__S */ xdc_runtime_Types_Label *xdc_runtime_Main_Module_GateProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { return ti_sysbios_gates_GateHwi_Handle__label__S(obj, lab); } /* query__E */ xdc_Bool xdc_runtime_Main_Module_GateProxy_query__E( xdc_Int qual ) { return ti_sysbios_gates_GateHwi_query__E(qual); } /* enter__E */ xdc_IArg xdc_runtime_Main_Module_GateProxy_enter__E( xdc_runtime_Main_Module_GateProxy_Handle __inst ) { return ti_sysbios_gates_GateHwi_enter__E((ti_sysbios_gates_GateHwi_Handle)__inst); } /* leave__E */ void xdc_runtime_Main_Module_GateProxy_leave__E( xdc_runtime_Main_Module_GateProxy_Handle __inst, xdc_IArg key ) { ti_sysbios_gates_GateHwi_leave__E((ti_sysbios_gates_GateHwi_Handle)__inst, key); } /* * ======== xdc.runtime.Memory_HeapProxy PROXY BODY ======== */ /* DELEGATES TO ti.sysbios.heaps.HeapMem */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Memory_HeapProxy_Module__startupDone__S( void ) { return ti_sysbios_heaps_HeapMem_Module__startupDone__S(); } /* create */ xdc_runtime_Memory_HeapProxy_Handle xdc_runtime_Memory_HeapProxy_create( const xdc_runtime_Memory_HeapProxy_Params *prms, xdc_runtime_Error_Block *eb ) { return (xdc_runtime_Memory_HeapProxy_Handle)ti_sysbios_heaps_HeapMem_create((const ti_sysbios_heaps_HeapMem_Params *)prms, eb); } /* delete */ void xdc_runtime_Memory_HeapProxy_delete(xdc_runtime_Memory_HeapProxy_Handle *instp) { ti_sysbios_heaps_HeapMem_Object__delete__S(instp); } /* Params__init__S */ void xdc_runtime_Memory_HeapProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { ti_sysbios_heaps_HeapMem_Params__init__S(dst, src, psz, isz); } /* Handle__label__S */ xdc_runtime_Types_Label *xdc_runtime_Memory_HeapProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { return ti_sysbios_heaps_HeapMem_Handle__label__S(obj, lab); } /* alloc__E */ xdc_Ptr xdc_runtime_Memory_HeapProxy_alloc__E( xdc_runtime_Memory_HeapProxy_Handle __inst, xdc_SizeT size, xdc_SizeT align, xdc_runtime_Error_Block *eb ) { return xdc_runtime_IHeap_alloc((xdc_runtime_IHeap_Handle)__inst, size, align, eb); } /* free__E */ void xdc_runtime_Memory_HeapProxy_free__E( xdc_runtime_Memory_HeapProxy_Handle __inst, xdc_Ptr block, xdc_SizeT size ) { xdc_runtime_IHeap_free((xdc_runtime_IHeap_Handle)__inst, block, size); } /* isBlocking__E */ xdc_Bool xdc_runtime_Memory_HeapProxy_isBlocking__E( xdc_runtime_Memory_HeapProxy_Handle __inst ) { return xdc_runtime_IHeap_isBlocking((xdc_runtime_IHeap_Handle)__inst); } /* getStats__E */ void xdc_runtime_Memory_HeapProxy_getStats__E( xdc_runtime_Memory_HeapProxy_Handle __inst, xdc_runtime_Memory_Stats *stats ) { xdc_runtime_IHeap_getStats((xdc_runtime_IHeap_Handle)__inst, stats); } /* * ======== xdc.runtime.System_Module_GateProxy PROXY BODY ======== */ /* DELEGATES TO ti.sysbios.gates.GateHwi */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_System_Module_GateProxy_Module__startupDone__S( void ) { return ti_sysbios_gates_GateHwi_Module__startupDone__S(); } /* create */ xdc_runtime_System_Module_GateProxy_Handle xdc_runtime_System_Module_GateProxy_create( const xdc_runtime_System_Module_GateProxy_Params *prms, xdc_runtime_Error_Block *eb ) { return (xdc_runtime_System_Module_GateProxy_Handle)ti_sysbios_gates_GateHwi_create((const ti_sysbios_gates_GateHwi_Params *)prms, eb); } /* delete */ void xdc_runtime_System_Module_GateProxy_delete(xdc_runtime_System_Module_GateProxy_Handle *instp) { ti_sysbios_gates_GateHwi_Object__delete__S(instp); } /* Params__init__S */ void xdc_runtime_System_Module_GateProxy_Params__init__S( xdc_Ptr dst, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { ti_sysbios_gates_GateHwi_Params__init__S(dst, src, psz, isz); } /* Handle__label__S */ xdc_runtime_Types_Label *xdc_runtime_System_Module_GateProxy_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { return ti_sysbios_gates_GateHwi_Handle__label__S(obj, lab); } /* query__E */ xdc_Bool xdc_runtime_System_Module_GateProxy_query__E( xdc_Int qual ) { return ti_sysbios_gates_GateHwi_query__E(qual); } /* enter__E */ xdc_IArg xdc_runtime_System_Module_GateProxy_enter__E( xdc_runtime_System_Module_GateProxy_Handle __inst ) { return ti_sysbios_gates_GateHwi_enter__E((ti_sysbios_gates_GateHwi_Handle)__inst); } /* leave__E */ void xdc_runtime_System_Module_GateProxy_leave__E( xdc_runtime_System_Module_GateProxy_Handle __inst, xdc_IArg key ) { ti_sysbios_gates_GateHwi_leave__E((ti_sysbios_gates_GateHwi_Handle)__inst, key); } /* * ======== xdc.runtime.System_SupportProxy PROXY BODY ======== */ /* DELEGATES TO xdc.runtime.SysMin */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_System_SupportProxy_Module__startupDone__S( void ) { return xdc_runtime_SysMin_Module__startupDone__S(); } /* abort__E */ void xdc_runtime_System_SupportProxy_abort__E( xdc_CString str ) { xdc_runtime_SysMin_abort__E(str); } /* exit__E */ void xdc_runtime_System_SupportProxy_exit__E( xdc_Int stat ) { xdc_runtime_SysMin_exit__E(stat); } /* flush__E */ void xdc_runtime_System_SupportProxy_flush__E( void ) { xdc_runtime_SysMin_flush__E(); } /* putch__E */ void xdc_runtime_System_SupportProxy_putch__E( xdc_Char ch ) { xdc_runtime_SysMin_putch__E(ch); } /* ready__E */ xdc_Bool xdc_runtime_System_SupportProxy_ready__E( void ) { return xdc_runtime_SysMin_ready__E(); } /* * ======== xdc.runtime.Timestamp_SupportProxy PROXY BODY ======== */ /* DELEGATES TO ti.sysbios.family.c28.f2837x.TimestampProvider */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Timestamp_SupportProxy_Module__startupDone__S( void ) { return ti_sysbios_family_c28_f2837x_TimestampProvider_Module__startupDone__S(); } /* get32__E */ xdc_Bits32 xdc_runtime_Timestamp_SupportProxy_get32__E( void ) { return ti_sysbios_family_c28_f2837x_TimestampProvider_get32__E(); } /* get64__E */ void xdc_runtime_Timestamp_SupportProxy_get64__E( xdc_runtime_Types_Timestamp64 *result ) { ti_sysbios_family_c28_f2837x_TimestampProvider_get64__E(result); } /* getFreq__E */ void xdc_runtime_Timestamp_SupportProxy_getFreq__E( xdc_runtime_Types_FreqHz *freq ) { ti_sysbios_family_c28_f2837x_TimestampProvider_getFreq__E(freq); } /* * ======== ti.sysbios.family.c28.Hwi OBJECT DESCRIPTOR ======== */ /* Object__DESC__C */ typedef struct { ti_sysbios_family_c28_Hwi_Object2__ s0; char c; } ti_sysbios_family_c28_Hwi___S1; #pragma DATA_SECTION(ti_sysbios_family_c28_Hwi_Object__DESC__C, ".econst:ti_sysbios_family_c28_Hwi_Object__DESC__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Hwi_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Hwi_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Hwi_Object__DESC__C\""); asm(" .clink "); const xdc_runtime_Core_ObjDesc ti_sysbios_family_c28_Hwi_Object__DESC__C = { (xdc_CPtr)0, /* fxnTab */ (xdc_Ptr)0, /* modLink */ sizeof(ti_sysbios_family_c28_Hwi___S1) - sizeof(ti_sysbios_family_c28_Hwi_Object2__), /* objAlign */ 0, /* objHeap */ 0, /* objName */ sizeof(ti_sysbios_family_c28_Hwi_Object2__), /* objSize */ (xdc_CPtr)&ti_sysbios_family_c28_Hwi_Object__PARAMS__C, /* prmsInit */ sizeof(ti_sysbios_family_c28_Hwi_Params), /* prmsSize */ }; /* * ======== ti.sysbios.family.c28.Timer OBJECT DESCRIPTOR ======== */ /* Object__DESC__C */ typedef struct { ti_sysbios_family_c28_Timer_Object2__ s0; char c; } ti_sysbios_family_c28_Timer___S1; #pragma DATA_SECTION(ti_sysbios_family_c28_Timer_Object__DESC__C, ".econst:ti_sysbios_family_c28_Timer_Object__DESC__C"); asm(" .sect \".econst:ti_sysbios_family_c28_Timer_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_family_c28_Timer_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_family_c28_Timer_Object__DESC__C\""); asm(" .clink "); const xdc_runtime_Core_ObjDesc ti_sysbios_family_c28_Timer_Object__DESC__C = { (xdc_CPtr)0, /* fxnTab */ (xdc_Ptr)0, /* modLink */ sizeof(ti_sysbios_family_c28_Timer___S1) - sizeof(ti_sysbios_family_c28_Timer_Object2__), /* objAlign */ 0, /* objHeap */ 0, /* objName */ sizeof(ti_sysbios_family_c28_Timer_Object2__), /* objSize */ (xdc_CPtr)&ti_sysbios_family_c28_Timer_Object__PARAMS__C, /* prmsInit */ sizeof(ti_sysbios_family_c28_Timer_Params), /* prmsSize */ }; /* * ======== ti.sysbios.gates.GateHwi OBJECT DESCRIPTOR ======== */ /* Object__DESC__C */ typedef struct { ti_sysbios_gates_GateHwi_Object2__ s0; char c; } ti_sysbios_gates_GateHwi___S1; #pragma DATA_SECTION(ti_sysbios_gates_GateHwi_Object__DESC__C, ".econst:ti_sysbios_gates_GateHwi_Object__DESC__C"); asm(" .sect \".econst:ti_sysbios_gates_GateHwi_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateHwi_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateHwi_Object__DESC__C\""); asm(" .clink "); const xdc_runtime_Core_ObjDesc ti_sysbios_gates_GateHwi_Object__DESC__C = { (xdc_CPtr)&ti_sysbios_gates_GateHwi_Module__FXNS__C, /* fxnTab */ (xdc_Ptr)0, /* modLink */ sizeof(ti_sysbios_gates_GateHwi___S1) - sizeof(ti_sysbios_gates_GateHwi_Object2__), /* objAlign */ 0, /* objHeap */ 0, /* objName */ sizeof(ti_sysbios_gates_GateHwi_Object2__), /* objSize */ (xdc_CPtr)&ti_sysbios_gates_GateHwi_Object__PARAMS__C, /* prmsInit */ sizeof(ti_sysbios_gates_GateHwi_Params), /* prmsSize */ }; /* * ======== ti.sysbios.gates.GateMutex OBJECT DESCRIPTOR ======== */ /* Object__DESC__C */ typedef struct { ti_sysbios_gates_GateMutex_Object2__ s0; char c; } ti_sysbios_gates_GateMutex___S1; #pragma DATA_SECTION(ti_sysbios_gates_GateMutex_Object__DESC__C, ".econst:ti_sysbios_gates_GateMutex_Object__DESC__C"); asm(" .sect \".econst:ti_sysbios_gates_GateMutex_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_gates_GateMutex_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_gates_GateMutex_Object__DESC__C\""); asm(" .clink "); const xdc_runtime_Core_ObjDesc ti_sysbios_gates_GateMutex_Object__DESC__C = { (xdc_CPtr)&ti_sysbios_gates_GateMutex_Module__FXNS__C, /* fxnTab */ (xdc_Ptr)0, /* modLink */ sizeof(ti_sysbios_gates_GateMutex___S1) - sizeof(ti_sysbios_gates_GateMutex_Object2__), /* objAlign */ 0, /* objHeap */ 0, /* objName */ sizeof(ti_sysbios_gates_GateMutex_Object2__), /* objSize */ (xdc_CPtr)&ti_sysbios_gates_GateMutex_Object__PARAMS__C, /* prmsInit */ sizeof(ti_sysbios_gates_GateMutex_Params), /* prmsSize */ }; /* * ======== ti.sysbios.hal.Hwi OBJECT DESCRIPTOR ======== */ /* Object__DESC__C */ typedef struct { ti_sysbios_hal_Hwi_Object2__ s0; char c; } ti_sysbios_hal_Hwi___S1; #pragma DATA_SECTION(ti_sysbios_hal_Hwi_Object__DESC__C, ".econst:ti_sysbios_hal_Hwi_Object__DESC__C"); asm(" .sect \".econst:ti_sysbios_hal_Hwi_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Hwi_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Hwi_Object__DESC__C\""); asm(" .clink "); const xdc_runtime_Core_ObjDesc ti_sysbios_hal_Hwi_Object__DESC__C = { (xdc_CPtr)0, /* fxnTab */ (xdc_Ptr)0, /* modLink */ sizeof(ti_sysbios_hal_Hwi___S1) - sizeof(ti_sysbios_hal_Hwi_Object2__), /* objAlign */ 0, /* objHeap */ 0, /* objName */ sizeof(ti_sysbios_hal_Hwi_Object2__), /* objSize */ (xdc_CPtr)&ti_sysbios_hal_Hwi_Object__PARAMS__C, /* prmsInit */ sizeof(ti_sysbios_hal_Hwi_Params), /* prmsSize */ }; /* * ======== ti.sysbios.hal.Timer OBJECT DESCRIPTOR ======== */ /* Object__DESC__C */ typedef struct { ti_sysbios_hal_Timer_Object2__ s0; char c; } ti_sysbios_hal_Timer___S1; #pragma DATA_SECTION(ti_sysbios_hal_Timer_Object__DESC__C, ".econst:ti_sysbios_hal_Timer_Object__DESC__C"); asm(" .sect \".econst:ti_sysbios_hal_Timer_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_hal_Timer_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_hal_Timer_Object__DESC__C\""); asm(" .clink "); const xdc_runtime_Core_ObjDesc ti_sysbios_hal_Timer_Object__DESC__C = { (xdc_CPtr)0, /* fxnTab */ (xdc_Ptr)0, /* modLink */ sizeof(ti_sysbios_hal_Timer___S1) - sizeof(ti_sysbios_hal_Timer_Object2__), /* objAlign */ 0, /* objHeap */ 0, /* objName */ sizeof(ti_sysbios_hal_Timer_Object2__), /* objSize */ (xdc_CPtr)&ti_sysbios_hal_Timer_Object__PARAMS__C, /* prmsInit */ sizeof(ti_sysbios_hal_Timer_Params), /* prmsSize */ }; /* * ======== ti.sysbios.heaps.HeapMem OBJECT DESCRIPTOR ======== */ /* Object__DESC__C */ typedef struct { ti_sysbios_heaps_HeapMem_Object2__ s0; char c; } ti_sysbios_heaps_HeapMem___S1; #pragma DATA_SECTION(ti_sysbios_heaps_HeapMem_Object__DESC__C, ".econst:ti_sysbios_heaps_HeapMem_Object__DESC__C"); asm(" .sect \".econst:ti_sysbios_heaps_HeapMem_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_heaps_HeapMem_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_heaps_HeapMem_Object__DESC__C\""); asm(" .clink "); const xdc_runtime_Core_ObjDesc ti_sysbios_heaps_HeapMem_Object__DESC__C = { (xdc_CPtr)&ti_sysbios_heaps_HeapMem_Module__FXNS__C, /* fxnTab */ (xdc_Ptr)0, /* modLink */ sizeof(ti_sysbios_heaps_HeapMem___S1) - sizeof(ti_sysbios_heaps_HeapMem_Object2__), /* objAlign */ 0, /* objHeap */ 0, /* objName */ sizeof(ti_sysbios_heaps_HeapMem_Object2__), /* objSize */ (xdc_CPtr)&ti_sysbios_heaps_HeapMem_Object__PARAMS__C, /* prmsInit */ sizeof(ti_sysbios_heaps_HeapMem_Params), /* prmsSize */ }; /* * ======== ti.sysbios.knl.Clock OBJECT DESCRIPTOR ======== */ /* Object__DESC__C */ typedef struct { ti_sysbios_knl_Clock_Object2__ s0; char c; } ti_sysbios_knl_Clock___S1; #pragma DATA_SECTION(ti_sysbios_knl_Clock_Object__DESC__C, ".econst:ti_sysbios_knl_Clock_Object__DESC__C"); asm(" .sect \".econst:ti_sysbios_knl_Clock_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Clock_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Clock_Object__DESC__C\""); asm(" .clink "); const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Clock_Object__DESC__C = { (xdc_CPtr)-1, /* fxnTab */ (xdc_Ptr)0, /* modLink */ sizeof(ti_sysbios_knl_Clock___S1) - sizeof(ti_sysbios_knl_Clock_Object2__), /* objAlign */ 0, /* objHeap */ 0, /* objName */ sizeof(ti_sysbios_knl_Clock_Object2__), /* objSize */ (xdc_CPtr)&ti_sysbios_knl_Clock_Object__PARAMS__C, /* prmsInit */ sizeof(ti_sysbios_knl_Clock_Params), /* prmsSize */ }; /* * ======== ti.sysbios.knl.Queue OBJECT DESCRIPTOR ======== */ /* Object__DESC__C */ typedef struct { ti_sysbios_knl_Queue_Object2__ s0; char c; } ti_sysbios_knl_Queue___S1; #pragma DATA_SECTION(ti_sysbios_knl_Queue_Object__DESC__C, ".econst:ti_sysbios_knl_Queue_Object__DESC__C"); asm(" .sect \".econst:ti_sysbios_knl_Queue_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Queue_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Queue_Object__DESC__C\""); asm(" .clink "); const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Queue_Object__DESC__C = { (xdc_CPtr)-1, /* fxnTab */ (xdc_Ptr)0, /* modLink */ sizeof(ti_sysbios_knl_Queue___S1) - sizeof(ti_sysbios_knl_Queue_Object2__), /* objAlign */ 0, /* objHeap */ 0, /* objName */ sizeof(ti_sysbios_knl_Queue_Object2__), /* objSize */ (xdc_CPtr)&ti_sysbios_knl_Queue_Object__PARAMS__C, /* prmsInit */ sizeof(ti_sysbios_knl_Queue_Params), /* prmsSize */ }; /* * ======== ti.sysbios.knl.Semaphore OBJECT DESCRIPTOR ======== */ /* Object__DESC__C */ typedef struct { ti_sysbios_knl_Semaphore_Object2__ s0; char c; } ti_sysbios_knl_Semaphore___S1; #pragma DATA_SECTION(ti_sysbios_knl_Semaphore_Object__DESC__C, ".econst:ti_sysbios_knl_Semaphore_Object__DESC__C"); asm(" .sect \".econst:ti_sysbios_knl_Semaphore_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Semaphore_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Semaphore_Object__DESC__C\""); asm(" .clink "); const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Semaphore_Object__DESC__C = { (xdc_CPtr)-1, /* fxnTab */ (xdc_Ptr)0, /* modLink */ sizeof(ti_sysbios_knl_Semaphore___S1) - sizeof(ti_sysbios_knl_Semaphore_Object2__), /* objAlign */ 0, /* objHeap */ 0, /* objName */ sizeof(ti_sysbios_knl_Semaphore_Object2__), /* objSize */ (xdc_CPtr)&ti_sysbios_knl_Semaphore_Object__PARAMS__C, /* prmsInit */ sizeof(ti_sysbios_knl_Semaphore_Params), /* prmsSize */ }; /* * ======== ti.sysbios.knl.Swi OBJECT DESCRIPTOR ======== */ /* Object__DESC__C */ typedef struct { ti_sysbios_knl_Swi_Object2__ s0; char c; } ti_sysbios_knl_Swi___S1; #pragma DATA_SECTION(ti_sysbios_knl_Swi_Object__DESC__C, ".econst:ti_sysbios_knl_Swi_Object__DESC__C"); asm(" .sect \".econst:ti_sysbios_knl_Swi_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Swi_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Swi_Object__DESC__C\""); asm(" .clink "); const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Swi_Object__DESC__C = { (xdc_CPtr)-1, /* fxnTab */ (xdc_Ptr)0, /* modLink */ sizeof(ti_sysbios_knl_Swi___S1) - sizeof(ti_sysbios_knl_Swi_Object2__), /* objAlign */ 0, /* objHeap */ 0, /* objName */ sizeof(ti_sysbios_knl_Swi_Object2__), /* objSize */ (xdc_CPtr)&ti_sysbios_knl_Swi_Object__PARAMS__C, /* prmsInit */ sizeof(ti_sysbios_knl_Swi_Params), /* prmsSize */ }; /* * ======== ti.sysbios.knl.Task OBJECT DESCRIPTOR ======== */ /* Object__DESC__C */ typedef struct { ti_sysbios_knl_Task_Object2__ s0; char c; } ti_sysbios_knl_Task___S1; #pragma DATA_SECTION(ti_sysbios_knl_Task_Object__DESC__C, ".econst:ti_sysbios_knl_Task_Object__DESC__C"); asm(" .sect \".econst:ti_sysbios_knl_Task_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[0].econst:ti_sysbios_knl_Task_Object__DESC__C\""); asm(" .clink "); asm(" .sect \"[1].econst:ti_sysbios_knl_Task_Object__DESC__C\""); asm(" .clink "); const xdc_runtime_Core_ObjDesc ti_sysbios_knl_Task_Object__DESC__C = { (xdc_CPtr)-1, /* fxnTab */ (xdc_Ptr)0, /* modLink */ sizeof(ti_sysbios_knl_Task___S1) - sizeof(ti_sysbios_knl_Task_Object2__), /* objAlign */ 0, /* objHeap */ 0, /* objName */ sizeof(ti_sysbios_knl_Task_Object2__), /* objSize */ (xdc_CPtr)&ti_sysbios_knl_Task_Object__PARAMS__C, /* prmsInit */ sizeof(ti_sysbios_knl_Task_Params), /* prmsSize */ }; /* * ======== xdc.runtime.IHeap VIRTUAL FUNCTIONS ======== */ /* create */ xdc_runtime_IHeap_Handle xdc_runtime_IHeap_create( xdc_runtime_IHeap_Module mod, const xdc_runtime_IHeap_Params *prms, xdc_runtime_Error_Block *eb ) { return (xdc_runtime_IHeap_Handle) mod->__sysp->__create(0, (const xdc_UChar*)prms, sizeof (xdc_runtime_IHeap_Params), eb); } /* delete */ void xdc_runtime_IHeap_delete( xdc_runtime_IHeap_Handle *instp ) { (*instp)->__fxns->__sysp->__delete(instp); } /* * ======== xdc.runtime.IGateProvider VIRTUAL FUNCTIONS ======== */ /* create */ xdc_runtime_IGateProvider_Handle xdc_runtime_IGateProvider_create( xdc_runtime_IGateProvider_Module mod, const xdc_runtime_IGateProvider_Params *prms, xdc_runtime_Error_Block *eb ) { return (xdc_runtime_IGateProvider_Handle) mod->__sysp->__create(0, (const xdc_UChar*)prms, sizeof (xdc_runtime_IGateProvider_Params), eb); } /* delete */ void xdc_runtime_IGateProvider_delete( xdc_runtime_IGateProvider_Handle *instp ) { (*instp)->__fxns->__sysp->__delete(instp); } /* * ======== ti.sysbios.BIOS SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_BIOS_Module__startupDone__S( void ) { return 1; } /* * ======== ti.sysbios.BIOS_RtsGateProxy SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ xdc_Bool ti_sysbios_BIOS_RtsGateProxy_Proxy__abstract__S(void) { return 0; } xdc_CPtr ti_sysbios_BIOS_RtsGateProxy_Proxy__delegate__S(void) { return (const void *)&ti_sysbios_gates_GateMutex_Module__FXNS__C; } /* * ======== ti.sysbios.family.c28.Hwi SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_family_c28_Hwi_Module__startupDone__S( void ) { return ti_sysbios_family_c28_Hwi_Module__startupDone__F(); } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_family_c28_Hwi_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { lab->handle = obj; lab->modId = 20; xdc_runtime_Core_assignLabel__I(lab, 0, 0); return lab; } /* Params__init__S */ void ti_sysbios_family_c28_Hwi_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { xdc_runtime_Core_assignParams__I(prms, (xdc_CPtr)(src ? src : &ti_sysbios_family_c28_Hwi_Object__PARAMS__C), psz, isz); } /* Object__get__S */ xdc_Ptr ti_sysbios_family_c28_Hwi_Object__get__S(xdc_Ptr oa, xdc_Int i) { if (oa) { return ((ti_sysbios_family_c28_Hwi_Object__ *)oa) + i; } /* the bogus 'const' in the cast suppresses Klocwork MISRA complaints */ return ((ti_sysbios_family_c28_Hwi_Object__ * const)ti_sysbios_family_c28_Hwi_Object__table__C) + i; } /* Object__first__S */ xdc_Ptr ti_sysbios_family_c28_Hwi_Object__first__S( void ) { return 0; } /* Object__next__S */ xdc_Ptr ti_sysbios_family_c28_Hwi_Object__next__S( xdc_Ptr obj ) { return 0; } /* Object__create__S */ xdc_Ptr ti_sysbios_family_c28_Hwi_Object__create__S ( xdc_CPtr __aa, const xdc_UChar *__paramsPtr, xdc_SizeT __psz, xdc_runtime_Error_Block *eb) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_family_c28_Hwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* create */ ti_sysbios_family_c28_Hwi_Handle ti_sysbios_family_c28_Hwi_create( xdc_Int intNum, ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn, const ti_sysbios_family_c28_Hwi_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_family_c28_Hwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* construct */ void ti_sysbios_family_c28_Hwi_construct(ti_sysbios_family_c28_Hwi_Struct *__obj, xdc_Int intNum, ti_sysbios_interfaces_IHwi_FuncPtr hwiFxn, const ti_sysbios_family_c28_Hwi_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { ti_sysbios_family_c28_Hwi_Params __prms; /* common instance initialization */ xdc_runtime_Core_constructObject__I(&ti_sysbios_family_c28_Hwi_Object__DESC__C, __obj, &__prms, (xdc_CPtr)__paramsPtr, 0, eb); /* module-specific initialization */ ti_sysbios_family_c28_Hwi_Instance_init__E((xdc_Ptr)__obj, intNum, hwiFxn, &__prms, eb); } /* destruct */ void ti_sysbios_family_c28_Hwi_destruct(ti_sysbios_family_c28_Hwi_Struct *obj) { xdc_runtime_Core_destructObject__I(&ti_sysbios_family_c28_Hwi_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_family_c28_Hwi_Instance_finalize__E, 0, 1U); } /* Object__delete__S */ void ti_sysbios_family_c28_Hwi_Object__delete__S( xdc_Ptr instp ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_family_c28_Hwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* delete */ void ti_sysbios_family_c28_Hwi_delete(ti_sysbios_family_c28_Hwi_Handle* instp) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_family_c28_Hwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* * ======== ti.sysbios.family.c28.IntrinsicsSupport SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_family_c28_IntrinsicsSupport_Module__startupDone__S( void ) { return 1; } /* * ======== ti.sysbios.family.c28.TaskSupport SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_family_c28_TaskSupport_Module__startupDone__S( void ) { return 1; } /* * ======== ti.sysbios.family.c28.Timer SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_family_c28_Timer_Module__startupDone__S( void ) { return ti_sysbios_family_c28_Timer_Module__startupDone__F(); } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_family_c28_Timer_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { lab->handle = obj; lab->modId = 21; xdc_runtime_Core_assignLabel__I(lab, 0, 0); return lab; } /* Params__init__S */ void ti_sysbios_family_c28_Timer_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { xdc_runtime_Core_assignParams__I(prms, (xdc_CPtr)(src ? src : &ti_sysbios_family_c28_Timer_Object__PARAMS__C), psz, isz); } /* Object__get__S */ xdc_Ptr ti_sysbios_family_c28_Timer_Object__get__S(xdc_Ptr oa, xdc_Int i) { if (oa) { return ((ti_sysbios_family_c28_Timer_Object__ *)oa) + i; } /* the bogus 'const' in the cast suppresses Klocwork MISRA complaints */ return ((ti_sysbios_family_c28_Timer_Object__ * const)ti_sysbios_family_c28_Timer_Object__table__C) + i; } /* Object__first__S */ xdc_Ptr ti_sysbios_family_c28_Timer_Object__first__S( void ) { return 0; } /* Object__next__S */ xdc_Ptr ti_sysbios_family_c28_Timer_Object__next__S( xdc_Ptr obj ) { return 0; } /* Object__create__S */ xdc_Ptr ti_sysbios_family_c28_Timer_Object__create__S ( xdc_CPtr __aa, const xdc_UChar *__paramsPtr, xdc_SizeT __psz, xdc_runtime_Error_Block *eb) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_family_c28_Timer_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* create */ ti_sysbios_family_c28_Timer_Handle ti_sysbios_family_c28_Timer_create( xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_family_c28_Timer_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_family_c28_Timer_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* construct */ void ti_sysbios_family_c28_Timer_construct(ti_sysbios_family_c28_Timer_Struct *__obj, xdc_Int id, ti_sysbios_interfaces_ITimer_FuncPtr tickFxn, const ti_sysbios_family_c28_Timer_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { ti_sysbios_family_c28_Timer_Params __prms; /* common instance initialization */ xdc_runtime_Core_constructObject__I(&ti_sysbios_family_c28_Timer_Object__DESC__C, __obj, &__prms, (xdc_CPtr)__paramsPtr, 0, eb); /* module-specific initialization */ ti_sysbios_family_c28_Timer_Instance_init__E((xdc_Ptr)__obj, id, tickFxn, &__prms, eb); } /* destruct */ void ti_sysbios_family_c28_Timer_destruct(ti_sysbios_family_c28_Timer_Struct *obj) { xdc_runtime_Core_destructObject__I(&ti_sysbios_family_c28_Timer_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_family_c28_Timer_Instance_finalize__E, 0, 1U); } /* Object__delete__S */ void ti_sysbios_family_c28_Timer_Object__delete__S( xdc_Ptr instp ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_family_c28_Timer_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* delete */ void ti_sysbios_family_c28_Timer_delete(ti_sysbios_family_c28_Timer_Handle* instp) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_family_c28_Timer_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* * ======== ti.sysbios.family.c28.f2837x.TimestampProvider SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_family_c28_f2837x_TimestampProvider_Module__startupDone__S( void ) { return 1; } /* * ======== ti.sysbios.gates.GateHwi SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_gates_GateHwi_Module__startupDone__S( void ) { return 1; } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_gates_GateHwi_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { lab->handle = obj; lab->modId = 41; xdc_runtime_Core_assignLabel__I(lab, 0, 0); return lab; } /* Params__init__S */ void ti_sysbios_gates_GateHwi_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { } /* Object__get__S */ xdc_Ptr ti_sysbios_gates_GateHwi_Object__get__S(xdc_Ptr oa, xdc_Int i) { if (oa) { return ((ti_sysbios_gates_GateHwi_Object__ *)oa) + i; } /* the bogus 'const' in the cast suppresses Klocwork MISRA complaints */ return ((ti_sysbios_gates_GateHwi_Object__ * const)ti_sysbios_gates_GateHwi_Object__table__C) + i; } /* Object__first__S */ xdc_Ptr ti_sysbios_gates_GateHwi_Object__first__S( void ) { return 0; } /* Object__next__S */ xdc_Ptr ti_sysbios_gates_GateHwi_Object__next__S( xdc_Ptr obj ) { return 0; } /* Object__create__S */ xdc_Ptr ti_sysbios_gates_GateHwi_Object__create__S ( xdc_CPtr __aa, const xdc_UChar *__paramsPtr, xdc_SizeT __psz, xdc_runtime_Error_Block *eb) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_gates_GateHwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* create */ ti_sysbios_gates_GateHwi_Handle ti_sysbios_gates_GateHwi_create( const ti_sysbios_gates_GateHwi_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_gates_GateHwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* construct */ void ti_sysbios_gates_GateHwi_construct(ti_sysbios_gates_GateHwi_Struct *__obj, const ti_sysbios_gates_GateHwi_Params *__paramsPtr ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_gates_GateHwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); } /* destruct */ void ti_sysbios_gates_GateHwi_destruct(ti_sysbios_gates_GateHwi_Struct *obj) { xdc_runtime_Core_destructObject__I(&ti_sysbios_gates_GateHwi_Object__DESC__C, obj, 0, -1, 1U); } /* Object__delete__S */ void ti_sysbios_gates_GateHwi_Object__delete__S( xdc_Ptr instp ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_gates_GateHwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* delete */ void ti_sysbios_gates_GateHwi_delete(ti_sysbios_gates_GateHwi_Handle* instp) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_gates_GateHwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* * ======== ti.sysbios.gates.GateMutex SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_gates_GateMutex_Module__startupDone__S( void ) { return 1; } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_gates_GateMutex_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { lab->handle = obj; lab->modId = 42; xdc_runtime_Core_assignLabel__I(lab, 0, 0); return lab; } /* Params__init__S */ void ti_sysbios_gates_GateMutex_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { } /* Object__get__S */ xdc_Ptr ti_sysbios_gates_GateMutex_Object__get__S(xdc_Ptr oa, xdc_Int i) { if (oa) { return ((ti_sysbios_gates_GateMutex_Object__ *)oa) + i; } /* the bogus 'const' in the cast suppresses Klocwork MISRA complaints */ return ((ti_sysbios_gates_GateMutex_Object__ * const)ti_sysbios_gates_GateMutex_Object__table__C) + i; } /* Object__first__S */ xdc_Ptr ti_sysbios_gates_GateMutex_Object__first__S( void ) { return 0; } /* Object__next__S */ xdc_Ptr ti_sysbios_gates_GateMutex_Object__next__S( xdc_Ptr obj ) { return 0; } /* Object__create__S */ xdc_Ptr ti_sysbios_gates_GateMutex_Object__create__S ( xdc_CPtr __aa, const xdc_UChar *__paramsPtr, xdc_SizeT __psz, xdc_runtime_Error_Block *eb) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_gates_GateMutex_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* create */ ti_sysbios_gates_GateMutex_Handle ti_sysbios_gates_GateMutex_create( const ti_sysbios_gates_GateMutex_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_gates_GateMutex_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* construct */ void ti_sysbios_gates_GateMutex_construct(ti_sysbios_gates_GateMutex_Struct *__obj, const ti_sysbios_gates_GateMutex_Params *__paramsPtr ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_gates_GateMutex_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); } /* destruct */ void ti_sysbios_gates_GateMutex_destruct(ti_sysbios_gates_GateMutex_Struct *obj) { xdc_runtime_Core_destructObject__I(&ti_sysbios_gates_GateMutex_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_gates_GateMutex_Instance_finalize__E, -1, 1U); } /* Object__delete__S */ void ti_sysbios_gates_GateMutex_Object__delete__S( xdc_Ptr instp ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_gates_GateMutex_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* delete */ void ti_sysbios_gates_GateMutex_delete(ti_sysbios_gates_GateMutex_Handle* instp) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_gates_GateMutex_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* * ======== ti.sysbios.hal.Hwi SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_hal_Hwi_Module__startupDone__S( void ) { return ti_sysbios_hal_Hwi_Module__startupDone__F(); } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_hal_Hwi_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { lab->handle = obj; lab->modId = 36; xdc_runtime_Core_assignLabel__I(lab, 0, 0); return lab; } /* Params__init__S */ void ti_sysbios_hal_Hwi_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { } /* Object__get__S */ xdc_Ptr ti_sysbios_hal_Hwi_Object__get__S(xdc_Ptr oa, xdc_Int i) { if (oa) { return ((ti_sysbios_hal_Hwi_Object__ *)oa) + i; } return 0; } /* Object__first__S */ xdc_Ptr ti_sysbios_hal_Hwi_Object__first__S( void ) { return 0; } /* Object__next__S */ xdc_Ptr ti_sysbios_hal_Hwi_Object__next__S( xdc_Ptr obj ) { return 0; } /* Object__create__S */ xdc_Ptr ti_sysbios_hal_Hwi_Object__create__S ( xdc_CPtr __aa, const xdc_UChar *__paramsPtr, xdc_SizeT __psz, xdc_runtime_Error_Block *eb) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_hal_Hwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* create */ ti_sysbios_hal_Hwi_Handle ti_sysbios_hal_Hwi_create( xdc_Int intNum, ti_sysbios_hal_Hwi_FuncPtr hwiFxn, const ti_sysbios_hal_Hwi_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_hal_Hwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* construct */ void ti_sysbios_hal_Hwi_construct(ti_sysbios_hal_Hwi_Struct *__obj, xdc_Int intNum, ti_sysbios_hal_Hwi_FuncPtr hwiFxn, const ti_sysbios_hal_Hwi_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_hal_Hwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); } /* destruct */ void ti_sysbios_hal_Hwi_destruct(ti_sysbios_hal_Hwi_Struct *obj) { xdc_runtime_Core_destructObject__I(&ti_sysbios_hal_Hwi_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_hal_Hwi_Instance_finalize__E, 0, 1U); } /* Object__delete__S */ void ti_sysbios_hal_Hwi_Object__delete__S( xdc_Ptr instp ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_hal_Hwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* delete */ void ti_sysbios_hal_Hwi_delete(ti_sysbios_hal_Hwi_Handle* instp) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_hal_Hwi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* * ======== ti.sysbios.hal.Hwi_HwiProxy SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ xdc_Bool ti_sysbios_hal_Hwi_HwiProxy_Proxy__abstract__S(void) { return 0; } xdc_CPtr ti_sysbios_hal_Hwi_HwiProxy_Proxy__delegate__S(void) { return 0; } /* * ======== ti.sysbios.hal.Timer SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_hal_Timer_Module__startupDone__S( void ) { return ti_sysbios_hal_Timer_Module__startupDone__F(); } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_hal_Timer_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { lab->handle = obj; lab->modId = 37; xdc_runtime_Core_assignLabel__I(lab, 0, 0); return lab; } /* Params__init__S */ void ti_sysbios_hal_Timer_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { } /* Object__get__S */ xdc_Ptr ti_sysbios_hal_Timer_Object__get__S(xdc_Ptr oa, xdc_Int i) { if (oa) { return ((ti_sysbios_hal_Timer_Object__ *)oa) + i; } /* the bogus 'const' in the cast suppresses Klocwork MISRA complaints */ return ((ti_sysbios_hal_Timer_Object__ * const)ti_sysbios_hal_Timer_Object__table__C) + i; } /* Object__first__S */ xdc_Ptr ti_sysbios_hal_Timer_Object__first__S( void ) { return 0; } /* Object__next__S */ xdc_Ptr ti_sysbios_hal_Timer_Object__next__S( xdc_Ptr obj ) { return 0; } /* Object__create__S */ xdc_Ptr ti_sysbios_hal_Timer_Object__create__S ( xdc_CPtr __aa, const xdc_UChar *__paramsPtr, xdc_SizeT __psz, xdc_runtime_Error_Block *eb) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_hal_Timer_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* create */ ti_sysbios_hal_Timer_Handle ti_sysbios_hal_Timer_create( xdc_Int id, ti_sysbios_hal_Timer_FuncPtr tickFxn, const ti_sysbios_hal_Timer_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_hal_Timer_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* construct */ void ti_sysbios_hal_Timer_construct(ti_sysbios_hal_Timer_Struct *__obj, xdc_Int id, ti_sysbios_hal_Timer_FuncPtr tickFxn, const ti_sysbios_hal_Timer_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_hal_Timer_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); } /* destruct */ void ti_sysbios_hal_Timer_destruct(ti_sysbios_hal_Timer_Struct *obj) { xdc_runtime_Core_destructObject__I(&ti_sysbios_hal_Timer_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_hal_Timer_Instance_finalize__E, 0, 1U); } /* Object__delete__S */ void ti_sysbios_hal_Timer_Object__delete__S( xdc_Ptr instp ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_hal_Timer_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* delete */ void ti_sysbios_hal_Timer_delete(ti_sysbios_hal_Timer_Handle* instp) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_hal_Timer_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* * ======== ti.sysbios.hal.Timer_TimerProxy SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ xdc_Bool ti_sysbios_hal_Timer_TimerProxy_Proxy__abstract__S(void) { return 0; } xdc_CPtr ti_sysbios_hal_Timer_TimerProxy_Proxy__delegate__S(void) { return 0; } /* * ======== ti.sysbios.heaps.HeapMem SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_heaps_HeapMem_Module__startupDone__S( void ) { return 1; } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_heaps_HeapMem_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { lab->handle = obj; lab->modId = 43; xdc_runtime_Core_assignLabel__I(lab, 0, 0); return lab; } /* Params__init__S */ void ti_sysbios_heaps_HeapMem_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { } /* Object__get__S */ xdc_Ptr ti_sysbios_heaps_HeapMem_Object__get__S(xdc_Ptr oa, xdc_Int i) { if (oa) { return ((ti_sysbios_heaps_HeapMem_Object__ *)oa) + i; } /* the bogus 'const' in the cast suppresses Klocwork MISRA complaints */ return ((ti_sysbios_heaps_HeapMem_Object__ * const)ti_sysbios_heaps_HeapMem_Object__table__C) + i; } /* Object__first__S */ xdc_Ptr ti_sysbios_heaps_HeapMem_Object__first__S( void ) { return 0; } /* Object__next__S */ xdc_Ptr ti_sysbios_heaps_HeapMem_Object__next__S( xdc_Ptr obj ) { return 0; } /* Object__create__S */ xdc_Ptr ti_sysbios_heaps_HeapMem_Object__create__S ( xdc_CPtr __aa, const xdc_UChar *__paramsPtr, xdc_SizeT __psz, xdc_runtime_Error_Block *eb) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_heaps_HeapMem_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* create */ ti_sysbios_heaps_HeapMem_Handle ti_sysbios_heaps_HeapMem_create( const ti_sysbios_heaps_HeapMem_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_heaps_HeapMem_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* construct */ void ti_sysbios_heaps_HeapMem_construct(ti_sysbios_heaps_HeapMem_Struct *__obj, const ti_sysbios_heaps_HeapMem_Params *__paramsPtr ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_heaps_HeapMem_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); } /* destruct */ void ti_sysbios_heaps_HeapMem_destruct(ti_sysbios_heaps_HeapMem_Struct *obj) { xdc_runtime_Core_destructObject__I(&ti_sysbios_heaps_HeapMem_Object__DESC__C, obj, 0, -1, 1U); } /* Object__delete__S */ void ti_sysbios_heaps_HeapMem_Object__delete__S( xdc_Ptr instp ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_heaps_HeapMem_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* delete */ void ti_sysbios_heaps_HeapMem_delete(ti_sysbios_heaps_HeapMem_Handle* instp) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_heaps_HeapMem_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* * ======== ti.sysbios.heaps.HeapMem_Module_GateProxy SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ xdc_Bool ti_sysbios_heaps_HeapMem_Module_GateProxy_Proxy__abstract__S(void) { return 0; } xdc_CPtr ti_sysbios_heaps_HeapMem_Module_GateProxy_Proxy__delegate__S(void) { return (const void *)&ti_sysbios_gates_GateMutex_Module__FXNS__C; } /* * ======== ti.sysbios.knl.Clock SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_knl_Clock_Module__startupDone__S( void ) { return ti_sysbios_knl_Clock_Module__startupDone__F(); } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_knl_Clock_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { lab->handle = obj; lab->modId = 26; xdc_runtime_Core_assignLabel__I(lab, 0, 0); return lab; } /* Params__init__S */ void ti_sysbios_knl_Clock_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { xdc_runtime_Core_assignParams__I(prms, (xdc_CPtr)(src ? src : &ti_sysbios_knl_Clock_Object__PARAMS__C), psz, isz); } /* Object__get__S */ xdc_Ptr ti_sysbios_knl_Clock_Object__get__S(xdc_Ptr oa, xdc_Int i) { if (oa) { return ((ti_sysbios_knl_Clock_Object__ *)oa) + i; } return 0; } /* Object__first__S */ xdc_Ptr ti_sysbios_knl_Clock_Object__first__S( void ) { return 0; } /* Object__next__S */ xdc_Ptr ti_sysbios_knl_Clock_Object__next__S( xdc_Ptr obj ) { return 0; } /* Object__create__S */ xdc_Ptr ti_sysbios_knl_Clock_Object__create__S ( xdc_CPtr __aa, const xdc_UChar *__paramsPtr, xdc_SizeT __psz, xdc_runtime_Error_Block *eb) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Clock_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* create */ ti_sysbios_knl_Clock_Handle ti_sysbios_knl_Clock_create( ti_sysbios_knl_Clock_FuncPtr clockFxn, xdc_UInt timeout, const ti_sysbios_knl_Clock_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Clock_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* construct */ void ti_sysbios_knl_Clock_construct(ti_sysbios_knl_Clock_Struct *__obj, ti_sysbios_knl_Clock_FuncPtr clockFxn, xdc_UInt timeout, const ti_sysbios_knl_Clock_Params *__paramsPtr ) { ti_sysbios_knl_Clock_Params __prms; /* common instance initialization */ xdc_runtime_Core_constructObject__I(&ti_sysbios_knl_Clock_Object__DESC__C, __obj, &__prms, (xdc_CPtr)__paramsPtr, 0, 0); /* module-specific initialization */ ti_sysbios_knl_Clock_Instance_init__E((xdc_Ptr)__obj, clockFxn, timeout, &__prms); } /* destruct */ void ti_sysbios_knl_Clock_destruct(ti_sysbios_knl_Clock_Struct *obj) { xdc_runtime_Core_destructObject__I(&ti_sysbios_knl_Clock_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_knl_Clock_Instance_finalize__E, -1, 1U); } /* Object__delete__S */ void ti_sysbios_knl_Clock_Object__delete__S( xdc_Ptr instp ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Clock_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* delete */ void ti_sysbios_knl_Clock_delete(ti_sysbios_knl_Clock_Handle* instp) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Clock_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* * ======== ti.sysbios.knl.Clock_TimerProxy SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ xdc_Bool ti_sysbios_knl_Clock_TimerProxy_Proxy__abstract__S(void) { return 0; } xdc_CPtr ti_sysbios_knl_Clock_TimerProxy_Proxy__delegate__S(void) { return 0; } /* * ======== ti.sysbios.knl.Idle SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_knl_Idle_Module__startupDone__S( void ) { return 1; } /* * ======== ti.sysbios.knl.Intrinsics SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_knl_Intrinsics_Module__startupDone__S( void ) { return 1; } /* * ======== ti.sysbios.knl.Intrinsics_SupportProxy SYSTEM FUNCTIONS ======== */ xdc_Bool ti_sysbios_knl_Intrinsics_SupportProxy_Proxy__abstract__S(void) { return 0; } xdc_CPtr ti_sysbios_knl_Intrinsics_SupportProxy_Proxy__delegate__S(void) { return 0; } /* * ======== ti.sysbios.knl.Queue SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_knl_Queue_Module__startupDone__S( void ) { return 1; } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_knl_Queue_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { lab->handle = obj; lab->modId = 29; xdc_runtime_Core_assignLabel__I(lab, 0, 0); return lab; } /* Params__init__S */ void ti_sysbios_knl_Queue_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { xdc_runtime_Core_assignParams__I(prms, (xdc_CPtr)(src ? src : &ti_sysbios_knl_Queue_Object__PARAMS__C), psz, isz); } /* Object__get__S */ xdc_Ptr ti_sysbios_knl_Queue_Object__get__S(xdc_Ptr oa, xdc_Int i) { if (oa) { return ((ti_sysbios_knl_Queue_Object__ *)oa) + i; } return 0; } /* Object__first__S */ xdc_Ptr ti_sysbios_knl_Queue_Object__first__S( void ) { return 0; } /* Object__next__S */ xdc_Ptr ti_sysbios_knl_Queue_Object__next__S( xdc_Ptr obj ) { return 0; } /* Object__create__S */ xdc_Ptr ti_sysbios_knl_Queue_Object__create__S ( xdc_CPtr __aa, const xdc_UChar *__paramsPtr, xdc_SizeT __psz, xdc_runtime_Error_Block *eb) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Queue_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* create */ ti_sysbios_knl_Queue_Handle ti_sysbios_knl_Queue_create( const ti_sysbios_knl_Queue_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Queue_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* construct */ void ti_sysbios_knl_Queue_construct(ti_sysbios_knl_Queue_Struct *__obj, const ti_sysbios_knl_Queue_Params *__paramsPtr ) { ti_sysbios_knl_Queue_Params __prms; /* common instance initialization */ xdc_runtime_Core_constructObject__I(&ti_sysbios_knl_Queue_Object__DESC__C, __obj, &__prms, (xdc_CPtr)__paramsPtr, 0, 0); /* module-specific initialization */ ti_sysbios_knl_Queue_Instance_init__E((xdc_Ptr)__obj, &__prms); } /* destruct */ void ti_sysbios_knl_Queue_destruct(ti_sysbios_knl_Queue_Struct *obj) { xdc_runtime_Core_destructObject__I(&ti_sysbios_knl_Queue_Object__DESC__C, obj, 0, -1, 1U); } /* Object__delete__S */ void ti_sysbios_knl_Queue_Object__delete__S( xdc_Ptr instp ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Queue_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* delete */ void ti_sysbios_knl_Queue_delete(ti_sysbios_knl_Queue_Handle* instp) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Queue_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* * ======== ti.sysbios.knl.Semaphore SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_knl_Semaphore_Module__startupDone__S( void ) { return 1; } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_knl_Semaphore_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { lab->handle = obj; lab->modId = 30; xdc_runtime_Core_assignLabel__I(lab, 0, 0); return lab; } /* Params__init__S */ void ti_sysbios_knl_Semaphore_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { xdc_runtime_Core_assignParams__I(prms, (xdc_CPtr)(src ? src : &ti_sysbios_knl_Semaphore_Object__PARAMS__C), psz, isz); } /* Object__get__S */ xdc_Ptr ti_sysbios_knl_Semaphore_Object__get__S(xdc_Ptr oa, xdc_Int i) { if (oa) { return ((ti_sysbios_knl_Semaphore_Object__ *)oa) + i; } /* the bogus 'const' in the cast suppresses Klocwork MISRA complaints */ return ((ti_sysbios_knl_Semaphore_Object__ * const)ti_sysbios_knl_Semaphore_Object__table__C) + i; } /* Object__first__S */ xdc_Ptr ti_sysbios_knl_Semaphore_Object__first__S( void ) { return 0; } /* Object__next__S */ xdc_Ptr ti_sysbios_knl_Semaphore_Object__next__S( xdc_Ptr obj ) { return 0; } /* Object__create__S */ xdc_Ptr ti_sysbios_knl_Semaphore_Object__create__S ( xdc_CPtr __aa, const xdc_UChar *__paramsPtr, xdc_SizeT __psz, xdc_runtime_Error_Block *eb) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Semaphore_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* create */ ti_sysbios_knl_Semaphore_Handle ti_sysbios_knl_Semaphore_create( xdc_Int count, const ti_sysbios_knl_Semaphore_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Semaphore_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* construct */ void ti_sysbios_knl_Semaphore_construct(ti_sysbios_knl_Semaphore_Struct *__obj, xdc_Int count, const ti_sysbios_knl_Semaphore_Params *__paramsPtr ) { ti_sysbios_knl_Semaphore_Params __prms; /* common instance initialization */ xdc_runtime_Core_constructObject__I(&ti_sysbios_knl_Semaphore_Object__DESC__C, __obj, &__prms, (xdc_CPtr)__paramsPtr, 0, 0); /* module-specific initialization */ ti_sysbios_knl_Semaphore_Instance_init__E((xdc_Ptr)__obj, count, &__prms); } /* destruct */ void ti_sysbios_knl_Semaphore_destruct(ti_sysbios_knl_Semaphore_Struct *obj) { xdc_runtime_Core_destructObject__I(&ti_sysbios_knl_Semaphore_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_knl_Semaphore_Instance_finalize__E, -1, 1U); } /* Object__delete__S */ void ti_sysbios_knl_Semaphore_Object__delete__S( xdc_Ptr instp ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Semaphore_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* delete */ void ti_sysbios_knl_Semaphore_delete(ti_sysbios_knl_Semaphore_Handle* instp) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Semaphore_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* * ======== ti.sysbios.knl.Swi SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_knl_Swi_Module__startupDone__S( void ) { return ti_sysbios_knl_Swi_Module__startupDone__F(); } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_knl_Swi_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { lab->handle = obj; lab->modId = 31; xdc_runtime_Core_assignLabel__I(lab, 0, 0); return lab; } /* Params__init__S */ void ti_sysbios_knl_Swi_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { xdc_runtime_Core_assignParams__I(prms, (xdc_CPtr)(src ? src : &ti_sysbios_knl_Swi_Object__PARAMS__C), psz, isz); } /* Object__get__S */ xdc_Ptr ti_sysbios_knl_Swi_Object__get__S(xdc_Ptr oa, xdc_Int i) { if (oa) { return ((ti_sysbios_knl_Swi_Object__ *)oa) + i; } /* the bogus 'const' in the cast suppresses Klocwork MISRA complaints */ return ((ti_sysbios_knl_Swi_Object__ * const)ti_sysbios_knl_Swi_Object__table__C) + i; } /* Object__first__S */ xdc_Ptr ti_sysbios_knl_Swi_Object__first__S( void ) { return 0; } /* Object__next__S */ xdc_Ptr ti_sysbios_knl_Swi_Object__next__S( xdc_Ptr obj ) { return 0; } /* Object__create__S */ xdc_Ptr ti_sysbios_knl_Swi_Object__create__S ( xdc_CPtr __aa, const xdc_UChar *__paramsPtr, xdc_SizeT __psz, xdc_runtime_Error_Block *eb) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Swi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* create */ ti_sysbios_knl_Swi_Handle ti_sysbios_knl_Swi_create( ti_sysbios_knl_Swi_FuncPtr swiFxn, const ti_sysbios_knl_Swi_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Swi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* construct */ void ti_sysbios_knl_Swi_construct(ti_sysbios_knl_Swi_Struct *__obj, ti_sysbios_knl_Swi_FuncPtr swiFxn, const ti_sysbios_knl_Swi_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { ti_sysbios_knl_Swi_Params __prms; /* common instance initialization */ xdc_runtime_Core_constructObject__I(&ti_sysbios_knl_Swi_Object__DESC__C, __obj, &__prms, (xdc_CPtr)__paramsPtr, 0, eb); /* module-specific initialization */ ti_sysbios_knl_Swi_Instance_init__E((xdc_Ptr)__obj, swiFxn, &__prms, eb); } /* destruct */ void ti_sysbios_knl_Swi_destruct(ti_sysbios_knl_Swi_Struct *obj) { xdc_runtime_Core_destructObject__I(&ti_sysbios_knl_Swi_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_knl_Swi_Instance_finalize__E, 0, 1U); } /* Object__delete__S */ void ti_sysbios_knl_Swi_Object__delete__S( xdc_Ptr instp ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Swi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* delete */ void ti_sysbios_knl_Swi_delete(ti_sysbios_knl_Swi_Handle* instp) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Swi_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* * ======== ti.sysbios.knl.Task SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_knl_Task_Module__startupDone__S( void ) { return ti_sysbios_knl_Task_Module__startupDone__F(); } /* Handle__label__S */ xdc_runtime_Types_Label *ti_sysbios_knl_Task_Handle__label__S(xdc_Ptr obj, xdc_runtime_Types_Label *lab) { lab->handle = obj; lab->modId = 32; xdc_runtime_Core_assignLabel__I(lab, 0, 0); return lab; } /* Params__init__S */ void ti_sysbios_knl_Task_Params__init__S( xdc_Ptr prms, const void *src, xdc_SizeT psz, xdc_SizeT isz ) { xdc_runtime_Core_assignParams__I(prms, (xdc_CPtr)(src ? src : &ti_sysbios_knl_Task_Object__PARAMS__C), psz, isz); } /* Object__get__S */ xdc_Ptr ti_sysbios_knl_Task_Object__get__S(xdc_Ptr oa, xdc_Int i) { if (oa) { return ((ti_sysbios_knl_Task_Object__ *)oa) + i; } /* the bogus 'const' in the cast suppresses Klocwork MISRA complaints */ return ((ti_sysbios_knl_Task_Object__ * const)ti_sysbios_knl_Task_Object__table__C) + i; } /* Object__first__S */ xdc_Ptr ti_sysbios_knl_Task_Object__first__S( void ) { return 0; } /* Object__next__S */ xdc_Ptr ti_sysbios_knl_Task_Object__next__S( xdc_Ptr obj ) { return 0; } /* Object__create__S */ xdc_Ptr ti_sysbios_knl_Task_Object__create__S ( xdc_CPtr __aa, const xdc_UChar *__paramsPtr, xdc_SizeT __psz, xdc_runtime_Error_Block *eb) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Task_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* create */ ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_create( ti_sysbios_knl_Task_FuncPtr fxn, const ti_sysbios_knl_Task_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Task_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"create policy error", 0); return 0; } /* construct */ void ti_sysbios_knl_Task_construct(ti_sysbios_knl_Task_Struct *__obj, ti_sysbios_knl_Task_FuncPtr fxn, const ti_sysbios_knl_Task_Params *__paramsPtr, xdc_runtime_Error_Block *eb ) { ti_sysbios_knl_Task_Params __prms; /* common instance initialization */ xdc_runtime_Core_constructObject__I(&ti_sysbios_knl_Task_Object__DESC__C, __obj, &__prms, (xdc_CPtr)__paramsPtr, 0, eb); /* module-specific initialization */ ti_sysbios_knl_Task_Instance_init__E((xdc_Ptr)__obj, fxn, &__prms, eb); } /* destruct */ void ti_sysbios_knl_Task_destruct(ti_sysbios_knl_Task_Struct *obj) { xdc_runtime_Core_destructObject__I(&ti_sysbios_knl_Task_Object__DESC__C, obj, (xdc_Fxn)ti_sysbios_knl_Task_Instance_finalize__E, 0, 1U); } /* Object__delete__S */ void ti_sysbios_knl_Task_Object__delete__S( xdc_Ptr instp ) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Task_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* delete */ void ti_sysbios_knl_Task_delete(ti_sysbios_knl_Task_Handle* instp) { xdc_runtime_Error_raiseX__E(0, ti_sysbios_knl_Task_Module__id__C, 0, 0, (xdc_runtime_Error_E_generic__C), (xdc_IArg)"delete policy error", 0); } /* * ======== ti.sysbios.knl.Task_SupportProxy SYSTEM FUNCTIONS ======== */ xdc_Bool ti_sysbios_knl_Task_SupportProxy_Proxy__abstract__S(void) { return 0; } xdc_CPtr ti_sysbios_knl_Task_SupportProxy_Proxy__delegate__S(void) { return 0; } /* * ======== ti.sysbios.utils.Load SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool ti_sysbios_utils_Load_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Assert SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Assert_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Core SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Core_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Defaults SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Defaults_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Diags SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Diags_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Error SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Error_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Gate SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Gate_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Log SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Log_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Main SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Main_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Main_Module_GateProxy SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ xdc_Bool xdc_runtime_Main_Module_GateProxy_Proxy__abstract__S(void) { return 0; } xdc_CPtr xdc_runtime_Main_Module_GateProxy_Proxy__delegate__S(void) { return (const void *)&ti_sysbios_gates_GateHwi_Module__FXNS__C; } /* * ======== xdc.runtime.Memory SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Memory_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Memory_HeapProxy SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ xdc_Bool xdc_runtime_Memory_HeapProxy_Proxy__abstract__S(void) { return 1; } xdc_CPtr xdc_runtime_Memory_HeapProxy_Proxy__delegate__S(void) { return (const void *)&ti_sysbios_heaps_HeapMem_Module__FXNS__C; } /* * ======== xdc.runtime.Registry SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Registry_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Startup SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Startup_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.SysMin SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_SysMin_Module__startupDone__S( void ) { return xdc_runtime_SysMin_Module__startupDone__F(); } /* * ======== xdc.runtime.System SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_System_Module__startupDone__S( void ) { return xdc_runtime_System_Module__startupDone__F(); } /* * ======== xdc.runtime.System_Module_GateProxy SYSTEM FUNCTIONS ======== */ /* per-module runtime symbols */ xdc_Bool xdc_runtime_System_Module_GateProxy_Proxy__abstract__S(void) { return 0; } xdc_CPtr xdc_runtime_System_Module_GateProxy_Proxy__delegate__S(void) { return (const void *)&ti_sysbios_gates_GateHwi_Module__FXNS__C; } /* * ======== xdc.runtime.System_SupportProxy SYSTEM FUNCTIONS ======== */ xdc_Bool xdc_runtime_System_SupportProxy_Proxy__abstract__S(void) { return 0; } xdc_CPtr xdc_runtime_System_SupportProxy_Proxy__delegate__S(void) { return (const void *)&xdc_runtime_SysMin_Module__FXNS__C; } /* * ======== xdc.runtime.Text SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Text_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Timestamp SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_Timestamp_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.TimestampNull SYSTEM FUNCTIONS ======== */ /* Module__startupDone__S */ xdc_Bool xdc_runtime_TimestampNull_Module__startupDone__S( void ) { return 1; } /* * ======== xdc.runtime.Timestamp_SupportProxy SYSTEM FUNCTIONS ======== */ xdc_Bool xdc_runtime_Timestamp_SupportProxy_Proxy__abstract__S(void) { return 0; } xdc_CPtr xdc_runtime_Timestamp_SupportProxy_Proxy__delegate__S(void) { return 0; } /* * ======== INITIALIZATION ENTRY POINT ======== */ extern int __xdc__init(void); int (* volatile __xdc__init__addr)(void) = &__xdc__init; /* * ======== PROGRAM GLOBALS ======== */ const ti_sysbios_hal_Timer_Handle cycleTimer_handle = (ti_sysbios_hal_Timer_Handle)((ti_sysbios_hal_Timer_Handle)&ti_sysbios_hal_Timer_Object__table__V[0]); const ti_sysbios_knl_Semaphore_Handle SemGyro = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[0]); const ti_sysbios_knl_Semaphore_Handle SemACC = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[1]); const ti_sysbios_knl_Task_Handle GyroTaskHandle = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[0]); const ti_sysbios_knl_Task_Handle ACCTaskHandle = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[1]); const ti_sysbios_family_c28_Hwi_Handle hwiSpiA = (ti_sysbios_family_c28_Hwi_Handle)((ti_sysbios_family_c28_Hwi_Handle)&ti_sysbios_family_c28_Hwi_Object__table__V[0]); const ti_sysbios_family_c28_Hwi_Handle hwiSpiC = (ti_sysbios_family_c28_Hwi_Handle)((ti_sysbios_family_c28_Hwi_Handle)&ti_sysbios_family_c28_Hwi_Object__table__V[1]); const ti_sysbios_knl_Semaphore_Handle SemSpiA = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[2]); const ti_sysbios_knl_Semaphore_Handle SemSpiC = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[3]); const ti_sysbios_knl_Semaphore_Handle SemI2cA = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[4]); const ti_sysbios_knl_Semaphore_Handle SemI2cB = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[5]); const ti_sysbios_family_c28_Hwi_Handle hwiI2cB = (ti_sysbios_family_c28_Hwi_Handle)((ti_sysbios_family_c28_Hwi_Handle)&ti_sysbios_family_c28_Hwi_Object__table__V[2]); const ti_sysbios_family_c28_Hwi_Handle hwiI2cA = (ti_sysbios_family_c28_Hwi_Handle)((ti_sysbios_family_c28_Hwi_Handle)&ti_sysbios_family_c28_Hwi_Object__table__V[3]); const ti_sysbios_knl_Semaphore_Handle SemMotor = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[6]); const ti_sysbios_knl_Task_Handle MotorTaskHandle = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[2]); const ti_sysbios_knl_Semaphore_Handle SemI2cBBusy = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[7]); const ti_sysbios_knl_Semaphore_Handle SemI2cABusy = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[8]); const ti_sysbios_knl_Semaphore_Handle SemI2cABusyTaskLevel = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[9]); const ti_sysbios_knl_Semaphore_Handle SemI2cBBusyTaskLevel = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[10]); const ti_sysbios_knl_Task_Handle I2CTaskHandle = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[3]); const ti_sysbios_knl_Semaphore_Handle SemI2cTask = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[11]); const ti_sysbios_knl_Swi_Handle functionCallSwiHandle = (ti_sysbios_knl_Swi_Handle)((ti_sysbios_knl_Swi_Handle)&ti_sysbios_knl_Swi_Object__table__V[1]); const ti_sysbios_knl_Task_Handle ControlTaskHandle = (ti_sysbios_knl_Task_Handle)((ti_sysbios_knl_Task_Handle)&ti_sysbios_knl_Task_Object__table__V[4]); const ti_sysbios_knl_Semaphore_Handle SemControl = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[12]); const ti_sysbios_knl_Semaphore_Handle SemImu = (ti_sysbios_knl_Semaphore_Handle)((ti_sysbios_knl_Semaphore_Handle)&ti_sysbios_knl_Semaphore_Object__table__V[13]);