Assembly that is embedded with the source of another, higher language, such as x86 assembley embedded in C or C++.
0
votes
1answer
12 views
inline assembly with microsoft cl tool
How can I build inline assembly with the Microsoft cl tool? when I try the standard
asm(nop);
it says unresolved external symbol asm. Any ideas? thanks!
0
votes
2answers
75 views
Converting Assembly Inline from 32bit to 64bit
Does anyone knows how can this function be changed to deal with 64bits?
{
unsigned int prev;
__asm__ __volatile__ (
" lock; cmpxchgl %1,%2; "
: "=a"(prev)
: ...
0
votes
1answer
39 views
movl AT&T syntax with attributes
Here is a snippet of assembly code in AT&T Syntax.
int foo_array[64*1024] __attribute__ ((aligned (8192)));
void
foo()
{
__asm__("movl %0,%%eax"::"r"(&foo_array));
I understood that ...
0
votes
2answers
79 views
add inline asm into C macro
I'm using mingw 4.7.2.
Could someone please tell me what's wrong in this MACRO
All I want to do is a simple asm macro which add two int and puts the result into result variable
#define ...
0
votes
0answers
85 views
How do you use Shellcode(s) with parameters in Delphi? [closed]
I know hot to create (and extract) a simple shellcode procedure in Delphi. An example would be:
procedure MyShell;
var
hKernel32 : Cardinal;
IDH : ...
0
votes
1answer
40 views
What are the limitations on the use of output registers in avr-gcc inline assembly?
Output register in inline assembly must be declared with the "=" constraint, meaning "write-only" [1]. What exactly does this mean - is it truly forbidden to read and modify them within the assembly? ...
4
votes
1answer
207 views
clang (LLVM) inline assembly - multiple constraints with useless spills / reloads
clang / gcc : Some inline assembly operands can be satisfied with multiple constraints, e.g., "rm", when an operand can be satisfied with a register or memory location. As an example, the 64 x 64 = ...
0
votes
2answers
92 views
Cortex m3 svc with gcc inline assembly
I hope to make a svc # into c code. Now I can use assembly to take up the value of svc.
SVC_Handler:
tst lr, #0x4
ite eq
mrseq r0, msp
mrsne r0, psp
b SVC_Handler_C
void ...
1
vote
2answers
70 views
Visual studio inline assembly direct jump
I want to use inline assembly in visual studio to jump to a specific address. I tried this:
_asm {
jmp 0x12345678
}
But the compiler says: "The opcode does not use operands of this type."
How ...
1
vote
2answers
70 views
Executable Packer (decompression/decryption stub)
I am working on an executable Packer & I have done compression & Encryption part so far. Now I have to store decompression/decryption stub/routine in the compressed file. My question is that ...
0
votes
1answer
46 views
Getting capital letters MASM x86
I am having some problems with getting the amount of uppercase letters in a string that will be passed in by a user. I have to write it in masm. My question is can i use an:
AND al, some bitstream
...
0
votes
1answer
51 views
Converting lowercase character string to uppercase masm
there is a printf statement which tells the compiler to print outStr. outStr is originally set to equal emptybuf[1000] = "??? not translated yet ???";. I am supposed to move my answer into the ...
1
vote
1answer
79 views
Call C function from inline assembly VS2012 - segfault?
Well, I've read the questions that are similar to mine but I haven't been able to solve this problem yet. I've also checked this which could, obviously, solve my problem. But it didn't.
I have a C ...
1
vote
2answers
128 views
ROL / ROR on variable using inline assembly only in Objective-C [duplicate]
A few days ago, I asked the question below. Because I was in need of a quick answer, I added:
The code does not need to use inline assembly. However, I haven't found a way to do this using ...
2
votes
1answer
78 views
ROL / ROR on variable using inline assembly in Objective-C
I would like to perform ROR and ROL operations on variables in an Objective-C program. However, I can't manage it – I am not an assembly expert.
Here is what I have done so far:
uint8_t v1 = ....;
...
1
vote
2answers
110 views
Use of STREXEQ instead of STREX for spinlock implementation in ARM
The following is a sample spin-lock implementation in the ARM manual. Please check here: http://infocenter.arm.com/help/topic/com.arm.doc.genc007826/Barrier_Litmus_Tests_and_Cookbook_A08.pdf . ...
1
vote
1answer
42 views
How is inline assembler implemented in Linux and Windows compilers and ELF/EXE?
Is the assembler already converted into the ABI binary in executables or is it done by OS?
Please can you give me link to GCC or any other compiler source code, which converts x86-64 inline asm into ...
-1
votes
1answer
74 views
Edit Memory Address Via C#, How to set the statement? [duplicate]
i want to edit an active app (edit a memory address),
on address 00498D45 i want to edit its value
currect value :
MOV BYTE PTR SS:[EBP-423],7
to
updated value:
MOV BYTE PTR SS:[EBP-423],8
...
3
votes
1answer
181 views
Edit Memory Address via c#
i want to edit an active app (edit a memory address),
on address 00498D45 i want to edit its value
currect value :
MOV BYTE PTR SS:[EBP-423],7
to
updated value:
MOV BYTE PTR SS:[EBP-423],8
...
0
votes
0answers
115 views
ARM Cortex-a9 event counters return 0
I'm currently trying to use the event counters on an ARM Cortex-a9 (on a Xilinx zynq EPP) to count cycles. I've adapted some ARM example code from ARM for this purpose. I'm programming this bare-metal ...
0
votes
0answers
30 views
Inline assembly instruction ASMV
I've searched for but have no success in finding the difference between the inline assembly instructions ASM and ASMV. Specifically I wanted to know more about ASMV and where can I find documentation ...
7
votes
2answers
125 views
GetThreadID in assembly
I read the source code of FastMM4, and notice this interesting function
function GetThreadID: Cardinal;
{$ifdef 32Bit}
asm
mov eax, FS:[$24]
end;
{$else}
begin
Result := GetCurrentThreadID;
end;
...
0
votes
1answer
74 views
gcc inline assembly function that clobbers all the floating-point registers
I'm trying to write an asm statement (inline assembly in GCC), that just calls some function, that returns one value in floating-point register and has no operands, but potentially clobbers all the ...
1
vote
1answer
59 views
Using Inline Assembly to update internal system registers
I'm tying to use inline assembly in a project that i'm currently working on. The project is about building a simple OS from scratch.
I've made it to the part where i begin writing the kernel code and ...
6
votes
2answers
242 views
Convert inline assembly code to C++
I am working on a cpp project. The project need to be migrated to 64 bit. It contains some Inline assembly code which cannot compile on x64.
This is the Function which contain the assembly code:
...
0
votes
3answers
89 views
Inline assembly error only in release
I have a program with a function made only with inline assembly.
This function is used to call other functions we variable arguments (number and type).
All my program work very well in Debug mode ...
2
votes
1answer
66 views
Resetting gcc's asm inline input
How to ask gcc to reset an asm inline input value? %0 in the following example is not reset to 42 after the first loop. So when i = 1, %0 value is still 0.
for (int i = 0; i < N; ++i)
...
0
votes
1answer
62 views
How to ask for a general purpose register in an asm inline statement?
Is there a way to ask gcc to allocate a register for asm inline internal use only? Here is an example (in pseudo-asm) where r5 is directly used in the asm, but it could be any general purpose ...
1
vote
2answers
102 views
Programmatically cause Undefined Instruction exception
I want to cause an ARM Cortex-M3 Undefined Instruction exception for the test of my test fixture. The IAR compiler supports this with inline assembly like this:
asm("udf.w #0");
Unfortunately the ...
1
vote
0answers
72 views
What does `asm(“” : “+r” (myVar));` mean in AVR-GCC?
I found following lines in the code of someone else:
uint16_t someConstantFactorVariable = ...;
asm("" : "+r" (someConstantFactorVariable));
The someConstantFactorVariable is inside a frequently ...
0
votes
0answers
19 views
Visual C++ inline assembler issue
I'm trying to learn inline assembler in Visual Studio 2010 and I collide with strange thing.
Here is my code:
#include <iostream>
#include <string>
using namespace std;
int main(){
...
1
vote
1answer
73 views
Error profiling with embedded assembly language in C++ code
I found this article on the efficiency of std::vector::push_back, the associated code can be found here. I tried it myself and I got an illegal instruction (core dumped), gdb indicates the error ...
1
vote
1answer
59 views
Get the value from inline assembly code
I have an inline assembly code like this
__asm
{
MOV dword ptr [esp+4], 12345678h
}
I want to get the value of at [esp+4] in a separate variable before 12345678h is written there, which I can ...
-1
votes
1answer
49 views
x86 Data Type (0x) Assistance
what is meant when 0x leads a number? Is it some sort of special data type or memory address?
Take for example this line:
add eax,0x77
I am unsure what the 0x is place in-front of the 77 for ...
1
vote
1answer
62 views
When to use earlyclobber constraint in extended GCC inline assembly?
I understand when to use a cobbler list (e.g. listing a register which is modified in the assembly so that it doesn't get chosen for use as an input register, etc), but I can't wrap my head around the ...
1
vote
1answer
124 views
Explanation for clobber list in extended GCC inline assembly executing the x87 FPATAN operation
The following code is in the MinGW x86inline.h file:
/*
** in-line atan2(y,x) function.
** Computes arctan(y/x).
*/
#define atan2(y,x) atan2_x87_inline(y,x)
double atan2_x87_inline(double y,double ...
2
votes
1answer
61 views
When to use a particular operand constraint in extended GCC inline assembly?
I'm having a hard time understanding when to use a particular input operand constraint over another in extended GCC inline assembly.
For example:
int x = 42;
asm("movl %0, %%eax;"
: /* no ...
2
votes
2answers
205 views
Using C headers in C++ code in GNU. Error including inline assembly: impossible constraint in 'asm'
I have a weird one. I'm working on an embedded system, using the vendors header files. I'm compiling the files using GCC 4.6.3. I want to use C++ for my code, I have error I can't figure out. I'm ...
2
votes
0answers
72 views
Inline assembly equivalent of _InterlockedCompareExchange128
Due to certain restrictions at work I am required to use the Windows WDK version 6000 to compile my code. However, I find myself needing the _InterlockedCompareExchange128 compiler intrinsic in my ...
1
vote
2answers
240 views
Get the address in ARM Inline assembly
The IAR compiler for ARM Cortex-M3 provides inline assembly. How can one store the address of a specific function to a location on the stack?
The C code would like this
void tick();
void bar()
{
...
2
votes
2answers
168 views
GCC: putchar(char) in inline assembly
Overflow,
how can I implement the putchar(char) procedure using inline assembly only? I would like to do this in x86-64 assembly. The reason for me doing this is to implement my own standard-lib (or ...
5
votes
2answers
124 views
Will gcc work correctly if “+m” is used as an output constraint?
According to the gcc docs on extended assembler:
You should only use read-write operands when the constraints for the operand [...] allow a register.
This seems to be to be pretty unambiguous: You ...
0
votes
0answers
158 views
Converting Assembly to C code [closed]
I wrote a code in assembly and I want to convert it to C code
void * temp = 0x033816BA;
__asm mov ecx, dword ptr[temp]
__asm mov eax, dword ptr[ecx]
__asm mov eax, dword ptr[eax+8]
__asm mov temp, ...
0
votes
2answers
494 views
Simple x86-64 C++ Inline assembly “Hello World” example
I am trying to find a very basic C++ inline x86-64 assembly example, similar to this:
a Simple "Hello World" Inline Assembly language Program in C/C++
char msg[] = "Hello, world";
asm {
...
2
votes
2answers
62 views
Templates and inlining- optimizing multiplication
I don't understand this example I came across:
int Multiply(int x, int m){
return x * m;}
template<int m>
int MultiplyBy(int x){
return x * m;}
int a,b;
a = Multiply(10,8);
b = ...
0
votes
0answers
143 views
How to enable performance counter in ARM Cortex-A8 processor?
I am using cortex A8 in user mode and trying to read performance counter.
As per a8 trm, register should be enabled from privileged mode.
Hence enabled the performance counter using a kernle module:
...
1
vote
2answers
124 views
How do I mimic the following c++ code using inline assembly?
I'm trying to mimic the following code using atomic inline assembly code:
struct Node{
Node * next;
int value;
}
typedef struct Node * Node_ptr;
Node_ptr store(Node_ptr ** L, Node_ptr * I){
...
0
votes
2answers
113 views
SIGSEGV When accessing array element using assembly
Background:
I am new to assembly. When I was learning programming, I made a program that implements multiplication tables up to 1000 * 1000. The tables are formatted so that each answer is on the ...
1
vote
1answer
140 views
GNU g++ inline assembly block like Apple g++/Visual C++?
I am currently following a course at my University in which, at this stage, we learn about the assembler code behind certain C/C++ constructs.
The workflow usually goes like this: the lab assistant ...
5
votes
3answers
169 views
Changing a number value using an inline assembly in C++
I'm trying to increase a number value by using an inline assembly in C++. The reason that I do it that way is to practice my "inline assembly" skills.
Well that's what I've done so far:
void main()
...


