2014-02-15 03:16:39 +08:00
|
|
|
//===---- Mips16HardFloatInfo.cpp for Mips16 Hard Float -----===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2014-02-15 03:16:39 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the Mips16 implementation of Mips16HardFloatInfo
|
|
|
|
// namespace.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "Mips16HardFloatInfo.h"
|
2014-03-04 18:07:28 +08:00
|
|
|
#include <string.h>
|
2014-02-15 03:16:39 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
namespace Mips16HardFloatInfo {
|
|
|
|
|
|
|
|
const FuncNameSignature PredefinedFuncs[] = {
|
|
|
|
{ "__floatdidf", { NoSig, DRet } },
|
|
|
|
{ "__floatdisf", { NoSig, FRet } },
|
|
|
|
{ "__floatundidf", { NoSig, DRet } },
|
|
|
|
{ "__fixsfdi", { FSig, NoFPRet } },
|
|
|
|
{ "__fixunsdfsi", { DSig, NoFPRet } },
|
|
|
|
{ "__fixunsdfdi", { DSig, NoFPRet } },
|
|
|
|
{ "__fixdfdi", { DSig, NoFPRet } },
|
|
|
|
{ "__fixunssfsi", { FSig, NoFPRet } },
|
|
|
|
{ "__fixunssfdi", { FSig, NoFPRet } },
|
|
|
|
{ "__floatundisf", { NoSig, FRet } },
|
2014-04-25 13:30:21 +08:00
|
|
|
{ nullptr, { NoSig, NoFPRet } }
|
2014-02-15 03:16:39 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// just do a search for now. there are very few of these special cases.
|
|
|
|
//
|
|
|
|
extern FuncSignature const *findFuncSignature(const char *name) {
|
|
|
|
const char *name_;
|
|
|
|
int i = 0;
|
|
|
|
while (PredefinedFuncs[i].Name) {
|
|
|
|
name_ = PredefinedFuncs[i].Name;
|
|
|
|
if (strcmp(name, name_) == 0)
|
|
|
|
return &PredefinedFuncs[i].Signature;
|
|
|
|
i++;
|
|
|
|
}
|
2014-04-25 13:30:21 +08:00
|
|
|
return nullptr;
|
2014-02-15 03:16:39 +08:00
|
|
|
}
|
2015-06-23 17:49:53 +08:00
|
|
|
}
|
|
|
|
}
|