The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
50 views

How to insert x86 opcode data from .data segment bits in to operand instruction in x86 machine code?

I am working on an x86 bootloader written entirely in opcodes, no headers, all binary. The problem is that Intel's ISA manual does NOT include how to include data segment bytes from .data segment ...
-9
votes
0answers
70 views

Is it possible to program for the x86-64 Intel chip in direct opcodes/machine code? [closed]

I want to write the opcodes myself, no assembly code, and emulate the assembly similar syntax to perform the instructions. I am not sure, do I need the magic number byte 0xAAFF defined as well? Here ...
-3
votes
1answer
38 views

Searching for opcode bytes in PE file [closed]

I have a task of searching for opcode bytes in a PE file and checking whether a specified opcode byte sequence (constant and predefined) is present in the PE file. I have come across numerous examples ...
0
votes
0answers
32 views

Expanding Opcode Counting Instructions

I have a question on expanding opcode and I'm not sure how to work it out. A certain machine has 3 types of instructions: Type-A instructions: 4-bit opcode Type-B instructions: 6-bit opcode ...
-1
votes
1answer
33 views

How works the progam loader from simple OS?

Program loaders of simple OS like DOS, read the program code from a floppy or a HDD and move its byte code to the RAM. Question 1: Where the byte code is moved exactly? To the Heap, Stack or another ...
30
votes
2answers
439 views

How does a class extension or Interface work?

Have come across this so many times and am not sure why so it got me curious. Some classes work before they are declared and others don't; Example 1 $test = new TestClass(); // top of class class ...
3
votes
2answers
70 views

In IL code, why is there not a nop opcode in a given situation? Why is there a br.s opcode in a given situation?

