2006-03-03 02:32:46 +00:00
|
|
|
//===- CodeGenIntrinsic.h - Intrinsic Class Wrapper ------------*- C++ -*--===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:37:13 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-03-03 02:32:46 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines a wrapper class for the 'Intrinsic' TableGen class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef CODEGEN_INTRINSIC_H
|
|
|
|
#define CODEGEN_INTRINSIC_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2006-03-24 19:49:31 +00:00
|
|
|
#include "llvm/CodeGen/ValueTypes.h"
|
2006-03-03 02:32:46 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class Record;
|
|
|
|
class RecordKeeper;
|
2006-03-27 22:48:18 +00:00
|
|
|
class CodeGenTarget;
|
2006-03-03 02:32:46 +00:00
|
|
|
|
|
|
|
struct CodeGenIntrinsic {
|
2007-04-01 07:20:02 +00:00
|
|
|
Record *TheDef; // The actual record defining this intrinsic.
|
2006-03-03 02:32:46 +00:00
|
|
|
std::string Name; // The name of the LLVM function "llvm.bswap.i32"
|
|
|
|
std::string EnumName; // The name of the enum "bswap_i32"
|
2006-03-13 23:08:44 +00:00
|
|
|
std::string GCCBuiltinName;// Name of the corresponding GCC builtin, or "".
|
2006-03-15 01:33:26 +00:00
|
|
|
std::string TargetPrefix; // Target prefix, e.g. "ppc" for t-s intrinsics.
|
2008-06-06 12:08:01 +00:00
|
|
|
|
|
|
|
/// ArgVTs - The MVT::SimpleValueType for each argument type. Note that
|
|
|
|
/// this list is only populated when in the context of a target .td file.
|
|
|
|
/// When building Intrinsics.td, this isn't available, because we don't know
|
|
|
|
/// the target pointer size.
|
|
|
|
std::vector<MVT::SimpleValueType> ArgVTs;
|
|
|
|
|
2006-03-13 22:38:57 +00:00
|
|
|
/// ArgTypeDefs - The records for each argument type.
|
|
|
|
///
|
|
|
|
std::vector<Record*> ArgTypeDefs;
|
|
|
|
|
2006-03-03 02:32:46 +00:00
|
|
|
// Memory mod/ref behavior of this intrinsic.
|
|
|
|
enum {
|
|
|
|
NoMem, ReadArgMem, ReadMem, WriteArgMem, WriteMem
|
|
|
|
} ModRef;
|
|
|
|
|
2007-04-01 07:20:02 +00:00
|
|
|
// This is set to true if the intrinsic is overloaded by its argument
|
|
|
|
// types.
|
|
|
|
bool isOverloaded;
|
|
|
|
|
2008-06-16 20:29:38 +00:00
|
|
|
// isCommutative - True if the intrinsic is commutative.
|
|
|
|
//
|
|
|
|
bool isCommutative;
|
|
|
|
|
2008-04-03 00:02:49 +00:00
|
|
|
CodeGenIntrinsic(Record *R);
|
2006-03-03 02:32:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// LoadIntrinsics - Read all of the intrinsics defined in the specified
|
|
|
|
/// .td file.
|
|
|
|
std::vector<CodeGenIntrinsic> LoadIntrinsics(const RecordKeeper &RC);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|