mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
* Ignore CLion project files and CMake outputs * Supporting stripping file path that contains backslash * Set /bigobj flag and increase stack size for windows platform * Fix MSVC warnings
This commit is contained in:
parent
0f66262fa1
commit
cbdee5a804
2
.gitignore
vendored
2
.gitignore
vendored
@ -41,3 +41,5 @@ verilator-config-version.cmake
|
||||
**/_build/*
|
||||
**/obj_dir/*
|
||||
/.vscode/
|
||||
/.idea/
|
||||
/cmake-build-*/
|
||||
|
@ -577,8 +577,8 @@ static inline double VL_ROUND(double n) {
|
||||
//=========================================================================
|
||||
// Stringify macros
|
||||
|
||||
#define VL_STRINGIFY(x) VL_STRINGIFY2(x)
|
||||
#define VL_STRINGIFY2(x) #x
|
||||
#define VL_STRINGIFY(...) VL_STRINGIFY2(__VA_ARGS__)
|
||||
#define VL_STRINGIFY2(...) #__VA_ARGS__
|
||||
|
||||
//=========================================================================
|
||||
// Offset of field in type
|
||||
|
@ -490,11 +490,13 @@ target_include_directories(${verilator}
|
||||
)
|
||||
|
||||
if (WIN32)
|
||||
target_compile_options(${verilator} PRIVATE /bigobj)
|
||||
target_compile_definitions(${verilator} PRIVATE
|
||||
YY_NO_UNISTD_H
|
||||
)
|
||||
target_include_directories(${verilator} PRIVATE ../platform/win32)
|
||||
target_link_libraries(${verilator} PRIVATE bcrypt psapi)
|
||||
target_link_options(${verilator} PRIVATE /STACK:10000000)
|
||||
endif()
|
||||
|
||||
install(TARGETS ${verilator})
|
||||
|
@ -202,7 +202,9 @@ private:
|
||||
new AstShiftR{fl, lhip,
|
||||
new AstConst{fl, static_cast<uint32_t>(nbitsonright)},
|
||||
VL_EDATASIZE}},
|
||||
new AstAnd{fl, new AstConst{fl, AstConst::SizedEData{}, ~VL_MASK_E(loffset)},
|
||||
new AstAnd{fl,
|
||||
new AstConst{fl, AstConst::SizedEData{},
|
||||
static_cast<uint32_t>(~VL_MASK_E(loffset))},
|
||||
new AstShiftL{fl, llowp,
|
||||
new AstConst{fl, static_cast<uint32_t>(loffset)},
|
||||
VL_EDATASIZE}}};
|
||||
|
@ -20,6 +20,7 @@
|
||||
// clang-format off
|
||||
#include "V3Error.h"
|
||||
#include "V3FileLine.h"
|
||||
#include "V3Os.h"
|
||||
#include "V3String.h"
|
||||
#ifndef V3ERROR_NO_GLOBAL_
|
||||
# include "V3Global.h"
|
||||
@ -286,12 +287,7 @@ FileLine* FileLine::copyOrSameFileLine() {
|
||||
return newp;
|
||||
}
|
||||
|
||||
string FileLine::filebasename() const VL_MT_SAFE {
|
||||
string name = filename();
|
||||
string::size_type pos;
|
||||
if ((pos = name.rfind('/')) != string::npos) name.erase(0, pos + 1);
|
||||
return name;
|
||||
}
|
||||
string FileLine::filebasename() const VL_MT_SAFE { return V3Os::filenameNonDir(filename()); }
|
||||
|
||||
string FileLine::filebasenameNoExt() const {
|
||||
string name = filebasename();
|
||||
|
@ -620,6 +620,7 @@ private:
|
||||
// LCOV_EXCL_START
|
||||
if (debug()) rhsp->dumpTree("Don't know how to fold expression: ");
|
||||
rhsp->v3fatalSrc("Should not try to fold this during conditional merging");
|
||||
return nullptr;
|
||||
// LCOV_EXCL_STOP
|
||||
}
|
||||
|
||||
|
@ -548,8 +548,8 @@ string V3Options::filePath(FileLine* fl, const string& modname, const string& la
|
||||
// Find a filename to read the specified module name,
|
||||
// using the incdir and libext's.
|
||||
// Return "" if not found.
|
||||
if (modname[0] == '/') {
|
||||
// If leading /, obey existing absolute path, so can find getStdPackagePath()
|
||||
if (!V3Os::filenameIsRel(modname)) {
|
||||
// modname is an absolute path, so can find getStdPackagePath()
|
||||
string exists = filePathCheckOneDir(modname, "");
|
||||
if (exists != "") return exists;
|
||||
}
|
||||
|
38
src/V3Os.cpp
38
src/V3Os.cpp
@ -124,7 +124,9 @@ void V3Os::setenvStr(const string& envvar, const string& value, const string& wh
|
||||
//######################################################################
|
||||
// Generic filename utilities
|
||||
|
||||
string V3Os::filenameFromDirBase(const string& dir, const string& basename) {
|
||||
static bool isSlash(char ch) VL_PURE { return ch == '/' || ch == '\\'; }
|
||||
|
||||
string V3Os::filenameFromDirBase(const string& dir, const string& basename) VL_PURE {
|
||||
// Don't return ./{filename} because if filename was absolute, that makes it relative
|
||||
if (dir.empty() || dir == ".") {
|
||||
return basename;
|
||||
@ -133,22 +135,26 @@ string V3Os::filenameFromDirBase(const string& dir, const string& basename) {
|
||||
}
|
||||
}
|
||||
|
||||
string V3Os::filenameDir(const string& filename) {
|
||||
string::size_type pos;
|
||||
if ((pos = filename.rfind('/')) != string::npos) {
|
||||
return filename.substr(0, pos);
|
||||
} else {
|
||||
string V3Os::filenameDir(const string& filename) VL_PURE {
|
||||
// std::filesystem::path::parent_path
|
||||
auto it = filename.rbegin();
|
||||
for (; it != filename.rend(); ++it) {
|
||||
if (isSlash(*it)) break;
|
||||
}
|
||||
if (it.base() == filename.begin()) {
|
||||
return ".";
|
||||
} else {
|
||||
return {filename.begin(), (++it).base()};
|
||||
}
|
||||
}
|
||||
|
||||
string V3Os::filenameNonDir(const string& filename) VL_PURE {
|
||||
string::size_type pos;
|
||||
if ((pos = filename.rfind('/')) != string::npos) {
|
||||
return filename.substr(pos + 1);
|
||||
} else {
|
||||
return filename;
|
||||
// std::filesystem::path::filename
|
||||
auto it = filename.rbegin();
|
||||
for (; it != filename.rend(); ++it) {
|
||||
if (isSlash(*it)) break;
|
||||
}
|
||||
return string{it.base(), filename.end()};
|
||||
}
|
||||
|
||||
string V3Os::filenameNonExt(const string& filename) VL_PURE {
|
||||
@ -202,7 +208,7 @@ string V3Os::filenameSubstitute(const string& filename) {
|
||||
return result;
|
||||
}
|
||||
|
||||
string V3Os::filenameRealPath(const string& filename) {
|
||||
string V3Os::filenameRealPath(const string& filename) VL_PURE {
|
||||
// Get rid of all the ../ behavior in the middle of the paths.
|
||||
// If there is a ../ that goes down from the 'root' of this path it is preserved.
|
||||
char retpath[PATH_MAX];
|
||||
@ -219,8 +225,12 @@ string V3Os::filenameRealPath(const string& filename) {
|
||||
}
|
||||
}
|
||||
|
||||
bool V3Os::filenameIsRel(const string& filename) {
|
||||
bool V3Os::filenameIsRel(const string& filename) VL_PURE {
|
||||
#if defined(_MSC_VER)
|
||||
return std::filesystem::path(filename).is_relative();
|
||||
#else
|
||||
return (filename.length() > 0 && filename[0] != '/');
|
||||
#endif
|
||||
}
|
||||
|
||||
//######################################################################
|
||||
@ -251,12 +261,14 @@ void V3Os::createDir(const string& dirname) {
|
||||
|
||||
void V3Os::unlinkRegexp(const string& dir, const string& regexp) {
|
||||
#ifdef _MSC_VER
|
||||
try {
|
||||
for (const auto& dirEntry : std::filesystem::directory_iterator(dir.c_str())) {
|
||||
if (VString::wildmatch(dirEntry.path().filename().string(), regexp.c_str())) {
|
||||
const string fullname = dir + "/" + dirEntry.path().filename().string();
|
||||
_unlink(fullname.c_str());
|
||||
}
|
||||
}
|
||||
} catch (std::filesystem::filesystem_error const& ex) {}
|
||||
#else
|
||||
if (DIR* const dirp = opendir(dir.c_str())) {
|
||||
while (struct dirent* const direntp = readdir(dirp)) {
|
||||
|
14
src/V3Os.h
14
src/V3Os.h
@ -35,20 +35,22 @@ public:
|
||||
static void setenvStr(const string& envvar, const string& value, const string& why);
|
||||
|
||||
// METHODS (generic filename utilities)
|
||||
static string filenameFromDirBase(const string& dir, const string& basename);
|
||||
/// Return non-directory part of filename
|
||||
static string filenameFromDirBase(const string& dir, const string& basename) VL_PURE;
|
||||
///< Return non-directory part of filename
|
||||
static string filenameNonDir(const string& filename) VL_PURE;
|
||||
/// Return non-extensioned (no .) part of filename
|
||||
///< Return non-extensioned (no .) part of filename
|
||||
static string filenameNonExt(const string& filename) VL_PURE;
|
||||
///< Return basename of filename
|
||||
static string filenameNonDirExt(const string& filename) VL_PURE {
|
||||
return filenameNonExt(filenameNonDir(filename));
|
||||
}
|
||||
static string filenameDir(const string& filename); ///< Return directory part of filename
|
||||
///< Return directory part of filename
|
||||
static string filenameDir(const string& filename) VL_PURE;
|
||||
/// Return filename with env vars removed
|
||||
static string filenameSubstitute(const string& filename);
|
||||
static string filenameRealPath(const string& filename); ///< Return realpath of filename
|
||||
static bool filenameIsRel(const string& filename); ///< True if relative
|
||||
///< Return realpath of filename
|
||||
static string filenameRealPath(const string& filename) VL_PURE;
|
||||
static bool filenameIsRel(const string& filename) VL_PURE; ///< True if relative
|
||||
|
||||
// METHODS (file utilities)
|
||||
static string getline(std::istream& is, char delim = '\n');
|
||||
|
@ -181,7 +181,7 @@ public:
|
||||
// We'll make the table with a separate natural alignment for each output var, so
|
||||
// always have 8, 16 or 32 bit widths, so use widthTotalBytes
|
||||
m_outWidthBytes += nodep->varp()->dtypeSkipRefp()->widthTotalBytes();
|
||||
m_outVarps.emplace_back(vscp, m_outVarps.size());
|
||||
m_outVarps.emplace_back(vscp, static_cast<unsigned>(m_outVarps.size()));
|
||||
}
|
||||
if (nodep->access().isReadOrRW()) {
|
||||
m_inWidthBits += nodep->varp()->width();
|
||||
|
Loading…
Reference in New Issue
Block a user