1
vote
3answers
53 views
Best textbook for PowerPC assembly and arch?
Does anyone know of a good introductory textbook on the PowerPC architecture and assembly language that I could recommend to people on my team?
Our company now mostly targets a p …
2
votes
8answers
263 views
Which 32-bit/64-bit CPU architecture has the easiest instruction set?
I feel extremely comfortable dealing with 32-bit PowerPC assembly code, but I am completely lost when trying to make sense of x86 code. Do any of the other common architectures li …
2
votes
6answers
985 views
How to properly develop for the iPhone on a PowerPC Mac?
I'm doing iPhone development on a PowerPC Mac. How do I get code signing to work properly so that I can build to my iPhone?
The iPhone SDK doesn't officially support PowerPC, but …
0
votes
0answers
2 views
How to install interrupt handler for IPI in powerpc using MPIC ?
Do CPUs (specifically powerpc) allow an interrupt handler to be installed for IPIs (inter processor interrupts) ? The MPIC I am using supports 4 IPIs per core and it has registers …
0
votes
0answers
15 views
Handling Altivec loads and stores regardless of PPC endianness?
I have some SIMD code in Altivec processing 32 bit integer values in parallel. In some cases I want to load the integers as little endian, in other cases as big endian (note: this …
0
votes
1answer
76 views
RubyCocoa on PowerPC G5 processor (Leopard 10.5.7)
Does anybody know which version of RubyCocoa runs on this processor (if at all)?
1
vote
1answer
46 views
Strategies for debugging Objective-C Garbage Collection Crash
I have a pretty frustrating crasher that is impacting a small subset of my users. From my analysis it seems to be isolated to PowerPC users running 10.5. When the garbage collect …
4
votes
8answers
469 views
Emulating variable bit-shift using only constant shifts?
I'm trying to find a way to perform an indirect shift-left/right operation without actually using the variable shift op or any branches.
The particular PowerPC processor I'm work …
0
votes
1answer
35 views
How are external interrupts vectored on a powerpc processor?
Maybe the question should be, are external interrupts even vectored on the PowerPC at all? I've been looking at http://www.ibm.com/developerworks/eserver/library/es-archguide-v2.h …
0
votes
1answer
61 views
Why does my new PowerPC interrupt handler crash only when caches are on
I'm using a PowerPC 750 and have just started experimenting with the external interrupt.
I have an interrupt-driven mini program that works fine provided the data cache is off. I …
2
votes
4answers
183 views
C++ code coverage tool for weird target platform
Anyone knows c++ code coverage tool usable under the following conditions:
Target platform is PowerPC CPU inside Nintendo WII dev.kit, that runs custom embedded OS. The only way …
1
vote
3answers
82 views
Use of r1 stack pointer when handling external exception on PowerPC
I'm writing an assembler routine to handle the 0x500 external/decrementer exception in an EABI embedded PowerPC application.
In my assembler routine called from the 0x500 vector p …
0
votes
2answers
57 views
What is the MTMSREE PowerPC op?
I'm looking at a core dump of a (Xenon) PowerPC executable compiled with MSVC. The function I'm debugging has an op that the MSVC disassembler calls mtmsree r13. mtmsree isn't in t …
0
votes
6answers
556 views
How you disable the processor cache on a PowerPC processor?
In our embedded system (using a PowerPC processor), we want to disable the processor cache. What steps do we need to take?
To clarify a bit, the application in question must have …
1
vote
1answer
186 views
On MacOSX/PPC, suggestions on how to catch KERN_PROTECTION_FAILURE at 0x0000000000000000
This is a realtime MMO client, at some random point it will crash with a jump to 0, and the stack frame is unreadable. The crashreporter (and gdb) will report thead 0 crashed
XC_B …
