このページの翻訳は最新ではありません。ここをクリックして、英語の最新版を参照してください。
Target Language Compiler
Target Language Compiler を使用したブロックのコード生成動作の定義
Target Language Compiler (TLC) はコード ジェネレーターに不可欠な部分です。TLC を使用して生成コードをカスタマイズします。カスタマイズによって、プラットフォーム固有のコードを生成したり、パフォーマンス、コード サイズ、既存のメソッドとの互換性用に独自のアルゴリズムの変更を組み込むこともできます。
Target Language Compiler を使用して、以下のことを実行できます。
システム ターゲット ファイルで指定されたオプションのセットをカスタマイズ。
S-Function ブロック用にコードをインライン化。
追加またはさまざまなタイプのファイルの生成。
TLC の基本については、Target Language Compiler Basicsを参照してください。
トピック
入門
- Target Language Compiler Basics
Use the Target Language Compiler to produce platform-specific code and incorporate your own algorithmic changes for performance, code size, or compatibility with existing methods that you prefer to maintain. - Why Use the Target Language Compiler?
Use the Target Language Compiler to customize the set of options specified by your system target file, inline the code for S-Function blocks, or generate additional or different types of files. - The Advantages of Inlining S-Functions
Determine when, how, and why to inline S-functions. - Code Architecture
Learn what information a block object captures. - Target Language Compiler Process
Learn how the Target Language Compiler interprets
files.model
.rtw - Inlining S-Functions
Apply techniques for inlining S-functions.
Target Language Compiler チュートリアル
- Advice About TLC Tutorials
The TLC tutorials describe why and how to use TLC. - Read Record Files with TLC
Learn how TLC accesses record files and interprets their contents. - Inline S-Functions with TLC
TLC inlines S-functions, resulting in faster, optimized code. - Explore Variable Names and Loop Rolling
Understand how and when TLC outputs loops and variable names. - Debug Your TLC Code
Invoke TLC debugger commands, set breakpoints, and trace code execution. - TLC Code Coverage to Aid Debugging
Use TLC coverage statistics to help identify bugs in TLC code. - Wrap User Code with TLC
Use TLC to integrate legacy and proprietary code into compiled models.
コード生成アーキテクチャ
- Build Process
Create and use target language files. - Configure TLC
Customize builds by passing configuration data to theset_param
command. - TLC による生成コードの構成
Target Language Compiler を使用して特定の方法でソース コードを生成し、コード固有の特徴をもたる。 - Code Generation Concepts
Understand TLC variables and file and record handling. - TLC Files
Learn about the roles and varieties of system and block target files. - Data Handling with TLC
TLC library functions can transform data into data structures.
model.rtw ファイル
- model.rtw File and Scopes
The
file is a partial representation of a model generated by the build process for use by the Target Language Compiler.model
.rtw - Data Object Information in model.rtw File
Access information about data objects in the
file.model
.rtw - Data References in the model.rtw File
Simulink® uses data references to optimize data access during code generation. - Exception to Using the Library Functions that Access model.rtw
Access parameter settings for a block in the
records.model
.rtw - グローバル データ マップを使用する生成されたコードへのメモリ アクセス
model.rtw
ファイルに TLC グローバル データ マップ レコードを生成します。
命令と組み込み関数
- Target Language Compiler Directives
Learn the syntax and formats of directives, built-in functions, signal and parameter values, expressions, and comments. - Command-Line Arguments
Specify TLC calling arguments, filenames, and search paths.
S-Function インライン化
- Inline S-Functions
Write S-functions to be used for code generation. - Inline C MEX S-Functions
Handle calls made by C MEX S-functions. - TLC Coding Conventions
Observe case conventions and use library functions to make your TLC code more robust. - Block Target File Methods
Use polymorphic block functions combined with the Target Language Compiler library functions to write a block target file. - Loop Rolling
Use the%roll
directive to indicate whether the code generator unrollsfor
loops.
TLC ライブラリ参照
- Target Language Compiler Library Functions Overview
Use library functions to access many of the parameter name/parameter values pairs in the block record. - Target Language Compiler Function Conventions
Apply proper TLC function syntax and conventions. - Input Signal Functions
These TLC Functions process and report on input signals. - Output Signal Functions
These TLC functions process and report on output signals. - Parameter Functions
These functions process model parameters. - Block State and Work Vector Functions
These functions handle storage and states. - Block Compatibility Functions
These TLC functions are for specifying block compatibility with code generation features. - Block Path and Error Reporting Functions
These functions navigate paths and handle error conditions. - Code Configuration Functions
These functions are for tailoring code elements and comments. - Sample Time Functions
These functions are for handling continuous and discrete time. - Miscellaneous Functions
These functions are not elsewhere classified. - Advanced Functions
These functions are generally required only for special situations.
デバッグとエラー処理
- Using the TLC Debugger
Use the TLC debugger to execute TLC code line-by-line, analyze and/or change variables in a specified block scope, and view the TLC call stack. - TLC Coverage
Determine what TLC statements are executed. - TLC Profiler
Measure the execution time of each TLC function. - TLC Error Handling
Use this alphabetical list of error messages to detect and address error conditions in your TLC code.