1 Star 0 Fork 0

theta405/iverilog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
load_module.cc 4.75 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* Copyright (c) 2001-2021 Stephen Williams (steve@icarus.com)
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
* General Public License as published by the Free Software
* Foundation; either version 2 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
# include "config.h"
# include "util.h"
# include "parse_api.h"
# include "compiler.h"
# include <iostream>
# include <map>
# include <cstdlib>
# include <cstring>
# include <string>
# include <sys/types.h>
# include <dirent.h>
# include <cctype>
# include <cassert>
# include "ivl_alloc.h"
using namespace std;
/*
* The module library items are maps of key names to file name within
* the directory.
*/
struct module_library {
char*dir;
bool key_case_sensitive;
map<string,const char*>name_map;
struct module_library*next;
};
static struct module_library*library_list = 0;
static struct module_library*library_last = 0;
const char dir_character = '/';
extern char depfile_mode;
extern FILE *depend_file;
/*
* Use the type name as a key, and search the module library for a
* file name that has that key.
*/
bool load_module(const char*type, int&parser_errors)
{
char path[4096];
char*ltype = strdup(type);
parser_errors = 0;
for (char*tmp = ltype ; *tmp ; tmp += 1)
*tmp = tolower(*tmp);
for (struct module_library*lcur = library_list
; lcur != 0 ; lcur = lcur->next) {
const char*key = lcur->key_case_sensitive? type : ltype;
map<string,const char*>::const_iterator cur;
cur = lcur->name_map.find(key);
if (cur == lcur->name_map.end())
continue;
snprintf(path, sizeof(path), "%s%c%s",
lcur->dir, dir_character, (*cur).second);
if(depend_file) {
if (depfile_mode == 'p') {
fprintf(depend_file, "M %s\n", path);
} else if (depfile_mode != 'i') {
fprintf(depend_file, "%s\n", path);
}
fflush(depend_file);
}
if (verbose_flag)
cerr << "Loading library file " << path << "." << endl;
parser_errors = pform_parse(path);
if (verbose_flag)
cerr << "... Load module complete." << endl << flush;
return parser_errors == 0;
}
return false;
}
/*
* This function takes the name of a library directory that the caller
* passed, and builds a name index for it.
*/
int build_library_index(const char*path, bool key_case_sensitive)
{
DIR*dir = opendir(path);
if (dir == 0)
return -1;
if (verbose_flag) {
cerr << "Indexing library: " << path << endl;
}
struct module_library*mlp = new struct module_library;
mlp->dir = strdup(path);
mlp->key_case_sensitive = key_case_sensitive;
/* Scan the director for files. check each file name to see if
it has one of the configured suffixes. If it does, then use
the root of the name as the key and index the file name. */
while (struct dirent*de = readdir(dir)) {
unsigned namsiz = strlen(de->d_name);
char*key = 0;
for (list<const char*>::iterator suf = library_suff.begin()
; suf != library_suff.end() ; ++ suf ) {
const char*sufptr = *suf;
unsigned sufsiz = strlen(sufptr);
if (sufsiz >= namsiz)
continue;
/* If the directory is case insensitive, then so
is the suffix. */
if (key_case_sensitive) {
if (strcmp(de->d_name + (namsiz-sufsiz),
sufptr) != 0)
continue;
} else {
if (strcasecmp(de->d_name + (namsiz-sufsiz),
sufptr) != 0)
continue;
}
key = new char[namsiz-sufsiz+1];
strncpy(key, de->d_name, namsiz-sufsiz);
key[namsiz-sufsiz] = 0;
break;
}
if (key == 0)
continue;
/* If the key is not to be case sensitive, then change
it to lowercase. */
if (! key_case_sensitive)
for (char*tmp = key ; *tmp ; tmp += 1)
*tmp = tolower(*tmp);
mlp->name_map[key] = strdup(de->d_name);
delete[]key;
}
closedir(dir);
if (library_last) {
assert(library_list);
library_last->next = mlp;
mlp->next = 0;
library_last = mlp;
} else {
library_list = mlp;
library_last = mlp;
mlp->next = 0;
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
VHDL
1
https://gitee.com/theta405/iverilog.git
git@gitee.com:theta405/iverilog.git
theta405
iverilog
iverilog
master

搜索帮助