Tagged Questions

SPARC(Scalable Processor Architecture) Sun Microsystems's specific CPU.

learn more… | top users | synonyms

6
votes
6answers
2k views

SPARC assembly

I've been curious in the past few months in trying my hand at doing some assembly for the SPARC processor (either V8 or V9). My question is this, I have no access to a SPARC machine, is there an ...
4
votes
4answers
737 views

Running JAVA on Windows Intel vs Solaris Sparc (T1000)

Hi I'm trying to test my JAVA app on Solaris Sparc and I'm getting some weird behavior. I'm not looking for flame wars. I just curious to know what is is happening or what is wrong... I'm running the ...
4
votes
1answer
144 views

Disassembled gcc output appears to do a “call 0” instead of “call function-offset”, but works correctly

I had just a look at a very simple SPARC assembly output that I got from this C programm: int addition_func(int a, int b) { return(a+b); } void main() { int a = 20; int b = 19; int res; res ...
4
votes
1answer
97 views

How to get high resolution time using sparc assembly?

I use syscall SYS_time, but its resolution is 1 second. Is there any other solution?
4
votes
10answers
2k views

nanoseconds to milliseconds - fast division by 1000000

I'm wanting to convert the output from gethrtime to milliseconds. The obvious way to do this is to divide by 1000000. However, I'm doing this quite often and wonder if it could become a bottleneck. ...
3
votes
2answers
196 views

Stack Overflow on SUN Sparc

/* attack.c */ /* compile: cc -o attack attack.c */ #include <stdlib.h> #include <stdio.h> /* lsd - Solaris shellcode */ static char shell[] = /* 10*4+8 bytes */ ...
3
votes
2answers
166 views

Specifiying array in Assembler

I wanna specify a 512 x 32 bit array in my assembly file and this looks as follows: #define FUNCTION_01 test #define LABEL_01(name) .L ## test ## _ ## name .section ".data" my_array: ...
3
votes
2answers
58 views

Question regarding disassembly output

I have a very simple test routine: void test() { int a = 15; int b = 17; int c, d; c = a + b; d = a | c; printf("%d", d); } I generate then the object file and then I disassemly the ...
3
votes
2answers
614 views

can't compile ffmpeg on Solaris 10 sparc

Has anyone compiled ffmpeg 0.6.1 for Solaris 10 sparc? I'm getting the following errors: uname -a SunOS SERVERNAME 5.10 Generic_118833-36 sun4u sparc SUNW,Sun-Fire-V440 ...
3
votes
2answers
118 views

Is the SPARC architecture still relevant as a JIT compiler target on high-end servers?

X86 and AMD64 are the most important architectures for many computing environments (desktop, servers, and supercomputers). Obviously a JIT compiler should support both of them to gain acceptance. ...
3
votes
3answers
372 views

Strcpy() corrupts the copied string in Solaris but not Linux

I'm writing a C code for a class. This class requires that our code compile and run on the school server, which is a sparc solaris machine. I'm running Linux x64. I have this line to parse (THIS IS ...
3
votes
8answers
2k views

C++ IDE for Solaris SPARC

We've been given a C++ code base that was apparently developed using Rational Apex as the front end. In our opinion, Apex is less than ideal for C++ development. We're looking for an IDE we can use ...
3
votes
3answers
422 views

Does SPARC v9 have a double word compare and swap instruction?

So; on a 64 bit SPARC CPU which is v9 compliant, there exists I know a cas instruction. This operates on single word length values. I've also seen on the web reference to a casx instruction - but I ...
3
votes
3answers
972 views

SIGALRM while sleeping on Solaris 9

I'm running into a bit of a weird error while running Perl in a chroot environment on Solaris 9 (Sparc). We are using a custom Perl, but it's almost exactly Perl 5.8.7, and this version has been ...
3
votes
1answer
1k views

64-bit vs. 32-bit performance on SPARC hardware with the 1.6 JVM

I'm doing performance tuning for our Tomcat cluster running on SPARC hardware. The 32-bit JVM gives us sufficient memory for now, but we are going to start using Terracotta for server striping so the ...
3
votes
2answers
789 views

How do I refer to a global variable in a dynamically linked library?

The environment is Solaris on 32bit SPARC, but I think this is a more general issue with dynamic linking and/or position independent code. I have an assembly program that I compile as position ...
3
votes
2answers
2k views

SPARC Assembly Tutorial

Any recommendations for a good tutorial on SPARC assembly online for free? Thanks
2
votes
2answers
175 views

How to calculate division reminder in SPARC Assembly?

Here is the pseudo code which computes division of two positive integers. HR register saves reminder, and LR saves dividend. (and eventually saves root) However I think this algorithm has some ...
2
votes
3answers
141 views

“Undefined Symbol _memset”

I asked a similar question, but I have some update which is really confusing me. Essentially, I want to link a number of object files with the linker as follows: /usr/ccs/bin/ld -o q -e start_master ...
2
votes
3answers
99 views

To study SPARC executable structure with OpenSolaris on Intel

I want to study and compare executable file structure of elf, SPARC and PA-RISC. To perform the studies I want to install OpenSolaris on an Intel machine (Core2Duo). But I got a basic doubt will it ...
2
votes
2answers
367 views

printf format specifier in SPARC assembly argument?

How do you get the equivalent of this C with SPARC assembly: printf( "Hello, my name is %s.\n", name ); using the function prototype: void printName( const char* msg, const char* name ) where ...
2
votes
1answer
111 views

Leaf functions in SPARC and HP-UX

I was just reading through a Phrack article which had disassembly in HP-UX. I read that there are two classes of functions which are possible under HP-UX and SPARC; leaf and non-leaf functions. ...
2
votes
4answers
179 views

Profiler for Solaris SPARC Platform (for C++ applications)

Is there a profiler for the Solaris 10 SPARC architecture for the use with c++ applications? If it matters: We're using gcc for compiling our c++ sources.
2
votes
1answer
94 views

solaris gcc lib question

just compiled gcc on solaris 2.10. My question: what is the difference between the lib/...so and lib/sparcv9/...so files ? .../lib/sparcv9/libstdc++.so.6 .../lib/sparcv9/libstdc++.so.6.0.14 ...
2
votes
0answers
69 views

SPARC window_overflow

Suppose I have 8 windows like this figure: http://www.sics.se/~psm/sparcwin.gif And I'm right in that situation, WIM points to w7, and I'm in window w0. Suppose that in this window, I'm going to ...
2
votes
1answer
261 views

Relocation overflow when performing bitwise AND (SPARC Assembly)?

I am trying to perform a bitwise AND on a register, as a bitmask to remove the most significant bit (which happens to be bit 16 when counting from 0). However, when I try to compile my code using gcc, ...
2
votes
2answers
187 views

What macro are predefined by gcc for different SPARC processors?

What macroses are predefined for C programms by GCC complier running on different SPARC processors. OS is the Linux. So how can I distinguish between UltraSPARC, SuperSPARC, Niagara, SPARC64, etc in ...
2
votes
2answers
149 views

Sparc Procedure Call Conventions

I would like to do some "inline" assemly programming in Sparc and I am wondering how I can do that with register passing. Best to explain my issue with a small example int main() { int a = 5; ...
2
votes
2answers
232 views

Sparc Assembly Call corrupts data

I am at the moment working with some assembler code for the Sparc processor family, and i am having some truble with a piece of code.. I think the code and output explains more, but in the short.. ...
2
votes
1answer
91 views

How to avoid insn beeing scheduled into a delay slot

I try to patch gcc so that after a fdivd the destination register is stored to the stack,i.e: fdivd %f0, %f2, %f4; => becomes fdivd %f0, %f2, %f4; std %f4, [%fp+...] I generate the rtl for divdf3 ...
2
votes
1answer
295 views

Can I run Ubuntu Enterprise Cloud on Sun sparc servers?

I would like to deploy a private cloud using Ubuntu Server 9.10. There is a -sparc iso available here. My question is if any of the cloud packages included in 9.10 will work on sparc hardware? A ...
2
votes
1answer
231 views

sparc assembly and the %y register

I am currently working with a sparc computer and I am trying to know if a number is prime or not. here is a part of the code : mov 0,%y mov 3, %l1 nop nop nop ...
2
votes
1answer
707 views

SPARC - Bit mask without shift

I'm learning SPARC assembly and I have to create a script that extracts a field from a register. The script accepts 3 values, initial number, field start position, field length. It can't use any shift ...
1
vote
1answer
118 views

Simple SPARC assembly printf code (print the stack variables)

fmt0: .asciz "%d\n" .align 4 .global main, printf main: save %sp, -76 & -8, %sp mov 5, %l0 st %l0, [%fp-4] mov 7, %l1 st %l1, [%fp-8] add %l0, %l1, %l2 ...
1
vote
0answers
26 views

OpenBoot client program load address and

While browsing the web and looking for stuff about the OpenBoot, and SPARCv9 processors, I saw that any client program is loaded by the OpenBoot at 0x4000[1]. Why is this the address used. Also if i ...
1
vote
0answers
39 views

Where can I find the linker(ld) in Sun Solaris Studios 12.2?

At the moment I am using for linking purposes the pre-installed linker on my SPARC machine in the following directory: /usr/ccs/bin/ld I wanna compile my application with the Sun Studios Compiler ...
1
vote
1answer
137 views

Allocating memory for a struct in SPARC Assembly

I'm trying to figure out how to allocate memory for a struct in SPARC assembly. Here's the C version of my code that I'm using (which works and compiles fine): #include <stdio.h> #include ...
1
vote
1answer
74 views

Profing a benchmark compiled for the SPARC v8 on an x86

I'm trying to make a (small) improvement to the leon3 processor (instruction set is SPARC v8) for an academic exercise. Before I decide what to improve, I want to profile a couple of benchmark ...
1
vote
1answer
337 views

libiconv solaris-sparc/opteron 64 bits

I have 64 bit solaris - sparc and opteron systems. Under /usr/local/lib , I can see libiconv.so for both systems. The file command on libiconv.so gives following output:- ELF 32-bit LSB dynamic lib ...
1
vote
1answer
60 views

Checking if an address is a multiple of 8 with bitwise operation in assembly SPARC

How do I check if an address is a multiple of 8 with bitwise operation in assembly Sparc?
1
vote
2answers
99 views

Processor Register - Application Variable association

I have a very simple problem. I wanna write some assembler code (for SPARC) that directly operates on a single register, called %o1. All I wanna do is to initialise this register with zero, and then ...
1
vote
2answers
266 views

SPARC Assembly question

I wanna write a very simple inline assembly routine in my C program which does nothing else then setting the local registers %l0 - %l7 to different values. I tried the following straightforward ...
1
vote
1answer
51 views

What do .xstabs assembler directives mean, and where are they documented?

I've not been able to find documentation on what the .xstabs assembler directive means, particularly on the SPARC architecture. I found the following in my local copy of man as: -s Places all ...
1
vote
1answer
109 views

Saving stack pointer causes segmentation fault when output is redirected

I'm writing a Sparc compiler. One of my test cases runs fine normally, but crashes when the output is redirected to a file. Using GDB, I have found that this is the line that causes the segfault: ...
1
vote
1answer
110 views

What's the best way to debug a segfault in my SPARC assembly?

I'm writing a sparc compiler. One of my test cases works fine when run from the command line normally, but segfaults when I redirect the output to a file. I've tried using GDB but it's difficult ...
1
vote
3answers
448 views

how to compile thread local storage (TLS) on 64-bit solaris sparc with g++

I have a piece of C/C++ code that uses __thread keyword for thread local storage but having trouble getting it compiled on 64-bit Solaris Sparc with g++ (version 4.0.2), while it compiles and runs OK ...
1
vote
2answers
808 views

Building subversion 1.6.12 - make: *** [subversion/libsvn_subr/libsvn_subr-1.la] Error 1 - Solaris 10 Sparc

I get the following while trying to compile subversion 1.6.12 from source on Solaris 5.10 SPARC platform. I only need the svn client program on this machine so no need for Apache, Neon or Swig. My ...
1
vote
2answers
301 views

Unable to Install Sipp in solaris sparc 5.10

I am trying to install SIPp on solaris sparc 5.10. when I am firing a "make" command, it is giving me an error. lake42.rice.iit.edu]/> make make: Fatal error in reader: Makefile, line 22: Unexpected ...
1
vote
1answer
293 views

SUNWspro compiled file - detect verison of compiler

I have a file, compiled by SUNWspro (Sun pro complier) for SPARC/Solaris. How can I detect version of compiler used to build this binary?
1
vote
3answers
726 views

How to get memory locations of library functions?

I am compiling a C program with the SPARC RTEMS C compiler. Using the Xlinker -M option, I am able to get a large memory map with a lot of things I don't recognize. I have also tried using the RCC ...

1 2