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

learn more… | top users | synonyms

0
votes
1answer
22 views

Debugging open() command call with truss

Using truss -t'open' $(program_call) I get: open("command.txt", O_RDONLY|O_NONBLOCK) = 5 response FIFO file descriptor = -1 // Open call was literally sandwiched between print commands, but its ...
0
votes
0answers
27 views

Comparing to characters in SPARC fails

Attempting to get a string and character from the user and count the number of times that the letter occurs but it doesn't increment the counter in the program. .section ".data" string: .asciz " ...
1
vote
2answers
27 views

Can 32-bit SPARC V8 application run on 64-bit SPARC V9?

I have few benchmark application complied for SPARC V8 32-bit architecture. I used them for performance evaluation of SPARC 32-bit processor. However, few application fall short of in performance. I ...
0
votes
0answers
20 views

printf in SPARC prints i for every character

Writing an assembly program that takes in a character and prints it. But for every character no matter what it returns i. The input could be e, j, i, or 8. It always prints out i. .section ".data" ...
-2
votes
1answer
37 views

How to use xor and and in SPARC assembly

set 0xDEADBEEF, %o1 set 0x13579246, %o2 xor %o1, %o2, %o1 What will be in register o1? set 0xDEADBEEF, %o1 set 0x13579246, %o2 and %o1, %o2, %o1 What will be in register o1?
-1
votes
0answers
19 views

Solaris - Cannot boot from cdrom - Changed Disk [closed]

I have a Solaris Server Sun Blade 2500, recently it went unresponsive, after identifying the issue the disk was bad. Replaced the disk and thought to install Solaris Sparc on the new disk. For that I ...
-1
votes
0answers
95 views

Solaris 11 qemu-sparc boot [closed]

I could sucessfully install an old Solaris version from this howto: http://brezular.wordpress.com/2012/02/17/installation-solaris-2-6-sparc-on-qemu-part2-solaris-installation/ However, there seems to ...
1
vote
0answers
80 views

Counting the number of digits in a 32-bit signed integer using base 2 returns 32 instead of 31

Part of an assignment for my systems programming class asks us to write an assembly module that returns the number of digits in a 32-bit integer given a base in the range of 2 to 36 inclusive. ...
8
votes
1answer
84 views

Does Boost C++ library support Solaris on Sparc?

I have been looking at Boost libraries for development of a cross-platform network server library. It is supposed to be used on Windows/Linux/Solaris. Does boost support these three? Only thing i can ...
0
votes
0answers
27 views

Core-dump due to SEGV in Roguewave library

I have a C++ process which crashes frequently when it accesses a DB access instance. The DB access library uses Roguewave data structures and the crash happens when it tries to find a value from a ...
0
votes
1answer
47 views

SPARC Assembly, setting the C flag

The is leaving me baffled, and I really can't figure out why I am getting this problem. I am to create a program in c that outputs an unsigned value just before the C flag is set, using assembly to ...
1
vote
1answer
100 views

cmp and subcc/others in assembly

SPARC assembly has a cmp instruction, which compares two numbers (using subtraction, if I understand correctly). It also has subcc, addcc, andcc, and others. What is the difference between comparing ...
0
votes
1answer
64 views

DBX core dump on sparc64 and stack trace in/out registers

