Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
549 views

How to get opcodes of PHP?

<?php $show_value = 123; echo 'sing_quote'.$show_value; echo "double_quote{$show_value}"; ?> Its opcode is: 1: <?php 2: $show_value = 123; 0 ASSIGN ...
9
votes
4answers
731 views

calling code stored in the heap from vc++

Imagine I am doing something like this: void *p = malloc (1000); *((char*)p) = some_opcode; *((char*)p+1) = another_opcode; // for the sake of the example: the opcodes are ok .... etc... How can I ...
8
votes
5answers
347 views

APC and PHP - Broken Sites Due to Cache Mixing

I hope someone can give me a hand figuring this out. I have been running APC recently on some of my servers that host only one application and it's been working great. Unfortunately I went to run it ...
8
votes
5answers
174 views

Assembly: what are semantic NOPs?

I was wondering what are "semantic NOPs" in assembly?
8
votes
2answers
494 views

x86 instruction set roadmap

I'm just touching the surface of the x86 instruction set after a long period of high level programming. It's been about 20 years I had my first read on x86 assembly programming and from my googlings I ...
7
votes
2answers
256 views

Avoiding getfield opcode

In Java's String class, the trim method contains this: int off = offset; /* avoid getfield opcode */ char[] val = value; /* avoid getfield opcode */ I'm a bit puzzled by the comment "avoid ...
7
votes
2answers
318 views

What OpCodes were introduced in CLR 4.0?

Are there any IL opcodes that are new in .NET 4.0 as compared to 3.5, and if so, where can I find a list of them?
6
votes
1answer
136 views

Writing PHP opcode and have it executed. How to do?

How can I write PHP opcode, save it in a file and make the Zend Engine execute it? Any method or hack is welcome, as long as it does the trick.
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
3answers
860 views

VM Design: More opcodes or less opcodes? What is better?

