llvm-6502/lib/Target/Mips/Mips16HardFloatInfo.cpp
Alexander Kornienko cd52a7a381 Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
Apparently, the style needs to be agreed upon first.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240390 91177308-0d34-0410-b5e6-96231b3b80d8
2015-06-23 09:49:53 +00:00

51 lines
1.4 KiB
C++

//===---- Mips16HardFloatInfo.cpp for Mips16 Hard Float -----===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file contains the Mips16 implementation of Mips16HardFloatInfo
// namespace.
//
//===----------------------------------------------------------------------===//
#include "Mips16HardFloatInfo.h"
#include <string.h>
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 } },
{ nullptr, { NoSig, NoFPRet } }
};
// 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++;
}
return nullptr;
}
}
}