mit6.824 lab4_mit6.830

mit6.824 lab4_mit6.830一、 BETAISAA:0、1、2、3、0xcB:0x2000、0xEDEDEDED、0xFEDEDEDE、0x2004、11000000000111110010000000000000(0xc01f2000)C:0x87654321、1、0x87654320、0x14、01110111111000010000000000000010(0x77e10002)D:17、0、32、noinstructionsneedtobechangedE:4、110000000

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

一、 BETA ISA

A:0、1、2、3、0xc
B:0x2000、0xEDEDEDED、0xFEDEDEDE、0x2004、110000 00000 11111 0010 0000 0000 0000(0xc01f2000)
C:0x87654321、1、0x87654320、0x14、011101 11111 00001 0000 0000 0000 0010(0x77e10002)
D:17、0、32、no instructions need to be changed
E:4、110000 00000 00000 0000 0000 0000 0000(0xC0000000)

二、 快速排序

实现代码

	p_array=R2          // base address of array (arg 0)
p_left=R3
p_right=R4
p_pivotIndex=R5     // Corresponds to PivotIndex in C program
p_pivotValue=R6
p_storeIndex=R7
partition:		
PUSH(LP)
PUSH(BP)
MOVE(SP, BP)
PUSH(R1)
PUSH(R2)
PUSH(R3)
PUSH(R4)
PUSH(R5)
PUSH(R6)
PUSH(R7)
PUSH(R8)
PUSH(R9)
LD(BP, -12, p_array)
LD(BP, -16, p_left)
LD(BP, -20, p_right)
ADD(p_left, p_right, p_pivotIndex)
SHRC(p_pivotIndex, 1, p_pivotIndex)
MULC(p_pivotIndex, 4, R9)
ADD(p_array, R9, R9)		
LD(R9, 0, p_pivotValue)
MULC(p_right, 4, R9)
ADD(p_array, R9, R9)
LD(R9, 0, R7)
MULC(p_pivotIndex, 4, R9)
ADD(p_array, R9, R9)
ST(R7, 0, R9)
MOVE(p_left, p_storeIndex)
START:	ADDC(p_left, 1, p_left)
CMPLE(p_left, p_right, R8)
BF(R8, AFTER)
MULC(p_left, 4, R9)
ADDC(R9, -4, R9)
ADD(p_array, R9, R9)
LD(R9, 0, R8)		
CMPLE(R8, p_pivotValue, R1)
BF(R1, START)
MULC(p_storeIndex, 4, R9)
ADD(p_array, R9, R9)
LD(R9, 0, R1)
MULC(p_left, 4, R9)
ADDC(R9, -4, R9)
ADD(p_array, R9, R9)
ST(R1, 0, R9)
MULC(p_storeIndex, 4, R9)
ADD(p_array, R9, R9)
ST(R8, 0, R9)		
ADDC(p_storeIndex, 1, p_storeIndex)
BR(START)
AFTER:  MULC(p_storeIndex, 4, R9)
ADD(p_array, R9, R9)
LD(R9, 0, R8)
MULC(p_right, 4, R9)
ADD(p_array, R9, R9)
ST(R8, 0, R9)
MULC(p_storeIndex, 4, R9)
ADD(p_array, R9, R9)
ST(p_pivotValue, 0, R9)
MOVE(p_storeIndex, R0)
POP(R9)
POP(R8)
POP(R7)
POP(R6)
POP(R5)
POP(R4)
POP(R3)
POP(R2)
POP(R1)
MOVE(BP, SP)
POP(BP)
POP(LP)
JMP(LP)
quicksort:
PUSH(LP)
PUSH(BP)
MOVE(SP, BP)
PUSH(R1)
PUSH(R2)
PUSH(R3)
PUSH(R4)
LD(BP, -12, R1)
LD(BP, -16, R2)
LD(BP, -20, R3)
.breakpoint
CMPLT(R2, R3, R4)
BF(R4, END)
PUSH(R3)
PUSH(R2)
PUSH(R1)
BR(partition, LP)
DEALLOCATE(3)
.breakpoint
ADDC(R0, -1, R4)
PUSH(R4)
PUSH(R2)
PUSH(R1)
BR(quicksort, LP)
DEALLOCATE(3)
PUSH(R3)
ADDC(R0, 1, R4)
PUSH(R4)
PUSH(R1)
BR(quicksort, LP)
DEALLOCATE(3)
END:	POP(R4)
POP(R3)
POP(R2)
POP(R1)
MOVE(BP, SP)
POP(BP)
POP(LP)
JMP(LP)

A:0x14
B:0、-1
C:0xa
D:first (smaller elements)
E:0、4
F:5

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/187553.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号