Tagged Questions

MIPS is a RISC instruction set architecture (ISA). It is commonly used in embedded devices such as set top boxes and networking gear. Many university-level computer architecture classes use the MIPS ISA due to its relative simplicity.

learn more… | top users | synonyms

40
votes
10answers
2k views

Why is x86 ugly? aka Why is x86 considered inferior when compared to others?

Recently I've been reading some SO archives and encountered statements against x86 architecture. Why do we need different CPU architecture for server & mini/mainframe & mixed-core? says "PC ...
7
votes
2answers
698 views

The prefetch instruction

It appears the general logic for prefetch usage is that prefetch can be added, provided the code is busy in processing until the prefetch instruction completes its operation. But, it seems that if too ...
6
votes
6answers
207 views

Is my MIPS compiler crazy, or am I crazy for choosing MIPS?

I am using a MIPS CPU (PIC32) in an embedded project, but I am starting to question my choice. I understand that a RISC CPU like MIPS will generate more instructions than one might expect, but I ...
6
votes
1answer
170 views

Is it possible to cross-compile D source code for MIPS?

Is it possible to cross-compile D source code for MIPS? For example, I want to compile a D "Hello, world." program that will run on TI AR7-based devices, which have MIPS32 processor and typically run ...
6
votes
2answers
1k views

Cross compiling for MIPS router from x86

My end goal is to compile wireless tools for my old Actiontec modem/router so I can configure it as a wireless to ethernet bridge. Currently it's wireless features are (seemingly) controlled by the ...
6
votes
6answers
2k views

Is there a way to use gcc to convert C to MIPS?

I completed a C to MIPS conversion for a class, and I want to check it against the assembly. I have heard that there is a way of configuring gcc so that it can convert C code to the MIPS architecture ...
6
votes
1answer
157 views

Searching for a nice way to define rules for decompiler, need advice

I am working on a very simple decompiler for MIPS architecture and as I progress I have to define lots of rules for code analysis, for example "if this opcode is lui and next opcode is addiu then ...
6
votes
5answers
1k views

MIPS processors : Are they still in use? Which other architecture should I learn?

I've been programming for x86 & x86-64 in assembly language for few months. Now, I want to move on to some different kind of processors. MIPS, SPARC, PowerPC, Itanium, ARM of these I found ARM ...
6
votes
6answers
585 views

Regular Expressions and Assembly

I know 8086 Assembly and learning MIPS Assembly. Also, I'm learning Regular Expressions, then I want to know: How can I use Regular Expressions on them?
6
votes
1answer
331 views

How To Build a Hello World For Nintendo 64?

I'm reading MIPS Assembly Language Programming, but now I want to build a simple "game" for Nintendo 64. I want to print a Hello, World to the screen, but someone can help with this. As I don't have ...
6
votes
1answer
1k views

Adding two 64 bit numbers in Assembly

So I am learning MIPS using the SPIM simulator and im stuck on this problem. I want to add two 64 bit numbers which are stored in four 32 bit registers. So I add the LO bytes and then the carry and ...
6
votes
4answers
2k views

where can I find a description of *all* MIPS instructions,

Does anyone know of a web site where I can find a list of 32-bit MIPS instructions/opcodes, with the following features: Clearly distinguishes between real opcodes and assembly-language macros ...
6
votes
8answers
1k views

MIPS - Is it important?

My question: Is the MIPS programming language that benificial to know? I'm a CS student and am taking a assembly class which focuses on MIPS. I'm very comfortable writing in high level languages, but ...
5
votes
3answers
98 views

What does this operator mean?

I am going through a C code that I did in one of my assembly MIPS classes and I dont know what one of the operators mean: if (TOKEN[0] <> symTab[$a0]) Thats the line. what does the <> ...
5
votes
1answer
36 views

Problem comparing extremes

I'm trying to sort trough a list of 32-bit numbers using MIPS assembler and xspim. I've been stepping trough my code to see what fails and noticed that when comparing 0x00000000 with 0xFFFFFFFF it ...
5
votes
1answer
110 views

Associative cache simulation - Dealing with a Faulty Scheme

