forked from github/verilator
47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
//*************************************************************************
|
|
// DESCRIPTION: Verilator: Preprocessing wrapper program
|
|
//
|
|
// Code available from: https://verilator.org
|
|
//
|
|
//*************************************************************************
|
|
//
|
|
// Copyright 2004-2023 by Wilson Snyder. This program is free software; you
|
|
// can redistribute it and/or modify it under the terms of either the GNU
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
// Version 2.0.
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
//
|
|
//*************************************************************************
|
|
|
|
#ifndef VERILATOR_V3PRESHELL_H_
|
|
#define VERILATOR_V3PRESHELL_H_
|
|
|
|
#include "config_build.h"
|
|
#include "verilatedos.h"
|
|
|
|
#include "V3Error.h"
|
|
#include "V3FileLine.h"
|
|
|
|
class V3ParseImp;
|
|
class VInFilter;
|
|
class VSpellCheck;
|
|
|
|
//============================================================================
|
|
|
|
class V3PreShell final {
|
|
// Static class for calling preprocessor
|
|
public:
|
|
static void boot();
|
|
static void shutdown();
|
|
static bool preproc(FileLine* fl, const string& modname, VInFilter* filterp,
|
|
V3ParseImp* parsep, const string& errmsg);
|
|
static void preprocInclude(FileLine* fl, const string& modname);
|
|
static void defineCmdLine(const string& name, const string& value);
|
|
static void undef(const string& name);
|
|
static void dumpDefines(std::ostream& os);
|
|
static void candidateDefines(VSpellCheck* spellerp);
|
|
};
|
|
|
|
#endif // Guard
|