no message

This commit is contained in:
2024-04-26 19:16:38 +03:00
parent 4d629df46f
commit b17e23a93a
12 changed files with 15 additions and 29 deletions

View File

@@ -27,7 +27,7 @@ public class DownloadRepository extends ProcessPass {
} else {
Utils.CleanDirectory(dst);
PerformScript("cd Repo\nsvn checkout " + Constants.REPOSITORY_AUTHENTICATION + " " + src + "\n"); //export
FileUtils.write(loadedFile, "+");
FileUtils.write(loadedFile, "");
}
}
@Override

View File

@@ -211,9 +211,6 @@ public class SPF_GetGraphFunctionPositions extends SilentSapforPass {
}
*/
protected void unpack(String packed) throws Exception {
//System.out.println("---");
// System.out.println(packed);
// UI.Info("+");
String[] splited = packed.split("\\|");
int j = 0;
//-
@@ -266,8 +263,6 @@ public class SPF_GetGraphFunctionPositions extends SilentSapforPass {
));
}
}
//---
//UI.Info("+");
}
@Override
protected void body() throws Exception {

View File

@@ -47,11 +47,6 @@ public class SPF_GetGraphFunctions extends SapforAnalysis {
}
@Override
protected void unpack(String packed) throws Exception {
// Utils.CreateTempFile("DEBUG1.txt", Utils.Brackets(packed));
// System.out.println("---");
// System.out.println(packed);
// UI.Info("+");
LinkedHashMap<String, FuncInfo> declarated_functions = new LinkedHashMap<>();
String[] splited = packed.split("\\|");
Index idx = new Index();

View File

@@ -15,7 +15,6 @@ public class SPF_GetMaxMinBlockDistribution extends SilentSapforPass {
@Override
protected boolean canStart(Object... args) throws Exception {
if (super.canStart(args)){
UI.Info("+");
SPF_ParseFilesWithOrder.silent = true;
return (passes.get(PassCode_2021.SPF_ParseFilesWithOrder).isDone() || passes.get(PassCode_2021.SPF_ParseFilesWithOrder).Do());
}

View File

@@ -74,9 +74,7 @@ public class SPF_InlineProceduresH extends SapforTransformation {
}
Options = Utils.toU(String.join("|", Result));
System.out.println(Utils.Brackets(Options));
// UI.Info("+");
Global.changeSetting(SettingName.PARSE_FOR_INLINE, "1");
// Pass_2021.passes.get(PassCode_2021.UpdateSetting).Do(SettingName.PARSE_FOR_INLINE, "1");
SPF_ParseFilesWithOrder.silent = true;
return passes.get(PassCode_2021.SPF_ParseFilesWithOrder).Do();
}