2018-09-28 17:54:21 +02:00
|
|
|
// OpenSTA, Static Timing Analyzer
|
2020-03-07 03:50:37 +01:00
|
|
|
// Copyright (c) 2020, Parallax Software, Inc.
|
2018-09-28 17:54:21 +02:00
|
|
|
//
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
2020-02-16 01:13:16 +01:00
|
|
|
#pragma once
|
2018-09-28 17:54:21 +02:00
|
|
|
|
|
|
|
|
struct Tcl_Interp;
|
|
|
|
|
|
|
|
|
|
namespace sta {
|
|
|
|
|
|
2019-05-20 01:06:06 +02:00
|
|
|
class Sta;
|
2018-09-28 17:54:21 +02:00
|
|
|
|
2019-11-17 02:11:25 +01:00
|
|
|
// Parse command line argument
|
|
|
|
|
int
|
|
|
|
|
staTclAppInit(int argc,
|
|
|
|
|
char *argv[],
|
|
|
|
|
const char *init_filename,
|
|
|
|
|
Tcl_Interp *interp);
|
2018-09-28 17:54:21 +02:00
|
|
|
|
2019-11-17 02:11:25 +01:00
|
|
|
// Sta initialization.
|
|
|
|
|
// Makes the Sta object and registers TCL commands.
|
2018-09-28 17:54:21 +02:00
|
|
|
void
|
2019-11-17 02:11:25 +01:00
|
|
|
initSta(int argc,
|
|
|
|
|
char *argv[],
|
|
|
|
|
Tcl_Interp *interp);
|
2018-09-28 17:54:21 +02:00
|
|
|
|
|
|
|
|
// TCL init files are encoded into the string init using the three
|
|
|
|
|
// digit decimal equivalent for each ascii character. This function
|
|
|
|
|
// unencodes the string and evals it. This packages the TCL init
|
|
|
|
|
// files as part of the executable so they don't have to be shipped as
|
|
|
|
|
// separate files that have to be located and loaded at run time.
|
|
|
|
|
void
|
|
|
|
|
evalTclInit(Tcl_Interp *interp,
|
|
|
|
|
const char *inits[]);
|
|
|
|
|
|
|
|
|
|
bool
|
2019-06-15 01:53:03 +02:00
|
|
|
findCmdLineFlag(int &argc,
|
|
|
|
|
char *argv[],
|
2018-09-28 17:54:21 +02:00
|
|
|
const char *flag);
|
|
|
|
|
char *
|
2019-06-15 01:53:03 +02:00
|
|
|
findCmdLineKey(int &argc,
|
|
|
|
|
char *argv[],
|
2018-09-28 17:54:21 +02:00
|
|
|
const char *key);
|
|
|
|
|
|
2019-08-08 23:13:02 +02:00
|
|
|
int
|
|
|
|
|
parseThreadsArg(int &argc,
|
|
|
|
|
char *argv[]);
|
2020-11-13 20:46:19 +01:00
|
|
|
int
|
2019-06-05 19:20:48 +02:00
|
|
|
sourceTclFile(const char *filename,
|
|
|
|
|
bool echo,
|
|
|
|
|
bool verbose,
|
|
|
|
|
Tcl_Interp *interp);
|
2020-11-30 16:05:50 +01:00
|
|
|
bool
|
|
|
|
|
is_regular_file(const char *filename);
|
2019-06-04 19:18:14 +02:00
|
|
|
|
2018-09-28 17:54:21 +02:00
|
|
|
} // namespace
|