Suppose I have the following code: public class Class1 { private Class2 obj; public void MethodA() { var class2 = new Class2(); class2.PropertyI = 2; obj = ...
0
votes
3answers
92 views

What happens when php file is replaced while being executed on linux apache server? [duplicate]

Is there a way to safely replace php file on a server, while it is being executed by the user? I mean - do I have to hunt for the right moment of silence to upload new version of the file with the ...
0
votes
3answers
99 views

stack is in the CPU or RAM?

I have an question about stack, is stack in the CPU or RAM? Is stack a place to run OPcode? EIP is in the CPU or RAM?
1
vote
2answers
76 views

Confused assembly code keywords

The page http://daeken.pastebin.ca/raw/843310 contains all assembly code with its descriptions. But I don't really understand, for example 0xa1 : ['MOV', 'rAX,Ov'],..., look at its description I could ...
0
votes
2answers
141 views

what does opcode FF350E204000 do?

I've got the 32bit opcode: FF 35 0E 20 40 00. Does anybody know a good OpCode table that gives an answer to this? (I know I could use a disassembler, but I'd like to know, how to determine this with ...
0
votes
2answers
67 views

Looking for program to show ASM instructions as binary ocodes

I am looking for a program (Linux/FOSS preferred) or a website that can quickly and conveniently show me the hex equivalents of (Intel) assembly instructions E.g. I enter: test al, al and it ...
1
vote
1answer
88 views

How to read the Intel Opcode notation

I am reading some material about Intel Opcodes of assembly instructions, but I cannot understand what does it mean that follows the opcode byte. For esxample: "cw", "cd", "/2", "cp", "/3". Please give ...
1
vote
3answers
190 views

Opcode for negative jump

I'm trying to create some shellcode where I need to jump back (a negative jump). I want to jump 2400 bytes back. And this is the opcode I use: \x90\xE9\x98\xef This is first a nop and then a near ...
0
votes
1answer
88 views

Assembly Language - LDI

I am having trouble figuring out weather to load a regisiter with the contents of the data in the regisiter or indirectly load the register with the address of the value when we execute LDI. ...
7
votes
3answers
152 views

Illegal Opcodes in the JVM

I've recently come across while developing a library that performs operations on JVM bytecode some opcodes on which there is no documentation (that I've found), yet which are recognized by the JVM ...
1
vote
1answer
169 views

Assembly Language Addition

I am new to assembly language and I found this table of hex codes that I need http://www.keil.com/support/man/docs/is51/is51_opcodes.htm But my question is does it matter which "ADD" instruction I do ...
1
vote
0answers
122 views

Installing xcache on a shared hosting account

I'd like to install xcache on a shared hosting account. I've followed the instructions here: http://xcache.lighttpd.net/wiki/InstallFromSource but note the differences: You can not run "su" on a ...
3
votes
2answers
355 views

Hello World! Program using JAVA ASM to display Bytecode

I am not able to display bytecodes on my screen. I want to generate output alike Javap Command for hello World. I created following class and hello world class. Could any one please ...
1
vote
5answers
217 views

Formatting hex code to asm code

I need to write something like a "disassembler", I need to read RAM memory (code section) and show it formatted like ADD rax, rbx MOV rcx, rax Where can I find a comprehensive guide/paper on how to ...
2
votes
1answer
269 views

Php apc opcode cache - caching whole files vs variables

Are entire php files added to apc just by using and enabling it? I understand how fetch and store works with variables, but when should this be used? Is the caching of whole files done automatically? ...
0
votes
1answer
136 views

How does php opcode cache (apc) work with session-specific variables?

Looking at creating my first web application using php and an opcode cache. I vaguely understand why it's beneficial in theory. However, in practice - how does apc work with opcodes compiled from ...
5
votes
2answers
198 views

Can a Java method have more than 255 local variables?

The iload Java opcode is used to push a value from the local variable array (LVA) onto the operand stack. This opcode takes a single byte as a parameter ...
1
vote
3answers
100 views

Where does ARM read program instructions from after Register 14?

How I understand the basic workings of the ARM architecture is such; There are 15 main registers with the 15th (r15) being the Program Counter (PC). If the program counter points to a specific ...
0
votes
2answers
377 views

Are all of the ARM opcodes 1 byte?

In x86 architecture there are one, two and three byte opcodes. What about ARM? For example, when I disassemble a binary, can I always take first byte as opcode?
1
vote
0answers
55 views

Sizeof opcode differs between Reflection.Emit and ECMA specs?

So, I developed a tiny library directly in IL to interface with C# for the sizeof opcode (NOT C# operator). It was pointed out to me that my IL "wasn't valid" even though it was. In the ECMA spec it ...
8
votes
1answer
275 views

Erlang Opcodes and their meaning

Some of the opcodes used by the Erlang VM have an obvious meaning, but others are mysterious and they seem to differ each other by subtle differences. As an example: What's the difference between ...
0
votes
0answers
146 views

MIPS assembler 'Illegal op-code. Execution stoped.'

I am currently in the process of making a program that controls traffic lights in MIPS assembly, to learn a bit more about how MIPS works. I want it to work with timer-interrupts as well as with ...
0
votes
1answer
443 views

Checking up Intel assembly opcodes easily in Linux

I have been looking for an practical tool that would print the opcodes of any Intel 64-bit or 32-bit instruction in Linux, eg. something like Hiew's assembler in DOS. A web-based service would be one ...
0
votes
2answers
100 views

If Statement Optimization - comparing character strings vs constant boolean flags

Consider the following Java code: public void DoStuff(String[] strings, boolean preEval) { final String compareTo = "A Somewhat Long String of Characters"; for ( int i = 0; i < ...
7
votes
3answers
224 views

Why does `OpCode.Value` have the “wrong” endianness?

Facts: The correct encoding for the CIL instruction rethrow's op-code is the two-byte sequence FE 1A. OpCodes.Rethrow.Value (which has type short) has value 0xFE1A on my little-endian machine. ...
2
votes
1answer
108 views

Decrementing (DEX/DEY Opcodes) when X and Y are 0 for 6502 Cpu

I'm currently attempting to write an NES emulator through .NET and I have a question about the particular opcodes that do decrementing and incrementing... Since X, and Y registers are 8 bits, in ...
1
vote
1answer
192 views

Rex prefix decoding for intel x64 arch

In the Intel documentation "Architectures Software Developer’s Manual Vol 2A". Table 2-4 is showing the signification of the REX prefix's bits. Does someone can explain me how to interpret when W=0. ...
1
vote
1answer
167 views

ARM7 TDMI undefined instruction exception manual generation

I am trying to test out some exception handling code running on an ARM7 TDMI processor. I am wanting to manually create an instruction opcode which will generate the "Undefined instruction" ...
0
votes
3answers
246 views

Why is this CMP instruction failing?

I have the following code : CMP BYTE PTR [ESP+5],61 ; ESP is 0012F9AC JNZ SHORT .... The following is in the memory Address Data 0012F9AC 0012FA94 0012F9B0 61616161 0012F9B4 61616161 Now, ...
0
votes
1answer
118 views

php apc cli opcache no affect

i want to use apc as cli with opcode cache feature. using apc.enable_cli to true. but noting happened in benchmark time and memory usage. ; php.ini apc.enable_cli = 1 but in web based usage ...
6
votes
1answer
135 views

What are the possible OpCodes for the last instruction of a method?

In .net what are the possible OpCodes that can exist as the last instruction of a method. At the moment I know that it can be Ret ...
8
votes
2answers
202 views

Understanding PHP op code in a if statement

I'm trying to understand the op code for an simple code. The code is: <?php $a = TRUE; $b = FALSE; if($a && $b) { echo 'done'; } The op code for the above code is: php ...
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
131 views

z80 flags - how to generate?

I'm designing a z80 compatible project. I'm up to designing the flags register. I originally thought that the flags were generated straight from the ALU depending on the inputs and type of ALU ...
0
votes
0answers
28 views

FLpanel opcodes crash CsoundQT [CSound]

I'm using very straightforward code: <CsoundSynthesizer> <CsOptions> </CsOptions> <CsInstruments> sr = 44100 ksmps = 32 nchnls = 1 ...
2
votes
2answers
243 views

What is the meaning of parentheses in opcodes in a NASM generated listing file?

When looking at a listing file that was generated by NASM, I see that there are three kinds of opcodes: Without parentheses. With round parentheses. With square parentheses. What they mean? when ...
0
votes
2answers
324 views

Exam - Machine code codification

I found this exam question that I have to tell how the beq instruction is coded in machine code. This is the code: loop: addu $8, $9, $10 addiu $8, $8, 0x00FF7A01 beq $8, $0, loop ...
0
votes
0answers
126 views

No php.d file/directory?

I'm trying to install any opcode cache such as eaccelerator, xcache or apc. Every one of them refers to their own .ini files or the /etc/php.d/ directory. I can't locate a php.d directory or file on ...
0
votes
0answers
159 views

011010 opcode for PS1 emulator

I am attempting to make a ps1 emulator. I have looked through many websites for the opcodes for the r3000a processor which the play station uses. However, when I am running the opcodes from my ps1 ...
3
votes
2answers
332 views

What is the difference between machine code and opcode?

The question is mostly related to PHP because IMHO opcode is mostly mentioned in PHP context. According to this description, here's a transformation process of php code into opcode: php text -> ...
2
votes
1answer
220 views

8086 Assembly ADD addressing mode

Hello I am writing assembly code for 8086 but I am wondering how does CPU differentiate between for example AND AX, [memoryaddress] and AND AX, memoryaddress we are putting [] around it to indicate ...
0
votes
2answers
98 views

ASM strings get code corrupted

I have a simple 16 bit assembly like the following: push bx StrVar db "My string!",0 push ax .. other code.. I'm trying to compile it with NASM, but I have a question.. if my string with the ...
0
votes
0answers
203 views

APC won't cache files in zend other that index.php

I installed APC and I'm trying to use it for opcode caching with zend framework. The problem is that the only file that gets cached is index.php My APC config: apc.enabled = 1 apc.shm_segments = ...
0
votes
1answer
592 views

Android No expanded opcode for R.java

I have an important problem while compiling Android Application. Using Windev Mobile, it generates java code, compile and create apk, however, when the apk creation, an error happens: command line: ...

1 2 3