mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-05 12:31:46 +00:00
The MicroBlaze is a highly configurable 32-bit soft-microprocessor for use on Xilinx FPGAs. For more information see: http://www.xilinx.com/tools/microblaze.htm http://en.wikipedia.org/wiki/MicroBlaze The current LLVM MicroBlaze backend generates assembly which can be compiled using the an appropriate binutils assembler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96969 91177308-0d34-0410-b5e6-96231b3b80d8
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
//===- 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;
|
|
bool isOverloaded(unsigned IID) const;
|
|
Function *getDeclaration(Module *M, unsigned ID, const Type **Tys = 0,
|
|
unsigned numTys = 0) const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|