Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 | [diff] [blame] | 1 | /* ===-- subvsi3.c - Implement __subvsi3 -----------------------------------=== |
| 2 | * |
Anton Korobeynikov | e63da93 | 2011-04-19 17:52:09 | [diff] [blame^] | 3 | * The LLVM Compiler Infrastructure |
Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 | [diff] [blame] | 4 | * |
Howard Hinnant | 5b791f6 | 2010-11-16 22:13:33 | [diff] [blame] | 5 | * This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | * Source Licenses. See LICENSE.TXT for details. |
Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 | [diff] [blame] | 7 | * |
| 8 | * ===----------------------------------------------------------------------=== |
| 9 | * |
| 10 | * This file implements __subvsi3 for the compiler_rt library. |
| 11 | * |
| 12 | * ===----------------------------------------------------------------------=== |
| 13 | */ |
Anton Korobeynikov | e63da93 | 2011-04-19 17:52:09 | [diff] [blame^] | 14 | #include "abi.h" |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 | [diff] [blame] | 15 | |
| 16 | #include "int_lib.h" |
| 17 | #include <stdlib.h> |
| 18 | |
Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 | [diff] [blame] | 19 | /* Returns: a - b */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 | [diff] [blame] | 20 | |
Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 | [diff] [blame] | 21 | /* Effects: aborts if a - b overflows */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 | [diff] [blame] | 22 | |
Anton Korobeynikov | e63da93 | 2011-04-19 17:52:09 | [diff] [blame^] | 23 | COMPILER_RT_ABI si_int |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 | [diff] [blame] | 24 | __subvsi3(si_int a, si_int b) |
| 25 | { |
| 26 | si_int s = a - b; |
| 27 | if (b >= 0) |
| 28 | { |
| 29 | if (s > a) |
Daniel Dunbar | f287008 | 2010-03-31 17:00:45 | [diff] [blame] | 30 | compilerrt_abort(); |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 | [diff] [blame] | 31 | } |
| 32 | else |
| 33 | { |
| 34 | if (s <= a) |
Daniel Dunbar | f287008 | 2010-03-31 17:00:45 | [diff] [blame] | 35 | compilerrt_abort(); |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 | [diff] [blame] | 36 | } |
| 37 | return s; |
| 38 | } |