2010-02-23 20:15:24 +01:00
|
|
|
//===- MBlazeIntrinsicInfo.h - MBlaze 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 MBlaze implementation of TargetIntrinsicInfo.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef MBLAZEINTRINSICS_H
|
|
|
|
#define MBLAZEINTRINSICS_H
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetIntrinsicInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class MBlazeIntrinsicInfo : public TargetIntrinsicInfo {
|
|
|
|
public:
|
|
|
|
std::string getName(unsigned IntrID, const Type **Tys = 0,
|
|
|
|
unsigned numTys = 0) const;
|
|
|
|
unsigned lookupName(const char *Name, unsigned Len) const;
|
2010-02-24 21:16:27 +01:00
|
|
|
unsigned lookupGCCName(const char *Name) const;
|
2010-02-23 20:15:24 +01:00
|
|
|
bool isOverloaded(unsigned IID) const;
|
|
|
|
Function *getDeclaration(Module *M, unsigned ID, const Type **Tys = 0,
|
|
|
|
unsigned numTys = 0) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|