The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
20 views

Trouble understanding GPU disassembly

I'm trying to write a raycasting shader in GLSL, and it's being unbearably slow. So I installed AMD's "GPU Shader Analyzer", so I can look at what is actually generated. I've got it from 2 FPS up to ...
-1
votes
0answers
21 views

How a processor actually interprets instructions [closed]

I've done many searches in Google and I just cannot seem to get some sort of definitive answer to the question...how exactly does the logic circuitry inside a processor interpret code...I guess at the ...
1
vote
1answer
55 views

Did the Streaming SIMD Extensions replace x87 instruction set?

I know that the SSEs are an alternative to the x87 floating point instruction, but is the x87 FPU still implemented in modern CPUs like Ivy-Bridge or Haswell? Did SSEs replace the x87 instruction ...
4
votes
1answer
110 views

how to simulate 5 stage of pipe line in c++?

I am trying to simulate 5 stage of pipeline. I have saved all the instruction into a struct. ( basically done with the stage of lixcal analysis ) eg: ADD R1 R2 R3 // R1 = R2+ R3 ... struct pipe{ int ...
2
votes
3answers
110 views

why is there severals encodings for one instruction in ARMv7

I am currently trying to implement a disassembler for the ARM cortex A9, which implement the ARMv7 instruction set. For that I am using the manual "DDI0406C_b_arm_architecture_reference_manual.pdf" ...
0
votes
2answers
40 views

which c code will gets changed to rlwinm power PC assembly instruciton