While working on simulating a fully associative cache (in MIPS assembly), a couple of questions came to mind based on some information read online; According to some notes from the University of ...
5
votes
1answer
1k views

MIPS load word syntax

If I want to load a value from a memory which base address is at $a0 and off set $t2, why can't I do the following: lw $s2, $a1($t2) so what is the equivalent of the expression above?
5
votes
5answers
1k views

C++ CPU Register Usage

In C++, local variables are always allocated on the stack. The stack is a part of the allowed memory that your application can occupy. That memory is kept in your RAM (if not swapped out to disk). ...
5
votes
3answers
826 views

Anybody cross compiled Mono for MIPS 64 using uClibc?

I am trying to statically cross compile Mono for MIPS. I am able to compile Mono, but it is always dynamically linked with it's dependencies, even though I specify static to the compiler. I wrote a ...
5
votes
4answers
2k views

What should I know when switching from MIPS to x86 assembly?

At school we have been programming in MIPS assembly language for some time. I'm interested into delving into x86 assembly and I have heard that is somewhat harder (even my MIPS textbook says this). ...
5
votes
3answers
3k views

LLVM vs GCC MIPS code generation, any benchmarks?

I'm interested in knowing what is "best" free/OSS compiler for MIPS code, GCC or LLVM, or is there anything even better than those? I'm interested in knowing more about fast and memory constrained ...
4
votes
2answers
798 views

Why do MIPS operations on unsigned numbers give signed results?

