作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
int strlen( char* string ) {
int count = 0;
while( *string != ‘\0’ ) {
string++;
count++;
}
return count;
}
我正在研究这些...
我想知道您是否可以提出任何优化建议?
以下是 MIP 代码...
strlen:
li $t0, 0 # initialize the count to zero
loop:
lbu $t1, 0($a0) # load the next character into t1
beqz $t1, exit # check for the null character
addi $a0, $a0, 1 # increment the string pointer
addi $t0, $t0, 1 # increment the count
j loop # return to the top of the loop
exit:
最佳答案
// will (probably) output x86_64 assembly (or your computer's native assembly)
gcc -Wall -S test.c
// will output mips3 assembly
gcc -Wall -march=mips3 -S test.c
或者进行优化:
// will output (optimized) mips3 assembly (if possible)
gcc -Wall -O3 -march=mips3 -S test.c
关于c - 有没有办法进一步优化这个MIPs代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21804883/
我有这个: const {ops} = getOplogStreamInterpreter(strm); ops.del.subscribe(v => { console.log('delete
我四处搜索,据我所知,POST 表单请求已被限制为 10MB (http://golang.org/src/net/http/request.go#L721)。 如果我要在我的 ServeHTTP 方
我是一名优秀的程序员,十分优秀!