Don't be shocked. This is a lot of text but I'm afraid without giving some detailed information I cannot really show what this is all about (and might get a lot of answers that don't really address my ...
6
votes
2answers
2k views

Can someone explain this directly assembled x86 JMP opcode?

At school we have been using a bootstrap program to run stand-alone programs without an operating system. I have been studying this program and when protected mode is enabled there is a far jump ...
5
votes
2answers
101 views

In C++, regarding bit-shifting and casting data types

I recently asked a question here on Stack Overflow about how to cast my data from a 16-bit integer followed by an undetermined amount of void*-cast memory into an std::vector of unsigned chars for the ...
5
votes
2answers
191 views

Direction/Sign Extend bit in x86 instruction set

In the x86 instruction set the the bit at index 1 can either be the direction bit which specifies what the destination and source operands are or it can be a sign extend bit. I'm wondering what's the ...
5
votes
3answers
2k views

Optimize APC Caching

here is a link to how my APC is running : http://www.animefushigi.com/apc.php As you can see, it fills up pretty quickly and my Cache Full Count goes over 1000 sometimes My website uses Wordpress. ...
5
votes
2answers
447 views

What are these opcodes for?

Using reflector I get the following output: .method private hidebysig static class myModelTestarea.Foo Method() cil managed { .maxstack 1 .locals init ([0] class myModelTestarea.Foo CS$1$0000) ...
5
votes
2answers
2k views

PHP Opcode Caching/Zend Acceleration and include_once vs. require_once

I have a colleague who is looking into opcode caching/Zend Acceleration (I've always assumed these are the same thing) for our PHP based application. His Benchmarks appear to indicate that we're NOT ...
4
votes
2answers
79 views

Repeat prefixes and mandatory prefixes in x86

In my quest of writing a small disassembler for linux specific to x86 arch, I'm faced with a small issue. It's with regard to mandatory prefixes and repeat prefixes. Looking at the Intel docs [1], ...
4
votes
3answers
467 views

Intel x86 Opcode Reference?

What is a relatively quick and easy method of looking up what an arbitrary opcode means (say, 0xC8) in x86? The Intel Software Developer's manual isn't very fun to search through...
4
votes
3answers
234 views

How to interpret the opcode manually?

77f4bcbc 8945fc mov dword ptr [ebp-4],eax And here's the rule: 88 /r MOV r/m8,r8 2/2 Move byte register to r/m byte 89 /r MOV r/m16,r16 2/2 Move ...
4
votes
3answers
793 views

intel machine code to assembly code question

experts,i wonder the intel x86 machineCode/assemblyCode conversion is singleSide or bothSide? means: assemblyCode ---> machineCode and machineCode ---> assemblyCode are both available. since the x86 ...
4
votes
4answers
4k views

Opcode (APC/XCache), Zend, Doctrine, and Autoloaders

I am trying to use either APC or XCache as an opcode to cache my php pages. I am using it with Zend and Doctrine and it's having a problem with the autoloader. If I try with APC, I get the following: ...
4
votes
2answers
3k views

Dynamic object property populator (without reflection)

I want to populate an object's properties without using reflection in a manner similar to the DynamicBuilder on CodeProject. The CodeProject example is tailored for populating entities using a ...
3
votes
1answer
93 views

unknown Opcode '.pword'

When I compile my code I am getting a unknown Opcode '.pword' error. The only line of code in my project that has .pword is: do { __asm__ volatile (" .pword 0xDA4000"); Nop(); } while(0) ...
3
votes
1answer
123 views

Why does C# compiler emit additional OpCodes in IL?

If I've a method Multiply defined as: public static class Experiment { public static int Multiply(int a, int b) { return a * b; } } Then why does the compiler emit this IL: ...
3
votes
2answers
198 views

x86 Opcode Patching?

For reasons too complicated to explain here, I have the need to run a x86 GCC-compiled Linux program on a platform that is a subset of x86. This platform does not have the %gs register, which means ...
3
votes
2answers
1k views

how to check if APC opcode is working fine in PHP?

I am using PHP with APC cache enabled apc.cache_by_default => On apc.enabled => On apc.ttl => 7200 now how can i know if it is using opcode 100%. for example let us say that i have this php file ...
3
votes
2answers
510 views

What exactly does the 3 operand imul instruction do in ia-32 assembly?

I'm reading the instruction imul 0xffffffd4(%ebp, %ebx, 4), %eax and I'm baffled by what it's doing exactly. I understand that imul multiplies, but I can't figure out the syntax.
3
votes
1answer
192 views

Where is the method call in the EXE file?

Introduction After watching this video from LIDNUG, about .NET code protection http://secureteam.net/lidnug_recording/Untitled.swf (especially from 46:30 to 57:30), I would to locate the call to a ...
3
votes
2answers
536 views

Things to avoid when coding PHP programs that work on OpCode Cachers

What kinds of things should I avoid if I want to support PHP OpCode Caches? Are static calls evil? What about __autoload?
3
votes
2answers
269 views

Can we construct an instance of `OpCode`?

The .NET Framework 4.0 introduces several items to the Reflection API that range from extremely useful to vital for my work. Among these are protected constructors for Assembly, Module, MethodBody, ...
2
votes
1answer
54 views

What is the purpose of the ACC_SUPER access flag on Java Class files?

The invokespecial JVM instruction is used for calling initialisation methods (<init>) when creating new objects. The description of the instruction suggests (but doesn't clarify) that the ...
2
votes
2answers
49 views

Disassembling a 'faddl' instruction

In my venture of coding a disassembler for the linux x86-32 bit platform, I came across an issue. I saw the following opcode sequence when I disassembled a simple ELF-32 executable using 'objdump': ...
2
votes
2answers
319 views

Translation of machinecode into LLVM IR (disassembly / reassembly of X86_64. X86. ARM into LLVM bitcode)

I would like to translate X86_64, x86, ARM executables into LLVM IR (disassembly). What solution do you suggest ?
2
votes
4answers
109 views

Finding number of operands in an instruction from opcodes

I am planning on writing my own small disassembler. I want to decode the opcodes which I get upon reading the executable. I see the following opcodes: 69 62 2f 6c 64 2d 6c which must correspond to: ...
2
votes
3answers
112 views

What is faster: JMP or string of NOPs?

I'm implementing binary translation and have to deal with sequences of NOPs (0x90) with length about 16 opcodes. Is it better for performance to place JMP (to the end) at start of such sequences?
2
votes
4answers
345 views

Decoding and matching Chip 8 opcodes in C/C++

I'm writing a Chip 8 emulator as an introduction to emulation and I'm kind of lost. Basically, I've read a Chip 8 ROM and stored it in a char array in memory. Then, following a guide, I use the ...
2
votes
2answers
270 views

why are jsr/ret deprecated java bytecode

does anyone know why the jsr/ret bytecode pair is deprecated in Java 6? The only meaningfull explanation I found on the net was that they made code analysis by the runtime harder and slower to ...
2
votes
1answer
101 views

CIL - What is the difference between ldc.i4 33 and ldc.i4.33?

I'm trying to figure out some CIL code. But it seems these two statements do the same thing (according to everything I have read). ldc.i4 33 and ldc.i4.33 Both supposedly "load an int32 onto the ...
2
votes
1answer
406 views

Disable APC Cache for cached files?

I have a quite large website, in which there is a forum powered by phpBB. I have APC enabled with 1Gb of RAM. phpBB generates a lot of php files of cache (60 000-70 000 in my case), and they rapidly ...
2
votes
2answers
305 views

Determining Opcode Cycle Count for a CPU

I was wondering where would one go about getting CPU opcode cycle counts for various machines. An example of what I'm talking about can be seen at this link: ...
2
votes
4answers
363 views

what is the easiest way for opcode caching with PHP/Apache?

I was thinking to use opcode caching for performance profit what is the easiest way for opcode caching with PHP/Apache ? and what are the performance improvements ? I have read about xDebug but I ...
2
votes
2answers
817 views

Can the APC cache be shared among multiple PHP processes running as fastcgi/fcgid?

I'm running a LAMP box with PHP running as fcgid. APC is installed and working well. However, each PHP process gets its own cache. This is a problem, because it would make far more sense to have 10 ...
2
votes
2answers
588 views

APC Caching with variable includes

I have been doing some research on APC Caching with PHP and found that conditional includes just don't work. Like: if($a) { include('a.php'); } else { include('b.php'); } My question is: ...
2
votes
2answers
934 views

Unhandled dwarf expression

can anyone tell me what exactly the following means that occurs during segmentation fault. Unhandled dwarf expression opcode 0x93 any advice appreciated, Edit : Its on solaris 10 i386
1
vote
1answer
29 views

How to check if opcode cache is running on a server?

Is it possible to check if a PHP opcode cache is installed and running on a server without having SSH access to the server? I've checked phpinfo() and can see no reference to APC or eAccelerator, but ...
1
vote
0answers
32 views

Calling a method within a dynamic method in VB.NET

So for the past hour I have been trying to use a Dynamic Method in VB.NET to call a sub inside the calling class. I've had no luck with a couple of things. Firstly, while trying to follow the example ...
1
vote
3answers
92 views

Calculate the JMP opcodes

I'm trying to calculate the correct op codes for a jump, I've looked at this in other threads and I still don't understand: I thought the formula was desination - (from+5) but its just not working, ...
1
vote
3answers
107 views

assembly code embedded in c giving a improper operand type error for cmp

I have made a program that is supposed to check whether a number is positive, negative, or zero. When I try to compile the code, it gives a improper operand type error, for line 28, which is the cmp ...
1
vote
1answer
255 views

MIPS stack frame (and “addiu” instruction confusion)

I'm new to MIPS and am trying to understand the disassembly of a function. (EDIT: it is dynamically linked to /lib/ld-uClib.so.0 and uses some usual libc functions, so I assume it was written in C ...
1
vote
1answer
141 views

Viewing PHP opcode [closed]

Possible Duplicate: How to get opcodes of PHP? As I dig deeper into developing in a specific language, at some point, if possible, I like to view the opcode of the language to give me a ...

1 2