9 Compiler C Spru514j PDF
9 Compiler C Spru514j PDF
9 Compiler C Spru514j PDF
v15.12.0.LTS
User's Guide
Preface....................................................................................................................................... 10
1 Introduction to the Software Development Tools .................................................................... 13
1.1 Software Development Tools Overview ................................................................................. 14
1.2 Compiler Interface .......................................................................................................... 15
1.3 ANSI/ISO Standard ........................................................................................................ 16
1.4 Output Files ................................................................................................................. 16
1.5 Utilities ....................................................................................................................... 16
2 Using the C/C++ Compiler ................................................................................................... 17
2.1 About the Compiler......................................................................................................... 18
2.2 Invoking the C/C++ Compiler ............................................................................................. 18
2.3 Changing the Compiler's Behavior with Options ....................................................................... 19
2.3.1 Linker Options ..................................................................................................... 26
2.3.2 Frequently Used Options ......................................................................................... 28
2.3.3 Miscellaneous Useful Options ................................................................................... 29
2.3.4 Run-Time Model Options ......................................................................................... 31
2.3.5 Symbolic Debugging and Profiling Options .................................................................... 33
2.3.6 Specifying Filenames ............................................................................................. 34
2.3.7 Changing How the Compiler Interprets Filenames ........................................................... 34
2.3.8 Changing How the Compiler Processes C Files .............................................................. 34
2.3.9 Changing How the Compiler Interprets and Names Extensions ............................................ 35
2.3.10 Specifying Directories............................................................................................ 36
2.3.11 Assembler Options ............................................................................................... 36
2.3.12 Dynamic Linking .................................................................................................. 38
2.3.13 Deprecated Options .............................................................................................. 38
2.4 Controlling the Compiler Through Environment Variables ............................................................ 39
2.4.1 Setting Default Compiler Options (C2000_C_OPTION) ..................................................... 39
2.4.2 Naming One or More Alternate Directories (C2000_C_DIR) ................................................ 40
2.5 Controlling the Preprocessor ............................................................................................. 40
2.5.1 Predefined Macro Names ........................................................................................ 41
2.5.2 The Search Path for #include Files ............................................................................. 42
2.5.3 Support for the #warning and #warn Directives ............................................................... 43
2.5.4 Generating a Preprocessed Listing File (--preproc_only Option) ........................................... 43
2.5.5 Continuing Compilation After Preprocessing (--preproc_with_compile Option) ........................... 43
2.5.6 Generating a Preprocessed Listing File with Comments (--preproc_with_comment Option) ........... 44
2.5.7 Generating Preprocessed Listing with Line-Control Details (--preproc_with_line Option) ............... 44
2.5.8 Generating Preprocessed Output for a Make Utility (--preproc_dependency Option) ................... 44
2.5.9 Generating a List of Files Included with #include (--preproc_includes Option) ........................... 44
2.5.10 Generating a List of Macros in a File (--preproc_macros Option) ......................................... 44
2.6 Passing Arguments to main() ............................................................................................. 44
2.7 Understanding Diagnostic Messages .................................................................................... 45
2.7.1 Controlling Diagnostic Messages ............................................................................... 46
2.7.2 How You Can Use Diagnostic Suppression Options ......................................................... 47
2.8 Other Messages ............................................................................................................ 48
2.9 Generating Cross-Reference Listing Information (--gen_acp_xref Option) ......................................... 48
2.10 Generating a Raw Listing File (--gen_acp_raw Option) ............................................................... 49
List of Figures
1-1. TMS320C28x Software Development Flow ............................................................................. 14
5-1. The Post-Link Optimizer in the TMS320C28x Software Development Flow ....................................... 93
7-1. Use of the Stack During a Function Call ............................................................................... 147
7-2. Format of Initialization Records in the .cinit Section ................................................................. 166
7-3. Format of Initialization Records in the .pinit Section ................................................................. 167
7-4. Autoinitialization at Run Time ........................................................................................... 168
7-5. Initialization at Load Time ............................................................................................... 169
List of Tables
2-1. Processor Options ......................................................................................................... 19
2-2. Optimization Options ...................................................................................................... 19
2-3. Advanced Optimization Options ......................................................................................... 20
2-4. Debug Options .............................................................................................................. 20
2-5. Advanced Debug Options ................................................................................................. 20
2-6. Include Options ............................................................................................................ 20
2-7. Control Options ............................................................................................................ 21
2-8. Language Options .......................................................................................................... 21
2-9. Parser Preprocessing Options ............................................................................................ 21
2-10. Predefined Symbols Options ............................................................................................. 22
2-11. Diagnostic Message Options ............................................................................................. 22
2-12. Run-Time Model Options .................................................................................................. 23
2-13. Entry/Exit Hook Options ................................................................................................... 23
2-14. Feedback Options ......................................................................................................... 23
2-15. Library Function Assumptions Options .................................................................................. 23
2-16. Assembler Options ......................................................................................................... 24
2-17. File Type Specifier Options ............................................................................................... 24
2-18. Directory Specifier Options................................................................................................ 24
2-19. Default File Extensions Options .......................................................................................... 25
2-20. Command Files Options ................................................................................................... 25
2-21. MISRA-C:2004 Options.................................................................................................... 25
2-22. Linker Basic Options ....................................................................................................... 26
2-23. File Search Path Options .................................................................................................. 26
2-24. Command File Preprocessing Options .................................................................................. 26
2-25. Diagnostic Message Options ............................................................................................. 26
2-26. Linker Output Options ..................................................................................................... 27
2-27. Symbol Management Options ............................................................................................ 27
2-28. Run-Time Environment Options .......................................................................................... 27
2-29. Link-Time Optimization Options .......................................................................................... 27
2-30. Miscellaneous Options..................................................................................................... 28
2-31. Linker Options For Dynamic Linking ..................................................................................... 38
2-32. Compiler Backwards-Compatibility Options Summary ................................................................ 38
2-33. Predefined C28x Macro Names .......................................................................................... 41
2-34. Raw Listing File Identifiers ................................................................................................ 49
2-35. Raw Listing File Diagnostic Identifiers ................................................................................... 49
3-1. Interaction Between Debugging and Optimization Options ........................................................... 58
3-2. Options That You Can Use With --opt_level=3 ......................................................................... 58
3-3. Selecting a File-Level Optimization Option ............................................................................. 58
Notational Conventions
This document uses the following conventions:
• Program listings, program examples, and interactive displays are shown in a special typeface.
Interactive displays use a bold version of the special typeface to distinguish commands that you enter
from items that the system displays (such as prompts, command output, error messages, etc.).
Here is a sample of C code:
#include <stdio.h>
main()
{ printf("Hello World\n");
}
• In syntax descriptions, instructions, commands, and directives arein a bold typeface and parameters
are in an italic typeface. Portions of a syntax that are in bold should be entered as shown; portions of a
syntax that are in italics describe the type of information that should be entered.
• Square brackets ( [ and ] ) identify an optional parameter. If you use an optional parameter, you specify
the information within the brackets. Unless the square brackets are in the bold typeface, do not enter
the brackets themselves. The following is an example of a command that has an optional parameter:
• Braces ( { and } ) indicate that you must choose one of the parameters within the braces; you do not
enter the braces themselves. This is an example of a command with braces that are not included in the
actual syntax but indicate that you must specify either the --rom_model or --ram_model option:
• In assembler syntax statements, the leftmost column is reserved for the first character of a label or
symbol. If the label or symbol is optional, it is usually not shown. If a label or symbol is a required
parameter, it is shown starting against the left margin of the box, as in the example below. No
instruction, command, directive, or parameter, other than a symbol or label, can begin in the leftmost
column.
• Some directives can have a varying number of parameters. For example, the .byte directive. This
syntax is shown as [, ..., parameter].
• The TMS320C2800™ core is referred to as TMS320C28x or C28x.
Related Documentation
You can use the following books to supplement this user's guide:
ANSI X3.159-1989, Programming Language - C (Alternate version of the 1989 C Standard), American
National Standards Institute
ISO/IEC 9899:1989, International Standard - Programming Languages - C (The 1989 C Standard),
International Organization for Standardization
ISO/IEC 9899:1999, International Standard - Programming Languages - C (The 1999 C Standard),
International Organization for Standardization
ISO/IEC 14882-2003, International Standard - Programming Languages - C++ (The 2003 C++
Standard), International Organization for Standardization
The C Programming Language (second edition), by Brian W. Kernighan and Dennis M. Ritchie,
published by Prentice-Hall, Englewood Cliffs, New Jersey, 1988
The Annotated C++ Reference Manual, Margaret A. Ellis and Bjarne Stroustrup, published by Addison-
Wesley Publishing Company, Reading, Massachusetts, 1990
C: A Reference Manual (fourth edition), by Samuel P. Harbison, and Guy L. Steele Jr., published by
Prentice Hall, Englewood Cliffs, New Jersey
Programming Embedded Systems in C and C++, by Michael Barr, Andy Oram (Editor), published by
O'Reilly & Associates; ISBN: 1565923545, February 1999
Programming in C, Steve G. Kochan, Hayden Book Company
The C++ Programming Language (second edition), Bjarne Stroustrup, published by Addison-Wesley
Publishing Company, Reading, Massachusetts, 1990
Tool Interface Standards (TIS) DWARF Debugging Information Format Specification Version 2.0,
TIS Committee, 1995
DWARF Debugging Information Format Version 3, DWARF Debugging Information Format Workgroup,
Free Standards Group, 2005 (http://dwarfstd.org)
DWARF Debugging Information Format Version 4, DWARF Debugging Information Format Workgroup,
Free Standards Group, 2010 (http://dwarfstd.org)
System V ABI specification (http://www.sco.com/developers/gabi/)
The TMS320C28x™ is supported by a set of software development tools, which includes an optimizing
C/C++ compiler, an assembler, a linker, and assorted utilities.
This chapter provides an overview of these tools and introduces the features of the optimizing C/C++
compiler. The assembler and linker are discussed in detail in the TMS320C28x Assembly Language Tools
User's Guide.
C/C++
source
files
Macro
source C/C++
files compiler
C/C++ name
Assembler
Archiver demangling
source
utility
Macro
library Assembler
Library-build Debugging
Object
Archiver utility tools
files
Run-time-
Library of support
object library
files Linker
Executable
object file
Hex-conversion
utility
The following list describes the tools that are shown in Figure 1-1:
• The compiler accepts C/C++ source code and produces C28x assembly language source code. See
Chapter 2.
• The assembler translates assembly language source files into machine language relocatable object
files. See the TMS320C28x Assembly Language Tools User's Guide.
• The linker combines relocatable object files into a single absolute executable object file. As it creates
the executable file, it performs relocation and resolves external references. The linker accepts
relocatable object files and object libraries as input. See Chapter 4 for an overview of the linker. See
the TMS320C28x Assembly Language Tools User's Guide for details.
• The archiver allows you to collect a group of files into a single archive file, called a library. The
archiver allows you to modify such libraries by deleting, replacing, extracting, or adding members. One
of the most useful applications of the archiver is building a library of object files. See the TMS320C28x
Assembly Language Tools User's Guide.
• The run-time-support libraries contain the standard ISO C and C++ library functions, compiler-utility
functions, floating-point arithmetic functions, and C I/O functions that are supported by the compiler.
See Chapter 8.
The library-build utility automatically builds the run-time-support library if compiler and linker options
require a custom version of the library. See Section 8.4. Source code for the standard run-time-support
library functions for C and C++ is provided in the lib\src subdirectory of the directory where the
compiler is installed.
• The hex conversion utility converts an object file into other object formats. You can download the
converted file to an EPROM programmer. See the TMS320C28x Assembly Language Tools User's
Guide.
• The absolute lister accepts linked object files as input and creates .abs files as output. You can
assemble these .abs files to produce a listing that contains absolute, rather than relative, addresses.
Without the absolute lister, producing such a listing would be tedious and would require many manual
operations. See the TMS320C28x Assembly Language Tools User's Guide.
• The cross-reference lister uses object files to produce a cross-reference listing showing symbols,
their definitions, and their references in the linked source files. See the TMS320C28x Assembly
Language Tools User's Guide.
• The C++ name demangler is a debugging aid that converts names mangled by the compiler back to
their original names as declared in the C++ source code. As shown in Figure 1-1, you can use the C++
name demangler on the assembly file that is output by the compiler; you can also use this utility on the
assembler listing file and the linker map file. See Chapter 9.
• The post-link optimizer removes or modifies assembly language instructions to generate better code.
The post-link optimizer must be run with the compiler -plink option. See Chapter 5.
• The disassembler decodes object files to show the assembly instructions that they represent. See the
TMS320C28x Assembly Language Tools User's Guide.
• The main product of this development process is an executable object file that can be executed in a
TMS320C28x device.
1.5 Utilities
These features are compiler utilities:
• Library-build utility
The library-build utility lets you custom-build object libraries from source for any combination of run-
time models. For more information, see Section 8.4.
• C++ name demangler
The C++ name demangler (dem2000) is a debugging aid that translates each mangled name it detects
in compiler-generated assembly code, disassembly output, or compiler diagnostic messages to its
original name found in the C++ source code. For more information, see Chapter 9.
• Hex conversion utility
For stand-alone embedded applications, the compiler has the ability to place all code and initialization
data into ROM, allowing C/C++ code to run from reset. The COFF files output by the compiler can be
converted to EPROM programmer data files by using the hex conversion utility, as described in the
TMS320C28x Assembly Language Tools User's Guide.
The compiler translates your source program into machine language object code that the TMS320C28x
can execute. Source code must be compiled, assembled, and linked to create an executable object file. All
of these steps are executed at once by using the compiler.
For a complete description of the assembler and the linker, see the TMS320C28x Assembly Language
Tools User's Guide.
(1)
Note: Machine-specific options (see Table 2-12) can also affect optimization.
(1)
Note: Machine-specific options (see Table 2-12) can also affect optimization.
(1)
See Chapter 5 for details.
--c_src_interlist Invokes the interlist feature, which interweaves original C/C++ source
with compiler-generated assembly language. The interlisted C
statements may appear to be out of sequence. You can use the interlist
feature with the optimizer by combining the --optimizer_interlist and --
c_src_interlist options. See Section 3.9. The --c_src_interlist option can
have a negative performance and/or code size impact.
--cmd_file=filename Appends the contents of a file to the option set. You can use this option
to avoid limitations on command line length or C style comments
imposed by the host operating system. Use a # or ; at the beginning of a
line in the command file to include comments. You can also include
comments by delimiting them with /* and */. To specify options, surround
hyphens with quotation marks. For example, "--"quiet.
You can use the --cmd_file option multiple times to specify multiple files.
For instance, the following indicates that file3 should be compiled as
source and file1 and file2 are --cmd_file files:
cl2000 --cmd_file=file1 --cmd_file=file2 file3
--compile_only Suppresses the linker and overrides the --run_linker option, which
specifies linking. The --compile_only option's short form is -c. Use this
option when you have --run_linker specified in the C2000_C_OPTION
environment variable and you do not want to link. See Section 4.1.3.
--define=name[=def] Predefines the constant name for the preprocessor. This is equivalent to
inserting #define name def at the top of each C source file. If the
optional[=def] is omitted, the name is set to 1. The --define option's short
form is -D.
If you want to define a quoted string and keep the quotation marks, do
one of the following:
• For Windows, use --define=name="\"string def\"". For example, --
define=car="\"sedan\""
• For UNIX, use --define=name='"string def"'. For example, --
define=car='"sedan"'
• For Code Composer Studio, enter the definition in a file and include
that file with the --cmd_file option.
--help Displays the syntax for invoking the compiler and lists available options.
If the --help option is followed by another option or phrase, detailed
information about the option or phrase is displayed. For example, to see
information about debugging options use --help debug.
--include_path=directory Adds directory to the list of directories that the compiler searches for
#include files. The --include_path option's short form is -I. You can use
this option several times to define several directories; be sure to
separate the --include_path options with spaces. If you do not specify a
directory name, the preprocessor ignores the --include_path option. See
Section 2.5.2.1.
--keep_asm Retains the assembly language output from the compiler or assembly
optimizer. Normally, the compiler deletes the output assembly language
file after assembly is complete. The --keep_asm option's short form is -k.
--quiet Suppresses banners and progress information from all the tools. Only
source filenames and error messages are output. The --quiet option's
short form is -q.
--run_linker Runs the linker on the specified object files. The --run_linker option and
its parameters follow all other options on the command line. All
arguments that follow --run_linker are passed to the linker. The --
run_linker option's short form is -z. See Section 4.1.
--skip_assembler Compiles only. The specified source files are compiled but not
assembled or linked. The --skip_assembler option's short form is -n. This
option overrides --run_linker. The output is assembly language output
from the compiler.
--src_interlist Invokes the interlist feature, which interweaves optimizer comments or
C/C++ source with assembly source. If the optimizer is invoked (--
opt_level=n option), optimizer comments are interlisted with the
assembly language output of the compiler, which may rearrange code
significantly. If the optimizer is not invoked, C/C++ source statements are
interlisted with the assembly language output of the compiler, which
allows you to inspect the code generated for each C/C++ statement. The
--src_interlist option implies the --keep_asm option. The --src_interlist
option's short form is -s.
--tool_version Prints the version number for each tool in the compiler. No compiling
occurs.
--undefine=name Undefines the predefined constant name. This option overrides any --
define options for the specified constant. The --undefine option's short
form is -U.
--verbose Displays progress information and toolset version while compiling.
Resets the --quiet option.
--printf_support={full| Enables support for smaller, limited versions of the printf function
nofloat|minimal} family (sprintf, fprintf, etc.) and the scanf function family (sscanf,
fscanf, etc.) run-time-support functions. The valid values are:
• full: Supports all format specifiers. This is the default.
• nofloat: Excludes support for printing and scanning floating-point
values. Supports all format specifiers except %a, %A, %f, %F, %g,
%G, %e, and %E.
• minimal: Supports the printing and scanning of integer, char, or
string values without width or precision flags. Specifically, only
the %%, %d, %o, %c, %s, and %x format specifiers are supported
There is no run-time error checking to detect if a format specifier is
used for which support is not included. The --printf_support option
precedes the --run_linker option, and must be used when performing
the final link.
--sat_reassoc={on|off} Enables or disables the reassociation of saturating arithmetic.
--asm_code_fill=value Specifies fill value to fill the holes in code sections created by the
assembler. You can specify a 16-bit value in decimal, octal, or
hexadecimal format.
--asm_data_fill=value Specifies fill value to fill the holes in data sections created by the
assembler. You can specify a 16-bit value in decimal, octal, or
hexadecimal format.
--c2xlp_src_compatible Accepts C2xLP assembly instructions and encodes them as
equivalent C28x instructions.
--cla_support={cla0|cla1} Specifies TMS320C28x Control Law Accelerator (CLA) Type 0 or
Type 1 support. This option is used to compile or assemble code
written for the CLA. This option does not require any special library
support when linking; the libraries used for C28x with/without FPU
support should be sufficient.
--disable_dp_load_opt Disables the compiler from optimizing redundant loads of the DP
register when using DP direct addressing.
--float_support={fpu32|fpu64} Specifies use of TMS320C28x 32- or 64-bit hardware floating-point
support. Using --float_support=fpu32 specifies the C28x architecture
with 32-bit hardware floating-point support. Using --
float_support=fpu64 specifies the C28x architecture with 64-bit
hardware floating-point support. If the --tmu_support option is used to
enable support for the Trigonometric Math Unit, the --float_support
option is automatically set to fpu32.
--no_rpt Prevents the compiler from generating repeat (RPT) instructions. By
default, repeat instructions are generated for certain memcpy,
division, and multiply-accumulate operations. However, repeat
instructions are not interruptible.
--vcu_support[=vcu0|vcu2] Specifies support for Type 0 or Type 2 of the Viterbi, Complex Math
and CRC Unit (VCU). This option is useful only if the source is in
assembly code, written for the VCU. The option is ignored for C/C++
code. This option does not need any special library support when
linking; the libraries used for C28x with/without VCU support should
be sufficient. Also note that there is no VCU Type 1.
--profile:power Enables power profiling support by inserting NOPs into the frame code.
These NOPs can then be instrumented by the power profiling tooling to
track the power usage of functions. If the power profiling tool is not used,
this option increases the cycle count of each function because of the
NOPs. The --profile:power option also disables optimizations that cannot
be handled by the power-profiler.
--symdebug:coff Enables symbolic debugging using the alternate STABS debugging
format. This may be necessary to allow debugging with older debuggers
or custom tools, which do not read the DWARF format.
--symdebug:dwarf (Default) Generates directives that are used by the C/C++ source-level
debugger and enables assembly source debugging in the assembler.
The --symdebug:dwarf option's short form is -g. See Section 3.10.
For more information on the DWARF debug format, see The DWARF
Debugging Standard.
--symdebug:dwarf_ Specifies the DWARF debugging format version (2, 3, or 4) to be
version={2|3|4} generated when --symdebug:dwarf (the default) is specified. By default,
the compiler generates DWARF version 3 debug information. DWARF
versions 2, 3, and 4 may be intermixed safely. When DWARF 4 is used,
type information is placed in the .debug_types section. At link time,
duplicate type information will be removed. This method of type merging
is superior to those used in DWARF 2 or 3 and will result in a smaller
executable. In addition, DWARF 4 reduces the size of intermediate
object files in comparison to DWARF 3. For more information on TI
extensions to the DWARF language, see The Impact of DWARF on TI
Object Files (SPRAAB5).
--symdebug:none Disables all symbolic debugging output. This option is not recommended;
it prevents debugging and most performance analysis capabilities.
--symdebug:profile_coff Adds the necessary debug directives to the object file which are needed
by the profiler to allow function level profiling with minimal impact on
optimization (when used). Using --symdebug:coff may hinder some
optimizations to ensure that debug ability is maintained, while this option
will not hinder optimization.
You can set breakpoints and profile on function-level boundaries in Code
Composer Studio, but you cannot single-step through code as with full
debug ability.
--symdebug:skeletal Deprecated. Has no effect.
For information about how you can alter the way that the compiler interprets individual filenames, see
Section 2.3.7. For information about how you can alter the way that the compiler interprets and names the
extensions of assembly source and object files, see Section 2.3.10.
You can use wildcard characters to compile or assemble multiple files. Wildcard specifications vary by
system; use the appropriate form listed in your operating system manual. For example, to compile all of
the files in a directory with the extension .cpp, enter the following:
cl2000 *.cpp
For example, if you have a C source file called file.s and an assembly language source file called assy,
use the --asm_file and --c_file options to force the correct interpretation:
cl2000 --c_file=file.s --asm_file=assy
The following example assembles the file fit.rrr and creates an object file named fit.o:
cl2000 --asm_extension=.rrr --obj_extension=.o fit.rrr
The period (.) in the extension is optional. You can also write the example above as:
cl2000 --asm_extension=rrr --obj_extension=o fit.rrr
--abs_directory=directory Specifies the destination directory for absolute listing files. The default is
to use the same directory as the object file directory. For example:
cl2000 --abs_directory=d:\abso_list
--asm_directory=directory Specifies a directory for assembly files. For example:
cl2000 --asm_directory=d:\assembly
--list_directory=directory Specifies the destination directory for assembly listing files and cross-
reference listing files. The default is to use the same directory as the
object file directory. For example:
cl2000 --list_directory=d:\listing
--obj_directory=directory Specifies a directory for object files. For example:
cl2000 --obj_directory=d:\object
--output_file=filename Specifies a compilation output file name; can override --obj_directory . For
example:
cl2000 --output_file=transfer
--pp_directory=directory Specifies a preprocessor file directory for object files (default is .). For
example:
cl2000 --pp_directory=d:\preproc
--temp_directory=directory Specifies a directory for temporary intermediate files. For example:
cl2000 --temp_directory=d:\temp
--asm_undefine=name Undefines the predefined constant name. This option overrides any --
asm_define options for the specified name.
--cdebug_asm_data Produces C-type symbolic debugging for assembly variables defined in
assembly source code using data directives. This support is for basic C
types, structures, and arrays.
--copy_file=filename Copies the specified file for the assembly module; acts like a .copy
directive. The file is inserted before source file statements. The copied file
appears in the assembly listing files.
--cross_reference Produces a symbolic cross-reference in the listing file.
--flash_prefetch_warn Enables assembler warnings if a program data access instruction follows
within 8 words of a BF or SBF instruction. As outlined in the
TMS320C281X/TMS320F281X DSP Silicon Errata (SPRZ193) advisory
on the "Flash and OTP Prefetch Buffer Overflow", the flash prefetch buffer
may overflow if this instruction sequence is executed from flash or One-
Time-Programmable (OTP) memory with the flash prefetch buffer
enabled. Whether or not an overflow actually occurs depends on the
instruction sequence, flash wait states, and CPU pipeline stalls. If an
overflow occurs, it will result in execution of invalid opcodes. Instructions
that use program memory addressing include MAC/XMAC,
DMAC/XMACD, QMACL, IMACL, PREAD/XPREAD, and
PWRITE/XPWRITE.
--include_file=filename Includes the specified file for the assembly module; acts like an .include
directive. The file is included before source file statements. The included
file does not appear in the assembly listing files.
--output_all_syms Puts labels in the symbol table. Label definitions are written to the symbol
table for use with symbolic debugging.
--preproc_asm Expands macros in an assembly file and assembles the expanded file.
Expanding macros helps you to debug the assembly file. The --
preproc_asm option affects only the assembly file. When --preproc_asm is
used, the compiler first invokes the assembler to generate the macro-
expanded source .exp file. Then the .exp file is assembled to generate the
object file. The debugger uses the .exp file for debugging. The .exp file is
an intermediate file and any update to this file will be lost. You need to
make any updates to the original assembly file.
--syms_ignore_case Makes letter case insignificant in assembly language source files. For
example, --syms_ignore_case makes ABC and abc equivalent. If you do
not use this option, case is significant.
Additionally, the --symdebug:profile_coff option has been added to enable function-level profiling of
optimized code with symbolic debugging using the STABS debugging format (the --symdebug:coff or -gt
option).
The --farheap and --large_memory_model options are deprecated.
The --no_fast_branch option is deprecated and no longer has any effect. Fast branching is generated only
for functions that have the ramfunc attribute or the --ramfunc=on option is used. Projects or files previously
compiled without the --no_fast_branch option should use the --ramfunc=on option instead to generate fast
branch instructions for all functions.
The --opt_for_size option has been replaced by the --opt_for_space and --opt_for_speed options. The --
disable_pcd and --out_as_uout options are now obsolete.
NOTE: C_OPTION and C_DIR -- The C_OPTION and C_DIR environment variables are
deprecated. Use device-specific environment variables instead.
Environment variable options are specified in the same way and have the same meaning as they do on
the command line. For example, if you want to always run quietly (the --quiet option), enable C/C++
source interlisting (the --src_interlist option), and link (the --run_linker option) for Windows, set up the
C2000_C_OPTION environment variable as follows:
set C2000_C_OPTION=--quiet --src_interlist --run_linker
In the following examples, each time you run the compiler, it runs the linker. Any options following --
run_linker on the command line or in C2000_C_OPTION are passed to the linker. Thus, you can use the
C2000_C_OPTION environment variable to specify default compiler and linker options and then specify
additional compiler and linker options on the command line. If you have set --run_linker in the environment
variable and want to compile only, use the compiler --compile_only option. These additional examples
assume C2000_C_OPTION is set as shown above:
cl2000 *c ; compiles and links
cl2000 --compile_only *.c ; only compiles
cl2000 *.c --run_linker lnk.cmd ; compiles and links using a command file
cl2000 --compile_only *.c --run_linker lnk.cmd
; only compiles (--compile_only overrides --run_linker)
For details on compiler options, see Section 2.3. For details on linker options, see the Linker Description
chapter in the TMS320C28x Assembly Language Tools User's Guide.
The pathnames are directories that contain input files. The pathnames must follow these constraints:
• Pathnames must be separated with a semicolon.
• Spaces or tabs at the beginning or end of a path are ignored. For example, the space before and after
the semicolon in the following is ignored:
set C2000_C_DIR=c:\path\one\to\tools ; c:\path\two\to\tools
• Spaces and tabs are allowed within paths to accommodate Windows directories that contain spaces.
For example, the pathnames in the following are valid:
set C2000_C_DIR=c:\first path\to\tools;d:\second path\to\tools
The environment variable remains set until you reboot the system or reset the variable by entering:
You can use the names listed in Table 2-33 in the same manner as any other defined name. For example,
printf ( "%s %s" , __TIME__ , __DATE__);
2.5.2.1 Adding a Directory to the #include File Search Path (--include_path Option)
The --include_path option names an alternate directory that contains #include files. The --include_path
option's short form is -I. The format of the --include_path option is:
--include_path=directory1 [--include_path= directory2 ...]
There is no limit to the number of --include_path options per invocation of the compiler; each --
include_path option names one directory. In C source, you can use the #include directive without
specifying any directory information for the file; instead, you can specify the directory information with the -
-include_path option.
For example, assume that a file called source.c is in the current directory. The file source.c contains the
following directive statement:
#include "alt.h"
UNIX /tools/files/alt.h
Windows c:\tools\files\alt.h
The table below shows how to invoke the compiler. Select the command for your operating system:
If you are using Code Composer Studio to run your application, you can use the Scripting Console tool to
populate the .args section. To open this tool, choose View > Scripting Console from the CCS menus.
You can use the loadProg command to load an object file and its associated symbol table into memory
and pass an array of arguments to main(). These arguments are automatically written to the allocated
.args section.
The loadProg syntax is as follows, where file is an executable file and args is an object array of
arguments. Use JavaScript to declare the array of arguments before using this command.
loadProg(file, args)
The .args section is loaded with the following data for non-SYS/BIOS-based executables, where each
element in the argv[] array contains a string corresponding to that argument:
Int argc;
Char * argv[0];
Char * argv[1];
...
Char * argv[n];
For SYS/BIOS-based executables, the elements in the .args section are as follows:
Int argc;
Char ** argv; /* points to argv[0] */
Char * envp; /* ignored by loadProg command */
Char * argv[0];
Char * argv[1];
...
Char * argv[n];
For more details, see the "Scripting Console" topic in the TI Processors Wiki.
Diagnostic messages are written to standard error with a form like the following example:
"test.c", line 5: error: a break statement may only be used within a loop or switch
break;
^
By default, the source code line is not printed. Use the --verbose_diagnostics compiler option to display
the source line and the error position. The above example makes use of this option.
The message identifies the file and line involved in the diagnostic, and the source line itself (with the
position indicated by the ^ character) follows the message. If several diagnostic messages apply to one
source line, each diagnostic has the form shown; the text of the source line is displayed several times,
with an appropriate position indicated each time.
Long messages are wrapped to additional lines, when necessary.
You can use the --display_error_number command-line option to request that the diagnostic's numeric
identifier be included in the diagnostic message. When displayed, the diagnostic identifier also indicates
whether the diagnostic can have its severity overridden on the command line. If the severity can be
overridden, the diagnostic identifier includes the suffix -D (for discretionary); otherwise, no suffix is
present. For example:
"Test_name.c", line 7: error #64-D: declaration does not declare anything
struct {};
^
"Test_name.c", line 9: error #77: this declaration has no storage class or type specifier
xxxxx;
^
Because errors are determined to be discretionary based on the severity in a specific context, an error can
be discretionary in some cases and not in others. All warnings and remarks are discretionary.
For some messages, a list of entities (functions, local variables, source files, etc.) is useful; the entities are
listed following the initial error message:
"test.c", line 4: error: more than one instance of overloaded function "f"
matches the argument list:
function "f(int)"
function "f(float)"
argument types are: (double)
f(1.5);
^
In some cases, additional context information is provided. Specifically, the context information is useful
when the front end issues a diagnostic while doing a template instantiation or while generating a
constructor, destructor, or assignment operator function. For example:
"test.c", line 7: error: "A::A()" is inaccessible
B x;
^
detected during implicit generation of "B::B()" at line 7
Without the context information, it is difficult to determine to what the error refers.
If you invoke the compiler with the --quiet option, this is the result:
"err.c", line 9: warning: statement is unreachable
"err.c", line 12: warning: statement is unreachable
Because it is standard programming practice to include break statements at the end of each case arm to
avoid the fall-through condition, these warnings can be ignored. Using the --display_error_number option,
you can find out the diagnostic identifier for these warnings. Here is the result:
[err.c]
"err.c", line 9: warning #111-D: statement is unreachable
"err.c", line 12: warning #111-D: statement is unreachable
Next, you can use the diagnostic identifier of 111 as the argument to the --diag_remark option to treat this
warning as a remark. This compilation now produces no diagnostic messages (because remarks are
disabled by default).
NOTE: You can suppress any non-fatal errors, but be careful to make sure you only suppress
diagnostic messages that you understand and are known not to affect the correctness of
your program.
The --gen_acp_raw option also includes diagnostic identifiers as defined in Table 2-35.
S One of the identifiers in Table 2-35 that indicates the severity of the diagnostic
filename The source file
line number The line number in the source file
column number The column number in the source file
diagnostic The message text for the diagnostic
Diagnostic messages after the end of file are indicated as the last line of the file with a column number of
0. When diagnostic message text requires more than one line, each subsequent line contains the same
file, line, and column information but uses a lowercase version of the diagnostic identifier. For more
information about diagnostic messages, see Section 2.7.
The semantics of the inline keyword in C code follow the C99 standard. The semantics of the inline
keyword in C++ code follow the C++ standard.
The inline keyword is supported in all C++ modes, in relaxed ANSI mode for all C standards, and in strict
ANSI mode for C99. It is disabled in strict ANSI mode for C89, because it is a language extension that
could conflict with a strictly conforming program. If you want to define inline functions while in strict ANSI
C89 mode, use the alternate keyword _ _inline.
Compiler options that affect inlining are: --opt_level, --no_inlining, --auto_inline, -
remove_hooks_when_inlining, --single_inline, --opt_for_space, and -opt_for_speed.
For example, if you use the --single_inline option, the compiler inlines all functions that are called exactly
once. In most cases, single inlining will reduce the code size by a small amount.
/*****************************************************************************/
/* string.h vx.xx */
/* Copyright (c) 1993-2006 Texas Instruments Incorporated */
/* Excerpted ... */
/*****************************************************************************/
#ifdef _INLINE
#define _IDECL static inline
#else
#define _IDECL extern _CODE_ACCESS
#endif
#ifdef _INLINE
/****************************************************************************/
/* strlen */
/****************************************************************************/
static inline size_t strlen(const char *string)
{
size_t n = (size_t)-1;
const char *s = string - 1;
#endif
/****************************************************************************/
/* strlen */
/****************************************************************************/
#undef _INLINE
#include <string>
_CODE_ACCESS size_t strlen(cont char * string)
{
size_t n = (size_t)-1;
const char *s = string - 1;
The --c_src_interlist option prevents the compiler from deleting the interlisted assembly language output
file. The output assembly file, function.asm, is assembled normally.
When you invoke the interlist feature without the optimizer, the interlist runs as a separate pass between
the code generator and the assembler. It reads both the assembly and C/C++ source files, merges them,
and writes the C/C++ statements into the assembly file as comments.
Using the --c_src_interlist option can cause performance and/or code size degradation.
Example 2-4 shows a typical interlisted assembly file.
For more information about using the interlist feature with the optimizer, see Section 3.9.
;----------------------------------------------------------------------
; 1 | int main()
;----------------------------------------------------------------------
;***************************************************************
;* FNAME: _main FR SIZE: 0 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Parameter, 0 Auto, 0 SOE *
;***************************************************************
_main:
;----------------------------------------------------------------------
; 3 | printf("Hello World\n");
;----------------------------------------------------------------------
MOVL XAR4,#SL1 ; |3|
LCR #_printf ; |3|
; call occurs [#_printf] ; |3|
;----------------------------------------------------------------------
; 4 | return 0;
;----------------------------------------------------------------------
;***************************************************************
;* STRINGS *
;***************************************************************
.sect ".econst"
SL1: .string "Hello World",10,0
;***************************************************************
;* UNDEFINED EXTERNAL REFERENCES *
;***************************************************************
.global _printf
--entry_hook[=name] Enables entry hooks. If specified, the hook function is called name. Otherwise,
the default entry hook function name is __entry_hook.
--entry_parm{=name| Specify the parameters to the hook function. The name parameter specifies
address|none} that the name of the calling function is passed to the hook function as an
argument. In this case the signature for the hook function is: void hook(const
char *name);
The address parameter specifies that the address of the calling function is
passed to the hook function. In this case the signature for the hook function is:
void hook(void (*addr)());
The none parameter specifies that the hook is called with no parameters. This
is the default. In this case the signature for the hook function is: void
hook(void);
--exit_hook[=name] Enables exit hooks. If specified, the hook function is called name. Otherwise,
the default exit hook function name is __exit_hook.
--exit_parm{=name| Specify the parameters to the hook function. The name parameter specifies
address|none} that the name of the calling function is passed to the hook function as an
argument. In this case the signature for the hook function is: void hook(const
char *name);
The address parameter specifies that the address of the calling function is
passed to the hook function. In this case the signature for the hook function is:
void hook(void (*addr)());
The none parameter specifies that the hook is called with no parameters. This
is the default. In this case the signature for the hook function is: void
hook(void);
The presence of the hook options creates an implicit declaration of the hook function with the given
signature. If a declaration or definition of the hook function appears in the compilation unit compiled with
the options, it must agree with the signatures listed above.
In C++, the hooks are declared extern "C". Thus you can define them in C (or assembly) without being
concerned with name mangling.
Hooks can be declared inline, in which case the compiler tries to inline them using the same criteria as
other inline functions.
Entry hooks and exit hooks are independent. You can enable one but not the other, or both. The same
function can be used as both the entry and exit hook.
You must take care to avoid recursive calls to hook functions. The hook function should not call any
function which itself has hook calls inserted. To help prevent this, hooks are not generated for inline
functions, or for the hook functions themselves.
You can use the --remove_hooks_when_inlining option to remove entry/exit hooks for functions that are
auto-inlined by the optimizer.
See Section 6.9.16 for information about the NO_HOOKS pragma.
The compiler tools can perform many optimizations to improve the execution speed and reduce the size of
C and C++ programs by simplifying loops, rearranging statements and expressions, and allocating
variables into registers.
This chapter describes how to invoke different levels of optimization and describes which optimizations are
performed at each level. This chapter also describes how you can use the Interlist feature when
performing optimization and how you can profile or debug optimized code.
The levels of optimizations described above are performed by the stand-alone optimization pass. The
code generator performs several additional optimizations, particularly processor-specific optimizations. It
does so regardless of whether you invoke the optimizer. These optimizations are always enabled,
although they are more effective when the optimizer is used.
In certain circumstances, the compiler reverts to a different --call_assumptions level from the one you
specified, or it might disable program-level optimization altogether. Table 3-6 lists the combinations of --
call_assumptions levels and conditions that cause the compiler to revert to other --call_assumptions
levels.
In some situations when you use --program_level_compile and --opt_level=3, you must use a --
call_assumptions option or the FUNC_EXT_CALLED pragma. See Section 3.3.2 for information about
these situations.
Solution — Add the volatile keyword to the C/C++ variables that may be modified by the interrupts. Then,
you can optimize your code in one of these ways:
• You achieve the best optimization by applying the FUNC_EXT_CALLED pragma to all of the
entry-point functions called from the assembly language interrupts, and then compiling with --
program_level_compile --opt_level=3 --call_assumptions=2. Be sure that you use the pragma
with all of the entry-point functions. If you do not, the compiler might remove the entry-point
functions that are not preceded by the FUNC_EXT_CALLED pragma.
• Compile with --program_level_compile --opt_level=3 --call_assumptions=3. Because you do not
use the FUNC_EXT_CALLED pragma, you must use the --call_assumptions=3 option, which is
less aggressive than the --call_assumptions=2 option, and your optimization may not be as
effective.
Keep in mind that if you use --program_level_compile --opt_level=3 without additional options, the
compiler removes the C functions that the assembly functions call. Use the FUNC_EXT_CALLED
pragma to keep these functions.
--gen_profile_info tells the compiler to add instrumentation code to collect profile information. When
the program executes the run-time-support exit() function, the profile data is
written to a PDAT file. This option applies to all the C/C++ source files being
compiled on the command-line.
If the environment variable TI_PROFDATA on the host is set, the data is written
into the specified file. Otherwise, it uses the default filename: pprofout.pdat. The
full pathname of the PDAT file (including the directory name) can be specified
using the TI_PROFDATA host environment variable.
By default, the RTS profile data output routine uses the C I/O mechanism to write
data to the PDAT file. You can install a device handler for the PPHNDL device to
re-direct the profile data to a custom device driver routine. For example, this could
be used to send the profile data to a device that does not use a file system.
Feedback directed optimization requires you to turn on at least some debug
information when using the --gen_profile_info option. This enables the compiler to
output debug information that allows pdd2000 to correlate compiled functions and
their associated profile data.
--use_profile_info specifies the profile information file(s) to use for performing phase 2 of feedback
directed optimization. More than one profile information file can be specified on the
command line; the compiler uses all input data from multiple information files. The
syntax for the option is:
--use_profile_info==file1[, file2, ..., filen]
If no filename is specified, the compiler looks for a file named pprofout.prf in the
directory where the compiler in invoked.
-a Computes the average of the data values in the data sets instead of
accumulating data values
-e exec.out Specifies exec.out is the name of the application executable.
-o application.prf Specifies application.prf is the formatted profile feedback file that is used as the
argument to --use_profile_info during recompilation. If no output file is specified,
the default output filename is pprofout.prf.
filename .pdat Is the name of the profile data file generated by the run-time-support function.
This is the default name and it can be overridden by using the host environment
variable TI_PROFDATA.
The run-time-support function and pdd2000 append to their respective output files and do not overwrite
them. This enables collection of data sets from multiple runs of the application.
--gen_profile_info Adds instrumentation to the compiled code. Execution of the code results in
profile data being emitted to a PDAT file.
--use_profile_info=file.prf Uses profile information for optimization and/or generating code coverage
information.
--analyze=codecov Generates a code coverage information file and continues with profile-based
compilation. Must be used with --use_profile_info.
--analyze_only Generates only a code coverage information file. Must be used with --
use_profile_info. You must specify both --analyze=codecov and --
analyze_only to do code coverage analysis of the instrumented application.
API
Files Created
*.pdat Profile data file, which is created by executing an instrumented program and
used as input to the profile data decoder
*.prf Profiling feedback file, which is created by the profile data decoder and
used as input to the re-compilation step
You can specify two environment variables to control the destination of the code-coverage information file.
• The TI_COVDIR environment variable specifies the directory where the code-coverage file should be
generated. The default is the directory where the compiler is invoked.
• The TI_COVDATA environment variable specifies the name of the code-coverage data file generated
by the compiler. the default is filename.csv where filename is the base-name of the file being compiled.
For example, if foo.c is being compiled, the default code-coverage data file name is foo.csv.
If the code-coverage data file already exists, the compiler appends the new dataset at the end of the file.
Code-coverage data is a comma-separated list of data items that can be conveniently handled by data-
processing tools and scripting languages. The following is the format of code-coverage data:
"filename-with-full-path","funcname",line#,column#,exec-frequency,"comments"
The full filename, function name, and comments appear within quotation marks ("). For example:
"/some_dir/zlib/c2000/deflate.c","_deflateInit2_",216,5,1,"( strm->zalloc )"
Other tools, such as a spreadsheet program, can be used to format and view the code coverage data.
For further information about profile-based optimization and a more detailed description of the profiling
infrastructure, see Section 3.5.
--analyze=codecov Instructs the compiler to generate code coverage analysis information. This
option replaces the previous --codecov option.
--analyze_only Halts compilation after generation of analysis information is completed.
TI_ANALYSIS_DIR Specifies the directory in which the output analysis file will be generated.
In this example, *ctrl is a loop-invariant expression, so the loop is optimized down to a single memory
read. To correct this, declare ctrl as:
volatile unsigned int *ctrl
3.7.2.2 Use the --aliased_variables Option to Indicate That the Following Technique Is Used
The compiler, when invoked with optimization, assumes that any variable whose address is passed as an
argument to a function will not be subsequently modified by an alias set up in the called function.
Examples include:
• Returning the address from a function
• Assigning the address to a global
If you use aliases like this in your code, you must use the --aliased_variables option when you are
optimizing your code. For example, if your code is similar to this, use the --aliased_variables option:
int *glob_ptr;
g()
{
int x = 1;
int *p = f(&x);
*p = 5; /* p aliases x */
*glob_ptr = 10; /* glob_ptr aliases x */
h(x);
}
3.7.2.3 On FPU Targets Only: Use restrict Keyword to Indicate That Pointers Are Not Aliased
On FPU targets, with --opt_level=2, the optimizer performs dependency analysis. To help the compiler
determine memory dependencies, you can qualify a pointer, reference, or array with the restrict keyword.
The restrict keyword is a type qualifier that can be applied to pointers, references, and arrays. Its use
represents a guarantee by the programmer that within the scope of the pointer declaration the object
pointed to can be accessed only by that pointer. Any violation of this guarantee renders the program
undefined. This practice helps the compiler optimize certain sections of code because aliasing information
can be more easily determined. This can improve performance and code size, as more FPU operations
can be parallelized.
As shown in Example 3-1 and Example 3-2 you can use the restrict keyword to tell the compiler that a and
b never point to the same object in foo. Furthermore, the compiler is assured that the objects pointed to by
a and b do not overlap in memory.
When you use the --c_src_interlist and --optimizer_interlist options with optimization, the compiler inserts
its comments and the interlist feature runs before the assembler, merging the original C/C++ source into
the assembly file.
Example 3-5 shows the function from Example 3-4 compiled with the optimization (--opt_level=2) and the -
-c_src_interlist and --optimizer_interlist options. The assembly file contains compiler comments and C
source interlisted with assembly code.
Example 3‑4. The Function From Example 3-3 Compiled With the -O2 and --optimizer_interlist Options
;***************************************************************
;* FNAME: _copy FR SIZE: 0 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Parameter, 0 Auto, 0 SOE *
;***************************************************************
_copy:
;*** 6 ----------------------- if ( n <= 0 ) goto g4;
CMPB AL,#0 ; |6|
B L2,LEQ ; |6|
; branch occurs ; |6|
;*** ----------------------- #pragma MUST_ITERATE(1, 4294967295, 1)
:*** ----------------------- L$1 = n-1;
ADDB AL,#-1
MOVZ AR6,AL
L1:
;*** -----------------------g3:
;*** 7 ----------------------- *str++ = *s++;
;*** 7 ----------------------- if ( (--L$1) != (-1) ) goto g3;
MOV AL,*XAR5++ ; |7|
MOV *XAR4++,AL ; |7|
BANZ L1,AR6--
; branch occurs ; |7|
;*** -----------------------g4:
;*** ----------------------- return;
L2:
LRETR
; return occurs
Example 3‑5. The Function From Example 3-3 Compiled with the --opt_level=2, --optimizer_interlist, and -
-c_src_interlist Options
;----------------------------------------------------------------------
; 2 | int copy (char *str, const char *s, int n)
;----------------------------------------------------------------------
;***************************************************************
;* FNAME: _copy FR SIZE: 0 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* FUNCTION PROPERTIES *
;* 0 Parameter, 0 Auto, 0 SOE *
;***************************************************************
_copy
;* AR4 assigned to _str
;* AR5 assigned to _s
;* AL assigned to _n
;* AL assigned to _n
;* AR5 assigned to _s
;* AR4 assigned to _str
;* AR6 assigned to L$1
;*** 6 ----------------------- if ( n <= 0 ) goto g4;
;----------------------------------------------------------------------
; 4 | int i;
;----------------------------------------------------------------------
;----------------------------------------------------------------------
; 6 | for (i = 0; i < n; i++)
;----------------------------------------------------------------------
CMPB AL,#0 ; |6|
B L2,LEQ ; |6|
; branch occurs ; |6|
;*** ----------------------- #pragma MUST_ITERATE(1, 4294967295, 1)
:*** ----------------------- L$1 = n-1;
ADDB AL,#-1
MOVZ AR6,AL
NOP
L1:
;*** 7 ----------------------- *str++ = *s++;
;*** 7 ----------------------- if ( (--L$1) != (-1) ) goto g3;
;----------------------------------------------------------------------
; 7 | *str++ = *s++;
;----------------------------------------------------------------------
MOV AL,*XAR5++ ; |7|
MOV *XAR4++,AL ; |7|
BANZ L1,AR6--
; branch occurs ; |7|
;*** -----------------------g4:
;*** ----------------------- return;
L2:
LRETR
; return occurs
Debug information increases the size of object files, but it does not affect the size of code or data on the
target. If object file size is a concern and debugging is not needed, use --symdebug:none to disable the
generation of debug information.
The --optimize_with_debug and --symdebug:skeletal options have been deprecated and no longer have
any effect.
The initial mechanism for controlling code space, the --opt_for_space option, has the following
equivalences with the --opt_for_speed option:
--opt_for_space --opt_for_speed
none =4
=0 =3
=1 =2
=2 =1
=3 =0
A fast branch (BF) instruction is generated by default when the --opt_for_speed option is used. When --
opt_for_speed is not used, the compiler generates a BF instruction only when the condition code is one of
NEQ, EQ, NTC and TC. The reason is that BF with these condition codes can be optimized to SBF. There
is a code size penalty to use BF instruction when the condition code is NOT one of NEQ, EQ, NTC and
TC. (Fast branch instructions are also generated for functions with the ramfunc function attribute.)
The --no_fast_branch option is deprecated and has no effect.
Example 3-6 provides an example of C code to be compiled with the --opt_for_space option. The resulting
output is shown in Example 3-7.
ptr[50] = foo();
y = ptr[50] + x + y + a +b + c;
}
FP .set XAR2
.global _prolog_c28x_1
.global _prolog_c28x_2
.global _prolog_c28x_3
.global _epilog_c28x_1
.global _epilog_c28x_2
.sect ".text"
.global _main
;***************************************************************
;* FNAME: _main FR SIZE: 6 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Parameter, 0 Auto, 6 SOE *
;***************************************************************
_main:
FFC XAR7,_prolog_c28x_1
MOVZ AR3,AR4 ; |5|
MOVZ AR2,AH ; |5|
MOVZ AR1,AL ; |5|
LCR #_foo ; |6|
; call occurs [#_foo] ; |6|
MOVW DP,#_ptr
MOVL XAR6,@_ptr ; |6|
MOVB XAR0,#50 ; |6|
MOVW DP,#_y
MOV *+XAR6[AR0],AL ; |6|
MOV AH,@_y ; |7|
MOVW DP,#_x
ADD AH,AL ; |7|
ADD AH,@_x ; |7|
ADD AH,AR3 ; |7|
ADD AH,AR1 ; |7|
ADD AH,AR2 ; |7|
MOVB AL,#0
MOVW DP,#_y
MOV @_y,AH ; |7|
FFC XAR7,_epilog_c28x_1
LRETR
; return occurs
{...}
int i;
long res = 0;
At optimization levels >= -O2, the compiler generates a RPT || DMAC instruction for the example code
above if N is a known even constant.
DMAC instructions can also shift the product left by 1 or right by 1 to 6 before accumulation. For example:
for (i = 0; i < N; i++)
res += (long)src1[i] * src2[i] >> 1; // product shifted right by 1
{...}
int i;
long res = 0;
_nassert((long)src1 % 2 == 0);
_nassert((long)src2 % 2 == 0);
At optimization levels >= -O2, the compiler generates a RPT || DMAC instruction for the example code
above if N is a known even constant.
The _nassert intrinsic generates no code and so is not a compiler intrinsic like those listed in Table 7-6.
Instead, it tells the optimizer that the expression declared with the assert function is true. This can be used
to give hints to the optimizer about what optimizations might be valid. In this example, _nassert is used to
assert that the data addresses represented by the src1 and src2 pointers are 32-bit aligned. You are
responsible for ensuring that only 32-bit aligned data addresses are passed via these pointers. The code
will result in a run-time failure if the asserted conditions are not true.
DMAC instructions can also shift the product left by 1 or right by 1 to 6 before accumulation. For example:
for (i = 0; i < N; i++)
res += (long)src1[i] * src2[i] >> 1; // product shifted right by 1
res += temp;
Example 2:
int *src1, *src2; // src1 and src2 are pointers to int arrays of at
// least size 2N. User must ensure that both are
// 32-bit aligned addresses.
{...}
int i;
long res = 0;
long temp = 0;
res += temp;
In these examples, res holds the final sum of a multiply-accumulate operation on int arrays of length 2*N,
with two computations being performed at a time.
Additionally, an optimization level >= -O2 must be used to generate efficient code. Moreover, if there is
nothing else in the loop body as in these examples, the compiler generates a RPT || DMAC instruction,
further improving performance.
Optimization See
Cost-based register allocation Section 3.14.1
Alias disambiguation Section 3.14.1
Branch optimizations and control-flow simplification Section 3.14.3
Data flow optimizations Section 3.14.4
• Copy propagation
• Common subexpression elimination
• Redundant assignment elimination
Expression simplification Section 3.14.5
Inline expansion of functions Section 3.14.6
Function Symbol Aliasing Section 3.14.7
Induction variable optimizations and strength reduction Section 3.14.8
Loop-invariant code motion Section 3.14.9
Loop rotation Section 3.14.10
Instruction scheduling Section 3.14.11
For this example, the compiler makes aaa an alias of bbb, so that at link time all calls to function aaa
should be redirected to bbb. If the linker can successfully redirect all references to aaa, then the body of
function aaa can be removed and the symbol aaa is defined at the same address as bbb.
For information about using the GCC function attribute syntax to declare function aliases, see
Section 6.14.2
The same loop, when converted to a RPTB loop, looks like this:
RPTB end_label, loop_count
...loop body...
end_label:
A repeat block loop is loaded into a hardware buffer and executed for the specified number of iterations.
This kind of loop has minimal or zero branching overhead, and can improve performance. The loop count
is stored in a special register RB (repeat block register), and the hardware seamlessly decrements the
count without any explicit subtractions. Thus, there is no overhead due to the subtract, the compare, and
the branch. The only overhead is due to the RPTB instruction that executes once before the loop. The
RPTB instruction takes one cycle if the number of iterations is a constant, and 4 cycles otherwise. This
overhead is incurred once per loop.
There are limitations on the minimum and maximum loop size for a loop to qualify for becoming a repeat
block, due to the presence of the buffer. Also, the loop cannot contain any inner loops or function calls.
The C/C++ compiler and assembly language tools provide two methods for linking your programs:
• You can compile individual modules and link them together. This method is especially useful when you
have multiple source files.
• You can compile and link in one step. This method is useful when you have a single source module.
This chapter describes how to invoke the linker with each method. It also discusses special requirements
of linking C/C++ code, including the run-time-support libraries, specifying the type of initialization, and
allocating the program into memory. For a complete description of the linker, see the TMS320C28x
Assembly Language Tools User's Guide.
4.1 Invoking the Linker Through the Compiler (-z Option) ............................................ 84
4.2 Linker Code Optimizations .................................................................................. 86
4.3 Controlling the Linking Process ........................................................................... 86
4.4 Linking C28x and C2XLP Code ............................................................................ 91
When you specify a library as linker input, the linker includes and links only those library members that
resolve undefined references. The linker uses a default allocation algorithm to allocate your program into
memory. You can use the MEMORY and SECTIONS directives in the linker command file to customize
the allocation process. For information, see the TMS320C28x Assembly Language Tools User's Guide.
You can link a C/C++ program consisting of object files prog1.obj, prog2.obj, and prog3.obj, with an
executable object file filename of prog.out with the command:
cl2000 --run_linker --rom_model prog1 prog2 prog3
--output_file=prog.out --library=rts2800_ml.lib
The --run_linker option divides the command line into the compiler options (the options before --
run_linker) and the linker options (the options following --run_linker). The --run_linker option must follow all
source files and compiler options on the command line.
All arguments that follow --run_linker on the command line are passed to the linker. These arguments can
be linker command files, additional object files, linker options, or libraries. These arguments are the same
as described in Section 4.1.1.
All arguments that precede --run_linker on the command line are compiler arguments. These arguments
can be C/C++ source files, assembly files, or compiler options. These arguments are described in
Section 2.2.
You can compile and link a C/C++ program consisting of object files prog1.c, prog2.c, and prog3.c, with an
executable object file filename of prog.out with the command:
cl2000 prog1.c prog2.c prog3.c --run_linker --rom_model --output_file=prog.out
--library=rts2800_ml.lib
If the --issue_remarks option is specified before the --run_linker option during the linker, a remark is
generated indicating which run-time support library was linked in. If a different run-time-support library is
desired than the one reported by --issue_remarks, you must specify the name of the desired run-time-
support library using the --library option and in your linker command files when necessary.
<Linking>
remark: linking in "libc.a"
remark: linking in "rts2800_ml.lib" in place of "libc.a"
When you link your program, you must specify where to allocate the sections in memory. In general,
initialized sections are linked into ROM or RAM; uninitialized sections are linked into RAM. With the
exception of .text, the initialized and uninitialized sections created by the compiler cannot be allocated into
internal program memory.
The linker provides MEMORY and SECTIONS directives for allocating sections. For more information
about allocating sections into memory, see the TMS320C28x Assembly Language Tools User's Guide.
The MEMORY and possibly the SECTIONS directives, might require modification to work with your
system. See the TMS320C28x Assembly Language Tools User's Guide for more information on these
directives.
Example 4‑3. Veneer Function for Linking C2xx and C2XLP Code
.sect ".text"
.global _foo_veneer
.global _foo
_foo_veneer:
;save registers
PUSH AR1:AR0
PUSH AR3:AR2
PUSH AR5:AR4
;set AR1,ARP
MOV AL,SP
SUBB AL,#3
MOV AR1,AL
NOP *ARP1
;restore register
POP AR5:AR4
POP AR3:AR2
POP AR1:AR0LRETR
Since the veneer function frame will act as the frame for all C2XLP calls, it is necessary to add sufficient
size to the frame for any subsequent calls made by the first C2XLP function.
Global variables will be placed in the .ebss sections for C28x C/C++ code. A C2XLP .ebss section is not
guaranteed to begin on a 128-word boundary when linked with C28x code. To avoid this problem, define a
new section, change the C2XLP globals to the new section, and update the linker command file to ensure
this new section begins at a 128-word boundary.
Post-Link Optimizer
The TMS320C28x post-link optimizer removes or modifies assembly language instructions to generate
better code. The post-link optimizer examines the final addresses of symbols determined by linking and
uses this information to make code changes.
Post-link optimization requires the -plink compiler option. The -plink compiler option invokes added passes
of the tools that include running the absolute lister and rerunning the assembler and linker. You must use
the -plink option following the --run_linker option.
5.1 The Post-Link Optimizer’s Role in the Software Development Flow .......................... 93
5.2 Removing Redundant DP Loads .......................................................................... 94
5.3 Tracking DP Values Across Branches .................................................................. 94
5.4 Tracking DP Values Across Function Calls ........................................................... 95
5.5 Other Post-Link Optimizations ............................................................................. 95
5.6 Controlling Post-Link Optimizations ..................................................................... 96
5.7 Restrictions on Using the Post-Link Optimizer ...................................................... 97
5.8 Naming the Outfile (--output_file Option) ............................................................... 97
Figure 5-1. The Post-Link Optimizer in the TMS320C28x Software Development Flow
C/C++
source
files
Macro
source C/C++
files compiler
C/C++ name
Assembler
Archiver demangling
source
utility
Macro
library Assembler
Library-build
Object
Archiver process
files
Run-time-
Library of support Assembler
object library source
files Linker
Post-link
Absolute lister
Executable optimizer
object file
Debugging
Hex-conversion tools
utility
As the flow shows, the absolute lister (abs2000) is also part of the post-link optimizing process. The
absolute lister outputs the absolute addresses of all globally defined symbols and COFF sections. The
post-link optimizer takes .abs files as input and uses these addresses to perform optimizations. The output
is a .pl file, which is an optimized version of the original .asm file. The flow then reruns the assembler and
linker to produce a final output file.
The described flow is supported only when you use the compiler (cl2000) and the -plink option. If you use
a batch file to invoke each tool individually, you must adapt the flow to use the compiler instead. In
addition, you must use the --output_file option to specify an output file name when using the -plink option.
See Section 5.8 for more details.
The advice_only mode is the only post-link optimization support provided for FPU and VCU targets.
If name1 and name2 are linked to the same page, the post-link optimizer determines that loading DP with
the address of name2 is not necessary, and it comments out the redundant load.
MOVZ DP,#name1
ADD @name1,#10
; <<REDUNDANT>> MOVZ DP,#name2
ADD @name2,#10
This optimization can be used on C files as well. Even though the compiler manages the DP for all global
variable references that are defined within a module, it conservatively emits DP loads for any references
to global variables that are externally defined. Using the post-link optimizer can help reduce the number of
DP loads in these instances.
Additionally, the --map_file linker option can be used to generate a listing of symbols sorted by data page
to assist with data layout and DP load reduction. For more information, refer to the Linker Description
chapter in the TMS320C28x Assembly Language Tools User's Guide.
This warning is issued so that if the file is a hand written assembly file, you can try to change the indirect
call/branch to a direct one to obtain the best optimization from the post linker.
.global _foo
_foo:
MOVZ DP, #g1
MOV @_g1, #10
LRETR
The MOVZ DP after the function call to _foo is removed by the post-link optimizer as the variables _g1
and _g2 are in the same page and the function _foo already set the DP.
In order for the post-link optimizer to optimize across the function calls, the functions should have only one
return statement. If you are running the post-link optimizer on hand written assembly that has more than
one return statement per function, the post-link optimization output can be incorrect. You can turn off the
optimization across function calls by specifying the -nf option after the -plink option.
Since ext_sym is externally defined, the assembler chooses a 16-bit encoding for ext_sym. The post-link
optimizer changes the encoding of ext_sym to an 8-bit encoding:
.ref ext_sym
:
:
; << ADD=>ADDB>> ADD AL,#ext_sym
ADDB AL, #ext_sym
Similarly the post-link optimizer attempts to reduce the following 2-word instructions to 1-word instructions:
Assembly statements following the NOPLINK comment are not optimized. Post-link optimization can be
reenabled using the //PLINK// comment.
The PLINK and NOPLINK comment format is not case sensitive. There can be white space between the
semicolon and PLINK delimiter. The PLINK and NOPLINK comments must appear on a separate line,
alone, and must begin in column 1. For example:
; //PLINK//
Because the post-link optimization flow uses the absolute lister, abs2000, it must be included in your path.
The C/C++ compiler supports the C/C++ language standard that was developed by a committee of the
American National Standards Institute (ANSI) and subsequently adopted by the International Standards
Organization (IS0).
The C++ language supported by the C28x is defined by the ANSI/ISO/IEC 14882:2003 standard with
certain exceptions.
• In relaxed ANSI mode, the compiler accepts "void main(void)" and "void main(int argc, char *argv[])" as
alternate definitions of main. The alternate definitions are rejected in strict ANSI mode. (5.1.2.2.1)
• If space is provided for program arguments at link time with the --args option and the program is run
under a system that can populate the .args section (such as CCS), argv[0] will contain the filename of
the executable, argv[1] through argv[argc-1] will contain the command-line arguments to the program,
and argv[argc] will be NULL. Otherwise, the value of argv and argc are undefined. (5.1.2.2.1)
• Interactive devices include stdin, stdout, and stderr (when attached to a system that honors CIO
requests). Interactive devices are not limited to those output locations; the program may access
hardware peripherals that interact with the external state. (5.1.2.3)
• Signals are not supported. The function signal is not supported. (7.14) (7.14.1.1)
• The library function getenv is implemented through the CIO interface. If the program is run under a
system that supports CIO, the system performs getenv calls on the host system and passes the result
back to the program. Otherwise the operation of getenv is undefined. No method of changing the
environment from inside the target program is provided. (7.20.4.5)
• The system function is not supported. (7.20.4.6).
J.3.3. Identifiers
• The compiler does not support multibyte characters in identifiers. (6.4.2)
• The number of significant initial characters in an identifier is unlimited. (5.2.4.1, 6.4.2)
J.3.4 Characters
• The number of bits in a byte (CHAR_BIT) is 16. See Section 6.4 for details about data types. (3.6)
• The execution character set is the same as the basic execution character set: plain ASCII. (5.2.1)
• The values produced for the standard alphabetic escape sequences are as follows: (5.2.2)
• The value of a char object into which any character other than a member of the basic execution
character set has been stored is the ASCII value of that character. (6.2.5)
• Plain char is identical to signed char. (6.2.5, 6.3.1.1)
• The source character set and execution character set are both plain ASCII, so the mapping between
them is one-to-one. This behavior can be modified using the --multibyte_chars option. (6.4.4.4, 5.1.1.2)
• The compiler currently supports only one locale, "C". (6.4.4.4).
• The compiler currently supports only one locale, "C". (6.4.5).
J.3.5 Integers
• No extended integer types are provided. (6.2.5)
• Integer types are represented as two's complement, and there are no trap representations. (6.2.6.2)
• No extended integer types are provided, so there is no change to the integer ranks. (6.3.1.1)
• When an integer is converted to a signed integer type which cannot represent the value, the value is
truncated (without raising a signal) by discarding the bits which cannot be stored in the destination
type; the lowest bits are not modified. (6.3.1.3)
• Right shift of a signed integer value performs an arithmetic (signed) shift. The bitwise operations other
than right shift operate on the bits in exactly the same way as on an unsigned value. That is, after the
usual arithmetic conversions, the bitwise operation is performed without regard to the format of the
integer type, in particular the sign bit. (6.5)
the read and one for the write. Even for architectures with such instructions, it is not guaranteed that
the compiler will be able to map such expressions to an instruction with a single memory operand. It is
not guaranteed that the memory system will lock that memory location for the duration of the
instruction. In a multi-core system, some other core may write the location after a RMW instruction
reads it, but before it writes the result. The TI compiler will not reorder two volatile accesses, but it may
reorder a volatile and a non-volatile access, so volatile cannot be used to create a critical section. Use
some sort of lock if you need to create a critical section. (6.7.3)
J.3.11 Preprocessing directives
• Include directives may have one of two forms, " " or < >. For both forms, the compiler will look for a
real file on-disk by that name using the include file search path. See Section 2.5.2. (6.4.7).
• The value of a character constant in a constant expression that controls conditional inclusion matches
the value of the same character constant in the execution character set (both are ASCII). (6.10.1).
• The compiler uses the file search path to search for an included < > delimited header file. See
Section 2.5.2. (6.10.2).
• he compiler uses the file search path to search for an included " " delimited header file. See
Section 2.5.2. (6.10.2). (6.10.2).
• There is no arbitrary nesting limit for #include processing. (6.10.2).
• See Section 6.9 for a description of the recognized non-standard pragmas. (6.10.6).
• The date and time of translation are always available from the host. (6.10.8).
J.3.12 Library functions
• Almost all of the library functions required for a hosted implementation are provided by the TI library,
with exceptions noted in Section 6.13.1. (5.1.2.1).
• The format of the diagnostic printed by the assert macro is "Assertion failed, (assertion macro
argument), file file, line line". (7.2.1.1).
• No strings other than "C" and "" may be passed as the second argument to the setlocale function
(7.11.1.1).
• No signal handling is supported. (7.14.1.1).
• The +INF, -INF, +inf, -inf, NAN, and nan styles can be used to print an infinity or NaN. (7.19.6.1,
7.24.2.1).
• The output for %p conversion in the fprintf or fwprintf function is the same as %x of the appropriate
size. (7.19.6.1, 7.24.2.1).
• The termination status returned to the host environment by the abort, exit, or _Exit function is not
returned to the host environment. (7.20.4.1, 7.20.4.3, 7.20.4.4).
• The system function is not supported. (7.20.4.6).
J.3.13 Architecture
• The values or expressions assigned to the macros specified in the headers float.h, limits.h, and stdint.h
are described along with the sizes and format of integer types are described in Section 6.4. (5.2.4.2,
7.18.2, 7.18.3)
• The number, order, and encoding of bytes in any object are described in . (6.2.6.1)
• The value of the result of the sizeof operator is the storage size for each type, in terms of bytes. See .
(6.5.3.4)
--check_misra={all|required|advisory|none|rulespec}
#pragma CHECK_MISRA ("{all|required|advisory|none|rulespec}")
#pragma RESET_MISRA ("{all|required|advisory|rulespec}")
--misra_advisory={error|warning|remark|suppress}
--misra_required={error|warning|remark|suppress}
A long long integer constant can have an ll or LL suffix. Without the suffix the value of the constant
determines the type of the constant.
The formatting rules for long long in C I/O require ll in the format string. For example:
printf("%lld", 0x0011223344556677);
printf("%llx", 0x0011223344556677);
The run-time-support library functions, llabs(), strtoll() and strtoull(), are added.
Type Format
float IEEE 32-bit single precision
double IEEE 32-bit single precision
long double IEEE 64-bit double precision
When you initialize a long double to a constant, you must use the l or L suffix. The constant is treated as a
double type without the suffix and the run-time support double-to-long conversion routine is called for the
initialization. This could result in the loss of precision. For example:
long double a = 12.34L; /* correctly initializes to double precision */
long double b = 56.78; /* converts single precision value to double precision */
The formatting rules for long doubles in C I/O require a capital ’L’ in the format string. For example:
printf("%Lg", 1.23L);
printf("%Le", 3.45L);
In response to the change in the long double type to 64-bit IEEE double-precision format, the C28x calling
conventions have changed.
All long double arguments are passed by reference. A long double return value is returned by reference.
The first two long double arguments will pass their addresses in XAR4 and XAR5. All other long double
arguments will have their addresses passed on the stack.
If a function returns a long double, the function making that call will place the return address in XAR6. For
example:
long double foo(long double a, long double b, long double c)
{
long double d = a + b + c;
return d;
}
long double a = 1.2L;
long double b = 2.2L;
long double c = 3.2L;
long double d;
void bar()
{
d = foo(a, b, c);
}
Register Equals
XAR4 The address of a
XAR5 The address of b
*−SP[2] The address of c
XAR6 The address of d
The run-time-support library has been updated to include the necessary long double arithmetic operations
and conversion functions. All C28x floating-point run-time-support routines have had their names updated.
For example, a previous call to the floating point add routine was:
LCR F$$ADD
Any C28x routine that calls floating-point arithmetic or conversion routines will need to be recompiled.
6.5 Keywords
The C28x C/C++ compiler supports all of the standard C89 keywords, including const, volatile, and
register. It also supports all of the standard C99 keywords, including inline and restrict. It also supports TI
extension keywords __interrupt, __cregister, and __asm. The compiler supports the restrict keyword for
FPU targets; for other targets restrict is ignored. Some keywords are not available in strict ANSI mode.
The following keywords may appear in other target documentation and require the same treatment as the
interrupt and restrict keywords:
• trap
• reentrant
• cregister
Using the const keyword, you can define large constant tables and allocate them into system ROM. For
example, to allocate a ROM table, you could use the following definition:
const int digits[] = {0,1,2,3,4,5,6,7,8,9};
The cregister keyword can be used only in file scope. The cregister keyword is not allowed on any
declaration within the boundaries of a function. It can only be used on objects of type integer or pointer.
The cregister keyword is not allowed on objects of any floating-point type or on any structure or union
objects.
The cregister keyword does not imply that the object is volatile. If the control register being referenced is
volatile (that is, can be modified by some external control), then the object must be declared with the
volatile keyword also.
To use the control registers in Table 6-2, you must declare each register as follows. The c28x.h include
file defines all the control registers through this syntax:
Once you have declared the register, you can use the register name directly, though in a limited manner.
IFR is read only and can be set only by using the | (OR) operation with an immediate. IFR can be cleared
only by using the & (AND) operation with an immediate. For example:
IFR |= 0x4;
IFR &= 0x0800
The IER register also can be used in an assignment other than OR and AND. Since the C28x architecture
has limited instructions to manipulate these registers, the compiler terminates with the following message
if illegal use of these registers is found:
>>> Illegal use of control register
See Example 6-1 for an example that declares and uses control registers.
main()
{
IER = x;
IER |= 0x100;
printf("IER = %x\n", IER);
The name c_int00 is the C/C++ entry point. This name is reserved for the system reset interrupt. This
special interrupt routine initializes the system and calls the main() function. Because it has no caller,
c_int00 does not save any registers.
Example 6-3 illustrates using the restrict keyword when passing arrays to a function. Here, the arrays c
and d must not overlap, nor may c and d point to the same array.
At this time the restrict keyword is useful only for FPU targets. For non-FPU targets restrict is ignored.
Any variable which might be modified by something external to the obvious control flow of the program
(such as an interrupt service routine) must be declared volatile. This tells the compiler that an interrupt
function might modify the value at any time, so the compiler should not perform optimizations which will
change the number or order of accesses of that variable. This is the primary purpose of the volatile
keyword. In the following example, the loop intends to wait for a location to be read as 0xFF:
unsigned int *ctrl;
while (*ctrl !=0xFF);
However, in this example, *ctrl is a loop-invariant expression, so the loop is optimized down to a single-
memory read. To get the desired result, define ctrl as:
volatile unsigned int *ctrl;
Here the *ctrl pointer is intended to reference a hardware location, such as an interrupt flag.
The volatile keyword must also be used when accessing memory locations that represent memory-
mapped peripheral devices. Such memory locations might change value in ways that the compiler cannot
predict. These locations might change if accessed, or when some other memory location is accessed, or
when some signal occurs.
Volatile must also be used for local variables in a function which calls setjmp, if the value of the local
variables needs to remain valid if a longjmp occurs.
#include <stdlib.h>
jmp_buf context;
void function()
{
volatile int x = 3;
switch(setjmp(context))
{
case 0: setup(); break;
default:
{
printf("x == %d\n", x); /* We can only reach here if longjmp has occurred; because x's
lifetime begins before the setjmp and lasts through the longjmp,
the C standard requires x be declared "volatile" */
break;
}
}
}
The --unified_memory option can be used if your memory map is configured as a single unified space; this
option allows the compiler to generate more efficient instructions for most memcpy calls and structure
assignments. Even under unified memory, memory for some peripherals and some RAM associated with
those peripherals is allocated only in data memory. If –unified_memory is enabled, you can prevent
program memory address access to specific symbols by declaring those symbols as volatile.
The compiler copies the argument string directly into your output file. The assembler text must be
enclosed in double quotes. All the usual character string escape codes retain their definitions. For
example, you can insert a .byte directive that contains quotes as follows:
__asm("STR: .byte \"abc\"");
The inserted code must be a legal assembly language statement. Like all assembly language statements,
the line of code inside the quotes must begin with a label, a blank, a tab, or a comment (asterisk or
semicolon). The compiler performs no checking on the string; if there is an error, the assembler detects it.
For more information about the assembly language statements, see the TMS320C28x Assembly
Language Tools User's Guide.
The __asm statements do not follow the syntactic restrictions of normal C/C++ statements. Each can
appear as a statement or a declaration, even outside of blocks. This is useful for inserting directives at the
very beginning of a compiled module.
The __asm statement does not provide any way to refer to local variables. If your assembly code needs to
refer to local variables, you will need to write the entire function in assembly code.
For more information, refer to Section 7.5.5.
Note that in C++, the arguments to the CALLS pragma must be the full mangled names for the functions
that can be indirectly called from the calling function.
The GCC-style "calls" attribute syntax, which has the same effect as the CALLS pragma, is as follows:
__attribute__((calls("function_1","function_2",..., "function_n")))
The rulespec parameter is a comma-separated list of rule numbers. See Section 6.3 for details.
The RESET_MISRA pragma can be used to reset any CHECK_MISRA pragmas; see Section 6.9.17.
#pragma CLINK
The RETAIN pragma has the opposite effect of the CLINK pragma. See Section 6.9.18 for more details.
The CODE_SECTION pragma is useful if you have code objects that you want to link into an area
separate from the .text section.
The following example demonstrates the use of the CODE_SECTION pragma.
char bufferA[80];
char bufferB[80];
void main()
{
char c;
c = funcA(1);
c = funcB(2);
}
.sect ".text"
.global _main;
****************************************************************
;* FNAME: _main FR SIZE: 2 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Parameter, 1 Auto, 0 SOE *
;***************************************************************
:_main:
ADDB SP,#2
MOVB AL,#1 ; |12|
LCR #_funcA ; |12|
; call occurs [#_funcA] ; |12|
MOV *-SP[1],AL ; |12|
MOVB AL,#1 ; |13|
LCR #_funcB ; |13|
; call occurs [#_funcB] ; |13|
MOV *-SP[1],AL ; |13|
SUBB SP,#2
LRETR
; return occurs
.sect "codeA"
.global _funcA
;***************************************************************
;* FNAME: _funcA FR SIZE: 1 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Parameter, 1 Auto, 0 SOE *
;***************************************************************
_funcA:
ADDB SP,#1
MOV *-SP[1],AL ; |17|
MOVZ AR6,*-SP[1] ; |18|
ADD AR6,#_bufferA ; |18|
SUBB SP,#1 ; |18|
MOV AL,*+XAR6[0] ; |18|
LRETR
;return occurs
.sect ".text"
.global _funcB;
****************************************************************
;* FNAME: _funcB FR SIZE: 1 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Parameter, 1 Auto, 0 SOE *
;***************************************************************
_funcB:
ADDB SP,#1
MOV *-SP[1],AL ; |22|
MOVZ AR6,*-SP[1] ; |23|
The DATA_SECTION pragma is useful if you have data objects that you want to link into an area separate
from the .ebss section.
Example 6-7 through Example 6-9 demonstrate the use of the DATA_SECTION pragma.
char bufferA[512];
#pragma DATA_SECTION("my_sect")
char bufferB[512];
.global _bufferA
.ebss _bufferA,512,4
.global _bufferB
_bufferB: .usect "my_sect",512,4
The syntax of the diag_suppress, diag_remark, diag_warning, and diag_error pragmas in C is:
The FAST_FUNC_CALL pragma should be applied only to a call to an assembly function that returns with
the LB *XAR7 instruction. See Section 7.5.1 for information on combining C/C++ and assembly code.
Since this pragma should be applied only to assembly functions, if the compiler finds a definition for func
in the file scope, it issues a warning and ignores the pragma.
_add_long:
ADD ACC, *-SP[2]
LB *XAR7
void foo()
{
long x, y;
x = 0xffff;
y = 0xff;
y = add_long(x, y);
}
;***************************************************************
;* FNAME: _foo FR SIZE: 6 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 2 Parameter, 4 Auto, 0 SOE *
;***************************************************************
_foo:
ADDB SP,#6
MOVB ACC,#255
MOVL XAR6,#65535 ; |8|
MOVL *-SP[6],ACC
MOVL *-SP[2],ACC ; |10|
MOVL *-SP[4],XAR6 ; |8|
MOVL ACC,*-SP[4] ; |10|
FFC XAR7,#_add_long ; |10|
; call occurs [#_add_long] ; |10|
MOVL *-SP[6],ACC ; |10|
SUBB SP,#6
LRETR
; return occurs
#pragma FUNC_ALWAYS_INLINE
#pragma FUNC_CANNOT_INLINE
#pragma FUNC_EXT_CALLED
Except for _c_int00, which is the name reserved for the system reset interrupt for C/C++programs, the
name of the interrupt (the func argument) does not need to conform to a naming convention.
When you use program-level optimization, you may need to use the FUNC_EXT_CALLED pragma with
certain options. See Section 3.3.2.
#pragma INTERRUPT
void func( void )
The GCC interrupt attribute syntax, which has the same effects as the INTERRUPT pragma, is as follows.
Note that the interrupt attribute can precede either the function's definition or its declaration.
Except for _c_int00, which is the name reserved for the system reset interrupt for C programs, the name
of the interrupt (the func argument) does not need to conform to a naming convention.
On the FPU, there are two kinds of interrupts - High Priority Interrupt (HPI) and Low Priority Interrupt (LPI).
High priority interrupts use a fast context save and cannot be nested. Low priority interrupts behave like
normal C28x interrupts and can be nested.
The kind of interrupt can be specified by way of the interrupt pragma using an optional second argument.
The C syntax of the pragma is:
The syntax of the GCC attribute, which has the same effects as the INTERRUPT pragma, is:
On FPU, if no interrupt priority is specified LPI is assumed. Interrupts specified with the interrupt keyword
also default to LPI.
The arguments min and max are programmer-guaranteed minimum and maximum trip counts. The trip
count is the number of times a loop iterates. The trip count of the loop must be evenly divisible by multiple.
All arguments are optional. For example, if the trip count could be 5 or greater, you can specify the
argument list as follows:
#pragma MUST_ITERATE(5)
However, if the trip count could be any nonzero multiple of 5, the pragma would look like this:
#pragma MUST_ITERATE(5, , 5) /* Note the blank field for max */
It is sometimes necessary for you to provide min and multiple in order for the compiler to perform
unrolling. This is especially the case when the compiler cannot easily determine how many iterations the
loop will perform (that is, the loop has a complex exit condition).
When specifying a multiple via the MUST_ITERATE pragma, results of the program are undefined if the
trip count is not evenly divisible by multiple. Also, results of the program are undefined if the trip count is
less than the minimum or greater than the maximum specified.
If no min is specified, zero is used. If no max is specified, the largest possible number is used. If multiple
MUST_ITERATE pragmas are specified for the same loop, the smallest max and largest min are used.
In this example, the compiler attempts to generate a loop even without the pragma. However, if
MUST_ITERATE is not specified for a loop such as this, the compiler generates code to bypass the loop,
to account for the possibility of 0 iterations. With the pragma specification, the compiler knows that the
loop iterates at least once and can eliminate the loop-bypassing code.
MUST_ITERATE can specify a range for the trip count as well as a factor of the trip count. For example:
#pragma MUST_ITERATE(8, 48, 8)
This example tells the compiler that the loop executes between 8 and 48 times and that the trip_count
variable is a multiple of 8 (8, 16, 24, 32, 40, 48). The multiple argument allows the compiler to unroll the
loop.
You should also consider using MUST_ITERATE for loops with complicated bounds. In the following
example:
for(i2 = ipos[2]; i2 < 40; i2 += 5) { ...
The compiler would have to generate a divide function call to determine, at run time, the exact number of
iterations performed. The compiler will not do this. In this case, using MUST_ITERATE to specify that the
loop always executes eight times allows the compiler to attempt to generate a loop:
#pragma MUST_ITERATE(8, 8)
#pragma NO_HOOKS
The rulespec parameter is a comma-separated list of rule numbers. See Section 6.3 for details.
#pragma RETAIN
The CLINK pragma has the opposite effect of the RETAIN pragma. See Section 6.9.3 for more details.
In Example 6-13 x and y are put in the section mydata. To reset the current section to the default used by
the compiler, a blank parameter should be passed to the pragma. An easy way to think of the pragma is
that it is like applying the CODE_SECTION or DATA_SECTION pragma to all symbols below it.
#pragma SET_DATA_SECTION("mydata")
int x;
int y;
#pragma SET_DATA_SECTION()
The pragmas apply to both declarations and definitions. If applied to a declaration and not the definition,
the pragma that is active at the declaration is used to set the section for that symbol. Here is an example:
#pragma SET_CODE_SECTION("func1")
extern void func1();
#pragma SET_CODE_SECTION()
...
void func1() { ... }
In Example 6-14 func1 is placed in section func1. If conflicting sections are specified at the declaration
and definition, a diagnostic is issued.
The current CODE_SECTION and DATA_SECTION pragmas and GCC attributes can be used to override
the SET_CODE_SECTION and SET_DATA_SECTION pragmas. For example:
In Example 6-15 x is placed in x_data and y is placed in mydata. No diagnostic is issued for this case.
The pragmas work for both C and C++. In C++, the pragmas are ignored for templates and for implicitly
created objects, such as implicit constructors and virtual function tables.
#pragma UNROLL( n )
If possible, the compiler unrolls the loop so there are n copies of the original loop. The compiler only
unrolls if it can determine that unrolling by a factor of n is safe. In order to increase the chances the loop is
unrolled, the compiler needs to know certain properties:
• The loop iterates a multiple of n times. This information can be specified to the compiler via the
multiple argument in the MUST_ITERATE pragma.
• The smallest possible number of iterations of the loop
• The largest possible number of iterations of the loop
The compiler can sometimes obtain this information itself by analyzing the code. However, sometimes the
compiler can be overly conservative in its assumptions and therefore generates more code than is
necessary when unrolling. This can also lead to not unrolling at all. Furthermore, if the mechanism that
determines when the loop should exit is complex, the compiler may not be able to determine these
properties of the loop. In these cases, you must tell the compiler the properties of the loop by using the
MUST_ITERATE pragma.
Specifying #pragma UNROLL(1) asks that the loop not be unrolled. Automatic loop unrolling also is not
performed in this case.
If multiple UNROLL pragmas are specified for the same loop, it is undefined which pragma is used, if any.
The argument string_literal is interpreted in the same way the tokens following a #pragma directive are
processed. The string_literal must be enclosed in quotes. A quotation mark that is part of the string_literal
must be preceded by a backward slash.
You can use the _Pragma operator to express #pragma directives in macros. For example, the
DATA_SECTION syntax:
#pragma DATA_SECTION( func ," section ")
Is represented by the _Pragma() operator syntax:
_Pragma ("DATA_SECTION( func ,\" section \")")
The following code illustrates using _Pragma to specify the DATA_SECTION pragma in a macro:
...
#define EMIT_PRAGMA(x) _Pragma(#x)
#define COLLECT_DATA(var) EMIT_PRAGMA(DATA_SECTION(var,"mysection"))
COLLECT_DATA(x)
int x;
...
The EMIT_PRAGMA macro is needed to properly expand the quotes that are required to surround the
section argument to the DATA_SECTION pragma.
The linkname of foo is _foo__Fi, indicating that foo is a function that takes a single argument of type int.
To aid inspection and debugging, a name demangling utility is provided that demangles names into those
found in the original C++ source. See Chapter 9 for more information.
Because the linker writes a complete load image of the zeroed .ebss section into the output COFF file, this
method can have the unwanted effect of significantly increasing the size of the output file (but not the
program).
If you burn your application into ROM, you should explicitly initialize variables that require initialization.
The preceding method initializes .ebss to 0 only at load time, not at system reset or power up. To make
these variables 0 at run time, explicitly define them in your code.
For more information about linker command files and the SECTIONS directive, see the linker description
information in the TMS320C28x Assembly Language Tools User's Guide.
6.12.2 Initializing Static and Global Variables With the const Type Qualifier
Static and global variables of type const without explicit initializations are similar to other static and global
variables because they might not be preinitialized to 0 (for the same reasons discussed in Section 6.12).
For example:
const int zero; /* might not be initialized to 0 */
However, the initialization of const global and static variables is different because these variables are
declared and initialized in a section called .econst. For example:
const int zero = 0 /* guaranteed to be 0 */
This feature is particularly useful for declaring a large table of constants, because neither time nor space
is wasted at system startup to initialize the table. Additionally, the linker can be used to place the .econst
section in ROM.
You can use the DATA_SECTION pragma to put the variable in a section other than .econst. For
example, the following C code:
#pragma DATA_SECTION (var, ".mysect")
const int zero=0;
6.13.3 Enabling Strict ANSI/ISO Mode and Relaxed ANSI/ISO Mode (--strict_ansi and --
relaxed_ansi Options)
Under relaxed ANSI/ISO mode (the default), the compiler accepts language extensions that could
potentially conflict with a strictly conforming ANSI/ISO C/C++ program. Under strict ANSI mode, these
language extensions are suppressed so that the compiler will accept all strictly conforming programs.
Use the --strict_ansi option when you know your program is a conforming program and it will not compile
in relaxed mode. In this mode, language extensions that conflict with ANSI/ISO C/C++ are disabled and
the compiler will emit error messages where the standard requires it to do so. Violations that are
considered discretionary by the standard may be emitted as warnings instead.
Examples:
The following is strictly conforming C code, but will not be accepted by the compiler in the default relaxed
mode. To get the compiler to accept this code, use strict ANSI mode. The compiler will suppress the
interrupt keyword language exception, and interrupt may then be used as an identifier in the code.
int main()
{
int interrupt = 0;
return 0;
}
The following is not strictly conforming code. The compiler will not accept this code in strict ANSI mode.
To get the compiler to accept it, use relaxed ANSI mode. The compiler will provide the interrupt keyword
extension and will accept the code
interrupt void isr(void);
int main()
{
return 0;
}
The following code is accepted in all modes. The __interrupt keyword does not conflict with the ANSI/ISO
C standard, so it is always available as a language extension.
__interrupt void isr(void);
int main()
{
return 0;
}
The default mode is relaxed ANSI. This mode can be selected with the --relaxed_ansi (or -pr) option.
Relaxed ANSI mode accepts the broadest range of programs. It accepts all TI language extensions, even
those which conflict with ANSI/ISO, and ignores some ANSI/ISO violations for which the compiler can do
something reasonable. The GCC language extensions described in Section 6.14 are available in relaxed
ANSI/ISO mode.
6.14.1 Extensions
Most of the GCC language extensions are available in the TI compiler when compiling in relaxed ANSI
mode (--relaxed_ansi). Note that the --gcc option is deprecated.
The extensions that the TI compiler supports are listed in Table 6-3, which is based on the list of
extensions found at the GNU web site. The shaded rows describe extensions that are not supported.
(1)
Feature defined for GCC 3.0; definition and examples at http://gcc.gnu.org/onlinedocs/gcc-4.7.2/gcc/C-Extensions.html#C-
Extensions
See Section 6.9.14 for more about the interrupt function attribute.
The format attribute is applied to the declarations of printf, fprintf, sprintf, snprintf, vprintf, vfprintf, vsprintf,
vsnprintf, scanf, fscanf, vfscanf, vscanf, vsscanf, and sscanf in stdio.h. Thus when GCC extensions are
enabled, the data arguments of these functions are type checked against the format specifiers in the
format string argument and warnings are issued when there is a mismatch. These warnings can be
suppressed in the usual ways if they are not desired.
The malloc attribute is applied to the declarations of malloc, calloc, realloc and memalign in stdlib.h.
The ramfunc attribute specifies that a function will be placed in and executed from RAM. The ramfunc
attribute allows the compiler to optimize functions for RAM execution, as well as to automatically copy
functions to RAM on flash-based devices. For example:
__attribute__((ramfunc))
void f(void) {
...
}
The --ramfunc=on option specifies that all functions compiled with this option are placed in and executed
from RAM, even if this function attribute is not used.
Newer TI linker command files support the ramfunc attribute automatically by placing functions with this
attribute in the .TI.ramfunc section. If you have a linker command file that does not include a section
specification for the .TI.ramfunc section, you can modify the linker command file to place this section in
RAM. See the Placing functions in RAM wiki page for more about the ramfunc attribute and option. See
the TMS320C28x Assembly Language Tools User's Guide for details on section placement.
Fast branch instructions are generated for ramfunc functions. Regular branch instructions are generated
for all other functions.
The ramfunc attribute is ignored by the CLA compiler.
The typedef names are not significant. The attributes automatically apply the volatile keyword and handle
alignment. All struct members in byte peripheral structs, whether they are bitfields or not, must have these
attributes applied via typedefs to ensure proper alignment of the struct accesses. Note that struct layout is
different due to differences in alignment, so the bitfields cannot always be accessed via the same
container types as in regular structs.
For example, the bit positions for byte peripheral bitfield types are compared in the following examples to
the positions of regular bitfields. Because 16-bit accesses must be 32-bit aligned, it is not possible to
access bits at offsets 16-31 with a 16-bit container. To access these bits, a 32-bit container must be used.
In example 1, you could create the same layout as in the regular case by changing the field types to
bp_32 for field4 through field6. In example 2, you would change the field types to bp_32 for field2 through
field4.
struct example1 { // regular bits position //byte peripherals
bp_16 field1:9; // 0-8 // 0-8
bp_16 field2:6; // 9-14 // 9-14
bp_32 field3:4; // 15-18 // 15-18
bp_16 field4:1; // 19 // 32
bp_16 field5:5; // 20-24 // 33-37
bp_16 field6:7; // 25-31 // 38-44
};
Because the alignment will create padding in any objects that are declared, it is recommended that you
cast byte peripheral addresses as byte peripheral struct types instead of declaring objects of those struct
types.
Run-Time Environment
This chapter describes the TMS320C28x C/C++ run-time environment. To ensure successful execution of
C/C++ programs, it is critical that all run-time code maintain this environment. It is also important to follow
the guidelines in this chapter if you write assembly language functions that interface with C/C++ code.
7.1.1 Sections
The compiler produces relocatable blocks of code and data called sections. The sections are allocated
into memory in a variety of ways to conform to a variety of system configurations. For more information
about sections and allocating them, see the introductory object file information in the TMS320C28x
Assembly Language Tools User's Guide.
There are two basic types of sections:
• Initialized sections contain data or executable code. Initialized sections are usually, but not always,
read-only. The C/C++ compiler creates the following initialized sections:
– The .binit section contains boot time copy tables. This is a read-only section. For details on BINIT,
see the TMS320C28x Assembly Language Tools User's Guide for linker command file information.
– The .cinit section and the .pinit section contain tables for initializing variables and constants.
These are read-only sections. The C28x .cinit record is limited to 16 bits. This limits initialized
objects to 64K.
– The .econst section contains string constants, string literals, switch tables, the declaration and
initialization of global and static variables, and data defined with the C/C++ qualifier const (provided
the constant is not also defined as volatile). This is a read-only section. String literals are placed in
the .econst:.string subsection to enable greater link-time placement control.
– The .switch section contains tables for switch statements.
– The .text section contains all the executable code and compiler-generated constants. This section
is usually read-only.
• Uninitialized sections reserve space in memory (usually RAM). A program can use this space at run
time to create and store variables. The compiler creates the following uninitialized sections:
– The .ebss section reserves space for global and static variables defined. At program startup time,
the C/C++ boot routine copies data out of the .cinit section (which can be in ROM) and uses it for
initializing variables in the .ebss section.
– The .stack section reserves memory for the C/C++ software stack. This memory is used to pass
arguments to functions and to allocate space for local variables.
– The .esysmem section reserves space for dynamic memory allocation. The reserved space is
used by dynamic memory allocation routines, such as malloc, calloc, realloc, or new. If a C/C++
program does not use these functions, the compiler does not create the .esysmem section.
The assembler creates the default sections .text, .ebss, and .data. You can instruct the compiler to create
additional sections by using the CODE_SECTION and DATA_SECTION pragmas (see Section 6.9.5 and
Section 6.9.7).
The linker takes the individual sections from different object files and combines sections that have the
same name. The resulting output sections and the appropriate placement in memory for each section are
listed in Table 7-1. You can place these output sections anywhere in the address space as needed to
meet system requirements.
You can use the SECTIONS directive in the linker command file to customize the section-allocation
process. For more information about allocating sections into memory, see the linker description chapter in
the TMS320C28x Assembly Language Tools User's Guide.
The run-time stack grows up from low addresses to higher addresses. By default, the stack is allocated in
the .stack section. (See the run-time-support boot.asm file.) The compiler uses the hardware stack pointer
(SP) to manage this stack.
For frames that exceed 63 words in size (the maximum reach of the SP offset addressing mode), the
compiler uses XAR2 as a frame pointer (FP). Each function invocation creates a new frame at the top of
the stack, from which local and temporary variables are allocated. The FP points at the beginning of this
frame to access memory locations that cannot be referenced directly using the SP.
The stack size is set by the linker. The linker also creates a global symbol, __STACK_SIZE_, and assigns
it a value equal to the size of the stack in bytes. The default stack size is 1K words. You can change the
size of the stack at link time by using the --stack_size linker option.
Stack Overflow
NOTE: The compiler provides no means to check for stack overflow during compilation or at run
time. A stack overflow disrupts the run-time environment, causing your program to fail. Be
sure to allow enough space for the stack to grow. You can use the --entry_hook option to
add code to the beginning of each function to check for stack overflow; see Section 2.13.
For an .econst section, link with a linker command file that contains the following entries:
SECTIONS
{ ...
.econst : load = PROG PAGE 1, run = DATA PAGE 1
{
/* GET RUN ADDRESS */
__econst_run = .;
/* MARK LOAD ADDRESS */
*(.ec_mark)
/* ALLOCATE .econst */
*(.econst)
/* COMPUTE LENGTH */
__econst_length = - .__econst_run;
}
}
In your linker command file, you can substitute the name PROG with the name of a memory area on page
0 and DATA with the name of a memory area on page 1. The rest of the command file must use the
names as above. The code in boot.asm that is enabled when you change CONST_COPY to 1 depends on
the linker command file using these names in this manner. To change any of the names, you must edit
boot.asm and change the names in the same way.
Table 7-5 shows the additional status fields used by the compiler for FPU Targets.
Table 7-5. Floating-Point Status Register (STF (1)) Fields For FPU Targets Only
Field Name Presumed Value Modified
LVF (2) (3)
Latched overflow float flag - Yes
(2) (3)
LUF Latched underflow float flag - Yes
NF (2) Negative float flag - Yes
ZF (2) Zero float flag - Yes
NI (2) Negative integer flag - Yes
(2)
ZI Zero integer flag bit - Yes
TF (2) Test flag bit - Yes
RNDF32 Round F32 mode (4) - Yes
(4)
RNDF64 Round F64 mode - Yes
SHDWS Shadow mode status - Yes
(1)
Unused STF register bits read 0 and writes are ignored.
(2)
Specified flags in the STF register can be exported to the ST0 register by way of the MOVST0
instruction.
(3)
The LVF and LUF flag signals can be connected to the PIE to generate an overflow-and-underflow
interrupt. This can be a useful debug tool.
(4)
If RNDF32 or RNDF64 is 0, mode is round to zero (truncate), otherwise mode is round to nearest
(even).
All other status register fields are not used and do not affect code generated by the compiler.
Figure 7-1 illustrates a typical function call. In this example, parameters that cannot be placed in registers
are passed to the function on the stack. The function then allocates local variables and calls another
function. This example shows the allocated local frame and argument block for the called function.
Functions that have no local variables and do not require an argument block do not allocate a local frame.
The term argument block refers to the part of the local frame used to pass arguments to other functions.
Parameters are passed to a function by moving them into the argument block rather than pushing them on
the stack. The local frame and argument block are allocated at the same time.
SP
Local RPC =
argument Return
block Address
Local
SP frame
(c) If there are any 32-bit arguments (longs or floats) the first is placed in the 32-bit ACC (AH/AL). All
other 32-bit arguments are placed on the stack in reverse order.
func1(long a, long long b, int c, int* d);
stack ACC/P XAR5, XAR4
(d) Pointer arguments are placed in XAR4 and XAR5. All other pointers are placed on the stack.
(e) Remaining 16-bit arguments are placed in the order AL, AH, XAR4, XAR5 if they are available.
4. Any remaining arguments not placed in registers are pushed on the stack in reverse order. That is, the
leftmost argument that is placed on the stack is pushed on the stack last. All 32-bit arguments are
aligned to even addresses on the stack.
A structure argument is passed as the address of the structure. The called function must make a local
copy.
For a function declared with an ellipsis, indicating that it is called with varying numbers of arguments,
the convention is slightly modified. The last explicitly declared argument is passed on the stack so that
its stack address can act as a reference for accessing the undeclared arguments.
5. The stack pointer (SP) must be even-aligned by the parent function prior to making a call to the child
function. This is done by incrementing the stack pointer by 1, if necessary. If needed, the coder should
increment the SP before making the call.
Some examples of function calls that show where arguments are placed are listed below:
func1 (int a, int b. long c)
XAR4 XAR5 AH/AL
func1 (long a, int b, long c) ;
AH/AL XAR4 stack
vararg (int a, int b, int c, ...)
AL AH stack
6. The caller calls the function using the LCR instruction. The RPC register value is pushed on the stack.
The return address is then stored in the RPC register.
7. The stack is aligned at function boundary.
The largest offset available using *-SP [offset] is 63. If an object is too far away from the SP to use this
mode of access, the compiler uses the FP (XAR2). Since FP points at the bottom of the frame, accesses
made with the FP use either *+FP [offset] or *+FP [AR0/AR1] addressing modes. Since large frames
require utilizing XAR2 and possibly an index register, extra code and resources are required to make local
accesses.
• When you call a C/C++ function from assembly language, load the designated registers with
arguments and push the remaining arguments onto the stack as described in Section 7.3.1.
When accessing arguments passed in from a C/C++ function, these same conventions apply.
• Longs and floats are stored in memory with the least significant word at the lower address.
• Structures are returned as described in Section 7.3.2.
• No assembly module should use the .cinit section for any purpose other than autoinitialization of global
variables. The C/C++ startup routine assumes that the .cinit section consists entirely of initialization
tables. Disrupting the tables by putting other information in .cinit can cause unpredictable results.
• The compiler prepends an underscore ( _ ) to the beginning of all identifiers. In assembly language
modules, you must use the prefix _ for all objects that are to be accessible from C/C++. For example, a
C/C++ object named x is called _x in assembly language. For identifiers that are to be used only in an
assembly language module or modules, any name that does not begin with an underscore can be
safely used without conflicting with a C/C++ identifier.
• The compiler assigns linknames to all external objects. Thus, when you write assembly language code,
you must use the same linknames as those assigned by the compiler. See Section 6.11 for details.
• Any object or function declared in assembly language that is accessed or called from C/C++ must be
declared with the .def or .global directive in the assembly language modifier. This declares the symbol
as external and allows the linker to resolve references to it.
Likewise, to access a C/C++ function or object from assembly language, declare the C/C++ object with
the .ref or .global directive in the assembly language module. This creates an undeclared external
reference that the linker resolves.
• Because compiled code runs with the PAGE0 mode bit reset, if you set the PAGE0 bit to 1 in your
assembly language function, you must set it back to 0 before returning to compiled code.
• If you define a structure in assembly and access it in C using extern struct, the structure should be
blocked. The compiler assumes that structure definitions are blocked to optimize the DP load. So the
definition should honor this assumption. You can block the structure by specifying the blocking flag in
the .usect directive. See the TMS320C28x Assembly Language Tools User’s Guide for more
information on these directives.
extern "C"{
extern int asmfunc(int a); /* declare external asm function */
int gvar = 0; /* define global variable */
}
void main()
{
int i = 5;
i = asmfunc(i); /* call function normally */
}
.global _gvar
.global _asmfunc
_asmfunc:
MOVZ DP,#_gvar
ADDB AL,#5
MOV @_gvar,AL
LRETR
In the C++ program in Example 7-1, the extern “C” declaration tells the compiler to use C naming
conventions (i.e., no name mangling). When the linker resolves the .global _asmfunc reference, the
corresponding definition in the assembly file will match.
The parameter i is passed in register AL.
Because you are referencing only the symbol's value as stored in the symbol table, the symbol's declared
type is unimportant. In Example 7-5, int is used. You can reference linker-defined symbols in a similar
manner.
The intrinsics listed in Table 7-6 are included. They correspond to the indicated TMS320C28x assembly
language instruction(s). See the TMS320C28x CPU and Instruction Set Reference Guide for more
information.
The following intrinsics perform hardware instructions using the Trigonometric Math Unit (TMU). These
intrinsics are enabled if the --tmu_support=tmu0 compiler option is used.
Initializing Variables
NOTE: In ANSI/ISO C, global and static variables that are not explicitly initialized must be set to 0
before program execution. The C/C++ compiler does not perform any preinitialization of
uninitialized variables. Explicitly initialize any variable that must have an initial value of 0.
The easiest method is to have a loader clear the .ebss section before the program starts
running. Another method is to set a fill value of 0 in the linker control map for the .ebss
section.
You cannot use these methods with code that is burned into ROM.
Global variables are either autoinitialized at run time or at load time; see Section 7.9.3.2 and
Section 7.9.3.3. Also see Section 6.12.
Example 7-7 shows initialized global variables defined in C. Example 7-8 shows the corresponding
initialization table.
int i= 23;
far int j[2] = { 1,2};
.global _i
.ebss _i,1,1,0
.global _j
_j: .usect .ebss,2,1,0
.sect ".cinit"
.align 1
.field 1,16
.field _i+0,16
.field 23,16 ; _i @ 0
.sect ".cinit"
.align 1
.field -IR_1,16
.field _j+0,32
.field 1,16 ; _j[0] @ 0
.field 2,16 ; _j[1] @ 16
IR_1: .set2
The .cinit section must contain only initialization tables in this format. When interfacing assembly language
modules, do not use the .cinit section for any other purpose.
The table in the .pinit section simply consists of a list of addresses of constructors to be called (see
Figure 7-3). The constructors appear in the table after the .cinit initialization.
Address of constructor 1
Address of constructor 2
Address of constructor 3
•
•
Address of constructor n
When you use the --rom_model or --ram_model option, the linker combines the .cinit sections from all the
C modules and appends a null word to the end of the composite .cinit section. This terminating record
appears as a record with a size field of 0 and marks the end of the initialization tables.
Likewise, the --rom_model or --ram_model link option causes the linker to combine all of the .pinit sections
from all C/C++ modules and append a null word to the end of the composite .pinit section. The boot
routine knows the end of the global constructor table when it encounters a null constructor address.
The const-qualified variables are initialized differently; see Section 6.5.1.
Regardless of the use of the --rom_model or --ram_model options, the .pinit section is always loaded and
processed at run time.
Some of the features of C/C++ (such as I/O, dynamic memory allocation, string operations, and
trigonometric functions) are provided as an ANSI/ISO C/C++ standard library, rather than as part of the
compiler itself. The TI implementation of this library is the run-time-support library (RTS). The C/C++
compiler implements the ISO standard library except for those facilities that handle exception conditions,
signal, and locale issues (properties that depend on local language, nationality, or culture). Using the
ANSI/ISO standard library ensures a consistent set of functions that provide for greater portability.
In addition to the ANSI/ISO-specified functions, the run-time-support library includes routines that give you
processor-specific commands and direct C language I/O requests. These are detailed in Section 8.1 and
Section 8.2.
A library-build utility is provided with the code generation tools that lets you create customized run-time-
support libraries. This process is described in Section 8.4 .
170 Using Run-Time-Support Functions and Building Libraries SPRU514J – January 2016
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
www.ti.com C and C++ Run-Time Support Libraries
SPRU514J – January 2016 Using Run-Time-Support Functions and Building Libraries 171
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
C and C++ Run-Time Support Libraries www.ti.com
rts2800_ml.libor rts2800_fpu32.lib
172 Using Run-Time-Support Functions and Building Libraries SPRU514J – January 2016
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
www.ti.com The C I/O Functions
SPRU514J – January 2016 Using Run-Time-Support Functions and Building Libraries 173
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
The C I/O Functions www.ti.com
void main()
{
FILE *fid;
fid = fopen("myfile","w");
fprintf(fid,"Hello, world\n");
fclose(fid);
Issuing the following compiler command compiles, links, and creates the file main.out from the run-time-
support library:
cl2000 main.c --run_linker --heap_size=400 --library=rts2800_ml.lib --output_file=main.out
174 Using Run-Time-Support Functions and Building Libraries SPRU514J – January 2016
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
www.ti.com The C I/O Functions
Description The open function opens the file specified by path and prepares it for I/O.
• The path is the filename of the file to be opened, including an optional directory path
and an optional device specifier (see Section 8.2.5).
• The flags are attributes that specify how the file is manipulated. The flags are
specified using the following symbols:
O_RDONLY (0x0000) /* open for reading */
O_WRONLY (0x0001) /* open for writing */
O_RDWR (0x0002) /* open for read & write */
O_APPEND (0x0008) /* append on each write */
O_CREAT (0x0200) /* open with file create */
O_TRUNC (0x0400) /* open with truncation */
O_BINARY (0x8000) /* open in binary mode */
Low-level I/O routines allow or disallow some operations depending on the flags used
when the file was opened. Some flags may not be meaningful for some devices,
depending on how the device implements files.
• The file_descriptor is assigned by open to an opened file.
The next available file descriptor is assigned to each new file opened.
Return Value The function returns one of the following values:
non-negative file descriptor if successful
-1 on failure
SPRU514J – January 2016 Using Run-Time-Support Functions and Building Libraries 175
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
close — Close File for I/O www.ti.com
Description The close function closes the file associated with file_descriptor.
The file_descriptor is the number assigned by open to an opened file.
Description The read function reads count characters into the buffer from the file associated with
file_descriptor.
• The file_descriptor is the number assigned by open to an opened file.
• The buffer is where the read characters are placed.
• The count is the number of characters to read from the file.
Description The write function writes the number of characters specified by count from the buffer to
the file associated with file_descriptor.
• The file_descriptor is the number assigned by open to an opened file.
• The buffer is where the characters to be written are located.
• The count is the number of characters to write to the file.
176 Using Run-Time-Support Functions and Building Libraries SPRU514J – January 2016
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
www.ti.com lseek — Set File Position Indicator
Description The lseek function sets the file position indicator for the given file to a location relative to
the specified origin. The file position indicator measures the position in characters from
the beginning of the file.
• The file_descriptor is the number assigned by open to an opened file.
• The offset indicates the relative offset from the origin in characters.
• The origin is used to indicate which of the base locations the offset is measured from.
The origin must be one of the following macros:
SEEK_SET (0x0000) Beginning of file
SEEK_CUR (0x0001) Current value of the file position indicator
SEEK_END (0x0002) End of file
Return Value The return value is one of the following:
# new value of the file position indicator if successful
(off_t)-1 on failure
Description The unlink function deletes the file specified by path. Depending on the device, a deleted
file may still remain until all file descriptors which have been opened for that file have
been closed. See Section 8.2.3.
The path is the filename of the file, including path information and optional device prefix.
(See Section 8.2.5.)
SPRU514J – January 2016 Using Run-Time-Support Functions and Building Libraries 177
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
rename — Rename File www.ti.com
NOTE: The optional device specified in the new name must match the device of
the old name. If they do not match, a file copy would be required to
perform the rename, and rename is not capable of this action.
178 Using Run-Time-Support Functions and Building Libraries SPRU514J – January 2016
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
www.ti.com DEV_open — Open File for I/O
Syntax int DEV_open (const char * path , unsigned flags , int llv_fd );
Description This function finds a file matching path and opens it for I/O as requested by flags.
• The path is the filename of the file to be opened. If the name of a file passed to open
has a device prefix, the device prefix will be stripped by open, so DEV_open will not
see it. (See Section 8.2.5 for details on the device prefix.)
• The flags are attributes that specify how the file is manipulated. The flags are
specified using the following symbols:
O_RDONLY (0x0000) /* open for reading */
O_WRONLY (0x0001) /* open for writing */
O_RDWR (0x0002) /* open for read & write */
O_APPEND (0x0008) /* append on each write */
O_CREAT (0x0200) /* open with file create */
O_TRUNC (0x0400) /* open with truncation */
O_BINARY (0x8000) /* open in binary mode */
See POSIX for further explanation of the flags.
• The llv_fd is treated as a suggested low-level file descriptor. This is a historical
artifact; newly-defined device drivers should ignore this argument. This differs from
the low-level I/O open function.
This function must arrange for information to be saved for each file descriptor, typically
including a file position indicator and any significant flags. For the HOST version, all the
bookkeeping is handled by the debugger running on the host machine. If the device uses
an internal buffer, the buffer can be created when a file is opened, or the buffer can be
created during a read or write.
Return Value This function must return -1 to indicate an error if for some reason the file could not be
opened; such as the file does not exist, could not be created, or there are too many files
open. The value of errno may optionally be set to indicate the exact error (the HOST
device does not set errno). Some devices might have special failure conditions; for
instance, if a device is read-only, a file cannot be opened O_WRONLY.
On success, this function must return a non-negative file descriptor unique among all
open files handled by the specific device. The file descriptor need not be unique across
devices. The device file descriptor is used only by low-level functions when calling the
device-driver-level functions. The low-level function open allocates its own unique file
descriptor for the high-level functions to call the low-level functions. Code that uses only
high-level I/O functions need not be aware of these file descriptors.
SPRU514J – January 2016 Using Run-Time-Support Functions and Building Libraries 179
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
DEV_close — Close File for I/O www.ti.com
Return Value This function should return -1 to indicate an error if the file descriptor is invalid in some
way, such as being out of range or already closed, but this is not required. The user
should not call close() with an invalid file descriptor.
Description The read function reads count bytes from the input file associated with dev_fd.
• The dev_fd is the number assigned by open to an opened file.
• The buf is where the read characters are placed.
• The count is the number of characters to read from the file.
Return Value This function must return -1 to indicate an error if for some reason no bytes could be
read from the file. This could be because of an attempt to read from a O_WRONLY file,
or for device-specific reasons.
If count is 0, no bytes are read and this function returns 0.
This function returns the number of bytes read, from 0 to count. 0 indicates that EOF
was reached before any bytes were read. It is not an error to read less than count bytes;
this is common if the are not enough bytes left in the file or the request was larger than
an internal device buffer size.
Syntax int DEV_write (int dev_fd , const char * buf , unsigned count );
Return Value This function must return -1 to indicate an error if for some reason no bytes could be
written to the file. This could be because of an attempt to read from a O_RDONLY file,
or for device-specific reasons.
180 Using Run-Time-Support Functions and Building Libraries SPRU514J – January 2016
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
www.ti.com DEV_lseek — Set File Position Indicator
Description This function sets the file's position indicator for this file descriptor as lseek.
If lseek is supported, it should not allow a seek to before the beginning of the file, but it
should support seeking past the end of the file. Such seeks do not change the size of
the file, but if it is followed by a write, the file size will increase.
Return Value If successful, this function returns the new value of the file position indicator.
This function must return -1 to indicate an error if for some reason no bytes could be
written to the file. For many devices, the lseek operation is nonsensical (e.g. a computer
monitor).
Description Remove the association of the pathname with the file. This means that the file may no
longer be opened using this name, but the file may not actually be immediately removed.
Depending on the device, the file may be immediately removed, but for a device which
allows open file descriptors to point to unlinked files, the file will not actually be deleted
until the last file descriptor is closed. See Section 8.2.3.
Return Value This function must return -1 to indicate an error if for some reason the file could not be
unlinked (delayed removal does not count as a failure to unlink.)
If successful, this function returns 0.
Description This function changes the name associated with the file.
• The old_name is the current name of the file.
• The new_name is the new name for the file.
Return Value This function must return -1 to indicate an error if for some reason the file could not be
renamed, such as the file doesn't exist, or the new name already exists.
SPRU514J – January 2016 Using Run-Time-Support Functions and Building Libraries 181
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
The C I/O Functions www.ti.com
#include <stdio.h>
#include <file.h>
#include "mydevice.h"
void main()
{
add_device("mydevice", _MSA,
MYDEVICE_open, MYDEVICE_close,
MYDEVICE_read, MYDEVICE_write,
MYDEVICE_lseek, MYDEVICE_unlink, MYDEVICE_rename);
/*-----------------------------------------------------------------------*/
/* Re-open stderr as a MYDEVICE file */
/*-----------------------------------------------------------------------*/
if (!freopen("mydevice:stderrfile", "w", stderr))
{
puts("Failed to freopen stderr");
exit(EXIT_FAILURE);
}
/*-----------------------------------------------------------------------*/
/* stderr should not be fully buffered; we want errors to be seen as */
/* soon as possible. Normally stderr is line-buffered, but this example */
/* doesn't buffer stderr at all. This means that there will be one call */
/* to write() for each character in the message. */
/*-----------------------------------------------------------------------*/
if (setvbuf(stderr, NULL, _IONBF, 0))
{
puts("Failed to setvbuf stderr");
exit(EXIT_FAILURE);
}
/*-----------------------------------------------------------------------*/
/* Try it out! */
/*-----------------------------------------------------------------------*/
printf("This goes to stdout\n");
fprintf(stderr, "This goes to stderr\n"); }
182 Using Run-Time-Support Functions and Building Libraries SPRU514J – January 2016
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
www.ti.com The C I/O Functions
Use the low-level function add_device() to add your device to the device_table. The device table is a
statically defined array that supports n devices, where n is defined by the macro _NDEVICE found in
stdio.h/cstdio.
The first entry in the device table is predefined to be the host device on which the debugger is running.
The low-level routine add_device() finds the first empty position in the device table and initializes the
device fields with the passed-in arguments. For a complete description, see the add_device function.
If no device prefix is used, the HOST device will be used to open the file.
Description The add_device function adds a device record to the device table allowing that device to
be used for I/O from C. The first entry in the device table is predefined to be the HOST
device on which the debugger is running. The function add_device() finds the first empty
position in the device table and initializes the fields of the structure that represent a
device.
To open a stream on a newly added device use fopen( ) with a string of the format
devicename : filename as the first argument.
• The name is a character string denoting the device name. The name is limited to 8
characters.
• The flags are device characteristics. The flags are as follows:
_SSA Denotes that the device supports only one open stream at a time
_MSA Denotes that the device supports multiple open streams
More flags can be added by defining them in file.h.
• The dopen, dclose, dread, dwrite, dlseek, dunlink, and drename specifiers are
function pointers to the functions in the device driver that are called by the low-level
functions to perform I/O on the specified device. You must declare these functions
with the interface specified in Section 8.2.2. The device driver for the HOST that the
TMS320C28x debugger is run on are included in the C I/O library.
SPRU514J – January 2016 Using Run-Time-Support Functions and Building Libraries 183
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
add_device — Add Device to Device Table www.ti.com
#include <file.h>
#include <stdio.h>
/****************************************************************************/
/* Declarations of the user-defined device drivers */
/****************************************************************************/
extern int MYDEVICE_open(const char *path, unsigned flags, int fno);
extern int MYDEVICE_close(int fno);
extern int MYDEVICE_read(int fno, char *buffer, unsigned count);
extern int MYDEVICE_write(int fno, const char *buffer, unsigned count);
extern off_t MYDEVICE_lseek(int fno, off_t offset, int origin);
extern int MYDEVICE_unlink(const char *path);
extern int MYDEVICE_rename(const char *old_name, char *new_name);
main()
{
FILE *fid;
add_device("mydevice", _MSA, MYDEVICE_open, MYDEVICE_close, MYDEVICE_read,
MYDEVICE_write, MYDEVICE_lseek, MYDEVICE_unlink, MYDEVICE_rename);
fid = fopen("mydevice:test","w");
fprintf(fid,"Hello, world\n");
fclose(fid);
}
184 Using Run-Time-Support Functions and Building Libraries SPRU514J – January 2016
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
www.ti.com Handling Reentrancy (_register_lock() and _register_unlock() Functions)
The arguments to _register_lock() and _register_unlock() should be functions which take no arguments
and return no values, and which implement some sort of global semaphore locking:
extern volatile sig_atomic_t *sema = SHARED_SEMAPHORE_LOCATION;
static int sema_depth = 0;
static void my_lock(void)
{
while (ATOMIC_TEST_AND_SET(sema, MY_UNIQUE_ID) != MY_UNIQUE_ID);
sema_depth++;
}
static void my_unlock(void)
{
if (!--sema_depth) ATOMIC_CLEAR(sema);
}
The run-time-support nests calls to _lock(), so the primitives must keep track of the nesting level.
SPRU514J – January 2016 Using Run-Time-Support Functions and Building Libraries 185
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
Library-Build Process www.ti.com
All three of these programs are provided as a non-optional feature of CCS 5.1. They are also available as
part of the optional XDC Tools feature if you are using an earlier version of CCS.
The mklib program looks for these executables in the following order:
1. in your PATH
2. in the directory getenv("CCS_UTILS_DIR")/cygwin
3. in the directory getenv("CCS_UTILS_DIR")/bin
4. in the directory getenv("XDCROOT")
5. in the directory getenv("XDCROOT")/bin
If you are invoking mklib from the command line, and these executables are not in your path, you must set
the environment variable CCS_UTILS_DIR such that getenv("CCS_UTILS_DIR")/bin contains the correct
programs.
186 Using Run-Time-Support Functions and Building Libraries SPRU514J – January 2016
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
www.ti.com Library-Build Process
Now that the linker has decided which library to use, it checks whether the run-time-support library is
present in C2000_C_DIR . The library must be in exactly the same directory as the index library libc.a. If
the library is not present, the linker invokes mklib to build it. This happens when the library is missing,
regardless of whether the user specified the name of the library directly or allowed the linker to pick the
best library from the index library.
The mklib program builds the requested library and places it in 'lib' directory part of C2000_C_DIR in the
same directory as the index library, so it is available for subsequent compilations.
Things to watch out for:
• The linker invokes mklib and waits for it to finish before finishing the link, so you will experience a one-
time delay when an uncommonly-used library is built for the first time. Build times of 1-5 minutes have
been observed. This depends on the power of the host (number of CPUs, etc).
• In a shared installation, where an installation of the compiler is shared among more than one user, it is
possible that two users might cause the linker to rebuild the same library at the same time. The mklib
program tries to minimize the race condition, but it is possible one build will corrupt the other. In a
shared environment, all libraries which might be needed should be built at install time; see
Section 8.4.2.2 for instructions on invoking mklib directly to avoid this problem.
• The index library must exist, or the linker is unable to rebuild libraries automatically.
• The index library must be in a user-writable directory, or the library is not built. If the compiler
installation must be installed read-only (a good practice for shared installation), any missing libraries
must be built at installation time by invoking mklib directly.
• The mklib program is specific to a certain version of a certain library; you cannot use one compiler
version's run-time support's mklib to build a different compiler version's run-time support library.
SPRU514J – January 2016 Using Run-Time-Support Functions and Building Libraries 187
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
Library-Build Process www.ti.com
Some targets have many libraries, so this step can take a long time. To build a subset of the libraries,
invoke mklib individually for each desired library.
188 Using Run-Time-Support Functions and Building Libraries SPRU514J – January 2016
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
www.ti.com Library-Build Process
Examples:
To build all standard libraries and place them in the compiler's library directory:
mklib --all --index=$C_DIR/lib
To build one standard library and place it in the compiler's library directory:
mklib --pattern=rts2800_ml.lib --index=$C_DIR/lib
To build a custom library that is just like rts2800_ml.lib, but has symbolic debugging support enabled:
mklib --pattern=rts2800_ml.lib --extra_options="-g" --index=$C_DIR/lib --
install_to=$Project/Debug --name=rts2800_debug.lib
SPRU514J – January 2016 Using Run-Time-Support Functions and Building Libraries 189
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
Chapter 9
SPRU514J – January 2016
The C++ compiler implements function overloading, operator overloading, and type-safe linking by
encoding a function's prototype and namespace in its link-level name. The process of encoding the
prototype into the linkname is often referred to as name mangling. When you inspect mangled names,
such as in assembly files, disassembler output, or compiler or linker diagnostic messages, it can be
difficult to associate a mangled name with its corresponding name in the C++ source code. The C++ name
demangler is a debugging aid that translates each mangled name it detects to its original name found in
the C++ source code.
These topics tell you how to invoke and use the C++ name demangler. The C++ name demangler reads
in input, looking for mangled names. All unmangled text is copied to output unaltered. All mangled names
are demangled before being copied to output.
By default, the C++ name demangler outputs to standard output. You can use the -o file option if you want
to output to a file.
if (last_err == 0)
result = compute(val, &last_err);
*err = last_err;
return result;
}
;***************************************************************
;* FNAME: _foo_FiPi FR SIZE: 4 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Parameter, 3 Auto, 0 SOE *
;***************************************************************
_foo_FiPi:
ADDB SP,#4
MOVZ DP,#_last_err$1
MOV *-SP[1],AL
MOV AL,@_last_err$1
MOV *-SP[2],AR4
MOV *-SP[3],#0
BF L1,NEQ
; branch occurs
MOVL XAR4,#_last_err$1
MOV AL,*-SP[1]
LCR #_compute__FiPi
; call occurs [#_compute__FiPi]
MOV *-SP[3],AL
L1:
MOVZ AR6,*-SP[2]
MOV *+XAR6[0],*(0:_last_err$1)
MOV AL,*-SP[3]
SUBB SP,#4
LRETR
; return occurs
Executing the C++ name demangler demangles all names that it believes to be mangled. Enter:
dem2000 foo.asm
The result is shown in Example 9-3. The linknames in Example 9-2 foo( ) and compute( ) are demangled.
;***************************************************************
;* FNAME: foo(int, int *) FR SIZE: 4 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Parameter, 3 Auto, 0 SOE *
;***************************************************************
CLA Compiler
The TMS320C28x Software Development toolset also includes support for compiling CLA C code.
Because of CLA architecture and programming environment constraints, the C language support has
some restrictions that are detailed in Section 10.2.2.
As when including CLA assembly, compiled CLA code is linked together with C28x code to create a single
executable.
x.c y.cla
cl2000
ac2000 accla
opt2000 optcla
cg2000 cgcla
asm2000
C28x/CLA prog.out
lnk2000
linker cmd
10.2.1 Characteristics
CLA implementation supports C only. The compiler produces an error if compiling for C++.
These data types are supported:
• Type char is 16 bits.
• Type short is 16 bits. A char/short should be limited to load/store operations.
• Types int, long, and long long are 32 bits.
Note that the int size for CLA is 32 bits versus 16 bits on C28x. To avoid ambiguity when sharing data
between CLA and C28x, it is strongly recommended to use type declarations that include size
information (for example, int32 and uint16).
• Types float, double, and long double are 32 bits.
• Pointers are 16 bits.
Pointer sizes for CLA are always 16-bits. This differs from C28x, which has 32-bit pointers.
The intrinsics listed in Table 10-1 are supported. Additionally, the run-time library functions abs() and
fabs() are implemented as intrinsics.
#pragma INTERRUPT(interrupt_name);
void interrupt _name(void) {...}
Glossary
absolute lister— A debugging tool that allows you to create assembler listings that contain absolute
addresses.
Application Binary Interface (ABI)— A standard that specifies the interface between two object
modules. An ABI specifies how functions are called and how information is passed from one
program component to another.
assignment statement— A statement that initializes a variable with a value.
autoinitialization— The process of initializing global C variables (contained in the .cinit section) before
program execution begins.
autoinitialization at run time— An autoinitialization method used by the linker when linking C code. The
linker uses this method when you invoke it with the --rom_model link option. The linker loads the
.cinit section of data tables into memory, and variables are initialized at run time.
alias disambiguation— A technique that determines when two pointer expressions cannot point to the
same location, allowing the compiler to freely optimize such expressions.
aliasing— The ability for a single object to be accessed in more than one way, such as when two
pointers point to a single object. It can disrupt optimization, because any indirect reference could
refer to any other object.
allocation— A process in which the linker calculates the final memory addresses of output sections.
ANSI— American National Standards Institute; an organization that establishes standards voluntarily
followed by industries.
archive library— A collection of individual files grouped into a single file by the archiver.
archiver— A software program that collects several individual files into a single file called an archive
library. With the archiver, you can add, delete, extract, or replace members of the archive library.
assembler— A software program that creates a machine-language program from a source file that
contains assembly language instructions, directives, and macro definitions. The assembler
substitutes absolute operation codes for symbolic operation codes and absolute or relocatable
addresses for symbolic addresses.
assignment statement— A statement that initializes a variable with a value.
autoinitialization— The process of initializing global C variables (contained in the .cinit section) before
program execution begins.
autoinitialization at run time— An autoinitialization method used by the linker when linking C code. The
linker uses this method when you invoke it with the --rom_model link option. The linker loads the
.cinit section of data tables into memory, and variables are initialized at run time.
big endian— An addressing protocol in which bytes are numbered from left to right within a word. More
significant bytes in a word have lower numbered addresses. Endian ordering is hardware-specific
and is determined at reset. See also little endian
block— A set of statements that are grouped together within braces and treated as an entity.
byte— Per ANSI/ISO C, the smallest addressable unit that can hold a character.
C/C++ compiler— A software program that translates C source statements into assembly language
source statements.
code generator— A compiler tool that takes the file produced by the parser or the optimizer and
produces an assembly language source file.
COFF— Common object file format; a system of object files configured according to a standard
developed by AT&T. These files are relocatable in memory space.
command file— A file that contains options, filenames, directives, or commands for the linker or hex
conversion utility.
comment— A source statement (or portion of a source statement) that documents or improves
readability of a source file. Comments are not compiled, assembled, or linked; they have no effect
on the object file.
compiler program— A utility that lets you compile, assemble, and optionally link in one step. The
compiler runs one or more source modules through the compiler (including the parser, optimizer,
and code generator), the assembler, and the linker.
configured memory— Memory that the linker has specified for allocation.
constant— A type whose value cannot change.
cross-reference listing— An output file created by the assembler that lists the symbols that were
defined, what line they were defined on, which lines referenced them, and their final values.
.data section— One of the default object file sections. The .data section is an initialized section that
contains initialized data. You can use the .data directive to assemble code into the .data section.
direct call— A function call where one function calls another using the function's name.
directives— Special-purpose commands that control the actions and functions of a software tool (as
opposed to assembly language instructions, which control the actions of a device).
disambiguation— See alias disambiguation
dynamic memory allocation— A technique used by several functions (such as malloc, calloc, and
realloc) to dynamically allocate memory for variables at run time. This is accomplished by defining a
large memory pool (heap) and using the functions to allocate memory from the heap.
ELF— Executable and Linkable Format; a system of object files configured according to the System V
Application Binary Interface specification.
emulator— A hardware development system that duplicates the TMS320C28x operation.
entry point— A point in target memory where execution starts.
environment variable— A system symbol that you define and assign to a string. Environmental variables
are often included in Windows batch files or UNIX shell scripts such as .cshrc or .profile.
epilog— The portion of code in a function that restores the stack and returns.
executable object file— A linked, executable object file that is downloaded and executed on a target
system.
expression— A constant, a symbol, or a series of constants and symbols separated by arithmetic
operators.
external symbol— A symbol that is used in the current program module but defined or declared in a
different program module.
file-level optimization— A level of optimization where the compiler uses the information that it has about
the entire file to optimize your code (as opposed to program-level optimization, where the compiler
uses information that it has about the entire program to optimize your code).
function inlining— The process of inserting code for a function at the point of call. This saves the
overhead of a function call and allows the optimizer to optimize the function in the context of the
surrounding code.
global symbol— A symbol that is either defined in the current module and accessed in another, or
accessed in the current module but defined in another.
high-level language debugging— The ability of a compiler to retain symbolic and high-level language
information (such as type and function definitions) so that a debugging tool can use this
information.
indirect call— A function call where one function calls another function by giving the address of the
called function.
initialization at load time— An autoinitialization method used by the linker when linking C/C++ code. The
linker uses this method when you invoke it with the --ram_model link option. This method initializes
variables at load time instead of run time.
initialized section— A section from an object file that will be linked into an executable object file.
input section— A section from an object file that will be linked into an executable object file.
integrated preprocessor— A C/C++ preprocessor that is merged with the parser, allowing for faster
compilation. Stand-alone preprocessing or preprocessed listing is also available.
interlist feature— A feature that inserts as comments your original C/C++ source statements into the
assembly language output from the assembler. The C/C++ statements are inserted next to the
equivalent assembly instructions.
intrinsics— Operators that are used like functions and produce assembly language code that would
otherwise be inexpressible in C, or would take greater time and effort to code.
ISO— International Organization for Standardization; a worldwide federation of national standards
bodies, which establishes international standards voluntarily followed by industries.
K&R C— Kernighan and Ritchie C, the de facto standard as defined in the first edition of The C
Programming Language (K&R). Most K&R C programs written for earlier, non-ISO C compilers
should correctly compile and run without modification.
label— A symbol that begins in column 1 of an assembler source statement and corresponds to the
address of that statement. A label is the only assembler statement that can begin in column 1.
linker— A software program that combines object files to form an executable object file that can be
allocated into system memory and executed by the device.
listing file— An output file, created by the assembler, which lists source statements, their line numbers,
and their effects on the section program counter (SPC).
little endian— An addressing protocol in which bytes are numbered from right to left within a word. More
significant bytes in a word have higher numbered addresses. Endian ordering is hardware-specific
and is determined at reset. See also big endian
loader— A device that places an executable object file into system memory.
macro— A user-defined routine that can be used as an instruction.
macro call— The process of invoking a macro.
macro definition— A block of source statements that define the name and the code that make up a
macro.
macro expansion— The process of inserting source statements into your code in place of a macro call.
map file— An output file, created by the linker, which shows the memory configuration, section
composition, section allocation, symbol definitions and the addresses at which the symbols were
defined for your program.
202 Glossary SPRU514J – January 2016
Submit Documentation Feedback
Copyright © 2016, Texas Instruments Incorporated
www.ti.com Appendix A
memory map— A map of target system memory space that is partitioned into functional blocks.
name mangling— A compiler-specific feature that encodes a function name with information regarding
the function's arguments return types.
object file— An assembled or linked file that contains machine-language object code.
object library— An archive library made up of individual object files.
operand— An argument of an assembly language instruction, assembler directive, or macro directive
that supplies information to the operation performed by the instruction or directive.
optimizer— A software tool that improves the execution speed and reduces the size of C programs.
options— Command-line parameters that allow you to request additional or specific functions when you
invoke a software tool.
output section— A final, allocated section in a linked, executable module.
overlay page— A section of physical memory that is mapped into the same address range as another
section of memory. A hardware switch determines which range is active.
parser— A software tool that reads the source file, performs preprocessing functions, checks the syntax,
and produces an intermediate file used as input for the optimizer or code generator.
partitioning— The process of assigning a data path to each instruction.
pop— An operation that retrieves a data object from a stack.
pragma— A preprocessor directive that provides directions to the compiler about how to treat a particular
statement.
preprocessor— A software tool that interprets macro definitions, expands macros, interprets header
files, interprets conditional compilation, and acts upon preprocessor directives.
program-level optimization— An aggressive level of optimization where all of the source files are
compiled into one intermediate file. Because the compiler can see the entire program, several
optimizations are performed with program-level optimization that are rarely applied during file-level
optimization.
prolog— The portion of code in a function that sets up the stack.
push— An operation that places a data object on a stack for temporary storage.
quiet run— An option that suppresses the normal banner and the progress information.
raw data— Executable code or initialized data in an output section.
relocation— A process in which the linker adjusts all the references to a symbol when the symbol's
address changes.
run-time environment— The run time parameters in which your program must function. These
parameters are defined by the memory and register conventions, stack organization, function call
conventions, and system initialization.
run-time-support functions— Standard ISO functions that perform tasks that are not part of the C
language (such as memory allocation, string conversion, and string searches).
run-time-support library— A library file, rts.src, which contains the source for the run time-support
functions.
section— A relocatable block of code or data that ultimately will be contiguous with other sections in the
memory map.
sign extend— A process that fills the unused MSBs of a value with the value's sign bit.
source file— A file that contains C/C++ code or assembly language code that is compiled or assembled
to form an object file.
stand-alone preprocessor— A software tool that expands macros, #include files, and conditional
compilation as an independent program. It also performs integrated preprocessing, which includes
parsing of instructions.
static variable— A variable whose scope is confined to a function or a program. The values of static
variables are not discarded when the function or program is exited; their previous value is resumed
when the function or program is reentered.
storage class— An entry in the symbol table that indicates how to access a symbol.
string table— A table that stores symbol names that are longer than eight characters (symbol names of
eight characters or longer cannot be stored in the symbol table; instead they are stored in the string
table). The name portion of the symbol's entry points to the location of the string in the string table.
structure— A collection of one or more variables grouped together under a single name.
subsection— A relocatable block of code or data that ultimately will occupy continuous space in the
memory map. Subsections are smaller sections within larger sections. Subsections give you tighter
control of the memory map.
symbol— A string of alphanumeric characters that represents an address or a value.
symbolic debugging— The ability of a software tool to retain symbolic information that can be used by a
debugging tool such as an emulator or simulator.
target system— The system on which the object code you have developed is executed.
.text section— One of the default object file sections. The .text section is initialized and contains
executable code. You can use the .text directive to assemble code into the .text section.
trigraph sequence— A 3-character sequence that has a meaning (as defined by the ISO 646-1983
Invariant Code Set). These characters cannot be represented in the C character set and are
expanded to one character. For example, the trigraph ??' is expanded to ^.
unconfigured memory— Memory that is not defined as part of the memory map and cannot be loaded
with code or data.
uninitialized section— A object file section that reserves space in the memory map but that has no
actual contents.
unsigned value— A value that is treated as a nonnegative number, regardless of its actual sign.
variable— A symbol representing a quantity that can assume any of a set of values.
word— A 16-bit addressable location in target memory
Revision History
Table B-1 lists significant changes made to this document. The left column identifies the first version of
this document in which that particular change appeared.
Previous Revisions:
The --cla_default option has been added. This option causes files
SPRU514I Using the Compiler Table 2-8
with an extension of .c to be processed as CLA files.
The --ramfunc option has been added. If set, this option places all
SPRU514I Using the Compiler Section 2.3.4
functions in RAM.
SPRU514I Using the Compiler Section 2.3.13 The --no_fast_branch option has been deprecated.
C99 math support is now available, including float and long double
SPRU514I C/C++ Language Section 6.13.1
versions of floating point math functions.
The ramfunc function attribute has been added. It specifies that a
SPRU514I C/C++ Language Section 6.14.2
function should be placed in RAM.
Run-Time Added XAR6 to the list of registers and corrected the location in
SPRU514I Section 7.3.2
Environment which the address of the returned structure is placed.
Run-Time
SPRU514I Section 7.5.6 Added the __eallow and __edis intrinsics.
Environment
SPRU514I CLA Compiler Section 10.2.2 Most GCC extensions are now supported by the CLA compiler.
SPRU514H Introduction Section 1.3 Added support for C99 and C++03.
Added support for C99 and C++03. The -gcc option has been
SPRU514H Using the Compiler Table 2-8
deprecated. The --relaxed_ansi option is now the default.
SPRU514H Using the Compiler Section 2.3.3 Added the --advice:performance option.
SPRU514H Using the Compiler Section 2.3.4 The --silicon_version=27 option is no longer supported.
Added --tmu_support=tmu0 option. This option also affects the
SPRU514G Using the Compiler Section 2.3.4
behavior of the --float_support and --fp_mode=relaxed options.
SPRU514G Using the Compiler Section 2.3.4 Added support for Type 1 CLA via --cla_support=cla1.
SPRU514G Using the Compiler Section 2.3.4 Added support for Type 2 VCU via --vcu_support=vcu2.
SPRU514H Using the Compiler Section 2.3.11 Added information about the --flash_prefetch_warn option.
Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, enhancements, improvements and other
changes to its semiconductor products and services per JESD46, latest issue, and to discontinue any product or service per JESD48, latest
issue. Buyers should obtain the latest relevant information before placing orders and should verify that such information is current and
complete. All semiconductor products (also referred to herein as “components”) are sold subject to TI’s terms and conditions of sale
supplied at the time of order acknowledgment.
TI warrants performance of its components to the specifications applicable at the time of sale, in accordance with the warranty in TI’s terms
and conditions of sale of semiconductor products. Testing and other quality control techniques are used to the extent TI deems necessary
to support this warranty. Except where mandated by applicable law, testing of all parameters of each component is not necessarily
performed.
TI assumes no liability for applications assistance or the design of Buyers’ products. Buyers are responsible for their products and
applications using TI components. To minimize the risks associated with Buyers’ products and applications, Buyers should provide
adequate design and operating safeguards.
TI does not warrant or represent that any license, either express or implied, is granted under any patent right, copyright, mask work right, or
other intellectual property right relating to any combination, machine, or process in which TI components or services are used. Information
published by TI regarding third-party products or services does not constitute a license to use such products or services or a warranty or
endorsement thereof. Use of such information may require a license from a third party under the patents or other intellectual property of the
third party, or a license from TI under the patents or other intellectual property of TI.
Reproduction of significant portions of TI information in TI data books or data sheets is permissible only if reproduction is without alteration
and is accompanied by all associated warranties, conditions, limitations, and notices. TI is not responsible or liable for such altered
documentation. Information of third parties may be subject to additional restrictions.
Resale of TI components or services with statements different from or beyond the parameters stated by TI for that component or service
voids all express and any implied warranties for the associated TI component or service and is an unfair and deceptive business practice.
TI is not responsible or liable for any such statements.
Buyer acknowledges and agrees that it is solely responsible for compliance with all legal, regulatory and safety-related requirements
concerning its products, and any use of TI components in its applications, notwithstanding any applications-related information or support
that may be provided by TI. Buyer represents and agrees that it has all the necessary expertise to create and implement safeguards which
anticipate dangerous consequences of failures, monitor failures and their consequences, lessen the likelihood of failures that might cause
harm and take appropriate remedial actions. Buyer will fully indemnify TI and its representatives against any damages arising out of the use
of any TI components in safety-critical applications.
In some cases, TI components may be promoted specifically to facilitate safety-related applications. With such components, TI’s goal is to
help enable customers to design and create their own end-product solutions that meet applicable functional safety standards and
requirements. Nonetheless, such components are subject to these terms.
No TI components are authorized for use in FDA Class III (or similar life-critical medical equipment) unless authorized officers of the parties
have executed a special agreement specifically governing such use.
Only those TI components which TI has specifically designated as military grade or “enhanced plastic” are designed and intended for use in
military/aerospace applications or environments. Buyer acknowledges and agrees that any military or aerospace use of TI components
which have not been so designated is solely at the Buyer's risk, and that Buyer is solely responsible for compliance with all legal and
regulatory requirements in connection with such use.
TI has specifically designated certain components as meeting ISO/TS16949 requirements, mainly for automotive use. In any case of use of
non-designated products, TI will not be responsible for any failure to meet ISO/TS16949.
Products Applications
Audio www.ti.com/audio Automotive and Transportation www.ti.com/automotive
Amplifiers amplifier.ti.com Communications and Telecom www.ti.com/communications
Data Converters dataconverter.ti.com Computers and Peripherals www.ti.com/computers
DLP® Products www.dlp.com Consumer Electronics www.ti.com/consumer-apps
DSP dsp.ti.com Energy and Lighting www.ti.com/energy
Clocks and Timers www.ti.com/clocks Industrial www.ti.com/industrial
Interface interface.ti.com Medical www.ti.com/medical
Logic logic.ti.com Security www.ti.com/security
Power Mgmt power.ti.com Space, Avionics and Defense www.ti.com/space-avionics-defense
Microcontrollers microcontroller.ti.com Video and Imaging www.ti.com/video
RFID www.ti-rfid.com
OMAP Applications Processors www.ti.com/omap TI E2E Community e2e.ti.com
Wireless Connectivity www.ti.com/wirelessconnectivity
Mailing Address: Texas Instruments, Post Office Box 655303, Dallas, Texas 75265
Copyright © 2016, Texas Instruments Incorporated