99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

CS4121代做、代寫C++語言編程
CS4121代做、代寫C++語言編程

時間:2025-06-06  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



CS4121 Cminus Expression Evaluation Compiler Project

Due Date: Tuesday, June. 3, 2025 at11:59 am

Purpose

The purpose of this project is to gain experience in giving meaning to a programming language by generating

Mips assembly for a subset of Cminus. Specifically, you will be generating assembly for integer I/O operations,

integer arithmetic and logical expressions and assignment statements.

Project Summary

In this project, you will add actions to a parser provided by me. You must add code to do the following:

1. Assign space for global and local integer variables declared in a Cminus program.

2. Generate assembly pseudo-ops for string constants used in a Cminus program.

3. Generate assembly to print string constants.

4. Generate assembly to print integers.

5. Generate assembly to read integers.

6. Generate assembly to compute integer expressions.

7. Generate assembly to compute logic expressions.

8. Generate assembly to assign values to integer variables.

Prologue and Epilogue Code

Since you are converting a Cminus program to Mips assembly, you must begin each assembly file with any

data declarations and a declaration of where themainprogram begins. This is done with the following code:

.data

.newl: .asciiz "\n"

.text

.globl main

main: nop

This code declares a data section with a string.newlthat is just the newline character, followed by a text

section (instructions) containing a declaration of the main routine. Each Mips assembly file should begin

with this sequence. Any space that you allocate for strings or floating-point constants in the static data area

may be allocated with directives after the   .data   directive and before the   .text   directive.

Assigning Variable Space

Memory for global variables declared in a Cminus program will be address as an offset off of$gp. The

register$gppoints to the middle of a 64K region in the static data area. You may address this area as a

positive or negative offset off of$gp. I will guarantee that you will need no more than 64K of space in the

static data area for any input program for any of the projects in this class.

Memory for local variables is allocated on the stack. Each integer requires four bytes of space. Local space

is allocated by adjusting the stack pointer the requisite number of bytes. Since stacks grow in the negative

direction in memory, space is allocated by subtracting from the stack pointer. The Cminus declarations

1

int i,j,k;

require 12 bytes of space. That space is allocated on the stack with the instructions

sw $fp, ($sp)

move $fp, $sp

sub $sp, $sp, 12

which should be placedimmediatelyfollowing the prologue code. The first instruction stores the old frame

pointer. The second sets the new frame pointer,$fp, and the third instruction allocates the space for the 3

variables.

String Constants

A Cminus program may use string constants in write statements. These constants are declared in the data

section using the.asciizpseudo-op. For the Cminus statement,

write(  Hello  );

The following declaration must be added to the data section of the assembly file:

.string0: .asciiz "Hello"

The label.string0is implementation dependent. You may name your string constants however you wish.

Printing Strings

Printing strings requires using a system call. The system call service for printing strings is 4. Since a

character string is stored in memory, you must pass the address of the string to the system call in register

$a0. As an example, the code to implement thewritestatement in the previous section would be:

la $a0, .string0

li $v0, 4

syscall

Note that you will need to additionally print the newline character when printing any data.

Printing Integers

Printing integers is similar to printing strings except that the actual integer is passed to the system call

rather than an address and the system call service is 1. As an example, to implement the statement:

write(7);

the following Mips assembly would need to be generated:

li $a0, 7

li $v0, 1

syscall

Reading Integers

To read an integer, the system call service is 5. The read value is returned in register$v0. Thus, to read an

integer, the following instructions are needed:

li $v0, 5

syscall

2

Accessing Variables

You may access local variables by loading them from an offset of the frame pointer ($fp). As an example,

assuming that the variableais assigned the second 4 bytes of local space. The following code might be

generated to accessa:

sub $s0, $fp, 4

lw $s1, 0($s0)

Loading a global variable is similar except that we use$gpinstead of$fp. Ifais a global variable that is

store 8 bytes (in the positive direction) off of$gp, the following code might be generated to access it:

add $s0, $gp, 8

lw $s1, 0($s0)

Integer Arithmetic Expressions

In Mips assembly, all operations are done on registers. The best way to generate code is to store all interme-

diate values in Mips registers. Using the registers$s0, ..., $s7,$t0, ..., $t9should be sufficient. You

should not need any other temporary registers. For an operation, the operands should all be put into regis-

ters, a result register should be allocated, the operations should be performed and then the input registers

should be released to be reused later. As an example, the statement

write(a+b);

might result in the code (ifais the first declared variable andbis the second)

lw $s1, 0($fp)

sub $s0, $fp, 4

lw $s2, 0($s0)

add $s3, $s1, $s2

move $a0, $s3

li $v0, 1

syscall

Logic Expressions

Logic expressions are similar to arithmetic expressions. For the mips, the value forfalseis 0 and the value

fortrueis 1.

Storing Integer Variables

To store a value in a variable, first compute the address and then store the value into that location. For

example, the statement

a = 5;

could be implemented with

li $s0, 5

sub $s1, $fp, 4

sw $s0, 0($s1)

