renamed LibertyParer to LibertyParser
authorClifford Wolf <clifford@clifford.at>
Tue, 14 Jan 2014 17:57:47 +0000 (18:57 +0100)
committerClifford Wolf <clifford@clifford.at>
Tue, 14 Jan 2014 17:57:47 +0000 (18:57 +0100)
passes/techmap/dfflibmap.cc
passes/techmap/libparse.cc
passes/techmap/libparse.h

index 40caf780150e493e0cf68ded3966a9df0819c11c..23d93353fcb44cd2d39e491604d50745567179d1 100644 (file)
@@ -470,7 +470,7 @@ struct DfflibmapPass : public Pass {
                FILE *f = fopen(liberty_file.c_str(), "r");
                if (f == NULL)
                        log_cmd_error("Can't open liberty file `%s': %s\n", liberty_file.c_str(), strerror(errno));
-               LibertyParer libparser(f);
+               LibertyParser libparser(f);
                fclose(f);
 
                find_cell(libparser.ast, "$_DFF_N_", false, false, false, false);
index 2be3c586b8d2064928cd0028a8c8d257d42e6425..8f4a1a5fa521759ef4cf44574c763973bf5cac8c 100644 (file)
@@ -79,7 +79,7 @@ void LibertyAst::dump(FILE *f, std::string indent, std::string path, bool path_o
                fprintf(f, " ;\n");
 }
 
-int LibertyParer::lexer(std::string &str)
+int LibertyParser::lexer(std::string &str)
 {
        int c;
 
@@ -154,7 +154,7 @@ int LibertyParer::lexer(std::string &str)
        return c;
 }
 
-LibertyAst *LibertyParer::parse()
+LibertyAst *LibertyParser::parse()
 {
        std::string str;
 
@@ -219,14 +219,14 @@ LibertyAst *LibertyParer::parse()
 
 #ifndef FILTERLIB
 
-void LibertyParer::error()
+void LibertyParser::error()
 {
        log_error("Syntax error in line %d.\n", line);
 }
 
 #else
 
-void LibertyParer::error()
+void LibertyParser::error()
 {
        fprintf(stderr, "Syntax error in line %d.\n", line);
        exit(1);
@@ -611,7 +611,7 @@ int main(int argc, char **argv)
                }
        }
 
-       LibertyParer parser(f);
+       LibertyParser parser(f);
        if (parser.ast) {
                if (flag_verilogsim)
                        gen_verilogsim(parser.ast);
index 8c4a2f5ca988ac8cbf045a47a3bc37509d39748f..eff268bbb62ca69af9b9d9ef0335323e2e5c1d97 100644 (file)
@@ -39,13 +39,13 @@ namespace PASS_DFFLIBMAP
                static std::set<std::string> whitelist;
        };
 
-       struct LibertyParer
+       struct LibertyParser
        {
                FILE *f;
                int line;
                LibertyAst *ast;
-               LibertyParer(FILE *f) : f(f), line(1), ast(parse()) {}
-               ~LibertyParer() { if (ast) delete ast; }
+               LibertyParser(FILE *f) : f(f), line(1), ast(parse()) {}
+               ~LibertyParser() { if (ast) delete ast; }
                int lexer(std::string &str);
                LibertyAst *parse();
                void error();