badly written?

By: Wilco (Wilco.Dijkstra.delete@this.ntlworld.com), January 14, 2011 7:20 am
Room: Moderated Discussions
Megol (golem960@gmail.com) on 1/14/11 wrote:
---------------------------
>Wilco (Wilco.Dijkstra@ntlworld.com) on 1/13/11 wrote:

>>There are multiple OSes and compilers in the x86 world. Then there is 32-bit vs
>>64-bit. So you end up porting your software anyway even when you stay in the x86 world.
>>
>Eh you don't see the difference between architectural portability and OS portability?
>Being portable between different operating systems is entirely a different matter.
>Algorithms and data structures are portable between x86 systems.

My point is that you cannot say that you do not need to think about portability at all in the x86 world. Sure, it is mostly OS portability, but x64 is definitely different in both aspects. Data structures often use compiler specific extensions for layout and so do need porting between compilers.

>>And making your software portable does not at all mean losing performance. Understanding
>>the issues will actually improve performance (eg. knowing that aligning data is good for performance on x86).
>>
>But that isn't true!

No, in general my claim is true. The fact there are a few cases where unaligned accesses can improve performance doesn't mean that making ALL aligned accesses unaligned will make code run faster.

>Look below at Richard Cownie's post. There are algorithms that can run faster on
>x86 because unaligned accesses are cheap! Within a cacheline they are very cheap,
>between cachelines they are reasonable, between aliased areas they are pretty expensive
>and between pages they can be expensive.
>Well optimized x86 code often use unaligned accesses because that's the fastest way!

So only in specific cases unaligned accesses are for free (within a portion of a cacheline). The same is true for ARM. But that doesn't mean they are faster in general, only in specific cases.

>I'm not talking about a single access, I'm talking of real code handling dynamic
>alignment in a input stream, how do you describe that in C?

If you can give me a concrete example I can explain how it's done.

>X86 != RISC processor with unaligned handling in a exception handler. Most unaligned cases are "free".

RISCs have used various techniques in the past, but nowadays it is done just like x86 (although on x86 they may be better optimized).

