0 Star 0 Fork 0

TRH/生成中间代码的编译器

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.cpp 783 Bytes
一键复制 编辑 原始数据 按行查看 历史
TRH 提交于 2018-05-28 22:13 . 调整语法分析对8 16 进制的支持
#include <iostream>
using namespace std;
#include <fstream>
#include <string>
#include <thread>
#include <mutex>
#include <vector>
#include "identify.h"
#include "hexadecimal.h"
#include "cache_thread.h"
#include "my_hash.h"
#include "kernel_module.h"
int main(int argc, char** argv) {
//词法分析器部分
ifstream fin;
fin.open(filename);
if(!fin)
{
cout<<"Error...\n";
return 0;
}
cin.unsetf(ios::skipws);
thread identify_token(get_token, ref(fin));
identify_token.join();
vector<TOKEN>::iterator it=token_list.begin();
for(it=token_list.begin();it!=token_list.end();it++)
cout<<(*it).name<<","<<(*it).token_type<<endl;
//语法分析器
cout<<"--------------"<<endl<<"词法分析:"<<endl;
kernel_module(token_list);
getchar();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/trhdq/MY_IDE.git
git@gitee.com:trhdq/MY_IDE.git
trhdq
MY_IDE
生成中间代码的编译器
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385