Sorry for this. I fixed that reverting the change for ROMCC.
authorRudolf Marek <r.marek@assembler.cz>
Sun, 16 May 2010 22:26:25 +0000 (22:26 +0000)
committerRudolf Marek <r.marek@assembler.cz>
Sun, 16 May 2010 22:26:25 +0000 (22:26 +0000)
Signed-off-by: Rudolf Marek <r.marek@assembler.cz>
Acked-by: Rudolf Marek <r.marek@assembler.cz>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5563 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/include/cpu/x86/cache.h

index 14538592e9191eac5fff8a6a0c426fcc205d6263..858637cf2bd27d6580fdce0f45f9177496bc1e4e 100644 (file)
 /* the memory clobber prevents the GCC from reordering the read/write order
    of CR0 */
 
+ */
+
+#if defined(__GNUC__)
+
+/*
+Need this because ROMCC fails here with:
+
+cache.h:29.71: cache.h:60.24: earlymtrr.c:117.23: romstage.c:144.33: 
+0x1559920 asm        Internal compiler error: lhs 1 regcm == 0
+*/
+
 static inline unsigned long read_cr0(void)
 {
        unsigned long cr0;
@@ -35,6 +46,23 @@ static inline void write_cr0(unsigned long cr0)
        asm volatile ("movl %0, %%cr0" : : "r" (cr0) : "memory");
 }
 
+#else
+
+static inline unsigned long read_cr0(void)
+{
+       unsigned long cr0;
+       asm volatile ("movl %%cr0, %0" : "=r" (cr0));
+       return cr0;
+}
+
+static inline void write_cr0(unsigned long cr0)
+{
+       asm volatile ("movl %0, %%cr0" : : "r" (cr0));
+}
+
+#endif
+
+
 static inline void invd(void)
 {
        asm volatile("invd" ::: "memory");