Add an inline asm implementation of sum() for x86 CPUs
authorAntonio Ospite <ospite@studenti.unina.it>
Tue, 5 Nov 2013 16:57:56 +0000 (17:57 +0100)
committerAntonio Ospite <ospite@studenti.unina.it>
Tue, 5 Nov 2013 22:03:47 +0000 (23:03 +0100)
inline-asm-sum.c

index 4f9c2f0..a578ee7 100644 (file)
 
 static int sum(int a, int b)
 {
 
 static int sum(int a, int b)
 {
+#if defined(__i386__) || defined(__x86_64__)
+       int ret;
+       __asm__("addl %2, %1\n\t"
+               : "=a"(ret)      /* %0 bound to %eax */
+               : "a"(a), "r"(b) /* %1 is 'a' bound to %eax, %2 is 'b' */
+               );
+       return ret;
+#else
        return a + b;
        return a + b;
+#endif
 }
 
 int main(void)
 }
 
 int main(void)