Coder Social home page Coder Social logo

buaa-compiler's Introduction

BUAA-Compiler

My SysyCompiler

仓库的结构

具体看名字就能对应上大概某次作业,值得注意的是,我重构了一些代码,所以分支里面的代码很有可能是屎山

AutoTest是借鉴某位学长的测试工具,稍稍改了一丢丢

两个finalExam是因为我用了git push origin xxx但是忘了区分大小写了😓,大写的应该是期末考试回忆。。。。。

MIPS-PLUS是做过优化的版本。。。

不过真有人会看我的仓库吗。。。表示怀疑。。。。

竞速结果

总排名大概是28名,具体多少人参加不清楚。。。。

优化

优化完成了Mem2Reg,死代码删除,函数内联,GVN,寄存器分配,基本块整合,窥孔

git 规范

# 拉取最新dev分支
git checkout dev
git pull origin

# 签出开发(或修复)分支
git checkout -b feature/xxx (or fix/xxx)

# 提交修改
git add .
git commit -m "[feat](xxx): message" (or "[fix](xxx): message")

# 解决与dev分支的冲突
git checkout dev
git pull origin
git checkout feature/xxx (or fix/xxx)
git rebase dev
git add .
git rebase --continue

# 提交开发/修复分支
git push origin
(pull request on github.com)

# 删除开发/修复分支
git checkout dev
git pull origin
git branch -d feature/xxx (or fix/xxx)

buaa-compiler's People

Contributors

uyjz avatar

Stargazers

Chen JH avatar  avatar allright555 avatar 叁月柒 avatar Zhang Xinyue avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.