3

Exiting the Program

Theexitstatement in Cminus can be implemented in Mips assembly as follows:

li $v0, 10

syscall

These instructions call the system routine that exits a program. Everymainroutine in a Cminus program

will end in anexitstatement.

Requirements

Write all of your code in C or C++ . It will be tested on a CS machine and MUST work there. You will

receive no special consideration for programs which   work   elsewhere, but not on a CS machine.

Input.The fileCminusProject2.tgzcontains the parser need to begin this project. You will need to

modifiy the actions in the project fileparser/CminusParser.yto do this project. Currently, the actions

just emit the rules that are reduced. Sample input for this project is provided in the project directoryinput.

To run your compiler, use the command

cmc .cm

To execute the resulting assembly file, use the Mars simulator(http://courses.missouristate.edu/KenVollmar/mars/).

Submission.Your code should be well-documented. You will submit all of your files, by tarring up your

project directory using the command

tar -czf CminusProject2.tgz CminusProject2

Submit the fileCminusProject2.tgzvia the CS4121 Canvas page. Make sure you do a   make clean   of your

directory before executing the tar command. This will remove all of the   .o   files and make your tar file much

smaller.

Data Structures and DocumentationI have provided several C data structures for those who will

be programming in C. There are doubly linked list, symbol table and string manipulation routines in the

workspace directoryCminusProject2/util. The HTML Doxygen documentation for the provided code

is inCminusProject1/Documentation/html/index.html. You may ask me any questions regarding these

routines. You will not likely need any of these structures now, but you may want to familiarize yourself with

them. For those coding in C++, you may use STL.

codegen directoryI have created the codegen directory where the codegen.*, reg.* and other files are

store. You will add fuctions to generate instructions for different productions in parser and these functions

are in codegen.c. In addition, the register allocation management untily implimenation files are reg.c and

reg.h, which makes you use registers simple. Before generatging the compiler, you need issue make command

under the codegen direcetory.

Makefile StructureThe Makefiles for the project are set up to automatically generate make dependences.

In a particular directory (e.g.,parser), you may add new files for compilation by adding the source file name

to theSRCSvariable declaration on the first line of that directory  sMakefile. For example, to add the file

newfile.cto be compiled in theparserdirectory, change the first line ofparser/Makefilefrom

SRCS = CminusScanner.c CminusParser.c

4

to

SRCS = CminusScanner.c CminusParser.c newfile.c

Nothing else needs to be done. Do not add source files to the root directoryCminusProject2as the make

files assume there are no source files in that directory.

If you would like to add your own subdirectory (e.g.,newdir) toCminusProject2, then change the line

DIRS = parser util

inCminusProject1/Makefileto

DIRS = parser util newdir

and the line

LIBS = parser/libparser-g.a util/libutil-g.a

inCminusProject1/Makefileto

LIBS = parser/libparser-g.a util/libutil-g.a newdir/libnewdir-g.a

Then, copyutil/Makefiletonewdir/Makefile. Finally, change theSRCSdeclaration innewdir/Makefile

to contain only the source files in that directory and change the line

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機打開當前頁
  • 上一篇:欣欣花客服電話官方教你一招成功上岸!
  • 下一篇:關于花生米強制下款-如何聯系客服解決問題
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                在线不卡中文字幕播放| 精品处破学生在线二十三| 欧美变态tickle挠乳网站| 性感美女久久精品| 欧美女孩性生活视频| 婷婷中文字幕综合| 91精品国产日韩91久久久久久| 婷婷一区二区三区| 欧美精品一区二区三区视频| 国产69精品久久99不卡| 亚洲一区在线观看网站| 欧美va亚洲va| 成人免费的视频| 亚洲一二三专区| 久久九九影视网| 色狠狠av一区二区三区| 蜜臀av亚洲一区中文字幕| 国产日韩在线不卡| 欧美日韩国产经典色站一区二区三区| 蜜臀av一区二区在线观看| 国产精品久久久久久久久免费樱桃| 日本道色综合久久| 国产精品一区二区久久不卡 | 国产69精品久久久久毛片| 亚洲欧洲99久久| 69堂亚洲精品首页| 99久久精品国产网站| 日韩激情在线观看| 中文字幕一区二区三区精华液| 欧美日韩成人高清| 不卡一卡二卡三乱码免费网站 | 亚洲精选免费视频| 欧美成人a视频| 欧美天堂一区二区三区| 国产成人欧美日韩在线电影| 午夜精品爽啪视频| 日韩一区在线免费观看| 欧美成人官网二区| 91麻豆精品国产无毒不卡在线观看| av中文字幕一区| 国产激情精品久久久第一区二区 | 青青草国产精品亚洲专区无| 亚洲丝袜制服诱惑| 国产蜜臀97一区二区三区| 日韩免费电影一区| 5858s免费视频成人| 欧美性猛交xxxxxx富婆| 91麻豆精品视频| 91在线码无精品| 9i看片成人免费高清| 成人国产精品免费观看动漫| 国产成人综合精品三级| 国产露脸91国语对白| 久久国产视频网| 另类成人小视频在线| 蜜臀va亚洲va欧美va天堂| 免费在线观看日韩欧美| 视频一区在线播放| 九九精品视频在线看| 国产a视频精品免费观看| 国产a视频精品免费观看| eeuss鲁片一区二区三区在线观看| 国产在线播放一区三区四| 国产一区二区久久| 99久久精品免费看| 88在线观看91蜜桃国自产| 精品久久久久一区| 国产欧美一区二区精品忘忧草| 亚洲欧美在线视频观看| 亚洲大片精品永久免费| 精品在线一区二区三区| 成人爱爱电影网址| 欧美精品123区| 国产三级欧美三级| 一区二区三区日韩欧美精品| 日本人妖一区二区| 国精产品一区一区三区mba桃花 | 精品国产91洋老外米糕| 国产精品欧美一区喷水| 一区二区三区美女| 琪琪一区二区三区| 国产成人鲁色资源国产91色综| 97精品国产97久久久久久久久久久久| 欧美系列一区二区| 26uuu另类欧美亚洲曰本| 中文一区二区完整视频在线观看| 1区2区3区国产精品| 亚洲成人午夜电影| 久久精品久久久精品美女| 国产成人免费网站| 欧美日韩另类一区| 福利一区二区在线观看| 91丨porny丨户外露出| 欧美三级中文字幕| 91精品福利在线一区二区三区| 国产亚洲欧美色| 亚洲欧美视频在线观看| 精品在线播放午夜| av一区二区三区四区| 欧美熟乱第一页| 精品国产1区2区3区| 国产精品久久久久久久久快鸭 | 在线播放一区二区三区| 亚洲日本一区二区| 日韩一区二区三区免费观看| 九色综合狠狠综合久久| 中文幕一区二区三区久久蜜桃| 91麻豆精品在线观看| 成人综合婷婷国产精品久久蜜臀 | 欧美视频自拍偷拍| 狠狠色丁香久久婷婷综合_中| 国产精品第四页| 亚洲国产精品黑人久久久| 91在线丨porny丨国产| 成人性生交大合| 日韩精品三区四区| 无码av免费一区二区三区试看 | 国产成人午夜视频| 日韩不卡在线观看日韩不卡视频| 久久久国产精品不卡| 国产欧美在线观看一区| 精品国产免费一区二区三区香蕉| 久久五月婷婷丁香社区| 91捆绑美女网站| 欧美tk—视频vk| 欧亚洲嫩模精品一区三区| 91精品1区2区| 久久久久免费观看| 蜜臀av一级做a爰片久久| 成人自拍视频在线观看| 国产真实精品久久二三区| 国模冰冰炮一区二区| 蜜臀av性久久久久蜜臀aⅴ | 久久婷婷色综合| 欧美电影免费观看高清完整版在线观看 | 久久毛片高清国产| 国产精品久久久久久久久免费桃花| 久久天天做天天爱综合色| 亚洲欧美日韩一区| 国产一区二区看久久| 91丝袜美腿高跟国产极品老师| 欧美性色aⅴ视频一区日韩精品| 精品久久久久av影院| 亚洲免费在线播放| 久久www免费人成看片高清| av福利精品导航| 91麻豆精品国产91久久久使用方法 | 亚洲免费观看高清| 奇米精品一区二区三区在线观看| 成人av电影在线| 亚洲国产精品av| 国内国产精品久久| 欧美三级日韩在线| 亚洲一区二区视频在线观看| 日本韩国一区二区| **性色生活片久久毛片| 成人动漫一区二区在线| 亚洲人成人一区二区在线观看| 亚洲激情男女视频| 丝袜亚洲另类丝袜在线| 欧美性大战久久久久久久蜜臀| 亚洲国产精品视频| 欧美国产丝袜视频| 欧美亚洲一区三区| 粉嫩aⅴ一区二区三区四区 | 亚洲一区二区三区四区的| 日韩欧美一区二区视频| 日韩精品五月天| 精品免费视频.| 国产成人自拍网| 亚洲免费观看在线观看| 日本高清成人免费播放| 亚洲成人一区二区| 精品国产乱码久久久久久影片| av综合在线播放| 日韩和欧美的一区| 亚洲日本在线a| 精品国产a毛片| 久久婷婷一区二区三区| 97se狠狠狠综合亚洲狠狠| 午夜精品福利一区二区蜜股av| 欧美成人aa大片| 亚洲一区av在线| 亚洲电影一级黄| 亚洲综合色噜噜狠狠| 国产欧美日韩另类一区| 国产91在线看| 99精品一区二区三区| 亚洲人成精品久久久久| 91原创在线视频| av毛片久久久久**hd| 国产高清视频一区| 高清视频一区二区| 国产老肥熟一区二区三区| 久久se精品一区二区| 成人综合婷婷国产精品久久免费| 国产在线麻豆精品观看| 久久91精品国产91久久小草| 国产美女精品在线| 欧美日韩三级一区|