This tab shows the detailed information on the compile phase categorized by the following and the configuration can be changed.
[Description of each category]
The detailed information on debug information is displayed and the configuration can be changed.
Select whether to generate the debug information. It is possible to perform source debugging with the debugger by outputting information for source debugging to the output file. This property corresponds to the -g option of the ccrh command. |
||||||
Select whether to enhance debug information at optimization. This property corresponds to the -g_line option of the ccrh command. This property is displayed in the following cases.
|
||||||
The detailed information on the optimization is displayed and the configuration can be changed.
The detailed information on the optimization is displayed and the configuration can be changed.
Specify the maximum number of times to expand the loops such as "for" and "while". If 0 or 1 is specified, expansion is suppressed. If this is blank, the -Ounroll option is not added to the command line. In this case, a value in accordance with the selection of the [Level of optimization] property is used by the compiler. This property corresponds to the -Ounroll option of the ccrh command. |
||||||||||||
Select whether to remove the static functions which are not called. This property corresponds to the -Odelete_static_func option of the ccrh command. |
||||||||||||
Performs optimization according to the [Level of optimization] property. |
||||||||||||
Does not remove the unused static functions which are not called. |
||||||||||||
Specify whether to perform inline expansion at the location calling functions. This property corresponds to the -Oinline option of the ccrh command. This property is displayed only when [Code size precedence(-Osize)] or [Speed precedence(-Ospeed)] in the [Level of optimization] property is selected. |
||||||||||||
Performs optimization according to the [Level of optimization] property. |
||||||||||||
Performs inline expansion at the location calling the function for which #pragma inline is specified. |
||||||||||||
Yes(Auto-detect, to specify maximum increasing rate)(-Oinline=2 -Oinline_size) |
Distinguishes the function that is the target of inline expansion automatically and expands it. Specify the maximum rate of increase. |
|||||||||||
Yes(Auto-detect, maximum increasing rate : to adjust the level of optimization)(-Oinline=2) |
Distinguishes the function that is the target of inline expansion automatically and expands it. The compiler takes a value that suits the optimization level as the maximum rate of increase. |
|||||||||||
Distinguishes the function that is the target of inline expansion automatically and expands it, while minimizing the increase in code size. |
||||||||||||
Suppresses all inline expansion including the function for which "#pragma inline" is specified. |
||||||||||||
Specify the maximum increasing rate (%) of the code size up to which inline expansion is performed. (Example: When "100" is specified, inline expansion will be applied until the code size increases by 100% (becomes twice the initial size).) This property corresponds to the -Oinline_size option of the ccrh command. This property is displayed when [Yes(Auto-detect, to specify maximum increasing rate)(-Oinline=2 -Oinline_size)] in the [Perform inline expansion] property is selected, or when [To adjust the level of optimization(No option specified)] in the [Perform inline expansion] property and [Speed precedence(-Ospeed)] in the [Level of optimization] property are selected. |
||||||||||||
Select whether to improve the program's execution performance by reordering instructions at the machine-language level. This property corresponds to the -Opipeline option of the ccrh command. |
||||||||||||
Performs optimization according to the [Level of optimization] property. |
||||||||||||
Use jr instruction to call a function at the end of the function |
Select whether to give precedence to using jr instructions in the place of jarl instructions when the function ends with a function call. This property corresponds to the -Otail_call option of the ccrh command. |
|||||||||||
Performs optimization according to the [Level of optimization] property. |
||||||||||||
Gives precedence to using jr instructions in the place of jarl instructions when the function ends with a function call. The code size can be reduced by removing the store/restore instructions for lp. |
||||||||||||
Uses jarl instructions when the function ends with a function call. |
||||||||||||
Select whether to use immediate values to initialize automatic variables. This property corresponds to the -Oinline_init option of the ccrh command. This property is displayed when you have selected [Always latest version which was installed] or V1.07.00 or a later version for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.07.00 or a later version of the CC-RH compiler has been installed. |
||||||||||||
Performs optimization according to the [Level of optimization] property. |
||||||||||||
Always uses immediate values to initialize automatic variables. |
||||||||||||
The CC-RH selects the optimum initialize method for automatic variables. |
||||||||||||
Select whether to proceed with optimization through a change of the alignment conditions. This property corresponds to the -Oalign option of the ccrh command. This property is displayed in the following cases.
|
||||||||||||
Performs optimization according to the [Level of optimization] property. |
||||||||||||
Performs optimization through a change of the alignment conditions. |
||||||||||||
Does not perform optimization through a change of the alignment conditions. |
||||||||||||
Select whether to optimize accesses to external variables. This property corresponds to the -Osmap and -Omap options of the ccrh command. |
||||||||||||
Sets a base address for external or static variables defined in the file to be compiled, and generates code that accesses these relative to the base address. |
||||||||||||
Generates an external symbol allocation information file. According to the information, recompilation is done to generate code that performs access to external or static variables relative to the base address. |
||||||||||||
Specify the level of inter-module optimization (such as function merging). Only [Yes(Level 1)(Perform)(-Xintermodule)] and [No] are displayed when [No] in the [Build simultaneously] property in the [Build Method] category from the [Common Options] tab is selected. This property corresponds to the -Xwhole_program, -Xmerge_files, and -Xintermodule options of the ccrh command. |
||||||||||||
Yes(Level 3)(Perform with assuming it the whole program)(-Xwhole_program) |
Performs inter-module optimization assuming that the source files comprise the entire program. However, operation is not guaranteed if the preconditions are not met. See "CC-RH Compiler User's Manual" for details about the preconditions. |
|||||||||||
Yes(Level 2)(Perform with merging files)(-Xmerge_files, -Xintermodule) |
Merges two or more C source files and performs inter-module optimization. This item is displayed only when two or more source files are added to the project. |
|||||||||||
Select the method for expanding library functions. This property corresponds to the -library option of the ccrh command. This property is displayed when you have selected [Always latest version which was installed] or V2.00.00 or a later version for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V2.00.00 or a later version of the CC-RH compiler has been installed. |
||||||||||||
Performs instruction expansion of several library functions(-library=intrinsic) |
Performs instruction expansion of several standard library function calls. |
|||||||||||
Perform optimization considering type of data indicated by pointer |
Select whether to perform optimization with consideration for the type of the data indicated by the pointer, based on the ANSI standard. This property corresponds to the -Xalias option of the ccrh command. |
|||||||||||
Performs optimization with consideration for the type of the data indicated by the pointer. In general, this option improves the object performance, but the execution result may differ from the case when [No] is selected. |
||||||||||||
Does not perform optimization with consideration for the type of the data indicated by the pointer. |
||||||||||||
Select whether to perform inline expansion of functions "strcpy()", "strcmp()", "memcpy()", and "memset()" calls, with regarding the alignment conditions of the array (including character strings) and the structure as 4 bytes. This improves the execution speed of the program to be generated, but it increases the code size. This property corresponds to the -Xinline_strcpy option of the ccrh command. This property is displayed only when [No] in the [Structure packing] property in the [Output Code] category is selected. |
||||||||||||
Performs inline expansion of functions "strcpy()", "strcmp()", "memcpy()", and "memset()" calls. |
||||||||||||
Does not perform inline expansion of functions "strcpy()", "strcmp()", "memcpy()", and "memset()" calls. |
||||||||||||
When the same string literals exist in the source file, specify whether to merge them and allocate to the one area. This property corresponds to the -Xmerge_string option of the ccrh command. |
||||||||||||
Merges the same string literals exist in the source file and allocates to the one area. |
||||||||||||
Each allocates the same string literals exist in the source file to separate areas. |
||||||||||||
Output additional information for optimization at time of linkage |
Select whether to output additional information for optimization at the time of linkage. Optimization at time of linkage is applied to files for which this option has been specified. This property corresponds to the -goptimize option of the ccrh command. This property is displayed when you have selected [Always latest version which was installed] or V2.01.00 or a later version for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V2.01.00 or a later version of the CC-RH compiler has been installed. |
|||||||||||
Outputs additional information for optimization at the time of linkage. |
||||||||||||
Does not output additional information for optimization at the time of linkage. |
The detailed information on preprocessing is displayed and the configuration can be changed.
Specify the additional include paths during compiling. The following placeholders are supported. %ActiveProjectDir%: Replaces with the absolute path of the active project folder. %ActiveProjectName%: Replaces with the active project name. %BuildModeName%: Replaces with the build mode name. %MainProjectDir%: Replaces with the absolute path of the main project folder. %MainProjectName%: Replaces with the main project name. %MicomToolPath%: Replaces with the absolute path of the install folder of this product. %ProjectDir%: Replaces with the absolute path of the project folder. %ProjectName%: Replaces with the project name. %TempDir%: Replaces with the absolute path of the temporary folder. %WinDir%: Replaces with the absolute path of the Windows system folder. The specified include path is searched with higher priority than the standard include file folder of CC-RH. The reference point of the path is the project folder. When this property is omitted, only the standard folder of CC-RH is searched. This property corresponds to the -I option of the ccrh command. The specified include path is displayed as the subproperty. When the include path is added to the project tree, the path is added to the top of the subproperties. Uppercase characters and lowercase characters are not distinguished for the include paths. |
||||
Edit by the Path Edit dialog box which appears when clicking the [...] button. For the subproperty, you can enter directly in the text box. |
||||
Change the specified order of the include paths which the system set during compiling. The following placeholders are supported. %ActiveProjectDir%: Replaces with the absolute path of the active project folder. %ActiveProjectName%: Replaces with the active project name. %BuildModeName%: Replaces with the build mode name. %MainProjectDir%: Replaces with the absolute path of the main project folder. %MainProjectName%: Replaces with the main project name. %MicomToolPath%: Replaces with the absolute path of the install folder of this product. %ProjectDir%: Replaces with the absolute path of the project folder. %ProjectName%: Replaces with the project name. %TempDir%: Replaces with the absolute path of the temporary folder. %WinDir%: Replaces with the absolute path of the Windows system folder. The system include path is searched with lower priority than the additional include path. The reference point of the path is the project folder. This property corresponds to the -I option of the ccrh command. |
||||
Edit by the System Include Path Order dialog box which appears when clicking the [...] button. |
||||
Changes not allowed (Only the specified order of the include paths can be changed.) |
||||
Specify the file that is included at the top of the compilation unit. The following placeholders are supported. %ActiveProjectDir%: Replaces with the absolute path of the active project folder. %ActiveProjectName%: Replaces with the active project name. %BuildModeName%: Replaces with the build mode name. %MainProjectDir%: Replaces with the absolute path of the main project folder. %MainProjectName%: Replaces with the main project name. %MicomToolPath%: Replaces with the absolute path of the install folder of this product. %ProjectDir%: Replaces with the absolute path of the project folder. %ProjectName%: Replaces with the project name. %TempDir%: Replaces with the absolute path of the temporary folder. %WinDir%: Replaces with the absolute path of the Windows system folder. The reference point of the path is the project folder. This property corresponds to the -Xpreinclude option of the ccrh command. The specified include file name is displayed as the subproperty. |
||||
Include files at head of compiling units[number of defined items] |
||||
Edit by the Text Edit dialog box which appears when clicking the [...] button. For the subproperty, you can enter directly in the text box. |
||||
Specify the name of the macro to be defined. Specify in the format of "macro name=defined value", with one macro name per line. The "=defined value" part can be omitted, and in this case, "1" is used as the defined value. This property corresponds to the -D option of the ccrh command. |
||||
Edit by the Text Edit dialog box which appears when clicking the [...] button. For the subproperty, you can enter directly in the text box. |
||||
Specify the macro name to be undefined. Specify in the format of "macro name", with one macro name per line. This property corresponds to the -U option of the ccrh command. |
||||
Edit by the Text Edit dialog box which appears when clicking the [...] button. For the subproperty, you can enter directly in the text box. |
||||
Select whether to output the comments of the C source to the preprocessed file. This property corresponds to the -Xpreprocess option of the ccrh command. This property is displayed only when [Yes(-P)] in the [Output preprocessed source file] property in the [Output File] category is selected. |
||||
Outputs the comments of the C source to the preprocessed file. |
||||
Does not output the comments of the C source to the preprocessed file. |
||||
Select whether to output the line number information of the C source to the preprocessed file. This property corresponds to the -Xpreprocess option of the ccrh command. This property is displayed only when [Yes(-P)] in the [Output preprocessed source file] property in the [Output File] category is selected. |
||||
Outputs the line number information of the C source to the preprocessed file. |
||||
Does not output the line number information of the C source to the preprocessed file. |
The detailed information on the quality improvement is displayed and the configuration can be changed.
Select whether to detect the stack smashing. This property is usable only in the Professional Edition. Detection of stack smashing is a feature for writing a value outside the valid stack area before entering a function and checking whether that value is rewritten before exiting the function. Upon detection, the user-defined __stack_chk_fail() function is called. See "CC-RH Compiler User's Manual" about the difference between [Yes(-Xstack_protector)] and [Yes(All)(-Xstack_protector_all)]. This property corresponds to the -Xstack_protector and -Xstack_protector_all options of the ccrh command. This property is displayed when [Always latest version which was installed] or V1.03.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.03.00 or a later version of the CC-RH compiler has been installed. |
||||||
Specify the value to be embedded for detecting the stack smashing. This property is usable only in the Professional Edition. This property corresponds to the -Xstack_protector and -Xstack_protector_all options of the ccrh command. This property is displayed in the following cases.
|
||||||
Select whether to output code for detecting illegal indirect function calls. Enable this facility to check the destination addresses of branches caused by each indirect function call. The output code will call the user-defined __control_flow_chk_fail() function in response to the detection of a problem. This property is usable only in the Professional Edition. This property corresponds to the -control_flow_integrity option of the ccrh command. This property is displayed when you have selected [Always latest version which was installed] or V1.07.00 or a later version for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.07.00 or a later version of the CC-RH compiler has been installed. |
||||||
Does not output code for detecting illegal indirect function calls. |
The detailed information on C language is displayed and the configuration can be changed.
Select the standard of C language. This property corresponds to the -lang option of the ccrh command. This property is displayed when [Always latest version which was installed] or V1.07.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.07.00 or a later version of the CC-RH compiler has been installed. |
||||
Compilation will proceed in compliance with the C90 standard. |
||||
Compilation will proceed in compliance with the C99 standard. |
||||
Select whether to process as making C source program comply strictly with the ANSI standard and output an error or warning for a specification that violates the standard. This property corresponds to the -Xansi option of the ccrh command. This property is displayed when [Always latest version which was installed] or V1.06.00 or an earlier version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.06.00 or an earlier version of the CC-RH compiler has been installed. |
||||
Processes as making C source program comply strictly with the ANSI standard and outputs an error or warning for a specification that violates the standard. |
||||
Compatibility with the conventional C language specifications is conferred and processing continues after warning is output. |
||||
Select whether to process as making C source program comply strictly with the C90 or C99 standard and output an error or warning for a specification that violates the standard. This property corresponds to the -strict_std option of the ccrh command. This property is displayed when [Always latest version which was installed] or V1.07.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.07.00 or a later version of the CC-RH compiler has been installed. |
||||
Processes as making C source program comply strictly with the C90 or C99 standard and outputs an error or warning for a specification that violates the standard. |
||||
Compatibility with the conventional C language specifications is conferred and processing continues after warning is output. |
||||
Select which integer type the enumeration type handles. This property corresponds to the -Xenum_type option of the ccrh command. |
||||
Handles each enumerated type as the smallest integer type capable of expressing all the enumerators in that type. |
||||
Select whether to handle all external variables as if they were volatile-declared. This property corresponds to the -Xvolatile option of the ccrh command. |
||||
Handles all external variables as if they were volatile-declared. |
||||
Handles only the volatile-qualified variables as they were volatile-declared. |
||||
Select whether to check the compatibility of a C program. This property corresponds to the -Xcheck option of the ccrh command. |
||||
Checks the compatibility with the SuperH family C/C++ compiler. |
||||
The detailed information on character encoding is displayed and the configuration can be changed.
The detailed information on output code is displayed and the configuration can be changed.
Select whether to perform structure packing. The specified alignment can be used without aligning structure members according to the type of each member. This property corresponds to the -Xpack option of the ccrh command. |
||||||||||||
Generates instructions on the assumption that the device supports misaligned access. This option corresponds to the -misalign option of the ccrh command. This property is displayed when [Always latest version which was installed] or V2.04.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V2.04.00 or a later version of the CC-RH compiler has been installed. |
||||||||||||
Does not generate instructions that access to misaligned memory |
||||||||||||
Select the alignment of the branch address. This property corresponds to the -Xalign4 option of the ccrh command. This property is displayed when [Always latest version which was installed] or V1.02.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.02.00 or a later version of the CC-RH compiler has been installed. [4 bytes(Contains each loop head)(-Xalign4=loop)], [4 bytes(Contains each innermost loop head)(-Xalign4=innermostloop)], and [4 bytes(All branches)(-Xalign4=all)] are displayed when [Always latest version which was installed] or V1.03.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.03.00 or a later version of the CC-RH compiler has been installed |
||||||||||||
Sets the alignment of the start address of a function and the start address of all loops to 4. |
||||||||||||
4 bytes(Contains each innermost loop head)(-Xalign4=innermostloop) |
Sets the alignment of the start address of a function and the start address of the innermost loop to 4. |
|||||||||||
Sets the alignment of the start address of a function and all branch destination addresses to 4. |
||||||||||||
Select the order of bit-field members. This property corresponds to the -Xbit_order option of the ccrh command. |
||||||||||||
Select whether to output a C source program as a comment to the assembly source file to be output. This property corresponds to the -Xpass_source option of the ccrh command. This property is displayed only when [Yes(-Xasm_path)] in the [Output assembly source file] property is selected or when [Yes(-Xasm_option=-Xprn_path)] in the [Output assemble list file] property in the [Assemble List] category is selected. |
||||||||||||
Outputs a C source program as a comment to the assembly source file. |
||||||||||||
Does not output a C source program as a comment to the assembly source file. |
||||||||||||
Select the code output mode for switch statements in programs. This property corresponds to the -Xswitch option of the ccrh command. |
||||||||||||
Outputs the switch statements in the same format as the if-else statement along a string of case statements in programs. Select this item if the case statements are written in the order of frequency or if only a few labels are used. Because the case statements are compared starting from the top, unnecessary comparison can be reduced and the execution speed can be increased if the case statement that most often matches is written first. |
||||||||||||
Outputs the code in the binary search format for switch statements in programs. Searches for a matching case statement by using a binary search algorithm. If this item is selected when many labels are used, any case statement can be found at almost the same speed. |
||||||||||||
Outputs the code in the table jump format for switch statements in programs. References a table indexed on the values in the case statements, and selects and processes case labels from the switch statement values. The code will branch to all the case statements with about the same speed. However, if case values are not used in succession, an unnecessary area will be created. |
||||||||||||
Select how the compiler will behave in response to writing to control registers defined as #pragma register_group. This property is usable only in the Professional Edition. This property corresponds to the -store_reg option of the ccrh command. This property is displayed when [Always latest version which was installed] or V1.06.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.06.00 or a later version of the CC-RH compiler has been installed. |
||||||||||||
The compiler detects writing to the control registers defined as #pragma register_group and inserts syncp instructions after write instructions for these registers, except where the next instruction will clearly be for writing to the same group, in which case the compiler does not insert a syncp instruction. |
||||||||||||
The compiler detects writing to the control registers defined as #pragma register_group and displays the addresses of the write instructions in the Output panel, except where the next instruction will clearly be for writing to the same group, in which case the compiler does not display the address in the panel. |
||||||||||||
Output all list of writing control register(-store_reg=list_all) |
The compiler detects writing to the control registers defined as #pragma register_group and displays the addresses of the write instructions in the Output panel. |
|||||||||||
Ignore peripheral group specification by #pragma(-store_reg=ignore) |
#pragma register_group is ignored but a warning is not output. |
|||||||||||
Select this item when you have not used #pragma register_group in the source code. No action will proceed in response to writing to control registers. |
||||||||||||
Specify the save mode of the register bank. This property corresponds to the -Xresbank_mode option of the ccrh command. This property is displayed only in the following cases.
|
||||||||||||
Select whether to generate runtime library call instructions for floating-point calculations, or to generate floating-point instructions for the floating point unit (FPU). This property corresponds to the -Xfloat option of the ccrh command. This property is displayed only when other than [Object for G3K(-Xcpu=g3k)] in the [Specify CPU core] property in the [Output File Type and Path] category from the [Common Options] tab is selected. |
||||||||||||
Generates runtime library call instructions for floating-point calculations. |
||||||||||||
Generates floating-point calculation instructions of FPU for floating-point calculations. |
||||||||||||
Select the rounding method for floating-point constant operations. This property corresponds to the -Xround option of the ccrh command. This property is displayed only in the following cases.
|
||||||||||||
Rounds floating-point constants to the nearest value that can be expressed. |
||||||||||||
Select whether to generate codes that supports the FXU (extended floating-point operation unit). This property corresponds to the -Xfxu option of the ccrh command. This property is displayed only in the following cases.
|
||||||||||||
The default value is set by selected device on creating project. |
||||||||||||
Select whether to enable the half precision floating-point type. This property is usable only in the Professional Edition. This property corresponds to the -Xuse_fp16 option of the ccrh command. This property is displayed only in the following cases.
|
||||||||||||
Select the precision of double type and long double type. This property corresponds to the -Xdbl_size option of the ccrh command. This property is displayed when [Always latest version which was installed] or V1.02.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.02.00 or a later version of the CC-RH compiler has been installed. |
||||||||||||
Handles double type and long double type as single-precision floating-point type (4 bytes). |
||||||||||||
Handles double type and long double type as double-precision floating-point type (8 bytes). |
||||||||||||
Select whether to generate the div and divu instructions instead of the divq and divqu instructions for division. Although the divq and divqu instructions are fast, the number of execution cycles will differ depending on the values of the operands. This property corresponds to the -Xdiv option of the ccrh command. |
||||||||||||
Select whether to generate code (fetrap instruction) that checks the OV flag after division instructions and generate an FE level software exception when the OV flag is 1. This property corresponds to the -Xcheck_div_ov option of the ccrh command. |
||||||||||||
Specify the vector number of the fetrap instruction generated when the OV flag is 1. This property corresponds to the -Xcheck_div_ov option of the ccrh command. This property is displayed only when [Yes(-Xcheck_div_ov)] in the [Generate OV flag check code in division operation] property is selected. |
||||||||||||
Select the type of generating floating-point calculation codes. This property corresponds to the -relaxed_math option of the ccrh command. This property is displayed when [Always latest version which was installed] or V2.00.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V2.00.00 or a later version of the CC-RH compiler has been installed. |
||||||||||||
Efficiency is not emphasized in the generation of code. With this option, details of the operation of compilation are specified in the [Generate product-sum operation instruction] and [Generate recipf instruction] properties. If [No] is selected for both properties, the CC-RH compiler generates code which is strictly in accordance with the C-language standard or IEEE 754. |
||||||||||||
Select whether to generate product-sum operation instructions (fmaf.s, fmsf.s, fnmaf.s, and fnmsf.s) for single-precision floating-point product-sum operations. This property corresponds to the -Xuse_fmaf option of the ccrh command. This property is displayed in any one of the following cases.
|
||||||||||||
Generates product-sum operation instructions for single-precision floating-point product-sum operations. Specifying this option will accelerate the execution speed but change the operation precision. |
||||||||||||
Select whether to generate recipf instructions (recipf.d, recipf.s). This property corresponds to the -use_recipf option of the ccrh command. This property is displayed only in the following cases.
|
||||||||||||
Generates recipf instructions. Specifying this option will accelerate the execution speed but change the operation precision. |
||||||||||||
Select whether to generate code to produce approximate results for floating-point calculations. This property corresponds to the -approximate option of the ccrh command. This property is displayed only in the following cases.
|
||||||||||||
Generates code to produce approximate results for floating-point calculations. Specifying this option leads to the generation of efficient code to handle calculations but the precision of the results of operations will differ from that obtained by calculations as strictly defined in the language standard. |
||||||||||||
Does not generate code to produce approximate results for floating-point calculations. |
||||||||||||
Select whether to generate code by using the comparison condition for generating an invalid operation exception when any of the comparison values is a not-a-number in floating-point comparison. This property corresponds to the -Xunordered_cmpf option of the ccrh command. This property is displayed only when other than [Object for G3K(-Xcpu=g3k)] in the [Specify CPU core] property in the [Output File Type and Path] category from the [Common Options] tab is selected. |
||||||||||||
Generates code by using the comparison condition for generating an invalid operation exception when any of the comparison values is a not-a-number in floating-point comparison. |
||||||||||||
Does not detect invalid operation exceptions in floating-point comparison. |
||||||||||||
Specify the instruction to be generated for function-call branches. This property corresponds to the -Xcall_jump option of the ccrh command. |
||||||||||||
Generates the jarl32 and jr32 instructions for function-call branches. |
||||||||||||
Generates the jarl and jr instructions for function-call branches. |
||||||||||||
Specify the Far Jump file name. The code that uses the jarl32 and jr32 instruction for branch instructions of functions described in a file is output to the Far Jump file. The ccrh command outputs an error if the function is in a range that cannot be branched to by the jarl or jr directive (±2MB or more), in which case the Far Jump file is used to recompile. This property corresponds to the -Xfar_jump option of the ccrh command. |
||||||||||||
Directly enter in the text box or edit by the Specify Far Jump File dialog box which appears when clicking the [...] button. |
||||||||||||
Select the default section of the data area. This property corresponds to the -Xsection option of the ccrh command. This property is displayed when [Always latest version which was installed] or V1.02.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.02.00 or a later version of the CC-RH compiler has been installed. See "Table A.2Default Section of Data Area" for details about the section attribute. |
||||||||||||
Uses r0_disp16 as the default section attribute of the data area. |
||||||||||||
Uses r0_disp23 as the default section attribute of the data area. |
||||||||||||
Uses ep_disp16 as the default section attribute of the data area. |
||||||||||||
Uses ep_disp23 as the default section attribute of the data area. |
||||||||||||
Uses gp_disp16 as the default section attribute of the data area. |
||||||||||||
Uses gp_disp16 as the default section attribute of the data area. |
||||||||||||
Select the default section of the const area. This property corresponds to the -Xsection option of the ccrh command. This property is displayed when [Always latest version which was installed] or V1.02.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.02.00 or a later version of the CC-RH compiler has been installed. [pcconst16(-Xsection=const=pcconst16)] and [pcconst23(-Xsection=const=pcconst23)] are displayed when V1.07.00 or a later version of the CC-RH compiler is selected. See "Table A.3Default Section of Const Area" for details about the section attribute. |
||||||||||||
Uses zconst as the default section attribute of the const area. |
||||||||||||
Uses zconst23 as the default section attribute of the const area. |
||||||||||||
Uses pcconst16 as the default section attribute of the const area. |
||||||||||||
Uses pcconst23 as the default section attribute of the const area. |
||||||||||||
Allocate uninitialized variables in sections according to number of alignments |
Select whether to allocate the uninitialized variables to sections in accord with their alignment sizes. This property corresponds to the -stuff option of the ccrh command. This property is displayed when [Always latest version which was installed] or V2.03.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V2.03.00 or a later version of the CC-RH compiler has been installed. |
|||||||||||
Allocates the uninitialized variables to sections in accord with their alignment sizes. |
||||||||||||
Does not allocate the uninitialized variables to sections in accord with their alignment sizes. |
||||||||||||
Allocate initialized variables in sections according to number of alignments |
Select whether to allocate the initialized variables to sections in accord with their alignment sizes. This property corresponds to the -stuff option of the ccrh command. This property is displayed when [Always latest version which was installed] or V2.03.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V2.03.00 or a later version of the CC-RH compiler has been installed. |
|||||||||||
Allocates the initialized variables to sections in accord with their alignment sizes. |
||||||||||||
Does not allocate the initialized variables to sections in accord with their alignment sizes. |
||||||||||||
Allocate const qualified variables in sections according to number of alignments |
Select whether to allocate the const qualified variables to sections in accord with their alignment sizes. This property corresponds to the -stuff option of the ccrh command. This property is displayed when [Always latest version which was installed] or V2.03.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V2.03.00 or a later version of the CC-RH compiler has been installed. |
|||||||||||
Allocates the const qualified variables to sections in accord with their alignment sizes. |
||||||||||||
Does not allocate the const qualified variables to sections in accord with their alignment sizes. |
||||||||||||
Select whether to use software trace (DBTAG) for exclusion control check. This property corresponds to the -Xcheck_exclusion_control option of the ccrh command. This property is displayed when you have selected [Always latest version which was installed] or V1.04.00 or a later version for the [Using compiler package version] property under the [Version Select] category as well as [Yes(-g)] for the [Add debug information] property under the [Debug Information] category on the [Common Options] tab in an environment where V1.04.00 or a later version of the CC-RH compiler has been installed. |
||||||||||||
Does not use software trace (DBTAG) for exclusion control check. |
||||||||||||
Variables to be checked for software trace (DBTAG) for exclusion control check |
The variables to be checked for software trace (DBTAG) for exclusion control check are displayed. Set the value in the Functions and Variables Access Table panel. Note that this property is not applied to [Reset All to Default] from the context menu. This property corresponds to the -Xcheck_exclusion_control option of the ccrh command. This property is displayed when you have selected [Always latest version which was installed] or V1.04.00 or a later version for the [Using compiler package version] property under the [Version Select] category as well as [Yes(-g)] for the [Add debug information] property under the [Debug Information] category on the [Common Options] tab in an environment where V1.04.00 or a later version of the CC-RH compiler has been installed. |
|||||||||||
Variables to be checked for software trace (DBTAG) for exclusion control check[number of defined items] |
||||||||||||
Control starting functions for software trace (DBTAG) for exclusion control check |
The control starting functions for software trace (DBTAG) for exclusion control check are displayed. Set the value in the Exclusive Control Check Tool dialog box. Note that this property is not applied to [Reset All to Default] from the context menu. This property corresponds to the -Xcheck_exclusion_control option of the ccrh command. This property is displayed when you have selected [Always latest version which was installed] or V1.04.00 or a later version for the [Using compiler package version] property under the [Version Select] category as well as [Yes(-g)] for the [Add debug information] property under the [Debug Information] category on the [Common Options] tab in an environment where V1.04.00 or a later version of the CC-RH compiler has been installed. |
|||||||||||
Control starting functions for software trace (DBTAG) for exclusion control check[number of defined items] |
||||||||||||
Control ending functions for software trace (DBTAG) for exclusion control check |
The control ending functions for software trace (DBTAG) for exclusion control check are displayed. Set the value in the Exclusive Control Check Tool dialog box. Note that this property is not applied to [Reset All to Default] from the context menu. This property corresponds to the -Xcheck_exclusion_control option of the ccrh command. This property is displayed when you have selected [Always latest version which was installed] or V1.04.00 or a later version for the [Using compiler package version] property under the [Version Select] category as well as [Yes(-g)] for the [Add debug information] property under the [Debug Information] category on the [Common Options] tab in an environment where V1.04.00 or a later version of the CC-RH compiler has been installed. |
|||||||||||
Control ending functions for software trace (DBTAG) for exclusion control check[number of defined items] |
||||||||||||
Use software trace (DBTAG) for measuring CAN bus reception processing time |
Select whether to use software trace (DBTAG) for measuring CAN bus reception processing time. This property corresponds to the -insert_dbtag_with_label option of the ccrh command. This property is displayed when [Always latest version which was installed] or V1.06.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.06.00 or a later version of the CC-RH compiler has been installed.
|
|||||||||||
Uses software trace (DBTAG) for measuring CAN bus reception processing time. |
||||||||||||
Does not use software trace (DBTAG) for measuring CAN bus reception processing time. |
||||||||||||
Parameters of software trace (DBTAG) for measuring CAN bus reception processing time |
The parameters of software trace (DBTAG) for measuring CAN bus reception processing time are displayed. Set the position where DBTAG is output in the Editor panel. Note that this property is not applied to [Reset All to Default] from the context menu. This property corresponds to the -insert_dbtag_with_label option of the ccrh command. This property is displayed only in the following cases.
|
|||||||||||
Parameters of software trace (DBTAG) for measuring CAN bus reception processing time[number of defined items] |
||||||||||||
Select the method for controlling the multi-core functions. This property corresponds to the -Xmulti_level option of the ccrh command. |
||||||||||||
The detailed information on output files is displayed and the configuration can be changed.
The detailed information on the assemble list is displayed and the configuration can be changed.
The detailed information on the MISRA-C rule check are displayed and the configuration can be changed.
20XX in the following table corresponds to 2012 or 2004 in particular.
Select the MISRA-C specification. This property is usable only in the Professional Edition. This property is displayed when [Always latest version which was installed] or V1.03.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.03.00 or a later version of the CC-RH compiler has been installed. |
||||||||||||
Settings for MISRA-C2012 are made in the subsequent properties. |
||||||||||||
Settings for MISRA-C2004 are made in the subsequent properties. |
||||||||||||
Select the MISRA-C rules to be applied. This property is usable only in the Professional Edition. This property corresponds to the -Xmisra20XX option of the ccrh command. |
||||||||||||
Checks the source code against all of the rules which are supported. |
||||||||||||
Checks the source code against the rules with the specified numbers among the rules which are supported. |
||||||||||||
Checks the source code against the rules that do not match the specified numbers among the rules which are supported. |
||||||||||||
Apply rules that are classified as "required"(-Xmisra20XX=required) |
Checks the source code against the rules of the "required" type. |
|||||||||||
Apply rules that are classified as "required" and specified rule number(-Xmisra20XX=required_add) |
Checks the source code against the rules of the "required" type and the rules with the specified numbers among the rules which are supported. |
|||||||||||
Ignore specified rule number from rules that are classified as "required"(-Xmisra20XX=required_remove) |
Checks the source code against the rules of the "required" type except for the rules with the specified numbers among the rules which are supported. |
|||||||||||
Apply rules that are described in the specified file(-Xmisra20XX=<file name>) |
Checks the source code against the rules with the numbers described in specified file among the rules which are supported. |
|||||||||||
Specify the rule number description file (MISRA-C rule file). This property is usable only in the Professional Edition. When misra2012 is selected, the CC-RH compiler always checks the code against rule numbers 13.6, 17.3, and 17.4 (as well as 9.1 if the compiler is V1.05.00 or later, 12.5 and 21.13 if the compiler is V1.06.00 or later, and 17.6 if the compiler is V1.07.00 or later) regardless of which rule numbers have been specified through the properties setting. The following placeholders are supported. %BuildModeName%: Replaces with the build mode name. %MicomToolPath%: Replaces with the absolute path of the install folder of this product. %ProjectName%: Replaces with the project name. This property corresponds to the -Xmisra20XX option of the ccrh command. This property is displayed only when [Apply rules that are described in the specified file(-Xmisra20XX=<file name>)] in the [Apply rule] property is selected. |
||||||||||||
Directly enter in the text box or edit by the Specify MISRA-C Rule File dialog box which appears when clicking the [...] button. |
||||||||||||
Specify the rule number to be checked. This property is usable only in the Professional Edition. When misra2012 is selected, the CC-RH compiler always checks the code against rule numbers 13.6, 17.3, and 17.4 (as well as 9.1 if the compiler is V1.05.00 or later, 12.5 and 21.13 if the compiler is V1.06.00 or later, and 17.6 if the compiler is V1.07.00 or later) regardless of which rule numbers have been specified through the properties setting. Specify at least one rule number in decimal. This property corresponds to the -Xmisra20XX option of the ccrh command. This property is displayed only when [Apply specified rule number(-Xmisra20XX=apply)] in the [Apply rule] property is selected. |
||||||||||||
Directly enter in the text box or edit by the Specify Rule Number dialog box which appears when clicking the [...] button. |
||||||||||||
Specify the rule number to be excluded from the check. This property is usable only in the Professional Edition. When misra2012 is selected, the CC-RH compiler always checks the code against rule numbers 13.6, 17.3, and 17.4 (as well as 9.1 if the compiler is V1.05.00 or later, 12.5 and 21.13 if the compiler is V1.06.00 or later, and 17.6 if the compiler is V1.07.00 or later) regardless of which rule numbers have been specified through the properties setting. Specify at least one rule number in decimal. This property corresponds to the -Xmisra20XX option of the ccrh command. This property is displayed only when [Ignore specified rule number(-Xmisra20XX=ignore)] in the [Apply rule] property is selected. |
||||||||||||
Directly enter in the text box or edit by the Specify Rule Number dialog box which appears when clicking the [...] button. |
||||||||||||
Specify the rule number to be checked besides the required rules. This property is usable only in the Professional Edition. When misra2012 is selected, the CC-RH compiler always checks the code against rule numbers 13.6, 17.3, and 17.4 (as well as 9.1 if the compiler is V1.05.00 or later, 12.5 and 21.13 if the compiler is V1.06.00 or later, and 17.6 if the compiler is V1.07.00 or later) regardless of which rule numbers have been specified through the properties setting. Specify at least one rule number in decimal. This property corresponds to the -Xmisra20XX option of the ccrh command. This property is displayed only when [Apply rules that are classified as "required" and specified rule number(-Xmisra20XX=required_add)] in the [Apply rule] property is selected. |
||||||||||||
Directly enter in the text box or edit by the Specify Rule Number dialog box which appears when clicking the [...] button. |
||||||||||||
Specify the required rule number to be excluded from the check. This property is usable only in the Professional Edition. When misra2012 is selected, the CC-RH compiler always checks the code against rule numbers 13.6, 17.3, and 17.4 (as well as 9.1 if the compiler is V1.05.00 or later, 12.5 and 21.13 if the compiler is V1.06.00 or later, and 17.6 if the compiler is V1.07.00 or later) regardless of which rule numbers have been specified through the properties setting. Specify at least one rule number in decimal. This property corresponds to the -Xmisra20XX option of the ccrh command. This property is displayed only when [Ignore specified rule number from rules that are classified as "required"(-Xmisra20XX=required_remove)] in the [Apply rule] property is selected. |
||||||||||||
Directly enter in the text box or edit by the Specify Rule Number dialog box which appears when clicking the [...] button. |
||||||||||||
Specify files that will not be checked against the MISRA-C rules. This property is usable only in the Professional Edition. The following placeholders are supported. %BuildModeName%: Replaces with the build mode name. %MicomToolPath%: Replaces with the absolute path of the install folder of this product. %ProjectName%: Replaces with the project name. This property corresponds to the -Xignore_files_misra option of the ccrh command. This property is displayed only in the following cases.
|
||||||||||||
Edit by the Path Edit dialog box which appears when clicking the [...] button. -> Edit by the Add Excluding File dialog box which appears when clicking the [Browse...] button. For the subproperty, you can enter directly in the text box. |
||||||||||||
Output message of the enhanced key word and extended specifications |
Select whether to output the message of the enhanced key word and extended specifications. This property is usable only in the Professional Edition. This property corresponds to the -Xcheck_language_extention option of the ccrh command. This property is displayed only in the following cases.
|
|||||||||||
Enables MISRA-C rule check and outputs messages when the rule check is partially suppressed by the unique language specifications extended from the C language standard. |
||||||||||||
Disables MISRA-C rule check is disabled, which are partially suppressed by the extended language specifications. |
||||||||||||
Select whether to enable checking that spans files. This property is usable only in the Professional Edition. This property corresponds to the -misra_intermodule option of the ccrh command. This property is displayed only in the following cases.
|
||||||||||||
The detailed information on messages is displayed and the configuration can be changed.
Select whether to change the type of warning messages to error. This property corresponds to the -change_message option of the ccrh command. This property is displayed when [Always latest version which was installed] or V1.07.00 or a later version is selected for the [Using compiler package version] property under the [Version Select] category on the [Common Options] tab in an environment where V1.07.00 or a later version of the CC-RH compiler has been installed. |
||||||
Yes(Specify message number)(-change_message=error=<Message number>) |
Specifies the number of warning message of which type is to be changed to error. |
|||||
Specify the number of the warning message. If multiple message numbers are specified, delimit them with "," (comma) (example: 23028,23086). Also, a range of message numbers can be specified using "-" (hyphen) (example:23028-23086). This property corresponds to the -change_message option of the ccrh command. This property is displayed only in the following cases.
|
||||||
Directly enter in the text box or edit by the Character String Input dialog box which appears when clicking the [...] button. |
||||||
Other detailed information on compilation is displayed and the configuration can be changed.