The relative-addressing tag has no wiki summary.
0
votes
1answer
27 views
Relative Addressing in native part of an Android application
I have an object creation in my native part of an Android application like this:
CascadeClassifier face_cascade;
face_cascade.load( "haarcascades/haarcascade_frontalface_alt2.xml" );
In pure c++ ...
1
vote
1answer
175 views
How do two-pass assemblers deal with instructions that are expanded by the assembler?
Consider the following MIPS assembly (I'm using MIPS because that is what my Computer Organization and Design book uses):
beq $s0, $s1, L1
add $t0, $t1, $t2
...
L1: ...
Because MIPS only uses ...
0
votes
2answers
183 views
relative addressing in perl ,using open dir
I have the following code for listing all files in a directory , I have trouble with path addressing ,my directory is is */tmp/* ,basically I want the files which are in a directory in tmp ...
1
vote
1answer
252 views
absolute and relative addressing in gcc inline assembly
I am not able to understand the concept of absolute addressing and relative addressing in assembly particularly in gcc inline assembly. I saw the following code in a tutorial :
asm volatile(" ...
0
votes
0answers
225 views
RIP-relative addressing on x86
I'm not really experienced with x86 assembler and try to debug a problem related to a bug in mach_inject.
The original code looks like this (function mach_inject in mach_inject.c):
#if ...
1
vote
1answer
320 views
Pointer to the text segment from the data segment
Is it possible to do the following with this relative addressing in x86-64?
section .text
two
dq 0
section .data
one:
dq two
When I do it this way on OS X with nasm, I get the following ...
0
votes
2answers
185 views
PyCUDA Memory Addressing: Memory offset?
I've got a large chunk of generated data (A[i,j,k]) on the device, but I only need one 'slice' of A[i,:,:], and in regular CUDA this could be easily accomplished with some pointer arithmetic.
Can ...
0
votes
2answers
511 views
Addressing data using relative pointers (x86-32 assembler)
I'm writing in 32-bit x86 assembler, and I'm not quite sure how to address data that is always in the same relation to the code. Do I have to use EIP to calculate the absolute address, or is there a ...
5
votes
1answer
888 views
Generating %pc relative address of constant data
Is there a way to have gcc generate %pc relative addresses of constants? Even when the string appears in the text segment, arm-elf-gcc will generate a constant pointer to the data, load the address ...