python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
C# AggressiveInlining behaviour
I know what Inlining is supposed to mean from the JitAsm perspective. What I'm trying to determine is the following scenario
The following assumptions SHOULD BE CONSIDERED:
This code is a hotpath (it...
Damian
Votes: 0
Answers: 0
Inline assembly language - Accessing an array's elements in C++
I'm upgrading a Borland C++ Builder 6 project to the latest Embarcadero C++ Builder (11.1)
It's a 32 bit windows app.
Some legacy code, not written by me, contains an array unsigned 32 bit integers, d...
AndyB
Votes: 0
Answers: 0
inline ARMv7-M assembly code into c using gcc and macros
I have this code that works fine:
void function( void )
{
__asm volatile
(
" ldr r3, .ADDRESS \n"
" mov r2, %0 \n"
&...
mastupristi
Votes: 0
Answers: 1
Does inline ASM in C change disassembly?
I tried my best to search for this question before asking, but could not find an answer. Perhaps this question would be better suited to ask on the Reverse Engineering SE.
I am examining a 32-bit C Po...
Biggs
Votes: 0
Answers: 0