2023-10-18 04:49:28 +02:00
|
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
// Code available from: https://verilator.org
|
|
|
|
|
//
|
2026-01-27 02:24:34 +01:00
|
|
|
// 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-FileCopyrightText: 2003-2026 Wilson Snyder
|
2023-10-18 04:49:28 +02:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
// DESCRIPTION: Verilator: Precompilable header of V3Ast, multithreaded
|
|
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
|
|
|
|
|
#ifndef VERILATOR_V3PCHASTMT_H_
|
|
|
|
|
#define VERILATOR_V3PCHASTMT_H_
|
|
|
|
|
|
|
|
|
|
#ifdef VL_PCH_INCLUDED
|
|
|
|
|
#error "Including multiple V3Pch*.h flavors"
|
|
|
|
|
#endif
|
|
|
|
|
#define VL_PCH_INCLUDED
|
|
|
|
|
|
|
|
|
|
#include "config_build.h"
|
|
|
|
|
#include "verilatedos.h"
|
|
|
|
|
|
|
|
|
|
#include "V3Ast.h"
|
|
|
|
|
#include "V3Broken.h"
|
2026-03-01 17:59:29 +01:00
|
|
|
#include "V3Container.h"
|
2023-10-18 04:49:28 +02:00
|
|
|
#include "V3Error.h"
|
|
|
|
|
#include "V3FileLine.h"
|
|
|
|
|
#include "V3FunctionTraits.h"
|
|
|
|
|
#include "V3Global.h"
|
|
|
|
|
#include "V3Mutex.h"
|
|
|
|
|
#include "V3Number.h"
|
|
|
|
|
#include "V3Options.h"
|
|
|
|
|
#include "V3StdFuture.h"
|
|
|
|
|
#include "V3String.h"
|
|
|
|
|
|
2023-10-18 04:50:27 +02:00
|
|
|
#include <algorithm>
|
|
|
|
|
|
2023-10-18 04:49:28 +02:00
|
|
|
#endif // Guard
|