User S Guide: TMS320C28x Optimizing C/C++ Compiler v6.0
User S Guide: TMS320C28x Optimizing C/C++ Compiler v6.0
Compiler v6.0
User's Guide
Preface ...................................................................................................................................... 11
1 Introduction to the Software Development Tools ................................................................... 15
1.1 Software Development Tools Overview ................................................................................ 16
1.2 C/C++ Compiler Overview ................................................................................................ 18
1.2.1 ANSI/ISO Standard ............................................................................................... 18
1.2.2 Output Files ....................................................................................................... 18
1.2.3 Compiler Interface ................................................................................................ 18
1.2.4 Utilities ............................................................................................................. 18
2 Using the C/C++ Compiler .................................................................................................. 19
2.1 About the Compiler ........................................................................................................ 20
2.2 Invoking the C/C++ Compiler ............................................................................................ 20
2.3 Changing the Compiler's Behavior With Options ...................................................................... 21
2.3.1 Frequently Used Options ........................................................................................ 29
2.3.2 Miscellaneous Useful Options .................................................................................. 31
2.3.3 Run-Time Model Options ........................................................................................ 31
2.3.4 Symbolic Debugging and Profiling Options ................................................................... 33
2.3.5 Specifying Filenames ............................................................................................ 34
2.3.6 Changing How the Compiler Interprets Filenames ........................................................... 34
2.3.7 Changing How the Compiler Processes C Files ............................................................. 35
2.3.8 Changing How the Compiler Interprets and Names Extensions ........................................... 35
2.3.9 Specifying Directories ............................................................................................ 35
2.3.10 Assembler Options .............................................................................................. 36
2.3.11 Dynamic Linking ................................................................................................. 37
2.3.12 Deprecated Options ............................................................................................. 37
2.4 Controlling the Compiler Through Environment Variables ........................................................... 38
2.4.1 Setting Default Compiler Options (C2000_C_OPTION) ..................................................... 38
2.4.2 Naming an Alternate Directory (C2000_C_DIR) .............................................................. 39
2.5 Precompiled Header Support ............................................................................................ 39
2.5.1 Automatic Precompiled Header ................................................................................. 39
2.5.2 Manual Precompiled Header .................................................................................... 40
2.5.3 Additional Precompiled Header Options ....................................................................... 40
2.6 Controlling the Preprocessor ............................................................................................. 40
2.6.1 Predefined Macro Names ....................................................................................... 40
2.6.2 The Search Path for #include Files ............................................................................ 41
2.6.3 Generating a Preprocessed Listing File (--preproc_only Option) .......................................... 42
2.6.4 Continuing Compilation After Preprocessing (--preproc_with_compile Option) .......................... 42
2.6.5 Generating a Preprocessed Listing File With Comments (--preproc_with_comment Option) .......... 42
2.6.6 Generating a Preprocessed Listing File With Line-Control Information (--preproc_with_line
Option) ............................................................................................................. 42
2.6.7 Generating Preprocessed Output for a Make Utility (--preproc_dependency Option) ................... 43
2.6.8 Generating a List of Files Included With the #include Directive (--preproc_includes Option) .......... 43
2.6.9 Generating a List of Macros in a File (--preproc_macros Option) .......................................... 43
2.7 Understanding Diagnostic Messages ................................................................................... 43
2.7.1 Controlling Diagnostics .......................................................................................... 44
2.7.2 How You Can Use Diagnostic Suppression Options ........................................................ 45
List of Figures
1-1. TMS320C28x Software Development Flow ............................................................................ 16
5-1. The Post-Link Optimizer in the TMS320C28x Software Development Flow ...................................... 84
7-1. Use of the Stack During a Function Call .............................................................................. 127
7-2. Format of Initialization Records in the .cinit Section (Default and far Data)...................................... 142
7-3. Format of Initialization Records in the .pinit Section ................................................................ 143
7-4. Autoinitialization at Run Time .......................................................................................... 144
7-5. Initialization at Load Time ............................................................................................... 145
List of Tables
2-1. Basic Options ............................................................................................................. 21
2-2. Control Options ........................................................................................................... 21
2-3. Symbolic Debug Options ................................................................................................. 22
2-4. Language Options ......................................................................................................... 22
2-5. Parser Preprocessing Options ........................................................................................... 22
2-6. Predefined Symbols Options ............................................................................................ 23
2-7. Include Options ........................................................................................................... 23
2-8. Diagnostics Options ....................................................................................................... 23
2-9. Run-Time Model Options ................................................................................................. 23
2-10. Optimization Options ..................................................................................................... 24
2-11. Entry/Exit Hook Options .................................................................................................. 25
2-12. Library Function Assumptions Options ................................................................................ 25
2-13. Assembler Options ........................................................................................................ 25
2-14. File Type Specifier Options .............................................................................................. 26
2-15. Directory Specifier Options ............................................................................................... 26
2-16. Default File Extensions Options ......................................................................................... 26
2-17. Command Files Options ................................................................................................. 26
2-18. Linker Basic Options Summary .......................................................................................... 27
2-19. Command File Preprocessing Options Summary ..................................................................... 27
2-20. Diagnostic Options Summary ............................................................................................ 27
2-21. File Search Path Options Summary .................................................................................... 27
2-22. Linker Output Options Summary ........................................................................................ 28
2-23. Symbol Management Options Summary ............................................................................... 28
2-24. Run-Time Environment Options Summary ............................................................................. 28
2-25. Link-Time Optimization Options Summary ............................................................................. 28
2-26. Miscellaneous Options Summary ....................................................................................... 29
2-27. Dynamic Linking Options Summary ..................................................................................... 29
2-28. Linker Options For Dynamic Linking .................................................................................... 37
2-29. Compiler Backwards-Compatibility Options Summary ............................................................... 37
2-30. Predefined C28x Macro Names ......................................................................................... 40
2-31. Raw Listing File Identifiers ............................................................................................... 47
2-32. Raw Listing File Diagnostic Identifiers .................................................................................. 47
3-1. Options That You Can Use With --opt_level=3 ........................................................................ 55
3-2. Selecting a File-Level Optimization Option ............................................................................ 55
3-3. Selecting a Level for the --gen_opt_info Option ....................................................................... 55
3-4. Selecting a Level for the --call_assumptions Option .................................................................. 56
3-5. Special Considerations When Using the --call_assumptions Option ............................................... 57
4-1. Initialized Sections Created by the Compiler .......................................................................... 79
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, cruel world\n");
}
• In syntax descriptions, the instruction, command, or directive is in 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, column 1 is reserved for the first character of a label or symbol. If the
label or symbol is optional, it is usually not shown. If it 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 column 1.
• 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
C: A Reference Manual (fourth edition), by Samuel P. Harbison, and Guy L. Steele Jr., published by
Prentice Hall, Englewood Cliffs, New Jersey
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 C Standard),
International Organization for Standardization
ISO/IEC 14882-1998, International Standard - Programming Languages - C++ (The C++ Standard),
International Organization for Standardization
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), by Brian W. Kernighan and Dennis M. Ritchie,
published by Prentice-Hall, Englewood Cliffs, New Jersey, 1988
The C++ Programming Language (second edition), Bjarne Stroustrup, published by Addison-Wesley
Publishing Company, Reading, Massachusetts, 1990
The Annotated C++ Reference Manual, Margaret A. Ellis and 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)
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 process 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 object modules. The
TMS320C28x Assembly Language Tools User's Guide explains how to use the assembler.
• The linker combines object files into a single executable object module. As it creates the executable
module, it performs relocation and resolves external references. The linker accepts relocatable object
files and object libraries as input. See Chapter 4. The TMS320C28x Assembly Language Tools User's
Guide provides a complete description of the linker.
• The archiver allows you to collect a group of files into a single archive file, called a library.
Additionally, the archiver allows you to modify a library by deleting, replacing, extracting, or adding
members. One of the most useful applications of the archiver is building a library of object modules.
The TMS320C28x Assembly Language Tools User's Guide explains how to use the archiver.
• You can use the library-build process to build your own customized run-time-support library. See
Section 8.5. Standard run-time-support library functions for C and C++ are provided in the
self-contained rtssrc.zip file.
The run-time-support libraries contain the standard ISO run-time-support functions, compiler-utility
functions, floating-point arithmetic functions, and C I/O functions that are supported by the compiler.
See Chapter 8.
• The hex conversion utility converts an object file into other object formats. You can download the
converted file to an EPROM programmer. The TMS320C28x Assembly Language Tools User's Guide
explains how to use the hex conversion utility and describes all supported formats.
• 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. The TMS320C28x Assembly Language Tools User's Guide explains how to use the
absolute lister.
• 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. The TMS320C28x Assembly Language
Tools User's Guide explains how to use the cross-reference utility.
• 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 disassembles object files. The TMS320C28x Assembly Language Tools User's
Guide explains how to use the disassembler.
• The main product of this development process is a module that can be executed in a TMS320C28x
device.
1.2.4 Utilities
These features pertain to the compiler utilities:
• Library-build process
The library-build process lets you custom-build object libraries from source for any combination of
run-time models. For more information, see Section 8.5.
• C++ name demangler
The C++ name demangler (dem2000) is a debugging aid that translates each mangled name it detects
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.
The following tables list the linker options. See the TMS320C28x Assembly Language Tools User's Guide
for details on these options.
--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.7. 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 -v28 --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.6.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.
--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.
--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 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. The --symdebug:dwarf option
disables many code generator optimizations, because they disrupt the
debugger. You can use the --symdebug:dwarf option with the --opt_level
(aliased as -O) option to maximize the amount of optimization that is
compatible with debugging (see Section 3.8.1).
For more information on the DWARF debug format, see The DWARF
Debugging Standard.
--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 Generates as much symbolic debugging information as possible without
hindering optimization. Generally, this consists of global-scope
information only. This option reflects the default behavior of the compiler.
See Section 2.3.12 for a list of deprecated symbolic debugging options.
For information about how you can alter the way that the compiler interprets individual filenames, see
Section 2.3.6. 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.9.
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 -v28 *.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 -v28 --c_file=file.s --asm_file=assy
The following example assembles the file fit.rrr and creates an object file named fit.o:
cl2000 -v28 --asm_extension=.rrr --obj_extension=.o fit.rrr
The period (.) in the extension is optional. You can also write the example above as:
cl2000 -v28 --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 -v28 --abs_directory=d:\abso_list
--asm_directory=directory Specifies a directory for assembly files. For example:
cl2000 -v28 --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 -v28 --list_directory=d:\listing
--obj_directory=directory Specifies a directory for object files. For example:
cl2000 -v28 --obj_directory=d:\object
--output_file=filename Specifies a compilation output file name; can override --obj_directory . For
example:
cl2000 -v28 output_file=transfer
--pp_directory=directory Specifies a preprocessor file directory for object files (default is .). For
example:
cl2000 -v28 --pp_directory=d:\preproc
--temp_directory=directory Specifies a directory for temporary intermediate files. For example:
cl2000 -v28 --temp_directory=d:\temp
--syms_ignore_case Makes letter case insignificant in the assembly language source files. For
example, --syms_ignore_case makes the symbols ABC and abc
equivalent. If you do not use this option, case is significant (this is the
default).
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 --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.
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 -v28 *c ; compiles and links
cl2000 -v28 --compile_only *.c ; only compiles
cl2000 -v28 *.c --run_linker lnk.cmd ; compiles and links using a command file
cl2000 -v28 --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:
Carefully organizing the include directives across multiple files so that their header files maximize common
usage can increase the compile time savings when using precompiled headers.
A precompiled header file is produced only if the header stop point and the code prior to it meet certain
requirements.
(1)
Specified by the ISO standard
You can use the names listed in Table 2-30 in the same manner as any other defined name. For example,
printf ( "%s %s" , __TIME__ , __DATE__);
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:
2.6.8 Generating a List of Files Included With the #include Directive (--preproc_includes
Option)
The --preproc_includes option performs preprocessing only, but instead of writing preprocessed output,
writes a list of files included with the #include directive. If you do not supply an optional filename, the list is
written to a file with the same name as the source file but with a .pp extension.
Diagnostics 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 line is omitted. Use the --verbose_diagnostics compiler option to enable the display
of 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 diagnostics 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 an error is determined to be discretionary based on the error severity associated with 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).
Although this type of control is useful, it can also be extremely dangerous. The compiler often emits
messages that indicate a less than obvious problem. Be careful to analyze all diagnostics emitted before
using the suppression options.
The --gen_acp_raw option also includes diagnostic identifiers as defined in Table 2-32.
S One of the identifiers in Table 2-32 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
Diagnostics 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.
/*****************************************************************************/
/* 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.7.
;----------------------------------------------------------------------
; 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 ".const"
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.10.13 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, software pipelining, 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.
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-5 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.
Situation — Your application consists of C/C++ source code and assembly source code. The assembly
functions are interrupt service routines that call C/C++ functions; the C/C++ functions that the
assembly functions call are never called from C/C++. These C/C++ functions act like main: they
function as entry points into C/C++.
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.
Some options are incompatible when performing link-time optimization. These are usually options which
conflict on the command line as well, but can also be options that cannot be handled during link-time
optimization.
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.5.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.5.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
Profile Points
NOTE: In Code Composer Studio, when symbolic debugging is not used, profile points can only be
set at the beginning and end of functions.
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 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.
The --no_fast_branch option does not control the BF instruction generated under the -opt_for_speed
option. That is, --opt_for_speed overrides --no_fast_branch. The --no_fast_branch option affects only the
BF instruction generated by default for one of NEQ, EQ, NTC and TC.
Example 3-6 provides an example of C code to be compiled with the --opt_for_size 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
Optimization See
Cost-based register allocation Section 3.11.1
Alias disambiguation Section 3.11.1
Branch optimizations and control-flow simplification Section 3.11.3
Data flow optimizations Section 3.11.4
• Copy propagation
• Common subexpression elimination
• Redundant assignment elimination
Expression simplification Section 3.11.5
Inline expansion of functions Section 3.11.6
Function Symbol Aliasing Section 3.11.7
Induction variable optimizations and strength reduction Section 3.11.8
Loop-invariant code motion Section 3.11.9
Loop rotation Section 3.11.10
Instruction scheduling Section 3.11.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.
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) ........................................... 74
4.2 Linker Code Optimizations ................................................................................. 76
4.3 Controlling the Linking Process .......................................................................... 76
4.4 Linking C28x and C2XLP Code ........................................................................... 81
cl2000 -v28 --run_linker The command that invokes the linker. The -v28 is the alias for
--silicon_version=28.
--rom_model | --ram_model Options that tell the linker to use special conventions defined by the
C/C++ environment. When you use cl2000 -v28 --run_linker, you
must use --rom_model or --ram_model. The --rom_model option
uses automatic variable initialization at run time; the --ram_model
option uses variable initialization at load time.
filenames Names of object files, linker command files, or archive libraries. The
default extension for all input files is .obj; any other extension must be
explicitly specified. The linker can determine whether the input file is
an object or ASCII file that contains linker commands. The default
output filename is a.out, unless you use the --output_file option to
name the output file.
options Options affect how the linker handles your object files. Linker options
can only appear after the --run_linker option on the command line,
but otherwise may be in any order. (Options are discussed in detail in
the TMS320C28x Assembly Language Tools User's Guide.)
--output_file= name.out Names the output file.
--library= library Identifies the appropriate archive library containing C/C++
run-time-support and floating-point math functions, or linker command
files. If you are linking C/C++ code, you must use a run-time-support
library. You can use the libraries included with the compiler, or you
can create your own run-time-support library. If you have specified a
run-time-support library in a linker command file, you do not need this
parameter. The --library option's short form is -l.
lnk.cmd Contains options, filenames, directives, or commands for the linker.
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 modules prog1.obj, prog2.obj, and prog3.obj, with an
executable filename of prog.out with the command:
cl2000 --silicon_version=28 --run_linker --rom_model prog1 prog2 prog3
--output_file=prog.out --library=rts28.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 modules prog1.c, prog2.c, and prog3.c, with an
executable filename of prog.out with the command:
cl2000 -v28 prog1.c prog2.c prog3.c --run_linker --rom_model --output_file=prog.out
--library=rts28.lib
Generally, you should specify the run-time-support library as the last name on the command line because
the linker searches libraries for unresolved references in the order that files are specified on the command
line. If any object files follow a library, references from those object files to that library are not resolved.
You can use the --reread_libs option to force the linker to reread all libraries until references are resolved.
Whenever you specify a library as linker input, the linker includes and links only those library members
that resolve undefined references.
By default, if a library introduces an unresolved reference and multiple libraries have a definition for it, then
the definition from the same library that introduced the unresolved reference is used. Use the --priority
option if you want the linker to use the definition from the first library on the command line that contains
the definition.
<Linking>
The C/C++ run-time environment supports placing the system heap (.esysmem section) in far memory by
providing far_malloc routines.
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. See Section 7.1.1 for a complete description of how the compiler uses these
sections.
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 .bss sections for C28x C/C++ code. A C2XLP .bss 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 ......................... 84
5.2 Removing Redundant DP Loops ......................................................................... 85
5.3 Tracking DP Values Across Branches .................................................................. 85
5.4 Tracking DP Values Across Function Calls ........................................................... 86
5.5 Other Post-Link Optimizations ............................................................................ 86
5.6 Controlling Post-Link Optimizations .................................................................... 87
5.7 Restrictions on Using the Post-Link Optimizer ...................................................... 88
5.8 Naming the Outfile (--output_file Option) .............................................................. 88
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 -v28) 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.
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.
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 that
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:1998 standard with
certain exceptions.
--check_misra={all|required|advisory|none|rulespec}
#pragma CHECK_MISRA (" {all|required|advisory|none|rulespec}" );
#pragma RESET_MISRA (" {all|required|advisory|rulespec}" );
Example: --check_misra=1-5,-1.1,7.2-4
• Checks topics 1 through 5
• Disables rule 1.1 (all other rules from topic 1 remain enabled)
• Checks rules 2 through 4 in topic 7
Two options control the severity of certain MISRA-C:2004 rules:
• The --misra_required option sets the diagnostic severity for required MISRA-C:2004 rules.
• The --misra_advisory option sets the diagnostic severity for advisory MISRA-C:2004 rules.
The syntax for these options is:
--misra_advisory={error|warning|remark|suppress}
--misra_required={error|warning|remark|suppress}
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. It is necessary to assume that these long
double address will be in far memory. Therefore, the called function will always read 32-bits for the
addresses of long double arguments.
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 C27x/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 the standard const, register, and volatile keywords. In addition, the
C/C++ compiler extends the C/C++ language through the support of the cregister and interrupt keywords.
In C mode, the C/C++ compiler supports the far keyword. The compiler also supports the restrict keyword
for FPU targets; for other targets restrict is ignored.
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);
6.5.3.1 Semantics
Declaring an object far designates that the object be placed in far memory. This is accomplished by
reserving space for that object in a different section than the default .bss. Global variables declared far are
placed in a section called .ebss. This section can then be linked anywhere in the TMS320C28x data
address space. const objects declared far are similarly placed in the .econst section.
Pointers that are declared to point at far objects have a size of 22 bits. They require two memory locations
to store and require the XAR registers to perform addressing.
Pointer Distinction
NOTE: There is a distinction between declaring a pointer that points at far data (far int *pf) and
declaring the pointer itself as far (int*far fp;).
Only global and static variables can be declared far. Nonstatic variables defined in a function
(automatic storage class) cannot be far because these variables are allocated on the stack.
The compiler will issue a warning and treat these variables as near.
It is meaningless to declare structure members as far. A structure declared far implies that all
of its members are far.
6.5.3.2 Syntax
The compiler recognizes far or _ _far as synonymous keywords. The far keyword acts as a type qualifier.
When declaring variables, far is used similarly to the type qualifiers const and volatile. Example 6-2 shows
the correct way to declare variables.
int far *ptr; // This declares a pointer that points to a far int.
// The variable ptr is itself near.
int * far ptr; // This declares a pointer to a near int. The variable
// ptr, however, is located in far memory.
int far * far ptr; // The pointer and the object it points to are both far.
int far *memcpy_ff(far void *dest, const far void *src, int count);
// Function that takes two far pointers as arguments
// and returns a far pointer.
int *far func() // ERROR: Declares the function as far. Since the
// program address space is flat 22-bit, this has no
// meaning. Far applies to data only.
int func();
{
int far x; // ERROR: Far only applies to global/static variables.
: // Auto variables on the stack are required to be near
:
int far *ptr // Ok, since the pointer is on the stack, but points
// to far
}
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 function main. Because it has no caller, c_int00
does not save any registers.
Use the alternate keyword, __interrupt, if you are writing code for strict ANSI/ISO mode (using the
--strict_ansi compiler option).
Example 6-4 illustrates using the restrict keyword when passing arrays to a function. Here, the arrays c
and d should not overlap, nor should 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.
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.
extern int x;
extern long y;
extern float z;
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.
Use the alternate statement __asm("assembler text") if you are writing code for strict ANSI/ISO C mode
(using the --strict_ansi option).
The rulespec parameter is a comma-separated list of specifiers. See Section 6.3 for details.
The RESET_MISRA pragma can be used to reset any CHECK_MISRA pragmas; see Section 6.10.14.
The RETAIN pragma has the opposite effect of the CLINK pragma. See Section 6.10.15 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 examples demonstrate 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|
.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|
ADD AR6,#_bufferB ; |23|
SUBB SP,#1 ; |23|
MOV AL,*+XAR6[0] ; |23|
LRETR
;return occurs
The DATA_SECTION pragma is useful if you have data objects that you want to link into an area separate
from the .bss section. If you allocate a global variable using a DATA_SECTION pragma and you want to
reference the variable in C code, you must declare the variable as extern far.
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
.bss _bufferA,512,4
.global _bufferB
_bufferB: .usect "my_sect",512,4
The diagnostic affected (num) is specified using either an error number or an error tag name. The equal
sign (=) is optional. Any diagnostic can be overridden to be an error, but only diagnostics with a severity of
discretionary error or below can have their severity reduced to a warning or below, or be suppressed. The
diag_default pragma is used to return the severity of a diagnostic to the one that was in effect before any
pragmas were issued (i.e., the normal severity of the message as modified by any command-line options).
The diagnostic identifier number is output along with the message when the -pden command line option is
specified.
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.4.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.
The following example demonstrates the use of the FAST_FUNC_CALL 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_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 ;
The code for the function will return via the IRP (interrupt return pointer).
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:
To specify an HPI interrupt use HPI. To specify an LPI interrupt use LPI. 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 software pipelined 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 software pipelined loop:
#pragma MUST_ITERATE(8, 8);
#pragma NO_HOOKS;
The rulespec parameter is a comma-separated list of specifiers. See Section 6.3 for details.
The CLINK pragma has the opposite effect of the RETAIN pragma. See Section 6.10.2 for more details.
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:
...
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.
.bss: {} = 0x00;
...
}
Because the linker writes a complete load image of the zeroed .bss 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 .bss 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.13.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.13).
For example:
const int zero; /* may 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 .const. 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 .const
section in ROM.
You can use the DATA_SECTION pragma to put the variable in a section other than .const. For example,
the following C code:
#pragma DATA_SECTION (var, ".mysect");
const int zero=0;
Under ANSI/ISO, the result of these two definitions is a single definition for the object a. For most K&R
compilers, this sequence is illegal, because int a is defined twice.
• ANSI/ISO prohibits, but K&R allows objects with external linkage to be redeclared as static:
extern int a;
static int a; /* illegal unless --kr_compatible used */
• Unrecognized escape sequences in string and character constants are explicitly illegal under ANSI/ISO
but ignored under K&R:
char c = '\q'; /* same as 'q' if --kr_compatible used, error if not */
• ANSI/ISO specifies that bit fields must be of type int or unsigned. With --kr_compatible, bit fields can
be legally defined with any integral type. For example:
struct s
{
short f : 2; /* illegal unless --kr_compatible used */
};
• K&R syntax allows a trailing comma in enumerator lists:
enum { a, b, c, }; /* illegal unless --kr_compatible used */
• K&R syntax allows trailing tokens on preprocessor directives:
#endif NAME /* illegal unless --kr_compatible used */
6.14.2 Enabling Strict ANSI/ISO Mode and Relaxed ANSI/ISO Mode (--strict_ansi and
--relaxed_ansi Options)
Use the --strict_ansi option when you want to compile under strict ANSI/ISO mode. In this mode, error
messages are provided when non-ANSI/ISO features are used, and language extensions that could
invalidate a strictly conforming program are disabled. Examples of such extensions are the inline and asm
keywords.
Use the --relaxed_ansi option when you want the compiler to ignore strict ANSI/ISO violations rather than
emit a warning (as occurs in normal ANSI/ISO mode) or an error message (as occurs in strict ANSI/ISO
mode). In relaxed ANSI/ISO mode, the compiler accepts extensions to the ANSI/ISO C standard, even
when they conflict with ANSI/ISO C. The GCC language extensions described in Section 6.15 are
available in relaxed ANSI/ISO mode.
6.15.1 Extensions
Most of the GCC language extensions are available in the TI compiler when compiling in relaxed ANSI
mode (--relaxed_ansi) or if the --gcc option is used.
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.
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 module information in the TMS320C28x
Assembly Language Tools User's Guide.
There are two basic types of sections:
• Initialized sections contain data or executable code. The C/C++ compiler creates the following
initialized sections:
– The .cinit section and the .pinit section contain tables for initializing variables and constants.
The C28x .cinit record is limited to 16 bits. This limits initialized objects to 64K.
– The .const section contains string constants, switch tables, and data defined with the C/C++
qualifier const (provided the constant is not also defined as volatile).
– The .econst section contains string constants, and the declaration and initialization of global and
static variables (qualified by far const or the use of the large memory model) that are explicitly
initialized and placed in far memory.
– The .switch section contains tables for switch statements.
– The .text section contains all the executable code as well as string literals and compiler-generated
constants.
• 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 .bss section reserves space for global and static variables. At boot or load time, the C/C++
boot routine copies data out of the .cinit section (which can be in ROM) and stores it in the .bss
section.
– The .ebss section reserves space for global and static variables defined as far (C only) or when
the large memory model is used. 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 .sysmem 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 .sysmem section.
– The .esysmem section reserves space for dynamic memory allocation. The reserved space is
used by far malloc functions. If a C/C++ program does not use far malloc, the compiler does not
The linker takes the individual sections from different modules 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 can not 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 a .const section, link with a linker command file that contains the following entries:
MEMORY
{
PAGE 0 : PROG : ...
PAGE 1 : DATA : ...
}
SECTIONS
{
...
.const : load = PROG PAGE 1, run = DATA PAGE 1
{
/* GET RUN ADDRESS */
__const_run = .;
/* MARK LOAD ADDRESS */
*(.c_mark)
/* ALLOCATE .const */
*(.const)
/* COMPUTE LENGTH */
__const_length = .- __const_run;
}
...
}
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.
A far memory pool or far heap, is also available through several far run-time-support library functions
(such as far_malloc, far_calloc, and far_realloc). The far heap is created by the linker. The linker also
creates a global symbol, __FAR_SYSMEM_SIZE, and assigns it a value equal to the size of the far heap
in words. The default size is 1k words. You can change the size of the far memory pool, at link time, with
the −farheap option. Specify the size of the memory pool as a constant after the −farheap option on the
link command line.
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
LUF (2) (3)
Latched underflow float flag - Yes
NF (2) Negative float flag - Yes
(2)
ZF Zero float flag - Yes
NI (2) Negative integer flag - Yes
ZI (2) Zero integer flag bit - Yes
(2)
TF Test flag bit - Yes
RNDF32 Round F32 mode (4) - Yes
RNDF64 Round F64 mode (4) - 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.
If the target is FPU and a 32-bit float value is returned, the called function places this value in R0H.
If the function returns a structure, the caller allocates space for the structure and passes the address of
the return space to the called function in XAR4. To return a structure, the called function copies the
structure to the memory block pointed by the extra argument.
In this way, the caller can be smart about telling the called function where to return the structure. For
example, in the statement s= f(x), where S is a structure and F is a function that returns a structure,
the caller can actually make the call as f(&s, x). The function f then copies the return structure directly
into s, performing the assignment automatically.
If the caller does not use the return structure value, an address value of 0 can be passed as the first
argument. This directs the called function not to copy the return structure.
You must be careful to properly declare functions that return structures both at the point where they
are called (so that the extra argument is passed) and at the point where they are declared (so the
function knows to copy the result). Returning 64-bit floating-point values (long double) are returned
similarly to structures.
7. The called function deallocates the frame by subtracting the value that was added to the SP earlier.
8. The called function restores the values of all registers saved in .
9. The called function returns using the LRETR instruction. The PC is set to the value in the RPC
register. The previous RPC value is popped from the stack and stored in the RPC register.
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.
• 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 are writing assembly language
code, you must use the same linknames as those assigned by the compiler. See Section 6.12 for more
information.
• 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 or .bss directive. See the TMS320C28x Assembly Language Tools User’s Guide for more
information on these directives.
Example 7-1 illustrates a C++ function called main, which calls an assembly language function called
asmfunc, Example 7-2. The asmfunc function takes its single argument, adds it to the C++ global variable
called gvar, and returns the result.
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.
long lvar;
int ivar;
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.
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 .bss section before the program starts
running. Another method is to set a fill value of 0 in the linker control map for the .bss
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.8.4 and Section 7.8.5.
Also see Section 6.13.
Figure 7-2. Format of Initialization Records in the .cinit Section (Default and far Data)
.cinit section
Initialization record (far data)
Initialization record 1
Pointer to Initialization
Size in
variable data
Initialization record 2 words in .ebss
Initialization record 3 Word 0 Word 1 Word 2 Word 3 to n
Initialization record (default)
Size in Pointer to
Initialization
words variable
in .bss data
Each variable that must be autoinitialized has an initialization record in the .cinit section.
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
.bss _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.
cint Initialization
.cinit
Loader tables
section
(EXT_MEM)
Boot
routine
.bss
section
(D_MEM)
.cinit Loader
.bss
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 tasks that a C/C++ program performs (such as I/O, dynamic memory allocation, string
operations, and trigonometric functions) are not part of the C/C++ language itself. However, the ANSI/ISO
C standard defines a set of run-time-support functions that perform these tasks. The C/C++ compiler
implements the complete ISO standard library except for those facilities that handle exception conditions
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 inSection 8.1 and
Section 8.3.
A library-build process is provided with the code generation tools that lets you create customized
run-time-support libraries. This process is described in Section 8.5 .
SPRU514D – May 2011 Using Run-Time-Support Functions and Building Libraries 147
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
C and C++ Run-Time Support Libraries www.ti.com
148 Using Run-Time-Support Functions and Building Libraries SPRU514D – May 2011
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
www.ti.com C and C++ Run-Time Support Libraries
SPRU514D – May 2011 Using Run-Time-Support Functions and Building Libraries 149
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
Far Memory Support www.ti.com
The far version of the atoi() function, far_atoi(), is defined to take a far string (pointer to far char) argument
and return the integer value.
#include <stdlib.h>
far char * fst = "1234";
.
.
.
.
int ival = far_atoi(fst); /* ival is 1234 */
The far version of the run-time-support function performs the same operations except that it accepts or
returns pointer to far objects.
150 Using Run-Time-Support Functions and Building Libraries SPRU514D – May 2011
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
www.ti.com Far Memory Support
The following C code allocates memory for 100 far objects and deallocates the memory at the end.
#include <stdlib.h>
struct big {
int a, b;
char c[80];
};
int main()
{
far struct big *table;
table=(far struct big *)far_malloc(100*sizeof(struct
big));
.
.
/* use the memory here */
.
.
far_free(table);
/* exit code here */
}
SPRU514D – May 2011 Using Run-Time-Support Functions and Building Libraries 151
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
Far Memory Support www.ti.com
The following C++ code allocates memory for 100 far objects and deallocates the memory at the end.
#include <cstdlib>
struct big {
int a, b;
char c[80];
};
int main()
{
long table;//Note-use of long to hold address.
table = std::far_malloc(100 * sizeof(struct big));
.
.
/* use the memory here using intrinsic*/
.
.
std::far_free(table);
/* exit code here */
}
152 Using Run-Time-Support Functions and Building Libraries SPRU514D – May 2011
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
www.ti.com The C I/O Functions
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 -v28 main.c --run_linker --heap_size=400 --library=rts2800.lib --output_file=main.out
SPRU514D – May 2011 Using Run-Time-Support Functions and Building Libraries 153
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
open — Open File for I/O www.ti.com
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.3.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.
154 Using Run-Time-Support Functions and Building Libraries SPRU514D – May 2011
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
www.ti.com close — Close File for I/O
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.
SPRU514D – May 2011 Using Run-Time-Support Functions and Building Libraries 155
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
lseek — Set File Position Indicator www.ti.com
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.3.3.
The path is the filename of the file, including path information and optional device prefix.
(See Section 8.3.5.)
156 Using Run-Time-Support Functions and Building Libraries SPRU514D – May 2011
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
www.ti.com rename — Rename File
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.
SPRU514D – May 2011 Using Run-Time-Support Functions and Building Libraries 157
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
DEV_open — Open File for I/O www.ti.com
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.3.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. It need not be unique across devices. Only the
low-level I/O functions will see this device file descriptor; the low-level function open will
assign its own unique file descriptor.
158 Using Run-Time-Support Functions and Building Libraries SPRU514D – May 2011
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
www.ti.com DEV_close — Close File for I/O
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.
SPRU514D – May 2011 Using Run-Time-Support Functions and Building Libraries 159
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
DEV_lseek — Set File Position Indicator www.ti.com
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 by 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.3.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.
160 Using Run-Time-Support Functions and Building Libraries SPRU514D – May 2011
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
www.ti.com DEV_rename — Rename File
#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"); }
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.
SPRU514D – May 2011 Using Run-Time-Support Functions and Building Libraries 161
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
add_device — Add Device to Device Table www.ti.com
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.3.2. The device driver for the HOST that the
TMS320C28x debugger is run on are included in the C I/O library.
162 Using Run-Time-Support Functions and Building Libraries SPRU514D – May 2011
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
www.ti.com add_device — Add Device to Device Table
#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);
}
SPRU514D – May 2011 Using Run-Time-Support Functions and Building Libraries 163
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
Handling Reentrancy (_register_lock() and _register_unlock() Functions) www.ti.com
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.
164 Using Run-Time-Support Functions and Building Libraries SPRU514D – May 2011
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
www.ti.com Library-Build Process
See the Makefile for additional information on how to customize a library build by modifying the LIBLIST
and/or the OPT_XXX macros.
SPRU514D – May 2011 Using Run-Time-Support Functions and Building Libraries 165
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
Library-Build Process www.ti.com
166 Using Run-Time-Support Functions and Building Libraries SPRU514D – May 2011
Submit Documentation Feedback
Copyright © 2011, Texas Instruments Incorporated
Chapter 9
SPRU514D – May 2011
The C++ compiler implements function overloading, operator overloading, and type-safe linking by
encoding a function's signature in its link-level name. The process of encoding the signature into the
linkname is often referred to as name mangling. When you inspect mangled names, such as in assembly
files or linker output, 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 out. You can use the -o file option if you want to
output to a file.
-h Prints a help screen that provides an online summary of the C++ name demangler
options
-o file Outputs to the given file rather than to standard out
-u Specifies that external names do not have a C++ prefix
-v Enables verbose mode (outputs a banner)
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 ; |4|
MOV AL,@_last_err$1 ; |8|
MOV *-SP[2],AR4 ; |4|
MOV *-SP[3],#0 ; |6|
BF L1,NEQ ; |8|
; branch occurs ; |8|
MOVL XAR4,#_last_err$1 ; |9|
MOV AL,*-SP[1] ; |9|
LCR #_compute__FiPi ; |9|
; call occurs [#_compute__FiPi] ; |9|
MOV *-SP[3],AL ; |9|
L1:
MOVZ AR6,*-SP[2] ; |11|
MOV *+XAR6[0],*(0:_last_err$1) ; |11|
MOV AL,*-SP[3] ; |12|
SUBB SP,#4 ; |12|
LRETR
; return occurs
Executing the C++ name demangler demangles all names that it believes to be mangled. Enter:
dem2000 -v28 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 *
Example 9-3. Result After Running the C++ Name Demangler (continued)
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Parameter, 3 Auto, 0 SOE *
;***************************************************************
Glossary
absolute lister— A debugging tool that allows you to create assembler listings that contain absolute
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.
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.
.bss section— One of the default object file sections. You use the assembler .bss directive to reserve a
specified amount of space in the memory map that you can use later for storing data. The .bss
section is uninitialized.
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 linking 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 module— A linked object file that can be executed in 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 module.
input section— A section from an object file that will be linked into an executable module.
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 object module that can be allocated
into system memory and executed by the device.
listing file— An output file, created by the assembler, that 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 module 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, that shows the memory configuration, section
composition, section allocation, symbol definitions and the addresses at which the symbols were
defined for your program.
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.
object module— A linked, executable object file that can be downloaded and executed on a target
system.
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 module— A linked, executable object file that is downloaded and executed on a target system.
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, that 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.
simulator— A software development system that simulates TMS320C28x operation.
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 a simulator or an emulator.
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. These sections are built with the .bss and .usect directives.
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.
veneer— A sequence of instructions that serves as an alternate entry point into a routine if a state
change is required.
word— A 16-bit addressable location in target memory
Mailing Address: Texas Instruments, Post Office Box 655303, Dallas, Texas 75265
Copyright © 2011, Texas Instruments Incorporated