blob: bfdc2c62dce1aeff3b2b2c11fe4251ec866e38c3 [file] [log] [blame]
Chris Lattnerc860eca2004-08-01 05:04:00 +00001//===- CodeGenInstruction.h - Instruction Class Wrapper ---------*- C++ -*-===//
Misha Brukman650ba8e2005-04-22 00:00:37 +00002//
Chris Lattnerc860eca2004-08-01 05:04:00 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner8adcd9f2007-12-29 20:37:13 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman650ba8e2005-04-22 00:00:37 +00007//
Chris Lattnerc860eca2004-08-01 05:04:00 +00008//===----------------------------------------------------------------------===//
9//
10// This file defines a wrapper class for the 'Instruction' TableGen class.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_UTILS_TABLEGEN_CODEGENINSTRUCTION_H
15#define LLVM_UTILS_TABLEGEN_CODEGENINSTRUCTION_H
Chris Lattnerc860eca2004-08-01 05:04:00 +000016
Craig Topperf7ce7242015-06-08 01:35:40 +000017#include "llvm/ADT/ArrayRef.h"
Chris Lattner8ffd1292010-11-06 06:39:47 +000018#include "llvm/ADT/StringRef.h"
Patrik Hagglund8d09a6c2014-03-15 09:11:41 +000019#include "llvm/CodeGen/MachineValueType.h"
Craig Topperf7ce7242015-06-08 01:35:40 +000020#include "llvm/Support/SMLoc.h"
Chris Lattnerc860eca2004-08-01 05:04:00 +000021#include <string>
Chris Lattnerc860eca2004-08-01 05:04:00 +000022#include <utility>
Chandler Carruth91d19d82012-12-04 10:37:14 +000023#include <vector>
Chris Lattnerc860eca2004-08-01 05:04:00 +000024
25namespace llvm {
26 class Record;
Chris Lattner6bc03042005-11-19 07:05:57 +000027 class DagInit;
Chris Lattner7bc5d9b2010-03-27 20:09:24 +000028 class CodeGenTarget;
Chris Lattner25d9c7f2010-11-01 01:07:14 +000029 class StringRef;
Jim Grosbach876ee072011-03-14 17:32:49 +000030
Chris Lattnerd8adec72010-11-01 04:03:32 +000031 class CGIOperandList {
Jeff Cohen7d6f3db2006-11-05 19:31:28 +000032 public:
Chris Lattnera9dfb1b2010-02-10 01:45:28 +000033 class ConstraintInfo {
34 enum { None, EarlyClobber, Tied } Kind;
35 unsigned OtherTiedOperand;
36 public:
37 ConstraintInfo() : Kind(None) {}
Jim Grosbach876ee072011-03-14 17:32:49 +000038
Chris Lattnera9dfb1b2010-02-10 01:45:28 +000039 static ConstraintInfo getEarlyClobber() {
40 ConstraintInfo I;
41 I.Kind = EarlyClobber;
Chris Lattner0d7b5e52010-02-10 21:22:51 +000042 I.OtherTiedOperand = 0;
Chris Lattnera9dfb1b2010-02-10 01:45:28 +000043 return I;
44 }
Jim Grosbach876ee072011-03-14 17:32:49 +000045
Chris Lattnera9dfb1b2010-02-10 01:45:28 +000046 static ConstraintInfo getTied(unsigned Op) {
47 ConstraintInfo I;
48 I.Kind = Tied;
49 I.OtherTiedOperand = Op;
50 return I;
51 }
Jim Grosbach876ee072011-03-14 17:32:49 +000052
Chris Lattnera9dfb1b2010-02-10 01:45:28 +000053 bool isNone() const { return Kind == None; }
54 bool isEarlyClobber() const { return Kind == EarlyClobber; }
55 bool isTied() const { return Kind == Tied; }
Jim Grosbach876ee072011-03-14 17:32:49 +000056
Chris Lattnera9dfb1b2010-02-10 01:45:28 +000057 unsigned getTiedOperand() const {
58 assert(isTied());
59 return OtherTiedOperand;
60 }
61 };
Jim Grosbach2f0be8f2010-10-08 18:09:59 +000062
Chris Lattner3bc477a2004-08-11 02:22:39 +000063 /// OperandInfo - The information we keep track of for each operand in the
64 /// operand list for a tablegen instruction.
Chris Lattner55726822004-08-01 07:42:39 +000065 struct OperandInfo {
Chris Lattner3bc477a2004-08-11 02:22:39 +000066 /// Rec - The definition this operand is declared as.
Chris Lattner220d0012005-08-19 16:57:28 +000067 ///
Chris Lattner55726822004-08-01 07:42:39 +000068 Record *Rec;
Jim Grosbach876ee072011-03-14 17:32:49 +000069
Chris Lattner3bc477a2004-08-11 02:22:39 +000070 /// Name - If this operand was assigned a symbolic name, this is it,
71 /// otherwise, it's empty.
Chris Lattner55726822004-08-01 07:42:39 +000072 std::string Name;
Jim Grosbach876ee072011-03-14 17:32:49 +000073
Chris Lattner3bc477a2004-08-11 02:22:39 +000074 /// PrinterMethodName - The method used to print operands of this type in
75 /// the asmprinter.
76 std::string PrinterMethodName;
Jim Grosbach876ee072011-03-14 17:32:49 +000077
Jim Grosbach51a12eb2010-10-12 22:21:57 +000078 /// EncoderMethodName - The method used to get the machine operand value
79 /// for binary encoding. "getMachineOpValue" by default.
80 std::string EncoderMethodName;
Jim Grosbach876ee072011-03-14 17:32:49 +000081
Benjamin Kramerc8dc46b2011-07-14 21:47:18 +000082 /// OperandType - A value from MCOI::OperandType representing the type of
83 /// the operand.
84 std::string OperandType;
85
Chris Lattner3bc477a2004-08-11 02:22:39 +000086 /// MIOperandNo - Currently (this is meant to be phased out), some logical
87 /// operands correspond to multiple MachineInstr operands. In the X86
88 /// target for example, one address operand is represented as 4
89 /// MachineOperands. Because of this, the operand number in the
90 /// OperandList may not match the MachineInstr operand num. Until it
91 /// does, this contains the MI operand index of this operand.
92 unsigned MIOperandNo;
Chris Lattner17727ba2005-08-18 23:38:41 +000093 unsigned MINumOperands; // The number of operands.
Jim Grosbach876ee072011-03-14 17:32:49 +000094
Chris Lattner78a403f2006-11-15 23:23:02 +000095 /// DoNotEncode - Bools are set to true in this vector for each operand in
96 /// the DisableEncoding list. These should not be emitted by the code
97 /// emitter.
98 std::vector<bool> DoNotEncode;
Jim Grosbach876ee072011-03-14 17:32:49 +000099
Nate Begemane479ccb2005-11-30 23:58:18 +0000100 /// MIOperandInfo - Default MI operand type. Note an operand may be made
101 /// up of multiple MI operands.
David Greeneaf8ee2c2011-07-29 22:43:06 +0000102 DagInit *MIOperandInfo;
Jim Grosbach876ee072011-03-14 17:32:49 +0000103
Chris Lattnerc94f2142006-11-15 02:38:17 +0000104 /// Constraint info for this operand. This operand can have pieces, so we
105 /// track constraint info for each.
Chris Lattnera9dfb1b2010-02-10 01:45:28 +0000106 std::vector<ConstraintInfo> Constraints;
Jim Grosbach876ee072011-03-14 17:32:49 +0000107
Jim Grosbach2f0be8f2010-10-08 18:09:59 +0000108 OperandInfo(Record *R, const std::string &N, const std::string &PMN,
Benjamin Kramerc8dc46b2011-07-14 21:47:18 +0000109 const std::string &EMN, const std::string &OT, unsigned MION,
David Greeneaf8ee2c2011-07-29 22:43:06 +0000110 unsigned MINO, DagInit *MIOI)
Chris Lattnerd8adec72010-11-01 04:03:32 +0000111 : Rec(R), Name(N), PrinterMethodName(PMN), EncoderMethodName(EMN),
Benjamin Kramerc8dc46b2011-07-14 21:47:18 +0000112 OperandType(OT), MIOperandNo(MION), MINumOperands(MINO),
113 MIOperandInfo(MIOI) {}
Jim Grosbach876ee072011-03-14 17:32:49 +0000114
115
Chris Lattnere032dbf2010-11-02 22:55:03 +0000116 /// getTiedOperand - If this operand is tied to another one, return the
117 /// other operand number. Otherwise, return -1.
118 int getTiedRegister() const {
119 for (unsigned j = 0, e = Constraints.size(); j != e; ++j) {
120 const CGIOperandList::ConstraintInfo &CI = Constraints[j];
121 if (CI.isTied()) return CI.getTiedOperand();
122 }
123 return -1;
124 }
Chris Lattner55726822004-08-01 07:42:39 +0000125 };
Jim Grosbach876ee072011-03-14 17:32:49 +0000126
Chris Lattnerd8adec72010-11-01 04:03:32 +0000127 CGIOperandList(Record *D);
Jim Grosbach876ee072011-03-14 17:32:49 +0000128
Chris Lattnerd8adec72010-11-01 04:03:32 +0000129 Record *TheDef; // The actual record containing this OperandList.
Misha Brukman650ba8e2005-04-22 00:00:37 +0000130
Chris Lattner5f418ea2010-03-18 20:50:52 +0000131 /// NumDefs - Number of def operands declared, this is the number of
132 /// elements in the instruction's (outs) list.
Evan Cheng94b5a802007-07-19 01:14:50 +0000133 ///
134 unsigned NumDefs;
Jim Grosbach876ee072011-03-14 17:32:49 +0000135
Chris Lattnerc860eca2004-08-01 05:04:00 +0000136 /// OperandList - The list of declared operands, along with their declared
137 /// type (which is a record).
Chris Lattner55726822004-08-01 07:42:39 +0000138 std::vector<OperandInfo> OperandList;
Jim Grosbach876ee072011-03-14 17:32:49 +0000139
Chris Lattnerd8adec72010-11-01 04:03:32 +0000140 // Information gleaned from the operand list.
141 bool isPredicable;
142 bool hasOptionalDef;
143 bool isVariadic;
Jim Grosbach876ee072011-03-14 17:32:49 +0000144
Chris Lattnerd8adec72010-11-01 04:03:32 +0000145 // Provide transparent accessors to the operand list.
Chris Lattner90803912011-04-17 22:24:13 +0000146 bool empty() const { return OperandList.empty(); }
Chris Lattnerd8adec72010-11-01 04:03:32 +0000147 unsigned size() const { return OperandList.size(); }
148 const OperandInfo &operator[](unsigned i) const { return OperandList[i]; }
149 OperandInfo &operator[](unsigned i) { return OperandList[i]; }
150 OperandInfo &back() { return OperandList.back(); }
151 const OperandInfo &back() const { return OperandList.back(); }
Jim Grosbach876ee072011-03-14 17:32:49 +0000152
Jim Grosbach0e28a352014-04-18 02:08:58 +0000153 typedef std::vector<OperandInfo>::iterator iterator;
154 typedef std::vector<OperandInfo>::const_iterator const_iterator;
155 iterator begin() { return OperandList.begin(); }
156 const_iterator begin() const { return OperandList.begin(); }
157 iterator end() { return OperandList.end(); }
158 const_iterator end() const { return OperandList.end(); }
159
Chris Lattnerd8adec72010-11-01 04:03:32 +0000160 /// getOperandNamed - Return the index of the operand with the specified
161 /// non-empty name. If the instruction does not have an operand with the
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000162 /// specified name, abort.
Chris Lattnerd8adec72010-11-01 04:03:32 +0000163 unsigned getOperandNamed(StringRef Name) const;
Jim Grosbach876ee072011-03-14 17:32:49 +0000164
Chris Lattnerd8adec72010-11-01 04:03:32 +0000165 /// hasOperandNamed - Query whether the instruction has an operand of the
166 /// given name. If so, return true and set OpIdx to the index of the
167 /// operand. Otherwise, return false.
168 bool hasOperandNamed(StringRef Name, unsigned &OpIdx) const;
Jim Grosbach876ee072011-03-14 17:32:49 +0000169
Chris Lattnerd8adec72010-11-01 04:03:32 +0000170 /// ParseOperandName - Parse an operand name like "$foo" or "$foo.bar",
171 /// where $foo is a whole operand and $foo.bar refers to a suboperand.
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000172 /// This aborts if the name is invalid. If AllowWholeOp is true, references
173 /// to operands with suboperands are allowed, otherwise not.
Chris Lattnerd8adec72010-11-01 04:03:32 +0000174 std::pair<unsigned,unsigned> ParseOperandName(const std::string &Op,
175 bool AllowWholeOp = true);
Jim Grosbach876ee072011-03-14 17:32:49 +0000176
Chris Lattnerd8adec72010-11-01 04:03:32 +0000177 /// getFlattenedOperandNumber - Flatten a operand/suboperand pair into a
178 /// flat machineinstr operand #.
179 unsigned getFlattenedOperandNumber(std::pair<unsigned,unsigned> Op) const {
180 return OperandList[Op.first].MIOperandNo + Op.second;
181 }
Jim Grosbach876ee072011-03-14 17:32:49 +0000182
Chris Lattnerd8adec72010-11-01 04:03:32 +0000183 /// getSubOperandNumber - Unflatten a operand number into an
184 /// operand/suboperand pair.
185 std::pair<unsigned,unsigned> getSubOperandNumber(unsigned Op) const {
186 for (unsigned i = 0; ; ++i) {
187 assert(i < OperandList.size() && "Invalid flat operand #");
188 if (OperandList[i].MIOperandNo+OperandList[i].MINumOperands > Op)
189 return std::make_pair(i, Op-OperandList[i].MIOperandNo);
190 }
191 }
Jim Grosbach876ee072011-03-14 17:32:49 +0000192
193
Chris Lattnerd8adec72010-11-01 04:03:32 +0000194 /// isFlatOperandNotEmitted - Return true if the specified flat operand #
195 /// should not be emitted with the code emitter.
196 bool isFlatOperandNotEmitted(unsigned FlatOpNo) const {
197 std::pair<unsigned,unsigned> Op = getSubOperandNumber(FlatOpNo);
198 if (OperandList[Op.first].DoNotEncode.size() > Op.second)
199 return OperandList[Op.first].DoNotEncode[Op.second];
200 return false;
201 }
Jim Grosbach876ee072011-03-14 17:32:49 +0000202
Chris Lattnerd8adec72010-11-01 04:03:32 +0000203 void ProcessDisableEncoding(std::string Value);
204 };
Jim Grosbach876ee072011-03-14 17:32:49 +0000205
Chris Lattnerd8adec72010-11-01 04:03:32 +0000206
207 class CodeGenInstruction {
208 public:
209 Record *TheDef; // The actual record defining this instruction.
210 std::string Namespace; // The namespace the instruction is in.
211
212 /// AsmString - The format string used to emit a .s file for the
213 /// instruction.
214 std::string AsmString;
215
216 /// Operands - This is information about the (ins) and (outs) list specified
217 /// to the instruction.
218 CGIOperandList Operands;
Chris Lattnerc860eca2004-08-01 05:04:00 +0000219
Chris Lattner2130a3e2010-03-18 21:42:03 +0000220 /// ImplicitDefs/ImplicitUses - These are lists of registers that are
221 /// implicitly defined and used by the instruction.
222 std::vector<Record*> ImplicitDefs, ImplicitUses;
223
Chris Lattnerc860eca2004-08-01 05:04:00 +0000224 // Various boolean values we track for the instruction.
Craig Topperbc9486b2014-02-05 09:10:40 +0000225 bool isReturn : 1;
226 bool isBranch : 1;
227 bool isIndirectBranch : 1;
228 bool isCompare : 1;
229 bool isMoveImm : 1;
230 bool isBitcast : 1;
231 bool isSelect : 1;
232 bool isBarrier : 1;
233 bool isCall : 1;
234 bool canFoldAsLoad : 1;
235 bool mayLoad : 1;
236 bool mayLoad_Unset : 1;
237 bool mayStore : 1;
238 bool mayStore_Unset : 1;
239 bool isPredicable : 1;
240 bool isConvertibleToThreeAddress : 1;
241 bool isCommutable : 1;
242 bool isTerminator : 1;
243 bool isReMaterializable : 1;
244 bool hasDelaySlot : 1;
245 bool usesCustomInserter : 1;
246 bool hasPostISelHook : 1;
247 bool hasCtrlDep : 1;
248 bool isNotDuplicable : 1;
249 bool hasSideEffects : 1;
250 bool hasSideEffects_Unset : 1;
Craig Topperbc9486b2014-02-05 09:10:40 +0000251 bool isAsCheapAsAMove : 1;
252 bool hasExtraSrcRegAllocReq : 1;
253 bool hasExtraDefRegAllocReq : 1;
254 bool isCodeGenOnly : 1;
255 bool isPseudo : 1;
Quentin Colombetd533cdf2014-08-11 22:17:14 +0000256 bool isRegSequence : 1;
Quentin Colombet7e75cba2014-08-20 21:51:26 +0000257 bool isExtractSubreg : 1;
Quentin Colombet7e3da662014-08-20 23:49:36 +0000258 bool isInsertSubreg : 1;
Owen Andersonabaa5232015-05-28 18:33:39 +0000259 bool isConvergent : 1;
Matthias Braun8e0a7342016-03-01 20:03:11 +0000260 bool hasNoSchedulingInfo : 1;
Jim Grosbach2f0be8f2010-10-08 18:09:59 +0000261
Joey Gouly0e76fa72013-09-12 10:28:05 +0000262 std::string DeprecatedReason;
263 bool HasComplexDeprecationPredicate;
264
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +0000265 /// Are there any undefined flags?
266 bool hasUndefFlags() const {
267 return mayLoad_Unset || mayStore_Unset || hasSideEffects_Unset;
268 }
269
270 // The record used to infer instruction flags, or NULL if no flag values
271 // have been inferred.
272 Record *InferredFrom;
Chris Lattnerc860eca2004-08-01 05:04:00 +0000273
Chris Lattnera3977162010-11-01 02:15:23 +0000274 CodeGenInstruction(Record *R);
Chris Lattner55726822004-08-01 07:42:39 +0000275
Chris Lattner7bc5d9b2010-03-27 20:09:24 +0000276 /// HasOneImplicitDefWithKnownVT - If the instruction has at least one
277 /// implicit def and it has a known VT, return the VT, otherwise return
278 /// MVT::Other.
Jim Grosbach2f0be8f2010-10-08 18:09:59 +0000279 MVT::SimpleValueType
Chris Lattner7bc5d9b2010-03-27 20:09:24 +0000280 HasOneImplicitDefWithKnownVT(const CodeGenTarget &TargetInfo) const;
Jim Grosbach876ee072011-03-14 17:32:49 +0000281
282
Chris Lattner25d9c7f2010-11-01 01:07:14 +0000283 /// FlattenAsmStringVariants - Flatten the specified AsmString to only
284 /// include text from the specified variant, returning the new string.
285 static std::string FlattenAsmStringVariants(StringRef AsmString,
286 unsigned Variant);
Chris Lattnerc860eca2004-08-01 05:04:00 +0000287 };
Jim Grosbach876ee072011-03-14 17:32:49 +0000288
289
Chris Lattner488c2012010-11-01 04:05:41 +0000290 /// CodeGenInstAlias - This represents an InstAlias definition.
291 class CodeGenInstAlias {
292 public:
293 Record *TheDef; // The actual record defining this InstAlias.
Jim Grosbach876ee072011-03-14 17:32:49 +0000294
Chris Lattner488c2012010-11-01 04:05:41 +0000295 /// AsmString - The format string used to emit a .s file for the
296 /// instruction.
297 std::string AsmString;
Jim Grosbach876ee072011-03-14 17:32:49 +0000298
Chris Lattnerdd3b09c2010-11-01 05:34:34 +0000299 /// Result - The result instruction.
David Greeneaf8ee2c2011-07-29 22:43:06 +0000300 DagInit *Result;
Jim Grosbach876ee072011-03-14 17:32:49 +0000301
Chris Lattner8ffd1292010-11-06 06:39:47 +0000302 /// ResultInst - The instruction generated by the alias (decoded from
303 /// Result).
304 CodeGenInstruction *ResultInst;
Jim Grosbach876ee072011-03-14 17:32:49 +0000305
306
Chris Lattner8ffd1292010-11-06 06:39:47 +0000307 struct ResultOperand {
Chris Lattnerb6f8e822010-11-06 19:25:43 +0000308 private:
Owen Andersonda6bd3e2012-06-08 00:25:03 +0000309 std::string Name;
Chris Lattner8ffd1292010-11-06 06:39:47 +0000310 Record *R;
Jim Grosbach876ee072011-03-14 17:32:49 +0000311
Chris Lattnerb6f8e822010-11-06 19:25:43 +0000312 int64_t Imm;
Jim Grosbach876ee072011-03-14 17:32:49 +0000313 public:
Chris Lattnerb6f8e822010-11-06 19:25:43 +0000314 enum {
315 K_Record,
Chris Lattner4869d342010-11-06 19:57:21 +0000316 K_Imm,
317 K_Reg
Chris Lattnerb6f8e822010-11-06 19:25:43 +0000318 } Kind;
Jim Grosbach876ee072011-03-14 17:32:49 +0000319
Owen Andersonda6bd3e2012-06-08 00:25:03 +0000320 ResultOperand(std::string N, Record *r) : Name(N), R(r), Kind(K_Record) {}
Chris Lattnerb6f8e822010-11-06 19:25:43 +0000321 ResultOperand(int64_t I) : Imm(I), Kind(K_Imm) {}
Chris Lattner4869d342010-11-06 19:57:21 +0000322 ResultOperand(Record *r) : R(r), Kind(K_Reg) {}
Chris Lattnerb6f8e822010-11-06 19:25:43 +0000323
324 bool isRecord() const { return Kind == K_Record; }
325 bool isImm() const { return Kind == K_Imm; }
Chris Lattner4869d342010-11-06 19:57:21 +0000326 bool isReg() const { return Kind == K_Reg; }
Jim Grosbach876ee072011-03-14 17:32:49 +0000327
Chris Lattnerb6f8e822010-11-06 19:25:43 +0000328 StringRef getName() const { assert(isRecord()); return Name; }
329 Record *getRecord() const { assert(isRecord()); return R; }
330 int64_t getImm() const { assert(isImm()); return Imm; }
Chris Lattner4869d342010-11-06 19:57:21 +0000331 Record *getRegister() const { assert(isReg()); return R; }
Tim Northover60091cf2014-05-15 13:36:01 +0000332
333 unsigned getMINumOperands() const;
Chris Lattner8ffd1292010-11-06 06:39:47 +0000334 };
Jim Grosbach876ee072011-03-14 17:32:49 +0000335
Chris Lattner8ffd1292010-11-06 06:39:47 +0000336 /// ResultOperands - The decoded operands for the result instruction.
337 std::vector<ResultOperand> ResultOperands;
Bob Wilsonf3f28352011-01-20 18:38:02 +0000338
Bob Wilsonb9b24222011-01-26 19:44:55 +0000339 /// ResultInstOperandIndex - For each operand, this vector holds a pair of
340 /// indices to identify the corresponding operand in the result
341 /// instruction. The first index specifies the operand and the second
342 /// index specifies the suboperand. If there are no suboperands or if all
343 /// of them are matched by the operand, the second value should be -1.
344 std::vector<std::pair<unsigned, int> > ResultInstOperandIndex;
Jim Grosbach876ee072011-03-14 17:32:49 +0000345
Tim Northoverd8d65a62014-05-15 11:16:32 +0000346 CodeGenInstAlias(Record *R, unsigned Variant, CodeGenTarget &T);
Bob Wilsonb9b24222011-01-26 19:44:55 +0000347
David Greeneaf8ee2c2011-07-29 22:43:06 +0000348 bool tryAliasOpMatch(DagInit *Result, unsigned AliasOpNo,
Jakob Stoklund Olesend7b66962012-08-22 23:33:58 +0000349 Record *InstOpRec, bool hasSubOps, ArrayRef<SMLoc> Loc,
Bob Wilsonb9b24222011-01-26 19:44:55 +0000350 CodeGenTarget &T, ResultOperand &ResOp);
Jim Grosbach876ee072011-03-14 17:32:49 +0000351 };
Chris Lattner488c2012010-11-01 04:05:41 +0000352}
Chris Lattnerc860eca2004-08-01 05:04:00 +0000353
354#endif