28 lines
1.1 KiB
Java
28 lines
1.1 KiB
Java
|
|
package _VisualDVM.ProjectData.SapforData;
|
||
|
|
public class SapforProperties {
|
||
|
|
//побочные настройки визулизатора
|
||
|
|
public boolean Precompilation=true;
|
||
|
|
public boolean SaveModifications=true; // сохранять исходную версию
|
||
|
|
public int GCOVLimit=10;
|
||
|
|
public String DVMConvertationOptions=" ";
|
||
|
|
//настройки для компонента SAPFOR
|
||
|
|
public int STATIC_SHADOW_ANALYSIS=0;
|
||
|
|
public int STATIC_PRIVATE_ANALYSIS=1;
|
||
|
|
public int FREE_FORM=0;
|
||
|
|
public int KEEP_DVM_DIRECTIVES=0;
|
||
|
|
public int KEEP_SPF_DIRECTIVES=0;
|
||
|
|
public int PARALLELIZE_FREE_LOOPS=0;
|
||
|
|
public int MAX_SHADOW_WIDTH=50;
|
||
|
|
public int OUTPUT_UPPER=0;
|
||
|
|
public int TRANSLATE_MESSAGES=1;
|
||
|
|
public int KEEP_LOOPS_CLOSE_NESTING=0;
|
||
|
|
public int KEEP_GCOV=0;
|
||
|
|
public int ANALYSIS_OPTIONS=0;
|
||
|
|
public int DEBUG_PRINT_ON=0;
|
||
|
|
public int MPI_PROGRAM=0;
|
||
|
|
public int IGNORE_IO_SAPFOR=0;
|
||
|
|
public int KEEP_SPF_DIRECTIVES_AMONG_TRANSFORMATIONS=0;
|
||
|
|
public int PARSE_FOR_INLINE=0;
|
||
|
|
public int EMPTY_OPTION=0;
|
||
|
|
}
|