Wilco
< Previous Post in ThreadNext Post in Thread >
TopicPosted ByDate
The ARM story: Earthquake looming?Will Smith2011/01/12 01:30 AM
  The ARM story: Earthquake looming?Max2011/01/12 02:50 AM
    Any x86 -> ARM port experience?Ben Harper2011/01/12 04:22 AM
      Any x86 -> ARM port experience?Michael S2011/01/12 07:52 AM
        Any x86 -> ARM port experience?Megol2011/01/12 10:10 AM
          Any x86 -> ARM port experience?Michael S2011/01/12 11:19 AM
            Any x86 -> ARM port experience?Wilco2011/01/12 12:47 PM
              badly written?Michael S2011/01/12 01:59 PM
                badly written?Wilco2011/01/12 03:03 PM
                  badly written?Megol2011/01/13 05:16 AM
                    badly written?Wilco2011/01/13 07:09 AM
                      badly written?Megol2011/01/14 03:28 AM
                        badly written?Wilco2011/01/14 07:20 AM
                  badly written?mpx2011/01/13 09:19 AM
                    badly written?James2011/01/14 04:15 AM
                  unaligned read is fast on NehalemRichard Cownie2011/01/13 10:10 AM
                    unaligned read is fast on NehalemLinus Torvalds2011/01/13 10:45 AM
                      l1 access size?anon2011/01/13 12:16 PM
                      unaligned read is fast on NehalemRichard Cownie2011/01/13 12:21 PM
                      unaligned read is fast on NehalemEduardoS2011/01/13 04:42 PM
                        unaligned read is fast on NehalemMichael S2011/01/13 04:50 PM
                        unaligned read is fast on NehalemRichard Cownie2011/01/13 05:50 PM
                      unaligned read is fast on NehalemKonrad Schwarz2011/01/17 07:28 AM
                badly written?anoneeeemouse2011/01/12 06:31 PM
              And endianness?Ben Harper2011/01/13 05:34 AM
                And endianness?rwessel2011/01/13 05:40 AM
                  And endianness?Wilco2011/01/13 06:20 AM
                    And endianness?Ben Harper2011/01/13 08:11 AM
                    And endianness?Konrad Schwarz2011/01/17 07:20 AM
                      And endianness?Megol2011/01/17 11:09 AM
        Any x86 -> ARM port experience?EduardoS2011/01/12 02:30 PM
      Any x86 -> ARM port experience?anon2011/01/12 10:53 AM
        Any x86 -> ARM port experience?anon2011/01/12 10:28 PM
          Any x86 -> ARM port experience?anon2011/01/12 10:52 PM
    The ARM story: Earthquake looming?Linus Torvalds2011/01/12 11:44 AM
      The ARM story: Earthquake looming?Wilco2011/01/12 03:53 PM
        The ARM story: Earthquake looming?anon2011/01/12 04:14 PM
          The ARM story: Earthquake looming?Wilco2011/01/12 04:20 PM
            The ARM story: Earthquake looming?anon2011/01/12 04:36 PM
              The ARM story: Earthquake looming?Wilco2011/01/12 05:17 PM
                The ARM story: Earthquake looming?Aaron Spink2011/01/12 05:46 PM
                  The ARM story: Earthquake looming?Wilco2011/01/12 05:54 PM
                The ARM story: Earthquake looming?anon2011/01/12 05:49 PM
                  The ARM story: Earthquake looming?Wilco2011/01/12 06:20 PM
                    The ARM story: Earthquake looming?anon2011/01/12 07:20 PM
                      The ARM story: Earthquake looming?Wilco2011/01/12 08:51 PM
                    Some CoreMark resultsPaul A. Clayton2011/01/12 07:41 PM
                      Some CoreMark resultsWilco2011/01/12 10:49 PM
                        Some CoreMark resultsPaul A. Clayton2011/01/13 09:14 AM
                          Some CoreMark resultsWilco2011/01/13 12:31 PM
                            Some CoreMark resultsLinus Torvalds2011/01/13 12:36 PM
                              Some CoreMark resultsanonymous2011/01/13 01:05 PM
                              Some CoreMark resultsWilco2011/01/13 01:15 PM
                                Some CoreMark resultsLinus Torvalds2011/01/13 03:02 PM
                                  Some CoreMark resultsWilco2011/01/14 08:24 AM
                                    Some CoreMark resultsnone2011/01/14 08:55 AM
        The ARM story: Earthquake looming?Linus Torvalds2011/01/12 04:21 PM
          The ARM story: Earthquake looming?Wilco2011/01/12 05:07 PM
            The ARM story: Earthquake looming?Linus Torvalds2011/01/12 06:07 PM
              The ARM story: Earthquake looming?Michael S2011/01/13 04:33 AM
                The ARM story: Earthquake looming?Linus Torvalds2011/01/13 09:19 AM
                  The ARM story: Earthquake looming?Megol2011/01/14 04:51 AM
          The ARM story: Earthquake looming?anon2011/01/12 05:09 PM
            The ARM story: Earthquake looming?Linus Torvalds2011/01/12 06:09 PM
              The ARM story: Earthquake looming?anonymous2011/01/13 06:50 AM
                The ARM story: Earthquake looming?Michael S2011/01/13 07:52 AM
                The ARM story: Earthquake looming?Linus Torvalds2011/01/13 10:28 AM
                  The ARM story: Earthquake looming??2011/01/14 08:48 AM
                    The ARM story: Earthquake looming?none2011/01/14 09:01 AM
                      The ARM story: Earthquake looming?someone2011/01/14 11:03 AM
                        The ARM story: Earthquake looming?none2011/01/14 03:38 PM
                          The ARM story: Earthquake looming?someone2011/01/15 10:53 AM
                        The ARM story: Earthquake looming?mpx2011/01/15 01:18 AM
                          The ARM story: Earthquake looming?Aaron Spink2011/01/15 06:03 AM
                            The ARM story: Earthquake looming?Brett2011/01/15 12:01 PM
                              The ARM story: Earthquake looming?mpx2011/01/15 01:40 PM
                              The ARM story: Earthquake looming?Aaron Spink2011/01/17 04:11 PM
                                The ARM story: Earthquake looming?Rob Thorpe2011/01/17 04:35 PM
                                  The ARM story: Earthquake looming?Michael S2011/01/17 05:23 PM
                                    As you can see...Rob Thorpe2011/01/17 06:52 PM
                                  The ARM story: Earthquake looming?Aaron Spink2011/01/17 05:57 PM
                              The ARM story: Earthquake looming?Greg Gritton2011/01/17 11:57 PM
                                The ARM story: Earthquake looming?Brett2011/01/18 11:00 AM
                                  The ARM story: Earthquake looming?Megol2011/01/18 11:11 AM
                              The ARM story: Earthquake looming?Max2011/01/18 01:34 AM
                                The ARM story: Earthquake looming?Brett2011/01/18 10:39 AM
                                  AppleDavid Kanter2011/01/18 11:22 AM
                                  The ARM story: Earthquake looming?Max2011/01/18 12:17 PM
                                  The ARM story: Earthquake looming?Rob Thorpe2011/01/18 03:36 PM
                                    The ARM story: Earthquake looming?Brett2011/01/18 06:00 PM
                                      The ARM story: Earthquake looming?David Kanter2011/01/18 07:44 PM
                                        The ARM story: Earthquake looming?rwessel2011/01/18 09:19 PM
                                        Definition of SOCRob Thorpe2011/01/19 02:24 PM
                                      The ARM story: Earthquake looming?Aaron Spink2011/01/18 11:26 PM
                                        The ARM story: Earthquake looming?Brett2011/01/19 01:57 AM
                                          The ARM story: Earthquake looming?Aaron Spink2011/01/19 02:15 AM
                                            Pioneers get arrows in their backsBrett2011/01/19 07:08 PM
                                              Pioneers get arrows in their backsAaron Spink2011/01/19 08:22 PM
                                          Plausible ID, HCI translationPaul A. Clayton2011/01/19 09:18 AM
                                          Quad pixel?David Kanter2011/01/19 02:37 PM
                                            Quad pixel?Brett2011/01/19 03:53 PM
                                              Quad pixel?David Kanter2011/01/19 08:10 PM
                                            TRIM (was Quad pixel?)Linus Torvalds2011/01/19 05:22 PM
                                              TRIM (was Quad pixel?)Aaron Spink2011/01/19 08:15 PM
                                                TRIM (was Quad pixel?)anon2011/01/19 09:11 PM
                                                TRIM (was Quad pixel?)Linus Torvalds2011/01/19 09:12 PM
                                                  TRIM (was Quad pixel?)iz2011/01/19 10:03 PM
                                                    TRIM (was Quad pixel?)Linus Torvalds2011/01/19 10:52 PM
                                                      TRIM (was Quad pixel?)Aaron Spink2011/01/19 11:35 PM
                                                        TRIM (was Quad pixel?)anon2011/01/19 11:43 PM
                                                          TRIM (was Quad pixel?)Aaron Spink2011/01/20 12:23 AM
                                                            TRIM (was Quad pixel?)anon2011/01/20 01:00 AM
                                                              TRIM (was Quad pixel?)mpx2011/01/20 02:34 PM
                                                                TRIM (was Quad pixel?)anon2011/01/20 04:29 PM
                                                            TRIM (was Quad pixel?)Linus Torvalds2011/01/20 09:34 AM
                                                              TRIM (was Quad pixel?)Ricardo B2011/01/20 11:25 AM
                                                                TRIM (was Quad pixel?)Linus Torvalds2011/01/20 11:51 AM
                                                                  TRIM (was Quad pixel?)Aaron Spink2011/01/20 01:28 PM
                                                                    TRIM (was Quad pixel?)anon2011/01/20 02:00 PM
                                                                      TRIM (was Quad pixel?)Aaron Spink2011/01/20 03:52 PM
                                                                        TRIM (was Quad pixel?)anon2011/01/20 04:30 PM
                                                                  TRIM (was Quad pixel?)Ricardo B2011/01/20 01:36 PM
                                                                    TRIM (was Quad pixel?)Linus Torvalds2011/01/20 04:57 PM
                                                                      TRIM (was Quad pixel?)Ricardo B2011/01/20 06:14 PM
                                                                        TRIM (was Quad pixel?)MS2011/01/21 09:06 AM
                                                              TRIM (was Quad pixel?)Aaron Spink2011/01/20 01:19 PM
                                                              TRIM (was Quad pixel?)mpx2011/01/21 05:45 AM
                                                                TRIM (was Quad pixel?)James2011/01/21 07:37 AM
                                                                  TRIM (was Quad pixel?)mpx2011/01/21 03:10 PM
                                                              databases and filesystemsFoo_2011/01/21 06:26 AM
                                                      TRIM (was Quad pixel?)iz2011/01/20 12:45 AM
                                                        TRIM (was Quad pixel?)Linus Torvalds2011/01/20 09:54 AM
                                                          TRIM (was Quad pixel?)iz2011/01/20 11:28 PM
                                                  TRIM (was Quad pixel?)anon2011/01/19 10:34 PM
                                                    TRIM (was Quad pixel?)Doug Siebert2011/01/19 11:48 PM
                                                      TRIM (was Quad pixel?)anon2011/01/19 11:59 PM
                                                        TRIM - How about we use LBA and PBA?Aaron Spink2011/01/20 12:06 AM
                                                          TRIM - How about we use LBA and PBA?anon2011/01/20 12:10 AM
                                                        TRIM (was Quad pixel?)Aaron Spink2011/01/20 05:23 PM
                                                  TRIM (was Quad pixel?)Anon2011/01/19 10:58 PM
                                                  TRIM (was Quad pixel?)Aaron Spink2011/01/19 11:04 PM
                                                    TRIM (was Quad pixel?)anon2011/01/19 11:34 PM
                                                      TRIM (was Quad pixel?)Aaron Spink2011/01/19 11:59 PM
                                                        TRIM (was Quad pixel?)anon2011/01/20 12:18 AM
                                                          TRIM (was Quad pixel?)Aaron Spink2011/01/20 12:54 AM
                                                            TRIM (was Quad pixel?)anon2011/01/20 01:12 AM
                                                              TRIM (was Quad pixel?)Aaron Spink2011/01/20 01:44 AM
                                                                TRIM (was Quad pixel?)anon2011/01/20 08:56 AM
                                                                  TRIM (was Quad pixel?)anon2011/01/20 08:59 AM
                                                                  TRIM (was Quad pixel?)Aaron Spink2011/01/20 01:33 PM
                                                                    TRIM (was Quad pixel?)anon2011/01/20 04:55 PM
                                                                      TRIM (was Quad pixel?)Aaron Spink2011/01/20 05:14 PM
                                                                        TRIM (was Quad pixel?)anon2011/01/20 06:14 PM
                                                                          TRIM (was Quad pixel?)Aaron Spink2011/01/20 08:38 PM
                                                                            TRIM (was Quad pixel?)anon2011/01/20 09:16 PM
                                                                TRIM (was Quad pixel?)mpx2011/01/20 03:58 PM
                                                                Supercapsslacker2011/01/20 04:57 PM
                                                                  SupercapsAaron Spink2011/01/20 05:20 PM
                                                                    Supercapsslacker2011/01/20 05:43 PM
                                                                      SupercapsAaron Spink2011/01/20 08:25 PM
                                                                        Supercapsslacker2011/01/20 11:02 PM
                                                                          SupercapsMS2011/01/21 01:37 PM
                                                    TRIM (was Quad pixel?)Linus Torvalds2011/01/20 09:58 AM
                                                TRIM (was Quad pixel?)ajensen2011/01/21 03:23 AM
                                                  Mythical SSDsRicardo B2011/01/21 06:27 AM
                                                    Mythical SSDsLinus Torvalds2011/01/21 10:24 AM
                                                      Mythical SSDsanon2011/01/21 12:00 PM
                                                      What is off-line?David Kanter2011/01/21 12:09 PM
                                                        What is off-line?Linus Torvalds2011/01/21 01:51 PM
                                                        What is off-line?Octoploid2011/01/21 02:04 PM
                                                      Mythical SSDsajensen2011/01/21 12:28 PM
                                                      Mythical SSDsAaron Spink2011/01/21 12:58 PM
                                                        Mythical SSDsLinus Torvalds2011/01/21 01:21 PM
                                                          Mythical SSDsAaron Spink2011/01/21 04:13 PM
                                                            Mythical SSDsanon2011/01/21 07:47 PM
                                                      Mythical SSDsmpx2011/01/22 01:01 AM
                                                        Mythical SSDsanon2011/01/22 02:08 AM
                                                      Mythical Linus?2011/01/25 07:16 AM
                                                        Mythical LinusUngo2011/01/25 12:35 PM
                                                        Mythical LinusDean Kent2011/01/25 01:14 PM
                                                        Filesystem impactDavid Kanter2011/01/25 01:16 PM
                                                          Filesystem impactUngo2011/01/25 03:15 PM
                                                            Filesystem impactiz2011/01/25 05:18 PM
                                                              Filesystem impactAaron Spink2011/01/26 01:25 PM
                                                          Filesystem impactFoo_2011/01/25 05:14 PM
                                                            Filesystem impactiz2011/01/25 05:24 PM
                                                              Filesystem impactAaron Spink2011/01/26 01:27 PM
                                                                Filesystem impactRobert Myers2011/01/26 06:43 PM
                                                                  Filesystem impactanon2011/01/26 08:29 PM
                                                                Filesystem impactanon2011/01/26 07:19 PM
                                                          Filesystem impactGroo2011/01/25 07:42 PM
                                                            Filesystem impactiz2011/01/25 10:03 PM
                                                              Filesystem impactmpx2011/01/26 02:15 AM
                                                                Filesystem impactiz2011/01/26 03:14 AM
                                                          Windows 7 and SSDs: Setup secrets and tune-up tweaks_Arthur2011/01/26 06:59 PM
                                              TRIMiz2011/01/19 09:54 PM
                                                TRIMAaron Spink2011/01/19 11:43 PM
                                                  TRIMiz2011/01/20 01:01 AM
                                                    TRIMAaron Spink2011/01/20 01:25 AM
                                                      TRIMiz2011/01/20 04:29 AM
                                              TRIM (was Quad pixel?)Megol2011/01/20 03:29 AM
                                                TRIM (was Quad pixel?)Linus Torvalds2011/01/20 10:05 AM
                                                  TRIM (was Quad pixel?)Rob Thorpe2011/01/22 01:30 PM
                                                    TRIM (was Quad pixel?)anon2011/01/22 07:07 PM
                                                      TRIMDavid Kanter2011/01/24 02:05 PM
                                                        TRIManon2011/01/24 02:57 PM
                                                          TRIMMS2011/01/24 03:22 PM
                                                            TRIMDan Downs2011/01/24 06:44 PM
                                                              TRIMDan Downs2011/01/24 06:51 PM
                                                            TRIManon2011/01/24 07:29 PM
                                                              TRIMMS2011/01/24 08:40 PM
                                                            TRIMRicardo B2011/01/25 03:40 PM
                                                        TRIMAnon2011/01/24 06:37 PM
                                                          TRIMRichard Cownie2011/01/24 07:45 PM
                                                            TRIMAaron Spink2011/01/24 07:53 PM
                                                              TRIMAnon2011/01/24 09:28 PM
                                                                TRIMRichard Cownie2011/01/25 07:39 AM
                                                                  TRIM Linus is rightgallier22011/01/25 11:18 AM
                                                                    TRIM Linus is rightMax2011/01/25 12:30 PM
                                                                      TRIM Linus is rightMichael S2011/01/25 01:17 PM
                                                                        TRIM Linus is rightMax2011/01/25 06:15 PM
                                                                        TRIM Linus is rightAnon2011/01/25 09:09 PM
                                                                          TRIM Linus is rightgallier22011/01/26 02:26 AM
                                                                          TRIM Linus is rightanon2011/01/26 09:30 PM
                                                                        TRIM Linus is rightRicardo B2011/01/26 02:12 AM
                                                                          TRIM Linus is rightiz2011/01/26 03:19 AM
                                                                            Linus is wrong - TRIM is *essential*?2011/01/26 05:04 AM
                                                                              Linus is wrong - TRIM is *essential*Meeple2011/01/26 04:34 PM
                                                                              Linus is wrong - TRIM is *essential*iz2011/01/26 08:01 PM
                                                                              Linus is wrong - TRIM is *essential*anon2011/01/26 08:40 PM
                                                                                Linus is wrong - TRIM is *essential*David Kanter2011/01/26 09:09 PM
                                                                                  Linus is wrong - TRIM is *essential*anon2011/01/26 09:40 PM
                                                                            TRIM Linus is rightMS2011/01/26 12:03 PM
                                                                              TRIM Linus is rightMichael S2011/01/26 12:48 PM
                                                                                TRIM Linus is rightMS2011/01/26 01:30 PM
                                                                              Relative latencyDavid Kanter2011/01/26 01:09 PM
                                                                                Relative latencyMS2011/01/26 01:34 PM
                                                                                  NAND flash latenciesslacker2011/01/26 07:14 PM
                                                                                    NAND flash latenciesiz2011/01/26 08:18 PM
                                                                                      NAND flash latencies -- Correctionslacker2011/01/26 08:58 PM
                                                                                        NAND flash latencies -- Correctioniz2011/01/27 12:58 AM
                                                                                          NAND flash latencies -- CorrectionDavid Kanter2011/01/27 01:54 AM
                                                                                            NAND flash latencies -- CorrectionRicardo B2011/01/27 04:42 AM
                                                                                              NAND flash latencies -- Correctioniz2011/01/27 07:54 PM
                                                                                                NAND flash latencies -- CorrectionRicardo B2011/01/28 06:02 AM
                                                                                                  NAND flash latencies -- CorrectionMS2011/01/28 03:06 PM
                                                                                                  NAND flash latencies -- Correctioniz2011/01/28 05:12 PM
                                                                                Relative latencyRicardo B2011/01/26 03:23 PM
                                                                                  Relative latencyMS2011/01/26 04:16 PM
                                                                        TRIM Linus is rightJames2011/01/26 05:26 AM
                                                                      TRIM Linus is rightgallier22011/01/25 02:46 PM
                                                                    TRIM Linus is rightMS2011/01/25 03:10 PM
                                                                      Linus is HALF rightDarrell Coker2011/01/25 07:36 PM
                                                                        Linus is HALF rightRicardo B2011/01/26 01:52 AM
                                                                        EXT4 *not* heavily optimized for rotating media?2011/01/26 02:34 AM
                                                                  TRIMAnon2011/01/25 09:00 PM
                                              The alternative to TRIMMax2011/01/20 11:35 AM
                                                The alternative to TRIManon2011/01/20 04:57 PM
                                                  The alternative to TRIMMax2011/01/21 02:27 AM
                                                The alternative to TRIMDan Downs2011/01/20 05:18 PM
                                                  The alternative to TRIMAaron Spink2011/01/20 05:34 PM
                                                    The alternative to TRIMLinus Torvalds2011/01/20 06:16 PM
                                                      The alternative to TRIMGabriele Svelto2011/01/22 02:10 AM
                                                    The alternative to TRIMDan Downs2011/01/20 07:12 PM
                                                      The alternative to TRIMAaron Spink2011/01/20 08:34 PM
                                                Another Alternative to TrimMark Christiansen2011/01/22 12:07 PM
                                                  Another Alternative to Trimiz2011/01/22 06:43 PM
                                                    Another Alternative to TrimLinus Torvalds2011/01/22 09:12 PM
                                                      Another Alternative to TrimAaron Spink2011/01/23 02:01 AM
                                                      Another Alternative to Trimiz2011/01/23 05:20 AM
                                                      Another Alternative to Trimmpx2011/01/23 12:00 PM
                                                        Another Alternative to Trimiz2011/01/23 06:10 PM
                                              TRIM vs. GC for SSD Longevitympx2011/01/20 02:19 PM
                                                TRIM vs. GC for SSD Longevityiz2011/01/20 07:05 PM
                                                  TRIM vs. GC for SSD Longevitympx2011/01/21 03:29 AM
                                                    TRIM vs. GC for SSD Longevityanon2011/01/21 07:51 PM
                                                TRIM vs. GC for SSD LongevityAaron Spink2011/01/20 08:42 PM
                                                  TRIM vs. GC for SSD LongevityMS2011/01/21 06:07 PM
                                            Quad pixel?Anon2011/01/19 10:48 PM
                                            Quad pixel?mpx2011/01/20 08:40 AM
                                      The ARM story: Earthquake looming?Rob Thorpe2011/01/19 01:57 PM
                                        The ARM story: Earthquake looming?Brett2011/01/19 03:35 PM
                                          The ARM story: Earthquake looming?Aaron Spink2011/01/19 08:30 PM
                                            Apollo ComputerBrett2011/01/19 09:52 PM
                                      iPad 2 display same as iPadDavid Kanter2011/02/02 11:12 AM
                                        iPad 2 display same as iPadBrett2011/02/02 01:30 PM
                                          iPad 2 display same as iPadMark Roulo2011/02/02 02:25 PM
                                            iPad 2 display same as iPadBrett2011/02/02 02:59 PM
                                            iPad 2 display same as iPadRichard Cownie2011/02/03 10:30 AM
                                          iPad 2 display same as iPadAnon2011/02/02 04:08 PM
                                        iPad 2 display same as iPadRob Thorpe2011/02/03 11:42 AM
                                The ARM story: Earthquake looming?Ungo2011/01/19 05:54 AM
                            The ARM story: Earthquake looming?mpx2011/01/15 01:32 PM
                              The ARM story: Earthquake looming?Aaron Spink2011/01/17 04:20 PM
                            The ARM story: Earthquake looming?slacker2011/01/15 04:03 PM
                        Intel GMs for low-endDavid Kanter2011/01/18 11:05 AM
                    The ARM story: Earthquake looming?Linus Torvalds2011/01/14 09:29 AM
                      The ARM story: Earthquake looming?a reader2011/01/14 07:25 PM
                        The ARM story: Earthquake looming?Foo_2011/01/15 03:12 AM
                          The ARM story: Earthquake looming?Matt Sayler2011/01/15 12:25 PM
                            The ARM story: Earthquake looming?IntelUser20002011/01/16 05:20 PM
                              The ARM story: Earthquake looming?Matt Sayler2011/01/16 06:02 PM
                                The ARM story: Earthquake looming?Megol2011/01/17 10:18 AM
                                  The ARM story: Earthquake looming?Brett2011/01/17 04:58 PM
                                    The ARM story: Earthquake looming?Louis Gerbarg2011/01/17 06:12 PM
                                      The ARM story: Earthquake looming?Brett2011/01/17 08:06 PM
                                        The ARM story: Earthquake looming?Louis Gerbarg2011/01/18 10:13 AM
                                        The ARM story: Earthquake looming?Rob Thorpe2011/01/18 03:23 PM
                                      Nice postDavid Kanter2011/01/18 11:38 AM
                            New MacBook Pros are getting closerMatt Sayler2011/02/24 09:46 AM
                      The ARM story: Earthquake looming??2011/01/16 09:29 AM
                        The ARM story: Earthquake looming?anon2011/01/16 10:08 PM
                        The ARM story: Earthquake looming?Gabriele Svelto2011/01/17 12:43 AM
                  The ARM story: Earthquake looming?Robert Myers2011/01/14 06:29 PM
                    The ARM story: Earthquake looming?Max2011/01/15 07:18 AM
        The ARM story: Earthquake looming?Groo2011/01/12 04:59 PM
          The ARM story: Earthquake looming?Wilco2011/01/12 05:40 PM
            The ARM story: Earthquake looming?Groo2011/01/12 09:14 PM
        The ARM story: Earthquake looming?Adrian2011/01/13 02:35 PM
          The ARM story: Earthquake looming?Paul2011/01/13 05:19 PM
            The ARM story: Earthquake looming?Adrian2011/01/14 03:50 AM
              The ARM story: Earthquake looming?Wilco2011/01/14 07:00 AM
                The ARM story: Earthquake looming?none2011/01/14 07:26 AM
                  The ARM story: Earthquake looming?Wilco2011/01/14 07:46 AM
                    The ARM story: Earthquake looming?none2011/01/14 08:02 AM
                    The ARM story: Earthquake looming?Linus Torvalds2011/01/14 09:42 AM
                      The ARM story: Earthquake looming?Richard Cownie2011/01/14 10:06 AM
                        The ARM story: Earthquake looming?someone2011/01/14 11:20 AM
                          The ARM story: Earthquake looming?fastpathguru2011/01/14 12:22 PM
                          The ARM story: Earthquake looming?Richard Cownie2011/01/14 06:01 PM
                            The ARM story: Earthquake looming?Aaron Spink2011/01/15 06:07 AM
                            The ARM story: Earthquake looming?slacker2011/01/15 04:08 PM
                              The ARM story: Earthquake looming?Jukka Larja2011/01/16 01:44 AM
                          The ARM story: Earthquake looming?mpx2011/01/15 05:08 AM
                            The ARM story: Earthquake looming?Paul2011/01/15 09:20 AM
                        The ARM story: 64 bit or bust?Kevin G2011/01/14 05:21 PM
                          The ARM story: 64 bit or bust?someone2011/01/15 10:48 AM
                      Bye, bye native binarympx2011/01/15 12:51 AM
                        Bye, bye native binaryExophase2011/01/18 06:39 PM
                      RISC with 16 GPRs!?anon2011/01/19 05:42 PM
                        RISC with 16 GPRs!?Exophase2011/01/19 06:20 PM
                        doomed ARM sells 6B cores/yearRichard Cownie2011/01/19 10:01 PM
      The ARM story: Earthquake looming?anon2011/01/12 10:30 PM
      The ARM story: Earthquake looming?mpx2011/01/13 04:05 AM
  Not a chance in hellRohit2011/01/12 07:49 AM
  The ARM story: Earthquake looming?notsure2011/01/12 12:39 PM
  The ARM story: Earthquake looming?mpx2011/01/13 04:27 AM
  The _Android_ story: Earthquake looming?fastpathguru2011/01/13 11:50 AM
    Internet + web apps + multimedia = enablermpx2011/01/14 02:11 AM
    The _Android_ story: Earthquake looming?Will Smith2011/01/14 09:48 AM
  Notebook vendors show no interest in Oak Trail Nicki Minaj2011/01/16 06:37 PM
Reply to this Topic
Name:
Email:
Topic:
Body: No Text
How do you spell tangerine? 🍊