2005-01-07 07:44:22 +00:00
|
|
|
//===-- llvm/Target/TargetLowering.h - Target Lowering Info -----*- C++ -*-===//
|
2005-04-21 20:59:05 +00:00
|
|
|
//
|
2005-01-07 07:44:22 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 20:59:05 +00:00
|
|
|
//
|
2005-01-07 07:44:22 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file describes how to lower LLVM code to machine code. This has two
|
|
|
|
// main components:
|
|
|
|
//
|
|
|
|
// 1. Which ValueTypes are natively supported by the target.
|
|
|
|
// 2. Which operations are supported for supported ValueTypes.
|
|
|
|
//
|
|
|
|
// In addition it has a few other components, like information about FP
|
|
|
|
// immediates.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TARGET_TARGETLOWERING_H
|
|
|
|
#define LLVM_TARGET_TARGETLOWERING_H
|
|
|
|
|
|
|
|
#include "llvm/Type.h"
|
|
|
|
#include "llvm/CodeGen/ValueTypes.h"
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class Function;
|
|
|
|
class TargetMachine;
|
|
|
|
class TargetData;
|
|
|
|
class TargetRegisterClass;
|
|
|
|
class SDNode;
|
|
|
|
class SDOperand;
|
|
|
|
class SelectionDAG;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// TargetLowering - This class defines information used to lower LLVM code to
|
|
|
|
/// legal SelectionDAG operators that the target instruction selector can accept
|
|
|
|
/// natively.
|
|
|
|
///
|
|
|
|
/// This class also defines callbacks that targets must implement to lower
|
|
|
|
/// target-specific constructs to SelectionDAG operators.
|
|
|
|
///
|
|
|
|
class TargetLowering {
|
|
|
|
public:
|
2005-01-16 07:27:49 +00:00
|
|
|
/// LegalizeAction - This enum indicates whether operations are valid for a
|
|
|
|
/// target, and if not, what action should be used to make them valid.
|
|
|
|
enum LegalizeAction {
|
|
|
|
Legal, // The target natively supports this operation.
|
|
|
|
Promote, // This operation should be executed in a larger type.
|
|
|
|
Expand, // Try to expand this to other ops, otherwise use a libcall.
|
|
|
|
Custom, // Use the LowerOperation hook to implement custom lowering.
|
|
|
|
};
|
|
|
|
|
2005-01-19 03:36:03 +00:00
|
|
|
enum OutOfRangeShiftAmount {
|
|
|
|
Undefined, // Oversized shift amounts are undefined (default).
|
|
|
|
Mask, // Shift amounts are auto masked (anded) to value size.
|
|
|
|
Extend, // Oversized shift pulls in zeros or sign bits.
|
|
|
|
};
|
|
|
|
|
2005-04-07 19:41:18 +00:00
|
|
|
enum SetCCResultValue {
|
|
|
|
UndefinedSetCCResult, // SetCC returns a garbage/unknown extend.
|
|
|
|
ZeroOrOneSetCCResult, // SetCC returns a zero extended result.
|
|
|
|
ZeroOrNegativeOneSetCCResult, // SetCC returns a sign extended result.
|
|
|
|
};
|
|
|
|
|
2005-01-07 07:44:22 +00:00
|
|
|
TargetLowering(TargetMachine &TM);
|
2005-01-16 07:27:49 +00:00
|
|
|
virtual ~TargetLowering();
|
2005-01-07 07:44:22 +00:00
|
|
|
|
|
|
|
TargetMachine &getTargetMachine() const { return TM; }
|
|
|
|
const TargetData &getTargetData() const { return TD; }
|
2005-04-21 20:59:05 +00:00
|
|
|
|
2005-01-07 07:44:22 +00:00
|
|
|
bool isLittleEndian() const { return IsLittleEndian; }
|
|
|
|
MVT::ValueType getPointerTy() const { return PointerTy; }
|
2005-01-16 23:59:30 +00:00
|
|
|
MVT::ValueType getShiftAmountTy() const { return ShiftAmountTy; }
|
2005-01-19 03:36:03 +00:00
|
|
|
OutOfRangeShiftAmount getShiftAmountFlavor() const {return ShiftAmtHandling; }
|
2005-01-16 23:59:30 +00:00
|
|
|
|
2005-05-12 02:02:21 +00:00
|
|
|
/// isSetCCExpensive - Return true if the setcc operation is expensive for
|
|
|
|
/// this target.
|
|
|
|
bool isSetCCExpensive() const { return SetCCIsExpensive; }
|
|
|
|
|
2005-04-07 19:41:18 +00:00
|
|
|
/// getSetCCResultTy - Return the ValueType of the result of setcc operations.
|
|
|
|
///
|
|
|
|
MVT::ValueType getSetCCResultTy() const { return SetCCResultTy; }
|
|
|
|
|
|
|
|
/// getSetCCResultContents - For targets without boolean registers, this flag
|
|
|
|
/// returns information about the contents of the high-bits in the setcc
|
|
|
|
/// result register.
|
|
|
|
SetCCResultValue getSetCCResultContents() const { return SetCCResultContents;}
|
|
|
|
|
2005-01-16 23:59:30 +00:00
|
|
|
/// getRegClassFor - Return the register class that should be used for the
|
|
|
|
/// specified value type. This may only be called on legal types.
|
2005-01-16 07:27:49 +00:00
|
|
|
TargetRegisterClass *getRegClassFor(MVT::ValueType VT) const {
|
2005-01-07 07:44:22 +00:00
|
|
|
TargetRegisterClass *RC = RegClassForVT[VT];
|
|
|
|
assert(RC && "This value type is not natively supported!");
|
|
|
|
return RC;
|
|
|
|
}
|
2005-04-21 20:59:05 +00:00
|
|
|
|
2005-01-16 01:10:58 +00:00
|
|
|
/// hasNativeSupportFor - Return true if the target has native support for the
|
|
|
|
/// specified value type. This means that it has a register that directly
|
|
|
|
/// holds it without promotions or expansions.
|
2005-01-16 07:27:49 +00:00
|
|
|
bool hasNativeSupportFor(MVT::ValueType VT) const {
|
2005-01-07 07:44:22 +00:00
|
|
|
return RegClassForVT[VT] != 0;
|
|
|
|
}
|
2005-01-16 01:10:58 +00:00
|
|
|
|
|
|
|
/// getTypeAction - Return how we should legalize values of this type, either
|
2005-01-16 07:27:49 +00:00
|
|
|
/// it is already legal (return 'Legal') or we need to promote it to a larger
|
|
|
|
/// type (return 'Promote'), or we need to expand it into multiple registers
|
|
|
|
/// of smaller integer type (return 'Expand'). 'Custom' is not an option.
|
|
|
|
LegalizeAction getTypeAction(MVT::ValueType VT) const {
|
|
|
|
return (LegalizeAction)((ValueTypeActions >> (2*VT)) & 3);
|
2005-01-16 01:10:58 +00:00
|
|
|
}
|
|
|
|
unsigned getValueTypeActions() const { return ValueTypeActions; }
|
|
|
|
|
|
|
|
/// getTypeToTransformTo - For types supported by the target, this is an
|
|
|
|
/// identity function. For types that must be promoted to larger types, this
|
|
|
|
/// returns the larger type to promote to. For types that are larger than the
|
|
|
|
/// largest integer register, this contains one step in the expansion to get
|
|
|
|
/// to the smaller register.
|
2005-01-16 07:27:49 +00:00
|
|
|
MVT::ValueType getTypeToTransformTo(MVT::ValueType VT) const {
|
2005-01-16 01:10:58 +00:00
|
|
|
return TransformToType[VT];
|
|
|
|
}
|
2005-04-21 20:59:05 +00:00
|
|
|
|
2005-01-07 07:44:22 +00:00
|
|
|
typedef std::vector<double>::const_iterator legal_fpimm_iterator;
|
|
|
|
legal_fpimm_iterator legal_fpimm_begin() const {
|
|
|
|
return LegalFPImmediates.begin();
|
|
|
|
}
|
|
|
|
legal_fpimm_iterator legal_fpimm_end() const {
|
|
|
|
return LegalFPImmediates.end();
|
|
|
|
}
|
2005-01-16 07:27:49 +00:00
|
|
|
|
2005-04-21 20:59:05 +00:00
|
|
|
/// getOperationAction - Return how this operation should be
|
2005-01-16 07:27:49 +00:00
|
|
|
LegalizeAction getOperationAction(unsigned Op, MVT::ValueType VT) const {
|
2005-04-21 20:59:05 +00:00
|
|
|
return (LegalizeAction)((OpActions[Op] >> (2*VT)) & 3);
|
2005-01-07 07:44:22 +00:00
|
|
|
}
|
2005-04-21 20:59:05 +00:00
|
|
|
|
2005-01-16 07:27:49 +00:00
|
|
|
/// hasNativeSupportForOperation - Return true if this operation is legal for
|
|
|
|
/// this type.
|
|
|
|
///
|
|
|
|
bool hasNativeSupportForOperation(unsigned Op, MVT::ValueType VT) const {
|
|
|
|
return getOperationAction(Op, VT) == Legal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getTypeToPromoteTo - If the action for this operation is to promote, this
|
|
|
|
/// method returns the ValueType to promote to.
|
|
|
|
MVT::ValueType getTypeToPromoteTo(unsigned Op, MVT::ValueType VT) const {
|
|
|
|
assert(getOperationAction(Op, VT) == Promote &&
|
|
|
|
"This operation isn't promoted!");
|
|
|
|
MVT::ValueType NVT = VT;
|
|
|
|
do {
|
|
|
|
NVT = (MVT::ValueType)(NVT+1);
|
|
|
|
assert(MVT::isInteger(NVT) == MVT::isInteger(VT) && NVT != MVT::isVoid &&
|
|
|
|
"Didn't find type to promote to!");
|
|
|
|
} while (!hasNativeSupportFor(NVT) ||
|
|
|
|
getOperationAction(Op, NVT) == Promote);
|
|
|
|
return NVT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getValueType - Return the MVT::ValueType corresponding to this LLVM type.
|
|
|
|
/// This is fixed by the LLVM operations except for the pointer size.
|
|
|
|
MVT::ValueType getValueType(const Type *Ty) const {
|
2005-01-07 07:44:22 +00:00
|
|
|
switch (Ty->getTypeID()) {
|
|
|
|
default: assert(0 && "Unknown type!");
|
|
|
|
case Type::VoidTyID: return MVT::isVoid;
|
|
|
|
case Type::BoolTyID: return MVT::i1;
|
|
|
|
case Type::UByteTyID:
|
|
|
|
case Type::SByteTyID: return MVT::i8;
|
|
|
|
case Type::ShortTyID:
|
|
|
|
case Type::UShortTyID: return MVT::i16;
|
|
|
|
case Type::IntTyID:
|
|
|
|
case Type::UIntTyID: return MVT::i32;
|
|
|
|
case Type::LongTyID:
|
|
|
|
case Type::ULongTyID: return MVT::i64;
|
|
|
|
case Type::FloatTyID: return MVT::f32;
|
|
|
|
case Type::DoubleTyID: return MVT::f64;
|
|
|
|
case Type::PointerTyID: return PointerTy;
|
|
|
|
}
|
|
|
|
}
|
2005-04-21 20:59:05 +00:00
|
|
|
|
2005-01-07 07:44:22 +00:00
|
|
|
/// getNumElements - Return the number of registers that this ValueType will
|
|
|
|
/// eventually require. This is always one for all non-integer types, is
|
|
|
|
/// one for any types promoted to live in larger registers, but may be more
|
|
|
|
/// than one for types (like i64) that are split into pieces.
|
|
|
|
unsigned getNumElements(MVT::ValueType VT) const {
|
|
|
|
return NumElementsForVT[VT];
|
|
|
|
}
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// TargetLowering Configuration Methods - These methods should be invoked by
|
|
|
|
// the derived class constructor to configure this object for the target.
|
|
|
|
//
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2005-01-16 23:59:30 +00:00
|
|
|
/// setShiftAmountType - Describe the type that should be used for shift
|
|
|
|
/// amounts. This type defaults to the pointer type.
|
|
|
|
void setShiftAmountType(MVT::ValueType VT) { ShiftAmountTy = VT; }
|
|
|
|
|
|
|
|
/// setSetCCResultType - Describe the type that shoudl be used as the result
|
|
|
|
/// of a setcc operation. This defaults to the pointer type.
|
|
|
|
void setSetCCResultType(MVT::ValueType VT) { SetCCResultTy = VT; }
|
|
|
|
|
2005-04-07 19:41:18 +00:00
|
|
|
/// setSetCCResultContents - Specify how the target extends the result of a
|
|
|
|
/// setcc operation in a register.
|
|
|
|
void setSetCCResultContents(SetCCResultValue Ty) { SetCCResultContents = Ty; }
|
|
|
|
|
2005-01-19 03:36:03 +00:00
|
|
|
/// setShiftAmountFlavor - Describe how the target handles out of range shift
|
|
|
|
/// amounts.
|
|
|
|
void setShiftAmountFlavor(OutOfRangeShiftAmount OORSA) {
|
|
|
|
ShiftAmtHandling = OORSA;
|
|
|
|
}
|
2005-04-21 20:59:05 +00:00
|
|
|
|
2005-05-12 02:02:21 +00:00
|
|
|
/// setSetCCIxExpensive - This is a short term hack for targets that codegen
|
|
|
|
/// setcc as a conditional branch. This encourages the code generator to fold
|
|
|
|
/// setcc operations into other operations if possible.
|
|
|
|
void setSetCCIsExpensive() { SetCCIsExpensive = true; }
|
|
|
|
|
2005-01-07 07:44:22 +00:00
|
|
|
/// addRegisterClass - Add the specified register class as an available
|
|
|
|
/// regclass for the specified value type. This indicates the selector can
|
|
|
|
/// handle values of that class natively.
|
|
|
|
void addRegisterClass(MVT::ValueType VT, TargetRegisterClass *RC) {
|
|
|
|
AvailableRegClasses.push_back(std::make_pair(VT, RC));
|
|
|
|
RegClassForVT[VT] = RC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// computeRegisterProperties - Once all of the register classes are added,
|
|
|
|
/// this allows us to compute derived properties we expose.
|
|
|
|
void computeRegisterProperties();
|
2005-04-21 20:59:05 +00:00
|
|
|
|
2005-01-16 07:27:49 +00:00
|
|
|
/// setOperationAction - Indicate that the specified operation does not work
|
|
|
|
/// with the specified type and indicate what to do about it.
|
|
|
|
void setOperationAction(unsigned Op, MVT::ValueType VT,
|
|
|
|
LegalizeAction Action) {
|
|
|
|
assert(VT < 16 && Op < sizeof(OpActions)/sizeof(OpActions[0]) &&
|
|
|
|
"Table isn't big enough!");
|
|
|
|
OpActions[Op] |= Action << VT*2;
|
2005-01-07 07:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// addLegalFPImmediate - Indicate that this target can instruction select
|
|
|
|
/// the specified FP immediate natively.
|
|
|
|
void addLegalFPImmediate(double Imm) {
|
|
|
|
LegalFPImmediates.push_back(Imm);
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Lowering methods - These methods must be implemented by targets so that
|
|
|
|
// the SelectionDAGLowering code knows how to lower these.
|
|
|
|
//
|
|
|
|
|
|
|
|
/// LowerArguments - This hook must be implemented to indicate how we should
|
|
|
|
/// lower the arguments for the specified function, into the specified DAG.
|
|
|
|
virtual std::vector<SDOperand>
|
|
|
|
LowerArguments(Function &F, SelectionDAG &DAG) = 0;
|
|
|
|
|
|
|
|
/// LowerCallTo - This hook lowers an abstract call to a function into an
|
2005-01-08 19:25:39 +00:00
|
|
|
/// actual call. This returns a pair of operands. The first element is the
|
|
|
|
/// return value for the function (if RetTy is not VoidTy). The second
|
|
|
|
/// element is the outgoing token chain.
|
2005-01-07 07:44:22 +00:00
|
|
|
typedef std::vector<std::pair<SDOperand, const Type*> > ArgListTy;
|
2005-01-08 19:25:39 +00:00
|
|
|
virtual std::pair<SDOperand, SDOperand>
|
2005-03-26 01:30:30 +00:00
|
|
|
LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
|
2005-05-13 18:50:42 +00:00
|
|
|
unsigned CallingConv, bool isTailCall, SDOperand Callee,
|
|
|
|
ArgListTy &Args, SelectionDAG &DAG) = 0;
|
2005-01-09 00:00:31 +00:00
|
|
|
|
|
|
|
/// LowerVAStart - This lowers the llvm.va_start intrinsic. If not
|
|
|
|
/// implemented, this method prints a message and aborts.
|
|
|
|
virtual std::pair<SDOperand, SDOperand>
|
2005-06-18 18:31:30 +00:00
|
|
|
LowerVAStart(SDOperand Chain, SelectionDAG &DAG, SDOperand Dest);
|
2005-01-09 00:00:31 +00:00
|
|
|
|
|
|
|
/// LowerVAEnd - This lowers llvm.va_end and returns the resultant chain. If
|
|
|
|
/// not implemented, this defaults to a noop.
|
|
|
|
virtual SDOperand LowerVAEnd(SDOperand Chain, SDOperand L, SelectionDAG &DAG);
|
|
|
|
|
|
|
|
/// LowerVACopy - This lowers llvm.va_copy and returns the resultant
|
|
|
|
/// value/chain pair. If not implemented, this defaults to returning the
|
|
|
|
/// input operand.
|
|
|
|
virtual std::pair<SDOperand,SDOperand>
|
2005-06-18 18:31:30 +00:00
|
|
|
LowerVACopy(SDOperand Chain, SDOperand Src, SDOperand Dest, SelectionDAG &DAG);
|
2005-01-09 00:00:31 +00:00
|
|
|
|
2005-06-18 18:31:30 +00:00
|
|
|
/// LowerVAArgNext - This lowers the instruction
|
|
|
|
/// If not implemented, this prints a message and aborts.
|
2005-01-09 00:00:31 +00:00
|
|
|
virtual std::pair<SDOperand,SDOperand>
|
2005-06-18 18:31:30 +00:00
|
|
|
LowerVAArgNext(SDOperand Chain, SDOperand VAList,
|
2005-01-09 00:00:31 +00:00
|
|
|
const Type *ArgTy, SelectionDAG &DAG);
|
|
|
|
|
|
|
|
/// LowerFrameReturnAddress - This hook lowers a call to llvm.returnaddress or
|
|
|
|
/// llvm.frameaddress (depending on the value of the first argument). The
|
|
|
|
/// return values are the result pointer and the resultant token chain. If
|
|
|
|
/// not implemented, both of these intrinsics will return null.
|
|
|
|
virtual std::pair<SDOperand, SDOperand>
|
|
|
|
LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
|
|
|
|
SelectionDAG &DAG);
|
2005-01-16 07:27:49 +00:00
|
|
|
|
|
|
|
/// LowerOperation - For operations that are unsupported by the target, and
|
|
|
|
/// which are registered to use 'custom' lowering. This callback is invoked.
|
|
|
|
/// If the target has no operations that require custom lowering, it need not
|
|
|
|
/// implement this. The default implementation of this aborts.
|
2005-05-14 05:51:05 +00:00
|
|
|
virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
|
2005-01-19 03:36:03 +00:00
|
|
|
|
2005-04-21 20:59:05 +00:00
|
|
|
|
2005-01-19 03:36:03 +00:00
|
|
|
private:
|
|
|
|
TargetMachine &TM;
|
|
|
|
const TargetData &TD;
|
|
|
|
|
|
|
|
/// IsLittleEndian - True if this is a little endian target.
|
|
|
|
///
|
|
|
|
bool IsLittleEndian;
|
2005-04-21 20:59:05 +00:00
|
|
|
|
2005-01-19 03:36:03 +00:00
|
|
|
/// PointerTy - The type to use for pointers, usually i32 or i64.
|
|
|
|
///
|
|
|
|
MVT::ValueType PointerTy;
|
|
|
|
|
|
|
|
/// ShiftAmountTy - The type to use for shift amounts, usually i8 or whatever
|
|
|
|
/// PointerTy is.
|
|
|
|
MVT::ValueType ShiftAmountTy;
|
|
|
|
|
|
|
|
OutOfRangeShiftAmount ShiftAmtHandling;
|
|
|
|
|
2005-05-12 02:02:21 +00:00
|
|
|
/// SetCCIsExpensive - This is a short term hack for targets that codegen
|
|
|
|
/// setcc as a conditional branch. This encourages the code generator to fold
|
|
|
|
/// setcc operations into other operations if possible.
|
|
|
|
bool SetCCIsExpensive;
|
|
|
|
|
2005-01-19 03:36:03 +00:00
|
|
|
/// SetCCResultTy - The type that SetCC operations use. This defaults to the
|
|
|
|
/// PointerTy.
|
|
|
|
MVT::ValueType SetCCResultTy;
|
|
|
|
|
2005-04-07 19:41:18 +00:00
|
|
|
/// SetCCResultContents - Information about the contents of the high-bits in
|
|
|
|
/// the result of a setcc comparison operation.
|
|
|
|
SetCCResultValue SetCCResultContents;
|
|
|
|
|
2005-01-19 03:36:03 +00:00
|
|
|
/// RegClassForVT - This indicates the default register class to use for
|
|
|
|
/// each ValueType the target supports natively.
|
|
|
|
TargetRegisterClass *RegClassForVT[MVT::LAST_VALUETYPE];
|
|
|
|
unsigned char NumElementsForVT[MVT::LAST_VALUETYPE];
|
|
|
|
|
|
|
|
/// ValueTypeActions - This is a bitvector that contains two bits for each
|
|
|
|
/// value type, where the two bits correspond to the LegalizeAction enum.
|
|
|
|
/// This can be queried with "getTypeAction(VT)".
|
|
|
|
unsigned ValueTypeActions;
|
2005-04-21 20:59:05 +00:00
|
|
|
|
2005-01-19 03:36:03 +00:00
|
|
|
/// TransformToType - For any value types we are promoting or expanding, this
|
|
|
|
/// contains the value type that we are changing to. For Expanded types, this
|
|
|
|
/// contains one step of the expand (e.g. i64 -> i32), even if there are
|
|
|
|
/// multiple steps required (e.g. i64 -> i16). For types natively supported
|
|
|
|
/// by the system, this holds the same type (e.g. i32 -> i32).
|
|
|
|
MVT::ValueType TransformToType[MVT::LAST_VALUETYPE];
|
|
|
|
|
|
|
|
/// OpActions - For each operation and each value type, keep a LegalizeAction
|
|
|
|
/// that indicates how instruction selection should deal with the operation.
|
|
|
|
/// Most operations are Legal (aka, supported natively by the target), but
|
|
|
|
/// operations that are not should be described. Note that operations on
|
|
|
|
/// non-legal value types are not described here.
|
|
|
|
unsigned OpActions[128];
|
2005-04-21 20:59:05 +00:00
|
|
|
|
2005-01-19 03:36:03 +00:00
|
|
|
std::vector<double> LegalFPImmediates;
|
2005-04-21 20:59:05 +00:00
|
|
|
|
2005-01-19 03:36:03 +00:00
|
|
|
std::vector<std::pair<MVT::ValueType,
|
|
|
|
TargetRegisterClass*> > AvailableRegClasses;
|
2005-01-07 07:44:22 +00:00
|
|
|
};
|
|
|
|
} // end llvm namespace
|
|
|
|
|
|
|
|
#endif
|