Reed Kotler | 4cdaa7d | 2014-02-14 19:16:39 +0000 | [diff] [blame] | 1 | //===---- Mips16HardFloatInfo.cpp for Mips16 Hard Float -----===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Reed Kotler | 4cdaa7d | 2014-02-14 19:16:39 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file contains the Mips16 implementation of Mips16HardFloatInfo |
| 10 | // namespace. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Reed Kotler | 4cdaa7d | 2014-02-14 19:16:39 +0000 | [diff] [blame] | 14 | #include "Mips16HardFloatInfo.h" |
Chandler Carruth | 442f784 | 2014-03-04 10:07:28 +0000 | [diff] [blame] | 15 | #include <string.h> |
Reed Kotler | 4cdaa7d | 2014-02-14 19:16:39 +0000 | [diff] [blame] | 16 | |
| 17 | namespace llvm { |
| 18 | |
| 19 | namespace Mips16HardFloatInfo { |
| 20 | |
| 21 | const FuncNameSignature PredefinedFuncs[] = { |
| 22 | { "__floatdidf", { NoSig, DRet } }, |
| 23 | { "__floatdisf", { NoSig, FRet } }, |
| 24 | { "__floatundidf", { NoSig, DRet } }, |
| 25 | { "__fixsfdi", { FSig, NoFPRet } }, |
| 26 | { "__fixunsdfsi", { DSig, NoFPRet } }, |
| 27 | { "__fixunsdfdi", { DSig, NoFPRet } }, |
| 28 | { "__fixdfdi", { DSig, NoFPRet } }, |
| 29 | { "__fixunssfsi", { FSig, NoFPRet } }, |
| 30 | { "__fixunssfdi", { FSig, NoFPRet } }, |
| 31 | { "__floatundisf", { NoSig, FRet } }, |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 32 | { nullptr, { NoSig, NoFPRet } } |
Reed Kotler | 4cdaa7d | 2014-02-14 19:16:39 +0000 | [diff] [blame] | 33 | }; |
| 34 | |
| 35 | // just do a search for now. there are very few of these special cases. |
| 36 | // |
| 37 | extern FuncSignature const *findFuncSignature(const char *name) { |
| 38 | const char *name_; |
| 39 | int i = 0; |
| 40 | while (PredefinedFuncs[i].Name) { |
| 41 | name_ = PredefinedFuncs[i].Name; |
| 42 | if (strcmp(name, name_) == 0) |
| 43 | return &PredefinedFuncs[i].Signature; |
| 44 | i++; |
| 45 | } |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 46 | return nullptr; |
Reed Kotler | 4cdaa7d | 2014-02-14 19:16:39 +0000 | [diff] [blame] | 47 | } |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 48 | } |
| 49 | } |