1 /** @file 2 Compiler intrinsic for 32-bit mod, ported from LLVM code. 3 4 5 Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR> 6 7 This program and the accompanying materials 8 are licensed and made available under the terms and conditions of the BSD License 9 which accompanies this distribution. The full text of the license may be found at 10 http://opensource.org/licenses/bsd-license.php 11 12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 14 15 **/ 16 /** 17 University of Illinois/NCSA 18 Open Source License 19 20 Copyright (c) 2003-2008 University of Illinois at Urbana-Champaign. 21 All rights reserved. 22 23 Developed by: 24 25 LLVM Team 26 27 University of Illinois at Urbana-Champaign 28 29 http://llvm.org 30 31 Permission is hereby granted, free of charge, to any person obtaining a copy of 32 this software and associated documentation files (the "Software"), to deal with 33 the Software without restriction, including without limitation the rights to 34 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 35 of the Software, and to permit persons to whom the Software is furnished to do 36 so, subject to the following conditions: 37 38 * Redistributions of source code must retain the above copyright notice, 39 this list of conditions and the following disclaimers. 40 41 * Redistributions in binary form must reproduce the above copyright notice, 42 this list of conditions and the following disclaimers in the 43 documentation and/or other materials provided with the distribution. 44 45 * Neither the names of the LLVM Team, University of Illinois at 46 Urbana-Champaign, nor the names of its contributors may be used to 47 endorse or promote products derived from this Software without specific 48 prior written permission. 49 50 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 51 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 52 FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 53 CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 54 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 55 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE 56 SOFTWARE. 57 **/ 58 59 60 #include "Llvm_int_lib.h" 61 62 // Returns: a % b 63 64 INT32 65 __modsi3(INT32 a, INT32 b) 66 { 67 return a - (a / b) * b; 68 } 69 70 71