Data segment or Text segment


 
Thread Tools Search this Thread
Top Forums Programming Data segment or Text segment
# 1  
Old 04-29-2011
Data segment or Text segment

Hi,

Whether the following piece of code is placed in the read-only memory of code (text) segment or data segment?

Code:
char *a = "Hello";

I am getting two different answers while searching in google Smilie that's why the confusion is
# 2  
Old 04-29-2011
Quote:
Originally Posted by royalibrahim
Hi,

Whether the following piece of code is placed in the read-only memory of code (text) segment or data segment?

Code:
char *a = "Hello";

I am getting two different answers while searching in google Smilie that's why the confusion is
Most likely the text segment but some compilers can be forced to put it in the data segment using comand line switches...and if you really care print out its location using a debugger to find out whether it lies in the text or data segment...difference is that the text segment literal cant be modified but the data segment one can be.
# 3  
Old 04-29-2011
Guess it's compiler/architecture dependent. Look at the produced assembly file.

PS> Why do you are about where it is stored?

Cheers, Loïc

Last edited by Loic Domaigne; 04-29-2011 at 04:24 PM.. Reason: typo
# 4  
Old 05-02-2011
It is in text segment ... If you want you can check it... like this..
Try to change the value of that variable..
# 5  
Old 05-02-2011
Tools

Quote:
Originally Posted by royalibrahim
Hi,

Whether the following piece of code is placed in the read-only memory of code (text) segment or data segment?

Code:
char *a = "Hello";

I am getting two different answers while searching in google Smilie that's why the confusion is
Hi royalibrahim,

The declaration 'char *a = "hello"' is actually allocated in the .rodata (read-only data) and not in the .text section (in an ELF binary). I wrote a small code to verify
this.

Code:
char *var = "A"; /* small value makes verification easier */

I compiled it and dumped the .rodata section of the ELF using objdump.

[gaurav@adserver1 ~]$ objdump -s -j .rodata temp.o

temp.o: file format elf32-i386

Contents of section .rodata:
0000 4100 A.

So you see that the value "A" with ascii value '41' is present in there.

Thanks and Regards,
Gaurav.
# 6  
Old 05-03-2011
Quote:
Originally Posted by naresh046
It is in text segment ... If you want you can check it... like this..
Try to change the value of that variable..
Sorry, that's wrong -- or at least not strictly correct. In my system, it ends up in the .rodata section, which is read-only despite not being the text section.

The text section doesn't actually mean text as in words -- it means program text, i.e. machine language. It's read-only since it usually maps directly into object files. It's not inconceivable for variables to end up there, but still a funny place to put them.

The data segment would make more sense, being where global variables go, but has the drawback of not being read-only.

So, for systems that don't have any sort of read-only data section available, I guess the text section might be as good a place as any. And if you can write to it, it's probably inside the data segment...
# 7  
Old 05-03-2011
The rodata section is a specific section of the text segment set aside for storing constants and literals for the purpose of efficiency as they can be embedded in the instructions passed to the CPU and so no overhead is incurred to fetch them from memory. Another clue to the location of the literal is the fact that out of the 3 segments text data and stack only the text segment is readonly while data and stack are read and write and as i said before if still in doubt print out the value of a and the start of the data segment in gdb to see where the string literal actually lies.
gdb
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

why segment fault,

I always get segment fault, why? can sb help me and modify it, I have spend on much time on #include <pthread.h> #include <stdio.h> #include <stdlib.h> #include <sys/time.h> #include <string.h> #define MAX 10 pthread_t thread; void *thread1() { int *a; int i, n; ... (1 Reply)
Discussion started by: yanglei_fage
1 Replies

2. AIX

mprotect fails with ENOMEM in text segment

Hi guys, I use AIX version 5 on IBM Power 5+ machine. I am currently trying to experiment with sort of self-modifying code, like this: ucontext_t ut; getcontext(&ut); int iar = ut.uc_mcontext.jmp_context.iar; int pageSize = getpagesize(); int rest = iar % pageSize; void *ptr = iar -... (6 Replies)
Discussion started by: manolo123
6 Replies

3. Programming

Segment Violation

Hi to all. I'm reciving a "Segment violation" error from this code and I don't know why. void insertAtEnd(NodeType *pList) { char element; printf("Introduce a element: \n"); setbuf(stdin, NULL); scanf("%c", &element); //Find the end of the list; while... (4 Replies)
Discussion started by: daniel.gbaena
4 Replies

4. AIX

data segment on AIX

Hi guys, Are all users authorised to modify the data segment and stack segment to unlimited on AIX? Is a reboot required after giving ulimit -d unlimited? Thanks vandi (2 Replies)
Discussion started by: vandi
2 Replies

5. UNIX for Dummies Questions & Answers

code segment

how do i close a do code segment? od? (1 Reply)
Discussion started by: trob
1 Replies

6. UNIX for Advanced & Expert Users

set Ulimit data segment to Unlimited

Hi, as per my Unix admin all parameters in Ulimit are set to Unlimited in Hard limits but some how few profiles setting data segment part to limited number value. So i wanted to over write in my profile to set unlimited as hard limits are set to unlimited. What is the command to set ulimit for... (1 Reply)
Discussion started by: terala_s
1 Replies

7. Shell Programming and Scripting

extract segment

Hey all, could someone please direct me on how to extract a segment from a file between two tags? Thanks! (1 Reply)
Discussion started by: mpang_
1 Replies

8. Programming

Segment Fault

When run it, segment fault. What is wrong? #include <stdio.h> #include <stdlib.h> const int max =20; //**************************************************** // Input Matrix //**************************************************** void inMatrixAA(int *AA, int row, int col)... (9 Replies)
Discussion started by: zhshqzyc
9 Replies

9. Programming

bss(uninitialized data) segment allocation

Hi 1) Please go through the following code : char string2; char string1; main() { memcpy(string2,"SENDER ",12); strcpy(string1,"******"); printf("%s\n%s\n",string1,string2); } 2) and the output of... (7 Replies)
Discussion started by: karimulla_sha
7 Replies

10. Shell Programming and Scripting

Extract data segment using awk??

How do I filter a long report, with the "STARTWORD" and "STOPWORD" as the variables to use in my awk command, to print the whole data segment that only contains the matched start/stop word? awk '/start/, /stop/' file <- this prints the line, though I need to print the whole segment. Newline... (1 Reply)
Discussion started by: apalex
1 Replies
Login or Register to Ask a Question