Generator keywords are reserved for internal use. Do not use them in models as identifiers or function names. Also avoid using C reserved keywords in models as identifiers or function names. If your model contains reserved keywords, code generation does not complete and an error message appears. To address the error, modify your model to use identifiers or names that are not reserved.
If you use the code generator to produce C++ code, your model must not contain the Reserved Keywords for Code Generation nor the C++ Reserved Keywords.
Note
You can register additional reserved identifiers in the Simulink® environment. For more information, see Specify Reserved Names for Generated Identifiers.
auto | double | int | struct |
break | else | long | switch |
case | enum | register | typedef |
char | extern | return | union |
const | float | short | unsigned |
continue | for | signed | void |
default | goto | sizeof | volatile |
do | if | static | while |
catch | friend | protected | try |
class | inline | public | typeid |
const_cast | mutable | reinterpret_cast | typename |
delete | namespace | static_cast | using |
dynamic_cast | new | template | virtual |
explicit | operator | this | wchar_t |
export | private | throw |
abs | int8_T | MAX_uint8_T * | rtInf |
asm | int16_T | MAX_uint16_T * | rtMinusInf |
bool | int32_T | MAX_uint32_T * | rtNaN |
boolean_T | int64_T | MAX_uint64_T | SeedFileBuffer |
byte_T | INTEGER_CODE | MIN_int8_T * | SeedFileBufferLen |
char_T | LINK_DATA_BUFFER_SIZE | MIN_int16_T * | single |
cint8_T | LINK_DATA_STREAM | MIN_int32_T * | TID01EQ
|
cint16_T | localB | MIN_int64_T | time_T |
cint32_T | localC | MODEL | true |
creal_T | localDWork | MT | uint_T |
creal32_T | localP | NCSTATES | uint8_T |
creal64_T | localX | NULL | uint16_T |
cuint8_T | localXdis | NUMST | uint32_T |
cuint16_T | localXdot | pointer_T | uint64_T |
cuint32_T | localZCE | PROFILING_ENABLED
| UNUSED_PARAMETER |
ERT | localZCSV | PROFILING_NUM_SAMPLES | USE_RTMODEL
|
false | matrix | real_T | VCAST_FLUSH_DATA |
fortran | MAX_int8_T * | real32_T | vector |
HAVESTDIO | MAX_int16_T * | real64_T | |
id_t | MAX_int32_T * | RT | |
int_T | MAX_int64_T | RT_MALLOC | |
*Not reserved if you specify a replacement identifier. |
The list of code replacement library reserved keywords for your development environment varies depending on which libraries are registered. The list of available code replacement libraries varies depending on other installed products (for example, a target product), or if you used Embedded Coder® to create and register custom code replacement libraries.
To generate a list of reserved keywords for libraries currently registered in your environment, use the following MATLAB® function:
lib_ids = RTW.TargetRegistry.getInstance.getTflReservedIdentifiers()
This function returns an array of library keywords. Specifying the input argument is optional.
Note
To list the libraries currently registered in your environment, use the
MATLAB command crviewer
.
To generate a list of reserved keywords for a specific library that you are using to generate code, call the function passing the name of the library as displayed in the Code replacement library menu on the Code Generation > Interface pane of the Configuration Parameters dialog box. For example,
lib_ids = RTW.TargetRegistry.getInstance.getTflReservedIdentifiers('GNU C99 extensions')
Here is a partial example of the function output:
>> lib_ids = ... RTW.TargetRegistry.getInstance.getTflReservedIdentifiers('GNU C99 extensions') lib_ids = 'exp10' 'exp10f' 'acosf' 'acoshf' 'asinf' 'asinhf' 'atanf' 'atanhf' ... 'rt_lu_cplx' 'rt_lu_cplx_sgl' 'rt_lu_real' 'rt_lu_real_sgl' 'rt_mod_boolean' 'rt_rem_boolean' 'strcpy' 'utAssert'
Note
Some of the returned keywords appear with the suffix $N
,
for example, 'rt_atan2$N'
. $N
expands into
the suffix _snf
only if nonfinite numbers are supported. For
example, 'rt_atan2$N'
represents
'rt_atan2_snf'
if nonfinite numbers are supported and
'rt_atan2'
if nonfinite numbers are not supported. As a
precaution, you should treat both forms of the keyword as reserved.