Edward O'Callaghan | dabf71f | 2009-08-05 19:06:50 +0000 | [diff] [blame] | 1 | /* ===-- addvti3.c - Implement __addvti3 -----------------------------------=== |
| 2 | * |
| 3 | * The LLVM Compiler Infrastructure |
| 4 | * |
| 5 | * This file is distributed under the University of Illinois Open Source |
| 6 | * License. See LICENSE.TXT for details. |
| 7 | * |
| 8 | * ===----------------------------------------------------------------------=== |
| 9 | * |
| 10 | * This file implements __addvti3 for the compiler_rt library. |
| 11 | * |
| 12 | * ===----------------------------------------------------------------------=== |
| 13 | */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 14 | |
| 15 | #if __x86_64 |
| 16 | |
| 17 | #include "int_lib.h" |
| 18 | #include <stdlib.h> |
| 19 | |
Edward O'Callaghan | dabf71f | 2009-08-05 19:06:50 +0000 | [diff] [blame] | 20 | /* Returns: a + b */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 21 | |
Edward O'Callaghan | dabf71f | 2009-08-05 19:06:50 +0000 | [diff] [blame] | 22 | /* Effects: aborts if a + b overflows */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 23 | |
| 24 | ti_int |
| 25 | __addvti3(ti_int a, ti_int b) |
| 26 | { |
| 27 | ti_int s = a + b; |
| 28 | if (b >= 0) |
| 29 | { |
| 30 | if (s < a) |
Daniel Dunbar | f287008 | 2010-03-31 17:00:45 +0000 | [diff] [blame] | 31 | compilerrt_abort(); |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 32 | } |
| 33 | else |
| 34 | { |
| 35 | if (s >= a) |
Daniel Dunbar | f287008 | 2010-03-31 17:00:45 +0000 | [diff] [blame] | 36 | compilerrt_abort(); |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 37 | } |
| 38 | return s; |
| 39 | } |
| 40 | |
| 41 | #endif |