Tagged Questions
The instructions tag has no wiki summary.
17
votes
4answers
411 views
IL Instructions not exposed by C#
What IL instructions are not exposed by C#?
I'm referring to instructions like sizeof and cpblk - there's no class or command that executes these instructions (sizeof in C# is computed at compile ...
6
votes
3answers
288 views
Why does LLVM add two extra instructions for the same program?
I am compiling this C program and comparing the generated assembly code:
int main(){ return 0; }
GCC gives this main function (cc hello.c -S):
_main:
LFB2:
pushq %rbp
LCFI0:
movq ...
6
votes
4answers
394 views
How exactly do executables work?
I know that executables contain instructions, but what exactly are these instructions? If I want to call the MessageBox API function for example, what does the instruction look like?
Thanks.
5
votes
3answers
189 views
Small Popup for Instructions, like foursquare ones
After seeing the last screenshots of new foursquare application and their balloon like cartoon instructions, I'd like to create some of these in my application.
I found a similar question for iPhone
...
5
votes
12answers
225 views
Should a developer be a designer?
I have been developing websites for quite some time and I am not so good in designing websites? My Boss is refering me to take some lessons on it.
But I really want to stick to development rather ...
5
votes
4answers
255 views
How many instructions to access pointer in C?
I am trying to figure out how many clock cycles or total instructions it takes to access a pointer in C. I dont think I know how to figure out for example, p->x = d->a + f->b
i would assume two loads ...
4
votes
1answer
331 views
JVM instruction ALOAD_0 in the 'main' method points to 'args' instead of 'this'?
I am trying to implement a subset of Java for an academic study. Well, I'm in the last stages (code generation) and I wrote a rather simple program to see how method arguments are handled:
class Main ...
4
votes
3answers
109 views
Modifying assembly instructions before loading
I have a DLL that I need to load (I have written it and compiled it), and I would like to insert instructions between existing instructions of the assembly code before loading the DLL into memory. Of ...
3
votes
1answer
30 views
Logging the Behavior of a Binary?
I want to figure out which instructions are executed differently when a command-line flag is passed to a program on Windows, of which I have the compiled (and optimized) binary, with no debug symbols ...
3
votes
4answers
402 views
Is there a list of deprecated x86 instructions?
I'm taking an x86 assembly language programming class and know that certain instructions shouldn't be used anymore -- because they're slow on modern processors; for example, the loop instruction.
I ...
3
votes
2answers
127 views
Tracing/profiling instructions
I'd like to statistically profile my C code at the instruction level.
I need to know how many additions, multiplications, divisions, etc I'm performing.
This is not your usual run of the mill code ...
3
votes
1answer
246 views
Turing Machine Instruction Table
The definitions of Turing Machine say that it is prohibited for one to read/modify it's instruction table (program). Exactly, Turing Machine has no access to it's own program.
What benefits can be ...
3
votes
8answers
1k views
How many asm-instructions per C-instruction?
I realize that this question is impossible to answer absolutely, but I'm only after ballpark figures:
Given a reasonably sized C-program (thousands of lines of code), on average, how many ...
2
votes
2answers
70 views
Assembly: Compute Execution Time of Instructions
How do you compute the execution time of instructions? Is it just done by checking what the chip manufacturers say in terms of how many clock cycles an action may take to complete? Is there anything ...
2
votes
2answers
650 views
x86 Assembler: use of TEST instruction
I'm looking at some small assembler codes and I'm having trouble understanding the TEST instruction and its use. I'm looking at the following code at the end of a loop:
8048531: 84 c0 ...
2
votes
1answer
436 views
cmp and ja question
I'm having problems understanding this. It's in intel syntax
cmp eax, 0x19
ja greater
eax contains the value -40. http://en.wikibooks.org/wiki/X86_Assembly/Control_Flow tells me ja is the unsigned ...
2
votes
2answers
3k views
LEAL Assembler instruction
I have the following instruction and I'd like to know what the function is of the 0x10 in regards to this LEAL instruction? Is it a multiply or addition or is something else?
leal 0x10(%ebx), %eax
...
2
votes
3answers
88 views
Instructions Package for Java
I want to make a help/instructions page for my Java program but I really don't want to have to go through and program all the frames and searching and such. Is there a package or program that I can ...
2
votes
2answers
357 views
64 bits assembly's instructions of 32 bits ones
I am beginning to port a program which is written in C and have several pieces of code written in assembly with instructions for a 32 bit machine - like ljmp - to a 64 bits machine.
Is there a ...
2
votes
3answers
375 views
equivalent number of instruction
I've a question (just like me)...
but...if I've a choosen algorithm written in C or C++ or whatever code you want...fixed a compiler I can determine the number of instructions but these intructions ...
1
vote
3answers
49 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?
...
1
vote
2answers
29 views
How does system perform action on special dedicated keys?
Whenever we get input from user, using assembly language, the ASCII code of digit/letter stores in register 'AL'. In the same way I want to know if I press like 'Ctrl+C' , 'Ctrl+V' or 'Ctrl+X' etc ...
1
vote
1answer
138 views
Assembler error.: Bad instruction
I've run into this error
/tmp/ccK86fyk.s: Assembler messages:
/tmp/ccK86fyk.s:69: Error: bad instruction `sw $3,0(r3)'
/tmp/ccK86fyk.s:70: Error: bad instruction `sw $7,4(r3)'
( The rest of this ...
1
vote
1answer
80 views
Temporal locality with regard to data access and temporal locality with regard to data fetch
I am stuck with a question which is stated below,
Describe the general characteristics and behavior of a program that would exhibit:
(a) Low temporal locality with regard to data accesses
(b) Low ...
1
vote
6answers
180 views
Error implementing “AND” and “OR” in c++
With reference to my previous question, How can i implement AND and OR operations in c++
My next question is, Sometimes it outputs some weird numbers for example 110010 & 010101 = 110591. Why ...
1
vote
2answers
108 views
How can i implement AND and OR operations in c++
I have an assignment that iam supposed to implement the MIPS processor in C++ and one of the MIPS instructions is "AND" and "OR" the MIPS instruction is represented as and $s1,$s2,$s3 which means that ...
1
vote
1answer
244 views
How to implement push and pop in LLVM assembly?
I want to implement push and pop operations in LLVM assembly.
The alloca instruction does not follow the concept of stack, push and pop.
Examples:
PUSH
x86
subl $4, %esp
movl %eax, 0(%esp)
or
...
1
vote
4answers
180 views
How many machine instructions are needed for a function call in C?
I'd like to know how many instructions are needed for a function call in a C program compiled with gcc for x86 platforms from start to finish.
1
vote
1answer
71 views
ActionScript - same opcode for two distinct instructions?
Looking at the AVM2 specs (here, page 66-67) i found out that there are two instructions which do something different but they have the same opcode:
greaterequals, 0xAF
greaterthan, 0xAF
Both have ...
1
vote
1answer
991 views
Problems with AdMob integration into Android App
I am quite new into Java and Android Apps, so , while this may be cake for others it gives me some headache .
The app should load , play a sound file , and close . And it works fine without the AdMob ...
1
vote
1answer
175 views
CIL Instructions: Check if a getter method is called?
Im parsing through a type with Mono.Cecil. How can i check if the type im parsing is accessing getter Methods of other classes?
For accessing the fields directly I have found a solution:
foreach ...
1
vote
1answer
330 views
Assembler and Jump instruction (how does it work)
How does jump works ?
Does it set the IP register or does it increase it ??
Is it relative or absolute change of place were we execute the code?
1
vote
5answers
309 views
Profiling instructions
I want to count several cpu instructions in my code. e.g. I would like to know how many additions, how many multiplications, how many float operations, how many branches my code executes. I currently ...
0
votes
0answers
22 views
Anyone have step by step instructions for creating a page tab app?
I am trying to create a page tab app that I can add to one of my FB pages (just trying to create a simple iframe tab here folks, don't know why this has to be such a cluster**).
I have followed the ...
0
votes
1answer
24 views
How are variable length arguments parsed while parsing dalvik instructions?
Both move vA, vB and move-wide vA, vB involve the same operations and same operands. Except opcodes everything is the same. I am in a situation where I need to print the operands used by instructions ...
0
votes
0answers
86 views
What is the number of clock cycles required in the given sequence of Instruction using 5- stage pipelined CPU?
A 5 stage pipelined CPU has the following sequence of stages:
IF – Instruction fetch from instrution memory.
RD – Instruction decode and register read.
EX – Execute: ALU operation for data and ...
0
votes
0answers
21 views
Instruction counting in multi-core
I am new to multicore programming.
How is the number of instructions counted in multicore, especially when the simulator is full-system one?
Thanks in advance
Sparsh
0
votes
1answer
36 views
quickest cpu instructions
Is there a list of the order of speed of instructions (this may be generally speaking at it will vary on the architecture)? I was told years ago from my assembly professor that shift was the ...
0
votes
1answer
109 views
Good practice for iphone app documentation
I need to document a fairly complicated app. It has at least 5 buttons :)
So as I'm writing away, I'm wondering how others write their documentation / instructions.
What apps (Word? Pages? TextEdit? ...
0
votes
3answers
160 views
Illegal instruction while compiling with g++
I have the problem that a C++ program running under linux, compiled with g++ raises after some time a illegal instruction exception and I get a core dump. When I do a backtrace using gdb I get
(gdb) ...
0
votes
1answer
48 views
Display instructions on how to display widget after install
Some users (approx 15%) that download my widgets from the android market do not know how to display them on the home screen. I would like for a screen to pop up that gives instructions on how to do ...
0
votes
1answer
213 views
simple pipelining and superscalar architecture
consider this instruction flow diagram....
instruction fetch->instruction decode->operands fetch->instruction execute->write back
suppose a processor that supports
both cisc and risc...like ...
0
votes
0answers
77 views
How much time will the processor be blocked by the DMA in the following situation?
A DMA transfers characters to main memory from a DVD reader transmitting at 150000 bits per second. The processor can fetch instructions at 3 million instructions/second. How much time will the ...
0
votes
2answers
85 views
boot loader's size
I am reading brokenthorn.com ‘s O/S development tutorials one of the tutorials, the following code is there.
http://www.brokenthorn.com/Resources/OSDev3.html
I don’t understand why this code clear ...
0
votes
2answers
188 views
C Instructions explaination
can any one explain the following instructions:
int *c[10];
char *(**n)(void);
float *(**r(void))[6];
short *(**v(void))(int);
long *(*(*(*z)(void))[7])(void);
0
votes
1answer
146 views
SSE4, SSE5 & AMD Cool n Quiet
Well, i we're wondering if C++ can check if the computer has SSE4, SSE5, and Cool 'n' Quiet. It's possible? How? I saw the isProcessorFeaturePresent but i don't see anything about those there.
0
votes
1answer
192 views
What is the instruction in MARS simulator (assembly language) that flips/reverses one word (4 bytes) of the LED lights on the LED display?
Apparently there is one simple instruction to accomplish this. I was unable to find it anywhere. Little help?
Thanks in advance
0
votes
2answers
92 views
How processor deals with instruction upon interrupt
What will happen if in the middle of a long instruction the CPU recieves interruption? Will the CPU execute the whole instruction or only part of it?
0
votes
1answer
99 views
Looking for step-by-step instructions on how to install Bakery module
I am looking for step-by-step instructions on how to install Bakery module for Drupal.
I have multiple sites, that do not share a Drupal installation & tried understanding instructions mentioned ...
0
votes
2answers
194 views
How do you create a textbox in visual Studio with c#?
I feel kind of silly asking this question as it seems really simple, but how do I create a text box that I can type in instructions and stuff like that. I don't need the user to be able to change it, ...