Suppose I have these functions void foo(int a, int b, int c); void bar(int d); void start(); And I get a core dump which looks something like this foo(<value of a>, <value of b>, ...
0
votes
0answers
52 views

Sparc inline assembly: Error: Illegal operands

What could possibly be going wrong here. All that I am trying is to get inline asm working. static inline int add(int a, int b) { __asm__ __volatile__("add %2, %0" : "=r"(a) ...
0
votes
0answers
54 views

assembly segment fault

im having problems with my function printBase. for some reason i can not print out anything and it is giving me a segment fault. i think i am doing this right but appeantly i am doing this wrong. can ...
0
votes
1answer
155 views

Cannot find include for limits.h when building a GCC Cross-Compiler

I want to build a cross-compiler with host type Linux x86_64 and --target=sparc-sun-solaris2.10. I have successfully built binutils with --target flag along with GMP, MPFR and MPC. I have configured ...
0
votes
0answers
50 views

Converting an if else C program to SPARC

Does anyone know why am I getting this error when I try to convert the C program below to assembly language? ERROR: ........line 11: error: statement syntax C PROGRAM /*This program takes the ...
0
votes
1answer
97 views

How would I convert this C for loop into assembly level language?

I need to write an assembly program finding the maximum of x^3 -14x^2 +56x -64 in the range -2<=x<=8 and the maximum value should be in one of the registers at the end of the program. I wrote ...
0
votes
1answer
78 views

Entering an integer time value followed by “:” in SPARC assembly language

I am trying to ask a user to enter a time value in this order hours:min - for example user may enter 3:45. Now , I want to get the hours value and do something with it, then I want to take the minutes ...
0
votes
1answer
100 views

SPARC Assembly Language

I am trying to run a sample Sparc assembly language , but I am not even sure where to start. I tried vim macro or m4 example.m but I dont know where and how to compile it. I searched the internet, ...
0
votes
1answer
66 views

Converting from synthetic instructions to assembly directives using .word

I was wondering how to take a line of Assembly code written in synthetic instructions and converting it by hand into .word assembly directives. For instance how do you go from something simple like ...
1
vote
1answer
120 views

Assembly language st and ld

I have converted a c program into an assembly program and am trying to simplify the code: .global Func1 Func1: save %sp, -112, %sp !st %i0, [%fp+68] !st %i1, [%fp+72] !ld [%fp+68], %o0 !ld [%fp+72], ...
0
votes
2answers
137 views

Linking assembly language with c

I am very new to assembly language, and fairly new to C. I have looked at an example that creates a calls a function from the c code and the assembly code has a function that does the calculation and ...
0
votes
0answers
27 views

why sparc express 8byte variable like this?

the original C code is : 1 int main(void){ 2 long long a = 10; 3 return 0; 4 } and sparc assemble code is : 1 .file "test.ll" 2 .text 3 .globl ...
3
votes
1answer
122 views

Unable to install Image::ExifTool due to 'make test' hanging

I have a Netgear ReadyNAS NV+ on which I'm trying to do some things using perl. Since the perl installation from the vendor is compiled without the uselargefiles-flag I've tried to compile/install my ...
1
vote
0answers
54 views

Can someone help me understand multiplexers?

Hey guys I have my final exam tomorrow and I was wondering about multiplexers, could any of you help explain this question to me? The contents of the control and general-purpose registers are shown ...
2
votes
1answer
138 views

Bit field ordering on Big-Endian (SPARC) processor

Consider the code below: #include <stdio.h> #include <stdlib.h> #define FORCE_CAST(var, type) *(type*)&var struct processor_status_register { unsigned int cwp:5; unsigned int et:1; ...
1
vote
1answer
112 views

How to write sparc assembly

I am trying to start writing some Sparc assembly, but I can't figure out how to assemble and run the code. I have written arc with arcTools, but that's as far as I have gone with assembly. I have ...
0
votes
1answer
101 views

Allocating space in assembly (Insert function)

I'm working on an assembly equivalent to an insert function and I was wondering how exactly i would space the elements of the list so I can fit my data in there. I have found the correct address for ...
1
vote
1answer
218 views

how to install tcl on solaris sparc

I have a solaris machine configuration: SunOS indevel07 5.10 Generic_147440-15 sun4v sparc sun4v. I am trying to install expect utility on this. expect utility requires tcl to be installed. I have ...
2
votes
2answers
162 views

Makefile issues - fatal error in reader

I am having some issues with a makefile I am creating for a school project. I am compiling and assembling a C file and a SPARC assembly file (respectively) and linking them. I'm working in a Unix ...
1
vote
0answers
219 views

SPARC using scanf() to read characters

Alrighty here's my problem. I am trying to take a character from a users input using scanf() and print it back out to them in SPARC Assembly. This code is simpler than what I am actually trying to do ...
-1
votes
1answer
42 views

Placing data into specific bits

I am trying to learn SPARC and trying to create an array of size 4,000 bytes. Inside of this array I need to calculate an offset to place values in the correct location in that array. I think I know ...
1
vote
1answer
167 views

Char Array conversion from C to SPARC

Consider the C source code statements shown below. struct person { char name[30]; int id; int points; }; char Fmt[] = "Name: %s ID: %d Points: %d\n"; ...
0
votes
1answer
52 views

Code writes to 1, but not to stdout?

I'm trying to get some simple assembler code on sparc32 running, but it does not write to standard output, the problem occurs either way with ta 0x00 or ta 0x08: # as -s gah.s -o gah.o # ld gah.o -o ...
0
votes
1answer
69 views

Marking segments of generated sparc assembly code for inspection

Does anybody know how to insert recognizable code sequences using the Sun Studio compiler, without horribly messing up optimization? I'd like to look to see what the Sun Studio (12.1) compiler does ...
0
votes
1answer
297 views

Mount : Permission Denied

I am trying to mount a solaris sparc 5.10 dir over solaris sparc 5.11 like root> mount S5.10Machine:/mydir /mydir and I am getting nfs mount S5.10Machine:/mydir permission denied. I have given 777 ...
1
vote
0answers
74 views

8/16/32/64 bit aligned lossless compression of .bss and .data for embedded system core dump

I'm looking for a fast / lossless / fix spaced compression algorithm for the following task. I have an embedded system. Low memory / flash resource. I want to generate a core dump for it and store ...
2
votes
0answers
318 views

Multiplication algorithm in SPARC

been working for a few (straight) days on this multiplication algorithm in SPARC... Really can't figure out what's wrong. I've stepped through a few iterations of the code. It's doing what the ...
1
vote
0answers
464 views

Sparc Assembly: Printing a \n character with printf

OK so i have two assembly .s files the first function prototype is void printCharacter( char c ) and in it I call printf to print the character ./global printCharacter .section ".data" format: ...
0
votes
1answer
209 views

Sparc machine basic assembly, counting bits

So I need to count bits on a integer this is my code but I don't know why is not working, I sent a hex value from c main and somehow I have to shift it and mask it. I'm kind of lost, I guess I'm ...
2
votes
3answers
162 views

Can out-of-order execution lead to speculative memory accesses?

When a out-of-order processor encounters something like LOAD R1, 0x1337 LOAD R2, $R1 LOAD R3, 0x42 Assuming that all accesses will result in a cache miss, can the processor ask the memory ...
1
vote
1answer
97 views

Is it possible to write a QT C++ project on an Intel machine that produces a binary for Solaris SPARC?

Is it possible to write a C++ application on Intel that produces an executable binary for Solaris SPARC architecture using QT? I have downloaded QT 4.7.4 and opened some of the demo projects like ...
0
votes
1answer
99 views

How to set Solaris SPARC to run in little endian mode?

Is there a way to set Solaris running on SPARC to run on little endian mode? I've been reading that the v9 architecture chip is a bi-endian chip, though by default, the system runs in big endian. How ...
0
votes
2answers
176 views

what is the corresponding register in SPARC architecture for x86 CR3?

I know that in x86 architecture, I can read CR3 register in kernel context to follow page directory of kernel. now I am trying to do the same work from linux with SPARC architecture. how can I access ...
1
vote
2answers
2k views

Looking for Simple C Implementation of AES-128 and DES

I need C versions of AES-128 and DES to run on an embedded SPARC processor. I'm trying to measure the electrical power of these algorithms in software and hardware. Is there a website where I could ...
0
votes
1answer
82 views

Are pthread synchronization primitives (locks/barrier) safe to use on SPARC when running under RMO?

I plan to run some pthread-based parallel applications on a SPARC architecture, under the RMO memory model. I was just wondering if the pthread implementation is safe to use for such memory model, or ...
0
votes
0answers
161 views

atomic compare and swap (casx) on solaris 9 is not working the way I read it should

I am trying to create an atomic compare and swap function on a Sparc platform that behaves the same way as my Intel x86_64 version does. 'comp' should always have the last value of atom regarless of ...
1
vote
0answers
321 views

Installation of java 1.6.31 on a sun solaris 8

I have installed java 1.6.0.31 on a Solaris 8 Sparc but when I enter the command : Ingres > java -jar Monitor.jar c Exception in thread "main" java.lang.StackOverflowError at ...
0
votes
1answer
1k views

Converting C function to assembly

Hi i am trying to convert this C function that I wrote to assembly code(SPARC arc)but keep getting a segmentation fault(core dumped) error. The function is supposed to convert a string to a long ...

1 2 3