which c code will gets changed to rlwinm power PC assembly instruciton?? This is the snapshot of objdump.. if(!pool || pool->maxPoolSize > SEQ_MODULUS ) /* Invalid mask or pointer is null ...
0
votes
0answers
160 views

How to read ISA disassembly? Also GPU-Pipelining and Wait states

I'm trying to understand what machine code the OpenCL compiler produces in order to optimize it. Therefore I used the tool m2s-opencl-kc (from multi2sim) to offline-compile my *.cl file and keep ...
2
votes
3answers
140 views

In C++, is it better to cap a value using std::min or an if branch?

A very common pattern in programming is to cap a value at a maximum after some kind of update. What I'd like to know, is if there's a difference between the following two pieces of code, and if one ...
1
vote
2answers
105 views

x64 instruction encoding and the ModRM byte

The encoding of call qword ptr [rax] call qword ptr [rcx] is FF 10 FF 11 I can see where the last digit (0/1) comes from (the register number), but I'm trying to figure out where the second last ...
1
vote
0answers
210 views

MIPS Assembly Instruction translation to micro-instructions

I am trying to understand how to figure out the micro-instructions for the sw assembly instruction for the following question: The machine instruction corresponding to the symbolic assembly language ...
1
vote
1answer
35 views

“.long .” What does it mean in arm assembly coding?

I was going through arch/arm/head.S and found below code __turn_mmu_on_loc: .long . .long __turn_mmu_on .long __turn_mmu_on_end I am not able to understand ".long ."?
1
vote
1answer
85 views

Software Stack for a Particular computer

I am working on a project and my team is responsible for the software stack of the particular hardware. I only have the instruction set of the processor in my hand and I need to develop the complete ...
2
votes
2answers
61 views

Compiler modifications for new hardware

When writing in a language such as C, the compiler theoretically takes your human readable code and translates it into machine code - relatively hardware-dependent atomic instructions. Each CPU ...
1
vote
1answer
205 views

Confused about the binary code for the MVI instruction in the 8085 instruction code. Please see

Consider the instruction MVI A,32H to load 32H in the register A (Intel 8085 Microprocessor). My book says that it is a two byte instruction where the first byte is the opcode and the second is the ...
0
votes
1answer
125 views

“Read a byte from an I/O port” vs. “Read a byte from an address of memory”?

For simplifying discussion, I assume there is only one executing thread. The following are just my wild speculations: 1, If the CPU reads a byte from an address of memory, then it can repeatedly read ...
3
votes
1answer
282 views

cpuid instruction on i5-2500k: MMX, SSE, SSE2 bits are not set

Is this expected? I expected my Sandy Bridge CPU to report that it can handle MMX, SSE, and SSE2 instructions. Are these bits not set because these "old" instruction sets have been "superceded" by ...
1
vote
1answer
162 views

gcc options to use i87, AVX simultaneously but nor SSE

When compiled for processor that support AVX extension (say -m64 -march=corei7-avx -mtune=corei7-avx is applicable), does it make sense to use -mfpmath=both -mavx keys at the same time? Does not it so ...
1
vote
1answer
72 views

Z80 DAA flags affected

In the following link, http://www.z80.info/z80syntx.htm#DAA I got confused over the condition for setting H flag. The description says to look at the table but unlike C where there is the column C ...
0
votes
1answer
317 views

MWAIT vs HALT in terms of efficiency

I'm raising a wonder in regards to MONITOR-MWAIT vs HLT instructions. Both halts the processor, both wakes up on various external triggers (interrupts etc). In my experiments, HLT and MWAIT function ...
1
vote
1answer
176 views

instruction set emulator guide

I am interested in writing emulators like for gameboy and other handheld consoles, but I read the first step is to emulate the instruction set. I found a link here that said for beginners to emulate ...
0
votes
2answers
89 views

Homework in assembly language

I have this simple code in assembly: 1000 Add R3,R2,#20 1004 Susbtract R5,R4,#3 1008 And R6,R3,#0x3A 1012 Add R7,R2,R4 My question is what does the "And" do... I am ...
0
votes
0answers
38 views

Does this instruction block avoid false dependencies?

My instruction block I0: ADD R1,R1,R1 I1: LOAD R1,R1,#0 I2: MUL R1,R1,R1 I donot care what the instruction set does, but my point is if I use only 1 register in all the instructions will I avoid ...
0
votes
1answer
50 views

How a computer works with only limited set of instructions and using basic gates [closed]

One the toughest thing to digest while studying computers is that how mov or add ( including others ) instructions,help me in playing a game on computer or editing a text file. How computer do this ? ...
3
votes
2answers
287 views

Can i use the same ARM assembly for different ARM processors (Cortex,Tegra and so on)?

I'm interested is ARM assembly common for all types of ARM's? For example if I write some function in ARM assembly will it works the same on Cortex, Nvidia Tegra, Qualcomm etc? Can I use the same ...
0
votes
1answer
169 views

In MIPS can an I-Type instruction cause a hazard?

I know that consecutive R-Type instructions can cause a hazard, for example: add $2, $2, $1 add $2, $2, $3 but can consecutive I-Type instructions? For example: addi $2, $0, 10 addi $2, $0, 5
0
votes
1answer
104 views

Which are the different variable cycle ARM instructions?

I was reading this book "ARM System Developers Guide" by Elsevier and I came across this: The ARM instruction set differs from the pure RISC definition in several ways that make the ARM ...
0
votes
1answer
87 views

the set of all bit patterns that can be placed in a desired register using a single instruction

Given the following set of MiniMIPS instructions: Load upper immediate Add Subtract Set less than Add immediate Set less than immediate Add OR XOR NOR AND immediate OR immediate XOR immediate Load ...
0
votes
0answers
62 views

course project on gcc optimization passes

I'm planning on writing an optimization pass for gcc. Was going through the summer of code ideas for gcc, this project in particular caught my eye: "Implement code motion of stores towards entry ...
0
votes
1answer
127 views

how to allocate an 128 bit array with new Intel instructions with dynamic memory?

I am new working with new Intel instructions, so until now I just had been working with static memory, so I have a declaration as: __m128i pResult[10]; But now I am wondering if it is possible to ...
-2
votes
5answers
380 views

Can a build of OS kernel run both on x86 and ARM?

I mean: This build(including both x86 and ARM architecture drivers) can run on an x86 computer, and can run on an other ARM device. I know that right now, there is no such CPU that supports both ...
0
votes
1answer
64 views

How does a program know when to use opcodes in extension instruction sets? [closed]

I know that in SSE4, there were some instructions added that benefit string searching, particularly xml parsing. So say I write a program that takes advantage of those instructions, what happens when ...
1
vote
2answers
880 views

ARM Instruction Decoding

I need to decode ARM(ARM926EJ) instructions in C. I have the 32 bit instruction in hex. I want to decode and get the opcode operands. Anyone know any good material for this. N.B. I looked into QEMU ...
1
vote
1answer
143 views

How to devise instruction set of a stack based machine?

Stack based virtual machines like CLR and JVM has different set of instructions. Is there any theory behind devising the instruction set while creating a virtual machine? e.g. there are JVM ...
0
votes
1answer
86 views

CISC instruction length

I was wondering, what is the maximum possible length of a CISC instruction on most of today's CISC architectures? I haven't found the definitive answer yet, but it is suggested that it's 16 bytes ...
0
votes
3answers
135 views

What is the minimum assembly instructions needed?

If you were to build a processor that would be used to run any arbitrary program, what is the minimum set of instructions (ISA) you could get away with? I was thinking: ALU-ops (add, sub, mul, ...
3
votes
3answers
140 views

Is there any way to find the Instruction Set of an undocumented processor?

There are some processors out there that don't have commercially released documents explaining what its instruction set is. Is there any way to find the instruction set through tampering or an ...
1
vote
2answers
485 views

How does the OS interact with peripherals like sound cards/ video cards etc

As far as I understand it, any program gets compiled to a series of assembly instructions for the architecture it is running on. What I fail to understand is how the operating system interacts with ...
1
vote
1answer
1k views

Thumb Instruction in ARM

under "The Thumb instruction set" in section 1-34 of "ARM11TechnicalRefManual" it said that: "The Thumb instruction set is a subset of the most commonly used 32-bit ARM instructions.Thumb ...
1
vote
1answer
83 views

When to load operands in an TriCore emulator?

this is my first posting on Stack Overflow so I hope I am doing it correctly. ;-) I am trying to develop a TriCore emulator but cannot decide on a strategy when to load operands for an instruction. ...
3
votes
1answer
139 views

“Missing” arithmetic instructions in Tilera and SSE. How are the operations done?

I browsed through the Tilera Instruction Set and noticed it has only add, subtract, multiply, divide, and shifts. There is no mention of roots, powers, logs, etc. I also noticed that SSE (in all ...
5
votes
1answer
132 views

Reference for x86 instructions by functionality

I am looking for a reference on the "evolution" of x86 instruction set. Mainly, which newer commands make older commands redundant and unusable and a breakdown of the instruction according to their ...
2
votes
2answers
500 views

Writing an interpreter in C#: Best way to implement instructions?

I'm writting a PLC language interpreter using C#. That PLC language contains over 20 data types and 25 instructions or so. As soon as I started to generate code I balance two differents ways to write ...
0
votes
1answer
663 views

Computer architecture homework - instruction operands

A digital computer has a memory unit with 32 bits per word. The instruction set consists of 150 different operations. All instructions have an operation code part (opcode), a register operand part ...
5
votes
4answers
546 views

What is the minimum instruction set required for any Assembly language to be considered useful?

I am studying Assembly programming in general, so I've decided to try and implement a "virtual microprocessor" in software, which has registers, flags and RAM to work with, implemented with variables ...
0
votes
1answer
163 views

MIPS shifting to the right (but adding 1's instead of zero's)

Is there anyway to shift a register value to the right but instead of adding 0's (like srl does), make it add 1's. If that's not possible, any other suggestions to accomplish the same goal would be ...
1
vote
3answers
296 views

Assembly language instructions implementation

Is there some information source or technical draft (something like RFC for networking) describing implementation of particular instructions (e.g. mov, jmp, je, jle, inc, ...) for Intel architecture? ...
8
votes
3answers
531 views

Do different ARM manufacturers provide different instruction sets?

I first came across the ARM instruction set in the 80's, and have not used it since. Out of curiosity I was looking at the the tablets and other ARM devices and note that the CPU's are produced by ...
0
votes
2answers
144 views

Data Types additions larger than word

How are large data types(Double/Float) loaded in to registers for Arithmetic operations ? Can registers hold more than a word size data ? If only 2 registers can be added to load the result to third ...
7
votes
1answer
1k views

Are ARM instructuons SWI and SVC exactly same thing?

ARM assembly has SWI and SVC instructions for entering into 'supervisor mode'. What confuses me is, why there are two of them? Here it is said that SVC was formerly SWI. Does it mean that basically ...
10
votes
4answers
4k views

Integer division on ARM

Kind of a silly question, but how does one do integer division (signed or unsigned, either way) on ARM? I'm working on Cortex-A8 and Cortex-A9 in particular. I know that some architectures don't come ...

1 2