Timer8 now has a variable amount of output compare units.
[avr-sim.git] / src / Analyzer.cpp
blobd052287eeced324b233ba5005ed549c7722e66e0
1 /*
2 * avr-sim: An atmel AVR simulator
3 * Copyright (C) 2008 Tom Haber
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #include "Analyzer.h"
20 #include "ScriptableAnalyzer.h"
21 #include "TraceAnalyzer.h"
23 #include "RuntimeException.h"
24 #include "Format.h"
26 namespace avr {
28 Analyzer *AnalyzerFactory::newAnalyzer(Core *core, ScriptEngine *vm,
29 const char *name) {
30 const char *scriptPrefix = "script:";
31 const char *tracePrefix = "trace:";
32 if( strncmp( name, scriptPrefix, strlen(scriptPrefix) ) == 0 ) {
33 // Its a script
34 const char *script = strchr(name,':') + 1;
35 return new ScriptableAnalyzer(core, vm, script);
36 } else if( strncmp( name, tracePrefix, strlen(tracePrefix) ) == 0 ) {
37 // Its a script
38 const char *filename = strchr(name,':') + 1;
39 return new TraceAnalyzer(core, filename);
40 } else {
41 throw util::RuntimeException(
42 util::format("Failed to create analyzer %s") % name );