mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GT-3481 - Gnu Demangler - Checkpoint 1 - Separation of demangler
analyzers; gnu options in analyzer; still require javadocs, help and tests
This commit is contained in:
parent
b6fb46f5df
commit
b774ecb2d6
22 changed files with 1231 additions and 267 deletions
|
@ -82,8 +82,9 @@ class LoadPdbTask extends Task {
|
|||
}
|
||||
|
||||
try {
|
||||
AutoAnalysisManager.getAnalysisManager(program).scheduleWorker(worker, null, true,
|
||||
monitor);
|
||||
AutoAnalysisManager.getAnalysisManager(program)
|
||||
.scheduleWorker(worker, null, true,
|
||||
monitor);
|
||||
}
|
||||
catch (InterruptedException | CancelledException e1) {
|
||||
// ignore
|
||||
|
@ -117,7 +118,7 @@ class LoadPdbTask extends Task {
|
|||
|
||||
private void analyzeSymbols(TaskMonitor monitor, MessageLog log) {
|
||||
|
||||
DemanglerAnalyzer demanglerAnalyzer = new DemanglerAnalyzer();
|
||||
MicrosoftDemanglerAnalyzer demanglerAnalyzer = new MicrosoftDemanglerAnalyzer();
|
||||
String analyzerName = demanglerAnalyzer.getName();
|
||||
|
||||
Options analysisProperties = program.getOptions(Program.ANALYSIS_PROPERTIES);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue