Questions related to the PowerPC family of RISC processors.

learn more… | top users | synonyms

0
votes
1answer
28 views

Cache prefetching scenario - power architecture

I'm using the asm dcbt command to touch a range of memory I know will be required for performing certain computations onto. My profiler shows a pattern of cache misses because of the sporadic access ...
-1
votes
1answer
23 views

what means for this powerpc instruction?

this instruction is from powerpc uboot . lis r3 CONFIG_SYS_DEFAULT_IMMR@h particularly "@h" what mean? another insruction: lwz r4,0(r3) particularly "0(r3)" what mean? thanks!
0
votes
0answers
17 views

Speed up selective vector updates on a PPC architecture

I've got a simplistic update logic for (iterations through vector) { if ( probability_of_updating_this_component > 50 ) { update_it(); } } The problem is that this code is quite slow as ...
1
vote
0answers
60 views

MPC8xx using watchdog with uboot and linux

I have an embedded platform with a powerpc MPC875 CPU running with uboot and linux 3.2. I'd like to use the watchdog feature of this cpu. My problem is that the watchdog timed out before linux starts ...
1
vote
0answers
41 views

What's a good board for deveoping OS? [closed]

I have been developing my own OS for quite sometime now. Not kernel hacking Linux - A operating system written from scratch. However I was mostly doing it on emulators. Recently I feel the need to ...
0
votes
2answers
53 views

which c code will gets changed to rlwinm power PC assembly instruciton

which c code will gets changed to rlwinm power PC assembly instruciton?? This is the snapshot of objdump.. if(!pool || pool->maxPoolSize > SEQ_MODULUS ) /* Invalid mask or pointer is null ...
0
votes
0answers
49 views

Dynamic linking failing on linux/powerpc

I have a Xilinx FPGA running a soft processor (PowerPC). I recently cross compiled Boost libraries for PowerPC and wanted to test it. So I used one of the sample programs and tried to cross compile it ...
0
votes
1answer
34 views

I cannot understand the following gnu assembly code for powerpc architecture

#define START_GOT \ .section ".got2","aw";\ .LCTOC1 = .+32768 Is .LCTOC1 is a directive? Why is there a . before +32768?
0
votes
1answer
108 views

In ARM or powerPC archetecture, is the PCI IO space in use? [closed]

sorry for my poor english first. I known , in intel archeture, there are some instructions related to io space(in/out instruction), but in ARM or powerPC, there are not such instruction, all is ...
0
votes
1answer
124 views

How to suppress “warning: control reaches end of non-void function”

I have some PowerPC assembly code translated with a gcc cross compiler with this function: uint32_t fill_cache(void) { __asm__ ("addi 3, 0, 0\n"); /* R3 = 0 */ /* More asm here modifying R3 ...
0
votes
1answer
37 views

powerpc disassemble instruction by its raw data

How can I disassemble some intructions from memory dump? I have only raw dump, objdump understands only object format. My processor is PowerPC 440 (PowerPC Book E Architecture).
1
vote
1answer
44 views

powerpc assembly translation

Can someone who is good at assembly for the power pc help me decipher this code? extern inline void out_8(volatile unsigned char __iomem *addr, u8 val) { __asm__ __volatile__("sync;\n" ...
5
votes
0answers
74 views

Lua behaves weird on PowerPC/LynxOS platform, why?

I choose Lua 5.1 as my application's embedded scripting language, but when I port the application to a legacy platform runs LynxOS on PowerPC, thing seems going wrong. I get following code run up on ...
0
votes
3answers
81 views

c++ coding for power-pc

anyone know any cpp compilers for power-pc? Preferably something that will work for os 9. I have an old imac g3 I would like to make programs for. If cpp didn't exist for it, what should I use to ...
1
vote
1answer
111 views

How to extract function prototype from an ELF file?

I have been searching quite a lot, but haven't found a way to extract function prototype, atleast the argument types and return type from an ELF executable file. Using GNU BinUtils or any other ...
1
vote
1answer
55 views

powerpc compiler on windows gives “c++ compiler not installed on this system error”

I am trying to use msys powerpc-eabispe-gcc compiler on windows to compile a simple helloworld.cpp program, inorder to generate an elf for powerpc architecture, but I am getting "c++ compiler not ...
2
votes
2answers
107 views

Extracting and Instrumenting elf files for powerPC on windows platform

I am trying to extract information like function name and its parameters from elf file, with the goal to perform robustness testing by changing the parameter values for functions, I am working on ...
0
votes
0answers
98 views

Is low latency mode safe to use with Linux serial ports?

Is it safe to use the low_latency tty mode with Linux serial ports? The tty_flip_buffer_push function is documented that it "must not be called from IRQ context if port->low_latency is set." ...
1
vote
1answer
137 views

How to implement C timer in Vxworks

I have implemented timer functionality to find the performance of my task in windows and linux. But linux implementation is not working in Vxworks PPC 750 board. gettimeofday is not available in ...
0
votes
1answer
60 views

Building mysql++ libraries for powerpc

I have an embedded application written in C++ (running on a PowerPC in linux environment) which accesses an external database. So my application needs mysql++ libraries which needs to be built using a ...
14
votes
1answer
212 views

GCC refuses to emit long calls for operator new/delete on PowerPC

PowerPC branches only have 24 bits available for the target offset, so if the text section gets too big, branches on one end won't be able to reach targets on the other. There's a longer sequence of ...
-2
votes
1answer
116 views

How do I reserve RAM on a PowerPC CPU running Linux?

I am trying to reserve 10MB out of the 2GB onboard RAM on an embedded single-board computer that uses the Canyonlands (PowerPC-460EX) CPU. By reserve RAM, I mean block out a chunk of RAM that Linux ...
0
votes
1answer
268 views

C++ Compilation failure with Boost library

I recently cross compiled Boost library for PowerPC and generated the thread and system library. Then to test the library on my target, tried one of the sample code in Boost library and tried to build ...
1
vote
1answer
233 views

x264 library speed - Altivec vs SSE4 -

I have simple cheap dualcore intel-3ghz-debian and access to super-expensive powerPc7-Aix. And after few days of strugle, i compiled libx264 and tested it on both computers: GCC: library x264 on ...
12
votes
3answers
738 views

Incorrect floating point behavior

When I run the below C++ program in a 32-bit powerpc kernel which supports software floating emulation (hardware floating point disabled), I get a incorrect conditional evaluation. Can some tell me ...
0
votes
1answer
138 views

configure error : size of “void*” is less than “long”

configure error : size of "void*" is less than "long" This is the error I'm getting when i'm cross compiling apache for powerpc
0
votes
0answers
52 views

how can i cross-compile apache folder httpd-2.2.23 at once for powerpc

how can I cross-compile Apache folder httpd-2.2.23 at once for powerpc. When trying to cross-compile using /opt/.../usr/local/.../bin/ /path/ , the directory is not cross-compiled
0
votes
3answers
301 views

Cross Compile Boost library for PowerPC architecture

I am trying to cross compile Boost library (Thread, System) for PowerPC architecture. I followed the below steps but facing problems. I run a shell script which sets up my toolchain. The compiler ...
1
vote
3answers
99 views

Learning assembler with no programming experience

I have no programming experience except the most basic ability to read some ASM operands (MIPS). Due to a serious medical condition, I have the luxury of having 1 year of free time. I cannot work or ...
2
votes
1answer
67 views

Cannot source RVM files because of PowerPC architecture

I ran the railsinstaller from railsinstaller.org on my OS X 10.7.5, then ran into a few issues with RVM: 1) First, I got "RVM: command not found". So I created the .bash_profile and added [[ -s ...
0
votes
1answer
121 views

ppc avd manager and android sdk

I have a non Intel PowerPC G5 running 10.5.8. I downloaded Eclipse and installed Android SDK and tools and also installed a plugin using "install software" in the help sectionof eclipse. I have the ...
0
votes
0answers
61 views

Performance penalty for using small data areas?

I'm looking at IBM's Developing PowerPC Embedded Application Binary (EABI) Compliant Programs, in particular at table 4 on page 7. The benchmark results are 88kDhry/sec without using SDA, and only ...
0
votes
0answers
41 views

powerpc-gdb changing register bug

I am using Xilinx 13.1 sdk to create C programs, which uses the powerpc-gdb as debugger. Somewhere in my code I change the registers of my program to see the local variables of another thread. When I ...
0
votes
1answer
129 views

Having server x86/x64, how best develop software under AIX6/7 on C++?

Having server x86/x64, how best develop software under AIX6/7 on C++? Someone personally tried to do it and that advise from personal experience: Can have any IBM compilers for x64, which ensures ...
1
vote
1answer
68 views

How does one read the PPC op-code 'extrwi'

I understand it is a mnemoic to rlwinm with its values tweaked, but I was wondering what the actual letter represent when read. For instance, rlwinm means Rotate Left Word Immediate then aNd with ...
1
vote
2answers
187 views

SIGILL on std::ios_base::Init::Init() and std::string::assign(std::string const&)

Working with embedded linux cross compiling the code on an Ubuntu box to run on a COMX-p2020 module. I'm assuming I'm either missing or have some compiler setting incorrect which is causing the ...
8
votes
2answers
157 views

Printing floats. (Powerpc)

I am trying to print floats. Although variadic functions does not work with floats so they are promoted to double. I can manage to get rid of the warning by casting it to a double. While printing the ...
1
vote
1answer
193 views

Software Watchdog Timer resets MPC875 CPU too fast

I have a problem with using Software Watchdog Timer on a MPC875 cpu: The timer triggers reset signal VERY fast: I get less than about half of a second betwen turning the timer on and receiving the ...
16
votes
2answers
189 views

Why is function's length information of other shared lib in ELF?

Our project (C++, Linux, gcc, PowerPC) consists of several shared libraries. When releasing a new version of the package, only those libs should change whose source code was actually affected. With ...
0
votes
0answers
767 views

why no BAR address assigned to the pci devices?

Here is the issue description: After linux bootup, running command "lspci -v", we can see that pci devices can be found, but no address is assigned to devices. By further checking the linux booting ...
0
votes
1answer
113 views

Profiling Implementation Issue with GCC C/C++ cross for PowerPC

I'm trying to get the gcc profiling implemented. I am using the embedded environment eCos with a PowerPC. I programming in C. When I compile and link using the -pg switch, I find that the symbol ...
0
votes
0answers
123 views

PPC MPC5554: Which core to generate code for?

I'm using the ELDK (u-boot) tools (gcc) to compile (assembly) code for the Motorola/Freescale MPC5554 and so far so good :). I just noticed that I can't compile an instruction that I need (mtbucsr) ...
0
votes
0answers
208 views

Qemu does NOT boot debian squeeze for PPC on x86_64

Ive downloaded qemu for ppc and I also downloaded an debian sqeeze image for the ppc from http://people.debian.org/~aurel32/qemu/powerpc/ . And as per that page, when I try to run the image using ...
0
votes
1answer
87 views

u-boot: mpc5xxx.h does not support mpc55xx?

I'm new to u-boot and currently trying to port it to a mpc5554 board (from phytec) for fun. I was happy to find the mpc5xxx.h file indicating that it would be usable in my case. However, the more I ...
0
votes
1answer
103 views

Deleted function on powerPC compiler, not on gcc

In my current project we have to compile a source for openSUSE - 12.1 and for powerPC. The project is written in C++11. The openSUS build is done with gcc-4.7.2 The powerPC build with ...
1
vote
0answers
81 views

-fpic vs -fPIC powerpc confusion

I am trying to reproduce an issue I am having with some simpler code. I wrote a small script to generate a C file that looks like this: int SYM_0 = 0; int SYM_1 = 1; int SYM_2 = 2; int SYM_3 = 3; int ...
0
votes
1answer
284 views

R_PPC_REL24 relocation out of range

I am working on an embedded powerpc (e500v2) platform. I am cross compiling compiling with gcc 4.6.3 and eglibc 2.13. There is a swig library that is compiled and loaded on the target. When its loaded ...
0
votes
2answers
84 views

Multiple PowerPC instructions have same opcode

I'm trying to make sense of PowerPC instructions and ultimately disassemble them. I've found http://pic.dhe.ibm.com/infocenter/aix/v7r1/index.jsp?topic=/com.ibm.aix.aixassem/doc/alangref/ppc_instr.htm ...
1
vote
2answers
101 views

64bit arithmetic providing wrong output in 32-bit application

I couldn't understand why the below identical operations reports two different outputs. When my num is declared to be of negative value and I add the num to the baseAddr, I see my addr going past ...
2
votes
3answers
167 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 2 3 4