Use Google-style-guide header guard naming, to avoid __ prefix.

This commit is contained in:
Wilson Snyder 2021-03-03 21:57:07 -05:00
parent 90773f4980
commit be31fdcfe4
140 changed files with 278 additions and 278 deletions

View File

@ -19,7 +19,7 @@
///
//=========================================================================
#define _VERILATED_CPP_
#define VERILATOR_VERILATED_CPP_
#include "verilatedos.h"
#include "verilated_imp.h"

View File

@ -20,8 +20,8 @@
///
//*************************************************************************
#ifndef _VERILATED_H_
#define _VERILATED_H_ 1 ///< Header Guard
#ifndef VERILATOR_VERILATED_H_
#define VERILATOR_VERILATED_H_ ///< Header Guard
// clang-format off
#include "verilatedos.h"

View File

@ -16,8 +16,8 @@
///
//=============================================================================
#ifndef _VERILATED_COV_H_
#define _VERILATED_COV_H_ 1
#ifndef VERILATOR_VERILATED_COV_H_
#define VERILATOR_VERILATED_COV_H_
#include "verilatedos.h"

View File

@ -16,8 +16,8 @@
///
//=============================================================================
#ifndef _VERILATED_COV_KEY_H_
#define _VERILATED_COV_KEY_H_ 1
#ifndef VERILATOR_VERILATED_COV_KEY_H_
#define VERILATOR_VERILATED_COV_KEY_H_
#include "verilatedos.h"

View File

@ -19,7 +19,7 @@
///
//=========================================================================
#define _VERILATED_DPI_CPP_
#define VERILATOR_VERILATED_DPI_CPP_
#include "verilatedos.h"
#include "verilated_dpi.h"

View File

@ -20,8 +20,8 @@
///
//*************************************************************************
#ifndef _VERILATED_DPI_H_
#define _VERILATED_DPI_H_ 1 ///< Header Guard
#ifndef VERILATOR_VERILATED_DPI_H_
#define VERILATOR_VERILATED_DPI_H_ ///< Header Guard
#include "verilatedos.h"
#include "verilated.h" // Also presumably included by caller

View File

@ -17,8 +17,8 @@
//=============================================================================
// SPDIFF_OFF
#ifndef _VERILATED_FST_C_H_
#define _VERILATED_FST_C_H_ 1
#ifndef VERILATOR_VERILATED_FST_C_H_
#define VERILATOR_VERILATED_FST_C_H_
#include "verilated.h"
#include "verilated_trace.h"

View File

@ -21,8 +21,8 @@
///
//*************************************************************************
#ifndef _VERILATED_HEAVY_H_
#define _VERILATED_HEAVY_H_ 1 ///< Header Guard
#ifndef VERILATOR_VERILATED_HEAVY_H_
#define VERILATOR_VERILATED_HEAVY_H_ ///< Header Guard
#include "verilated.h"

View File

@ -16,11 +16,11 @@
///
//=========================================================================
#ifndef _VERILATED_IMP_H_
#define _VERILATED_IMP_H_ 1 ///< Header Guard
#ifndef VERILATOR_VERILATED_IMP_H_
#define VERILATOR_VERILATED_IMP_H_ ///< Header Guard
// clang-format off
#if !defined(_VERILATED_CPP_) && !defined(_VERILATED_DPI_CPP_) && !defined(_VERILATED_VPI_CPP_)
#if !defined(VERILATOR_VERILATED_CPP_) && !defined(VERILATOR_VERILATED_DPI_CPP_) && !defined(VERILATOR_VERILATED_VPI_CPP_)
# error "verilated_imp.h only to be included by verilated*.cpp internals"
#endif

View File

@ -19,8 +19,8 @@
///
//*************************************************************************
#ifndef _VERILATED_INTRINSICS_H_
#define _VERILATED_INTRINSICS_H_ 1 ///< Header Guard
#ifndef VERILATOR_VERILATED_INTRINSICS_H_
#define VERILATOR_VERILATED_INTRINSICS_H_ ///< Header Guard
// clang-format off