When I try working on unsigned integers in MIPS, the result of every operation I do remains signed (that is, the integers are all in 2's complement), even though every operation I perform is an ...
4
votes
7answers
2k views

How can I program MIPS assembly from x86 linux?

Are there any command line interpreters around for x86 linux inorder to run MIPS assembly programs? I'd like to be able to write simple MIPS assembly programs and run them from the console on my ...
3
votes
2answers
70 views

MIPS memory execution prevention

I'm doing some research with the MIPS architecture and was wondering how operating systems are implemented with the limited instructions and memory protection that mips offers. I'm specifically ...
3
votes
2answers
104 views

Is '.set noat' unsupported for MIPS assembly?

Currently, I'm learning GNU as, and find a lot useful information in "info as". I found ".set noat" is used in MIPS specified code, but when searching for this directive in "info as", I found its ...
3
votes
1answer
61 views

How are five or more arguments dealt in MIPS?

I am very new to Assembly language. I was reading about MIPS architecture and I am stuck with a concept. MIPS has four argument registers $a0, $a1, $a2 and $a3. These special purpose registers ...
3
votes
2answers
71 views

What does func means in R-Format instruction set?

I am very new to Assembly language. I was reading about MIPS architecture and I am stuck with the last field of the Register Format (R-Format). Here is its visual representation, Can anyone please ...
3
votes
1answer
370 views

looping through array using while loop? - MIPS

Hello all I want to loop through an array of numbers like .word 2,2,2,2,2,2,2,2,2,2,2,2,2 .word 2,2,2,2,2,2,2,2,2,2,2,2,2 .word 2,2,2,2,2,2,2,2,2,2,2,2,2 .word 2,2,2,2,2,2,2,2,2,2,2,2,2 and i want ...
3
votes
1answer
261 views

MIPS architecture syscall instruction

What is the role of syscall instruction in MIPS?
3
votes
2answers
189 views

sample spim code

I found this sample spim code on the internet .data COUNT: .word 10 TEXT: .asciiz "The number is " EOL: .asciiz "\n" .text .globl main main: addiu $sp, $sp, -32 # ...
3
votes
3answers
357 views

misunderestanding of logical operator of c language

I have such these questions in my book that I have do it for checking my self but I don't know the correct answer and there is no any explanation. it has two parts "a" and "b" a) A = B & C[0] b) ...
3
votes
1answer
683 views

MIPS assembly - random integer range

Hello im trying to use random integer range and the values that i get is out ouf the ones that i set. for example: sw $a0, 0($s0) li $a0, 1000 li $a1, 3500 li $v0, 42 #random So i just want it ...
3
votes
4answers
366 views

MIPS Learning Resources

Anybody aware of good resources for a MIPS beginner? Somewhere where I can find things like; Tutorials Examples Practice exercises Guides Any resource would be fine, however I would obviously ...
3
votes
1answer
212 views

Loading an address in MIPS64

This is probably a simple, obvious thing I'm just not seeing, but how do I load an address in a MIPS64 processor? In a MIPS32 processor the following assembler pseudo-instruction: la $at, LabelAddr ...
3
votes
1answer
371 views

Weird MIPS assembler behavior with jump (and link) instruction

So, we're studying MIPS architecture at school and we're implementing a MIPS32 architecture. I thought I'd use GNU cross-binutils as assembler but I'm getting weird output when dealing with ...
3
votes
1answer
289 views

MIPS assembly to determine whether hardware I/O interrupt has occurred?

In my MIPS32 exception handler, I want to determine whether the exception was caused by a I/O interrupt. The Cause register bits 2-6 inclusive has to be checked. What's the MIPS assembly code to ...
3
votes
2answers
2k views

MIPS: removing non alpha-numeric characters from a string

I'm in the process of writing a program in MIPS that will determine whether or not a user entered string is a palindrome. It has three subroutines which are under construction. Here is the main block ...
3
votes
1answer
1k views

Load half word and load byte in a single cycle datapath

There was this problem that has been asked about implementing a load byte into a single cycle datapath without having to change the data memory, and the solution was something below. This is ...
3
votes
2answers
6k views

Creating (and accessing) an array in MIPS

I'm trying to create an array in MIPS Assembly, and then add all the elements together. However, when I try to assemble the following, it says Error in read_array line 1 position 7: ".word" ...
3
votes
5answers
525 views

Any hand-on exercise to understand how a program is loaded into memory and get executed

I am curious about the things happend before main() is called , such like load the executable into memory , dynamic load of shared library. Do you have any suggestions how to understand these things ...
3
votes
6answers
3k views

What's the relative speed of floating point add vs. floating point multiply

A decade or two ago, it was worthwhile to write numerical code to avoid using multiplies and divides and use addition and subtraction instead. A good example is using forward differences to evaluate ...
3
votes
2answers
960 views

MIPS Decompiler

I'm looking for a decompiler capable of transforming MIPS machine code into C code. Any suggestions?
3
votes
3answers
3k views

Storing values in HI and LO registers of MIPS

I am writing certain code in MIPS and I've come to the point where the requirement is to store the result, temporarily, in HI and LO special registers (both are 8 bytes wide). These instructions are ...
3
votes
3answers
2k views

GCC MIPS-32 Calling Conventions / Stack Frame Definition

There appears to be no definitive standardized stack frame and C language calling conventions (register usage and such) for the MIPS-32 Processor Architecture. That is, it appears to be completely up ...
3
votes
4answers
1k views

Are C++ int operations atomic on the mips architecture

I wonder if I could read or write shared int value without locking on mips cpu (especially Amazon or Danube). What I mean is if such a read or write are atomic (other thread can't interrupt them). To ...
3
votes
7answers
802 views

Learning MIPS as a second assembly language?

I know x86 Assembly (and have worked with FPGA etc') , Never wrote for a RISC, I have the opportunity to take a course in MIPS, but I'm busy as it is, so my question is, I know that every thing I ...
3
votes
4answers
1k views

About Trees and Prefix (Polish) Notation?

My MIPS Assembly class required me to read in an expression of unknown size into a Parse Tree. I've never had to deal with trees, so this is how I went around storing values: Lets say the user ...
3
votes
2answers
485 views

C/C++ linker CALL16 reloc at xxxxx not against global symbol

I'm getting these errors while linking, both messages have to do with the same object file. CALL16 reloc at 0x5f8 not against global symbol and could not read symbols: Bad value The 2nd message ...
2
votes
1answer
65 views

Direct Map Cache and cache misses

I am working on my homework, but I am not sure how to calculate the total cache misses. I have been trying to understand it but it just is not making sense to me. I am given some Mips code and I need ...
2
votes
0answers
74 views

MIPS while loop error

I am having some trouble with the following mips code: li $t0, -1 li $t5, 0 countNumberofVariables: addi $t0, $t0, 1 beq $t0, $t8, endCount add $t1, $t0, $t9 ...

1 2 3 4 5 10