mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
0669a8df22
llvm-svn: 86114
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
//===- BlackfinIntrinsicInfo.h - Blackfin Intrinsic Information -*- C++ -*-===//
|
|
//
|
|
// 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 Blackfin implementation of TargetIntrinsicInfo.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef BLACKFININTRINSICS_H
|
|
#define BLACKFININTRINSICS_H
|
|
|
|
#include "llvm/Target/TargetIntrinsicInfo.h"
|
|
|
|
namespace llvm {
|
|
|
|
class BlackfinIntrinsicInfo : public TargetIntrinsicInfo {
|
|
public:
|
|
std::string getName(unsigned IntrID, const Type **Tys = 0,
|
|
unsigned numTys = 0) const;
|
|
unsigned lookupName(const char *Name, unsigned Len) const;
|
|
bool isOverloaded(unsigned IID) const;
|
|
Function *getDeclaration(Module *M, unsigned ID, const Type **Tys = 0,
|
|
unsigned numTys = 0) const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|