View File

@ -16,8 +16,8 @@
///
//=============================================================================
#ifndef _VERILATED_SAVE_C_H_
#define _VERILATED_SAVE_C_H_ 1
#ifndef VERILATOR_VERILATED_SAVE_C_H_
#define VERILATOR_VERILATED_SAVE_C_H_
#include "verilatedos.h"
#include "verilated_heavy.h"

View File

@ -19,8 +19,8 @@
///
//*************************************************************************
#ifndef _VERILATED_SC_H_
#define _VERILATED_SC_H_ 1 ///< Header Guard
#ifndef VERILATOR_VERILATED_SC_H_
#define VERILATOR_VERILATED_SC_H_ ///< Header Guard
#include "verilatedos.h"

View File

@ -24,8 +24,8 @@
///
//*************************************************************************
#ifndef _VERILATED_SYM_PROPS_H_
#define _VERILATED_SYM_PROPS_H_ 1 ///< Header Guard
#ifndef VERILATOR_VERILATED_SYM_PROPS_H_
#define VERILATOR_VERILATED_SYM_PROPS_H_ ///< Header Guard
#include "verilatedos.h"

View File

@ -23,8 +23,8 @@
///
//*************************************************************************
#ifndef _VERILATED_SYMS_H_
#define _VERILATED_SYMS_H_ 1 ///< Header Guard
#ifndef VERILATOR_VERILATED_SYMS_H_
#define VERILATOR_VERILATED_SYMS_H_ ///< Header Guard
#include "verilatedos.h"
#include "verilated_heavy.h"

View File

@ -16,8 +16,8 @@
///
//=============================================================================
#ifndef _VERILATED_THREADS_H_
#define _VERILATED_THREADS_H_
#ifndef VERILATOR_VERILATED_THREADS_H_
#define VERILATOR_VERILATED_THREADS_H_
#include "verilatedos.h"
#include "verilated.h" // for VerilatedMutex and clang annotations

View File

@ -17,8 +17,8 @@
//=============================================================================
// SPDIFF_OFF
#ifndef _VERILATED_TRACE_H_
#define _VERILATED_TRACE_H_ 1
#ifndef VERILATOR_VERILATED_TRACE_H_
#define VERILATOR_VERILATED_TRACE_H_
// clang-format off

View File

@ -17,8 +17,8 @@
//=============================================================================
// SPDIFF_OFF
#ifndef _VERILATED_VCD_C_H_
#define _VERILATED_VCD_C_H_ 1
#ifndef VERILATOR_VERILATED_VCD_C_H_
#define VERILATOR_VERILATED_VCD_C_H_
#include "verilated.h"
#include "verilated_trace.h"

View File

@ -17,8 +17,8 @@
//=============================================================================
// SPDIFF_OFF
#ifndef _VERILATED_VCD_SC_H_
#define _VERILATED_VCD_SC_H_ 1
#ifndef VERILATOR_VERILATED_VCD_SC_H_
#define VERILATOR_VERILATED_VCD_SC_H_
#include "verilatedos.h"
#include "verilated_sc.h"

View File

@ -21,7 +21,7 @@
///
//=========================================================================
#define _VERILATED_VPI_CPP_
#define VERILATOR_VERILATED_VPI_CPP_
#include "verilated.h"
#include "verilated_vpi.h"

View File

@ -19,8 +19,8 @@
///
//=========================================================================
#ifndef _VERILATED_VPI_H_
#define _VERILATED_VPI_H_ 1 ///< Header Guard
#ifndef VERILATOR_VERILATED_VPI_H_
#define VERILATOR_VERILATED_VPI_H_ ///< Header Guard
#include "verilatedos.h"
#include "verilated.h"

View File

@ -22,8 +22,8 @@
///
//*************************************************************************
#ifndef _VERILATEDOS_H_
#define _VERILATEDOS_H_ 1 ///< Header Guard
#ifndef VERILATOR_VERILATEDOS_H_
#define VERILATOR_VERILATEDOS_H_ ///< Header Guard
// Current clang-format versions botch #ifdef inclusion, so
// clang-format off

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3ACTIVE_H_
#define _V3ACTIVE_H_ 1
#ifndef VERILATOR_V3ACTIVE_H_
#define VERILATOR_V3ACTIVE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3ACTIVETOP_H_
#define _V3ACTIVETOP_H_ 1
#ifndef VERILATOR_V3ACTIVETOP_H_
#define VERILATOR_V3ACTIVETOP_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3ASSERT_H_
#define _V3ASSERT_H_ 1
#ifndef VERILATOR_V3ASSERT_H_
#define VERILATOR_V3ASSERT_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3ASSERTPRE_H_
#define _V3ASSERTPRE_H_ 1
#ifndef VERILATOR_V3ASSERTPRE_H_
#define VERILATOR_V3ASSERTPRE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3AST_H_
#define _V3AST_H_ 1
#ifndef VERILATOR_V3AST_H_
#define VERILATOR_V3AST_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3ASTCONSTONLY_H_
#define _V3ASTCONSTONLY_H_ 1
#ifndef VERILATOR_V3ASTCONSTONLY_H_
#define VERILATOR_V3ASTCONSTONLY_H_
// Include only in visitors that do not not edit nodes, so should use constant iterators
#define iterateAndNext error_use_iterateAndNextConst

View File

@ -14,10 +14,10 @@
//
//*************************************************************************
#ifndef _V3ASTNODES_H_
#define _V3ASTNODES_H_ 1
#ifndef VERILATOR_V3ASTNODES_H_
#define VERILATOR_V3ASTNODES_H_
#ifndef _V3AST_H_
#ifndef VERILATOR_V3AST_H_
#error "Use V3Ast.h as the include"
#endif

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3BEGIN_H_
#define _V3BEGIN_H_ 1
#ifndef VERILATOR_V3BEGIN_H_
#define VERILATOR_V3BEGIN_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3BRANCH_H_
#define _V3BRANCH_H_ 1
#ifndef VERILATOR_V3BRANCH_H_
#define VERILATOR_V3BRANCH_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3BROKEN_H_
#define _V3BROKEN_H_ 1
#ifndef VERILATOR_V3BROKEN_H_
#define VERILATOR_V3BROKEN_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3CCTORS_H_
#define _V3CCTORS_H_ 1
#ifndef VERILATOR_V3CCTORS_H_
#define VERILATOR_V3CCTORS_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3CUSE_H_
#define _V3CUSE_H_ 1
#ifndef VERILATOR_V3CUSE_H_
#define VERILATOR_V3CUSE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3CASE_H_
#define _V3CASE_H_ 1
#ifndef VERILATOR_V3CASE_H_
#define VERILATOR_V3CASE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3CAST_H_
#define _V3CAST_H_ 1
#ifndef VERILATOR_V3CAST_H_
#define VERILATOR_V3CAST_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3CDC_H_
#define _V3CDC_H_ 1
#ifndef VERILATOR_V3CDC_H_
#define VERILATOR_V3CDC_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3CHANGED_H_
#define _V3CHANGED_H_ 1
#ifndef VERILATOR_V3CHANGED_H_
#define VERILATOR_V3CHANGED_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3CLASS_H_
#define _V3CLASS_H_ 1
#ifndef VERILATOR_V3CLASS_H_
#define VERILATOR_V3CLASS_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3CLEAN_H_
#define _V3CLEAN_H_ 1
#ifndef VERILATOR_V3CLEAN_H_
#define VERILATOR_V3CLEAN_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3CLOCK_H_
#define _V3CLOCK_H_ 1
#ifndef VERILATOR_V3CLOCK_H_
#define VERILATOR_V3CLOCK_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3COMBINE_H_
#define _V3COMBINE_H_ 1
#ifndef VERILATOR_V3COMBINE_H_
#define VERILATOR_V3COMBINE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3CONFIG_H_
#define _V3CONFIG_H_ 1
#ifndef VERILATOR_V3CONFIG_H_
#define VERILATOR_V3CONFIG_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3CONST_H_
#define _V3CONST_H_ 1
#ifndef VERILATOR_V3CONST_H_
#define VERILATOR_V3CONST_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3COVERAGE_H_
#define _V3COVERAGE_H_ 1
#ifndef VERILATOR_V3COVERAGE_H_
#define VERILATOR_V3COVERAGE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3COVERAGEJOIN_H_
#define _V3COVERAGEJOIN_H_ 1
#ifndef VERILATOR_V3COVERAGEJOIN_H_
#define VERILATOR_V3COVERAGEJOIN_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3DEAD_H_
#define _V3DEAD_H_ 1
#ifndef VERILATOR_V3DEAD_H_
#define VERILATOR_V3DEAD_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3DELAYED_H_
#define _V3DELAYED_H_ 1
#ifndef VERILATOR_V3DELAYED_H_
#define VERILATOR_V3DELAYED_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3DEPTH_H_
#define _V3DEPTH_H_ 1
#ifndef VERILATOR_V3DEPTH_H_
#define VERILATOR_V3DEPTH_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3DEPTHBLOCK_H_
#define _V3DEPTHBLOCK_H_ 1
#ifndef VERILATOR_V3DEPTHBLOCK_H_
#define VERILATOR_V3DEPTHBLOCK_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3DESCOPE_H_
#define _V3DESCOPE_H_ 1
#ifndef VERILATOR_V3DESCOPE_H_
#define VERILATOR_V3DESCOPE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3EMITC_H_
#define _V3EMITC_H_ 1
#ifndef VERILATOR_V3EMITC_H_
#define VERILATOR_V3EMITC_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3EMITCBASE_H_
#define _V3EMITCBASE_H_ 1
#ifndef VERILATOR_V3EMITCBASE_H_
#define VERILATOR_V3EMITCBASE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3EMITCMAIN_H_
#define _V3EMITCMAIN_H_ 1
#ifndef VERILATOR_V3EMITCMAIN_H_
#define VERILATOR_V3EMITCMAIN_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3EMITCMAKE_H_
#define _V3EMITCMAKE_H_ 1
#ifndef VERILATOR_V3EMITCMAKE_H_
#define VERILATOR_V3EMITCMAKE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3EMITMK_H_
#define _V3EMITMK_H_ 1
#ifndef VERILATOR_V3EMITMK_H_
#define VERILATOR_V3EMITMK_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3EMITV_H_
#define _V3EMITV_H_ 1
#ifndef VERILATOR_V3EMITV_H_
#define VERILATOR_V3EMITV_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3EMITXML_H_
#define _V3EMITXML_H_ 1
#ifndef VERILATOR_V3EMITXML_H_
#define VERILATOR_V3EMITXML_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3ERROR_H_
#define _V3ERROR_H_ 1
#ifndef VERILATOR_V3ERROR_H_
#define VERILATOR_V3ERROR_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3EXPAND_H_
#define _V3EXPAND_H_ 1
#ifndef VERILATOR_V3EXPAND_H_
#define VERILATOR_V3EXPAND_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -938,7 +938,7 @@ void V3OutFile::putsForceIncs() {
void V3OutCFile::putsGuard() {
UASSERT(!m_guard, "Already called putsGuard in emit file");
m_guard = true;
string var = VString::upcase(string("_") + V3Os::filenameNonDir(filename()) + "_");
string var = VString::upcase(string("VERILATED_") + V3Os::filenameNonDir(filename()) + "_");
for (char& c : var) {
if (!isalnum(c)) c = '_';
}

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3FILE_H_
#define _V3FILE_H_ 1
#ifndef VERILATOR_V3FILE_H_
#define VERILATOR_V3FILE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3FILELINE_H_
#define _V3FILELINE_H_ 1
#ifndef VERILATOR_V3FILELINE_H_
#define VERILATOR_V3FILELINE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3GATE_H_
#define _V3GATE_H_ 1
#ifndef VERILATOR_V3GATE_H_
#define VERILATOR_V3GATE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3GENCLK_H_
#define _V3GENCLK_H_ 1
#ifndef VERILATOR_V3GENCLK_H_
#define VERILATOR_V3GENCLK_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3GLOBAL_H_
#define _V3GLOBAL_H_ 1
#ifndef VERILATOR_V3GLOBAL_H_
#define VERILATOR_V3GLOBAL_H_
// clang-format off
#include "config_build.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3GRAPH_H_
#define _V3GRAPH_H_ 1
#ifndef VERILATOR_V3GRAPH_H_
#define VERILATOR_V3GRAPH_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3GRAPHALG_H_
#define _V3GRAPHALG_H_ 1
#ifndef VERILATOR_V3GRAPHALG_H_
#define VERILATOR_V3GRAPHALG_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3GRAPHDFA_H_
#define _V3GRAPHDFA_H_ 1
#ifndef VERILATOR_V3GRAPHDFA_H_
#define VERILATOR_V3GRAPHDFA_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3GRAPHPATHCHECKER_H_
#define _V3GRAPHPATHCHECKER_H_
#ifndef VERILATOR_V3GRAPHPATHCHECKER_H_
#define VERILATOR_V3GRAPHPATHCHECKER_H_
#include "V3Error.h"
#include "V3Graph.h"

View File

@ -15,8 +15,8 @@
//
//*************************************************************************
#ifndef _V3GRAPHSTREAM_H_
#define _V3GRAPHSTREAM_H_
#ifndef VERILATOR_V3GRAPHSTREAM_H_
#define VERILATOR_V3GRAPHSTREAM_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3HASHED_H_
#define _V3HASHED_H_ 1
#ifndef VERILATOR_V3HASHED_H_
#define VERILATOR_V3HASHED_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -18,8 +18,8 @@
//
//*************************************************************************
#ifndef _V3HIERBLOCK_H_
#define _V3HIERBLOCK_H_ 1
#ifndef VERILATOR_V3HIERBLOCK_H_
#define VERILATOR_V3HIERBLOCK_H_
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3INLINE_H_
#define _V3INLINE_H_ 1
#ifndef VERILATOR_V3INLINE_H_
#define VERILATOR_V3INLINE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3INST_H_
#define _V3INST_H_ 1
#ifndef VERILATOR_V3INST_H_
#define VERILATOR_V3INST_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -15,8 +15,8 @@
//
//*************************************************************************
#ifndef _V3INSTRCOUNT_H_
#define _V3INSTRCOUNT_H_ 1
#ifndef VERILATOR_V3INSTRCOUNT_H_
#define VERILATOR_V3INSTRCOUNT_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LANGCODE_H_
#define _V3LANGCODE_H_ 1
#ifndef VERILATOR_V3LANGCODE_H_
#define VERILATOR_V3LANGCODE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LANGUAGEWORDS_H_
#define _V3LANGUAGEWORDS_H_ 1
#ifndef VERILATOR_V3LANGUAGEWORDS_H_
#define VERILATOR_V3LANGUAGEWORDS_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LIFE_H_
#define _V3LIFE_H_ 1
#ifndef VERILATOR_V3LIFE_H_
#define VERILATOR_V3LIFE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LIFEPOST_H_
#define _V3LIFEPOST_H_ 1
#ifndef VERILATOR_V3LIFEPOST_H_
#define VERILATOR_V3LIFEPOST_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LINKCELLS_H_
#define _V3LINKCELLS_H_ 1
#ifndef VERILATOR_V3LINKCELLS_H_
#define VERILATOR_V3LINKCELLS_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LINKDOT_H_
#define _V3LINKDOT_H_ 1
#ifndef VERILATOR_V3LINKDOT_H_
#define VERILATOR_V3LINKDOT_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LINKINC_H_
#define _V3LINKINC_H_ 1
#ifndef VERILATOR_V3LINKINC_H_
#define VERILATOR_V3LINKINC_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LINKJUMP_H_
#define _V3LINKJUMP_H_ 1
#ifndef VERILATOR_V3LINKJUMP_H_
#define VERILATOR_V3LINKJUMP_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LINKLVALUE_H_
#define _V3LINKLVALUE_H_ 1
#ifndef VERILATOR_V3LINKLVALUE_H_
#define VERILATOR_V3LINKLVALUE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LINKLEVEL_H_
#define _V3LINKLEVEL_H_ 1
#ifndef VERILATOR_V3LINKLEVEL_H_
#define VERILATOR_V3LINKLEVEL_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LINKPARSE_H_
#define _V3LINKPARSE_H_ 1
#ifndef VERILATOR_V3LINKPARSE_H_
#define VERILATOR_V3LINKPARSE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LINKRESOLVE_H_
#define _V3LINKRESOLVE_H_ 1
#ifndef VERILATOR_V3LINKRESOLVE_H_
#define VERILATOR_V3LINKRESOLVE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LIST_H_
#define _V3LIST_H_ 1
#ifndef VERILATOR_V3LIST_H_
#define VERILATOR_V3LIST_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3LOCALIZE_H_
#define _V3LOCALIZE_H_ 1
#ifndef VERILATOR_V3LOCALIZE_H_
#define VERILATOR_V3LOCALIZE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3MERGECOND_H_
#define _V3MERGECOND_H_ 1
#ifndef VERILATOR_V3MERGECOND_H_
#define VERILATOR_V3MERGECOND_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3NAME_H_
#define _V3NAME_H_ 1
#ifndef VERILATOR_V3NAME_H_
#define VERILATOR_V3NAME_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3NUMBER_H_
#define _V3NUMBER_H_ 1
#ifndef VERILATOR_V3NUMBER_H_
#define VERILATOR_V3NUMBER_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3OPTIONS_H_
#define _V3OPTIONS_H_ 1
#ifndef VERILATOR_V3OPTIONS_H_
#define VERILATOR_V3OPTIONS_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3ORDER_H_
#define _V3ORDER_H_ 1
#ifndef VERILATOR_V3ORDER_H_
#define VERILATOR_V3ORDER_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -34,8 +34,8 @@
// OrderPreCutEdge
//*************************************************************************
#ifndef _V3ORDERGRAPH_H_
#define _V3ORDERGRAPH_H_
#ifndef VERILATOR_V3ORDERGRAPH_H_
#define VERILATOR_V3ORDERGRAPH_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3OS_H_
#define _V3OS_H_ 1
#ifndef VERILATOR_V3OS_H_
#define VERILATOR_V3OS_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3PARAM_H_
#define _V3PARAM_H_ 1
#ifndef VERILATOR_V3PARAM_H_
#define VERILATOR_V3PARAM_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3PARSE_H_
#define _V3PARSE_H_ 1
#ifndef VERILATOR_V3PARSE_H_
#define VERILATOR_V3PARSE_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3PARSEIMP_H_
#define _V3PARSEIMP_H_ 1
#ifndef VERILATOR_V3PARSEIMP_H_
#define VERILATOR_V3PARSEIMP_H_
#include "config_build.h"
#include "verilatedos.h"

View File

@ -14,8 +14,8 @@
//
//*************************************************************************
#ifndef _V3PARSESYM_H_
#define _V3PARSESYM_H_ 1
#ifndef VERILATOR_V3PARSESYM_H_
#define VERILATOR_V3PARSESYM_H_
#include "config_build.h"
#include "verilatedos.h"

Some files were not shown because too many files have changed in this diff Show More