blob: 59edf6e02999251aaf538bac9925810f1af1b464 [file] [log] [blame]
Chris Lattner556d89d2003-08-01 22:19:03 +00001//===-- SparcV9CodeEmitter.cpp --------------------------------------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Misha Brukmana9f7f6e2003-05-30 20:17:33 +00009//
Brian Gaeke42960882003-10-13 19:51:20 +000010// SPARC-specific backend for emitting machine code to memory.
11//
12// This module also contains the code for lazily resolving the targets
13// of call instructions, including the callback used to redirect calls
14// to functions for which the code has not yet been generated into the
15// JIT compiler.
16//
17// This file #includes SparcV9CodeEmitter.inc, which contains the code
18// for getBinaryCodeForInstr(), a method that converts a MachineInstr
19// into the corresponding binary machine code word.
Misha Brukmana9f7f6e2003-05-30 20:17:33 +000020//
21//===----------------------------------------------------------------------===//
22
Misha Brukmanf86aaa82003-06-02 04:12:39 +000023#include "llvm/Constants.h"
24#include "llvm/Function.h"
25#include "llvm/GlobalVariable.h"
Misha Brukman3de36f52003-05-27 20:07:58 +000026#include "llvm/PassManager.h"
27#include "llvm/CodeGen/MachineCodeEmitter.h"
Misha Brukmana2196c12003-06-04 20:01:13 +000028#include "llvm/CodeGen/MachineConstantPool.h"
Misha Brukman3de36f52003-05-27 20:07:58 +000029#include "llvm/CodeGen/MachineFunctionPass.h"
30#include "llvm/CodeGen/MachineInstr.h"
Misha Brukmana9f7f6e2003-05-30 20:17:33 +000031#include "llvm/Target/TargetMachine.h"
Misha Brukmanf86aaa82003-06-02 04:12:39 +000032#include "llvm/Target/TargetData.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000033#include "llvm/Support/Debug.h"
Brian Gaekee3d68072004-02-25 18:44:15 +000034#include "SparcV9Internals.h"
35#include "SparcV9TargetMachine.h"
36#include "SparcV9RegInfo.h"
Misha Brukman0cc640e2003-05-27 21:45:05 +000037#include "SparcV9CodeEmitter.h"
Chris Lattner54a4d6a32004-11-22 20:25:10 +000038#include "SparcV9Relocations.h"
Chris Lattner85015a02004-08-16 21:55:02 +000039#include "MachineFunctionInfo.h"
Chris Lattner54a4d6a32004-11-22 20:25:10 +000040using namespace llvm;
Misha Brukman103f0c32003-09-05 22:59:31 +000041
Brian Gaekee3d68072004-02-25 18:44:15 +000042bool SparcV9TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
Misha Brukman7a750e12004-08-04 21:48:00 +000043 MachineCodeEmitter &MCE) {
Brian Gaekeeb6c29b2004-07-27 19:37:37 +000044 PM.add(new SparcV9CodeEmitter(*this, MCE));
Misha Brukman7a750e12004-08-04 21:48:00 +000045 PM.add(createSparcV9MachineCodeDestructionPass());
Misha Brukman3de36f52003-05-27 20:07:58 +000046 return false;
47}
48
Misha Brukmana2196c12003-06-04 20:01:13 +000049SparcV9CodeEmitter::SparcV9CodeEmitter(TargetMachine &tm,
Chris Lattner54a4d6a32004-11-22 20:25:10 +000050 MachineCodeEmitter &M): TM(tm), MCE(M) {}
Misha Brukmana2196c12003-06-04 20:01:13 +000051
52void SparcV9CodeEmitter::emitWord(unsigned Val) {
Brian Gaeke62c6f872004-04-23 17:11:15 +000053 MCE.emitWord(Val);
Misha Brukmana9f7f6e2003-05-30 20:17:33 +000054}
55
Misha Brukmanf47d9c22003-06-05 20:52:06 +000056unsigned
Misha Brukman173e2502003-07-14 23:26:03 +000057SparcV9CodeEmitter::getRealRegNum(unsigned fakeReg,
Misha Brukmanfad49292003-08-15 00:26:50 +000058 MachineInstr &MI) {
Brian Gaeke498231b2004-06-03 02:45:09 +000059 const SparcV9RegInfo &RI = *TM.getRegInfo();
Misha Brukman173e2502003-07-14 23:26:03 +000060 unsigned regClass, regType = RI.getRegType(fakeReg);
61 // At least map fakeReg into its class
62 fakeReg = RI.getClassRegNum(fakeReg, regClass);
63
Misha Brukman9cedd432003-07-03 18:36:47 +000064 switch (regClass) {
Brian Gaekee3d68072004-02-25 18:44:15 +000065 case SparcV9RegInfo::IntRegClassID: {
66 // SparcV9 manual, p31
Misha Brukman9cedd432003-07-03 18:36:47 +000067 static const unsigned IntRegMap[] = {
68 // "o0", "o1", "o2", "o3", "o4", "o5", "o7",
69 8, 9, 10, 11, 12, 13, 15,
70 // "l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7",
71 16, 17, 18, 19, 20, 21, 22, 23,
72 // "i0", "i1", "i2", "i3", "i4", "i5", "i6", "i7",
73 24, 25, 26, 27, 28, 29, 30, 31,
74 // "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
75 0, 1, 2, 3, 4, 5, 6, 7,
76 // "o6"
77 14
78 };
79
80 return IntRegMap[fakeReg];
81 break;
82 }
Brian Gaekee3d68072004-02-25 18:44:15 +000083 case SparcV9RegInfo::FloatRegClassID: {
Misha Brukman9cedd432003-07-03 18:36:47 +000084 DEBUG(std::cerr << "FP reg: " << fakeReg << "\n");
Brian Gaekee3d68072004-02-25 18:44:15 +000085 if (regType == SparcV9RegInfo::FPSingleRegType) {
Misha Brukman173e2502003-07-14 23:26:03 +000086 // only numbered 0-31, hence can already fit into 5 bits (and 6)
87 DEBUG(std::cerr << "FP single reg, returning: " << fakeReg << "\n");
Brian Gaekee3d68072004-02-25 18:44:15 +000088 } else if (regType == SparcV9RegInfo::FPDoubleRegType) {
Misha Brukmancf00c4a2003-10-10 17:57:28 +000089 // FIXME: This assumes that we only have 5-bit register fields!
Brian Gaekee3d68072004-02-25 18:44:15 +000090 // From SparcV9 Manual, page 40.
Misha Brukman173e2502003-07-14 23:26:03 +000091 // The bit layout becomes: b[4], b[3], b[2], b[1], b[5]
92 fakeReg |= (fakeReg >> 5) & 1;
93 fakeReg &= 0x1f;
94 DEBUG(std::cerr << "FP double reg, returning: " << fakeReg << "\n");
95 }
Misha Brukman9cedd432003-07-03 18:36:47 +000096 return fakeReg;
97 }
Brian Gaekee3d68072004-02-25 18:44:15 +000098 case SparcV9RegInfo::IntCCRegClassID: {
Misha Brukmandfbfc572003-07-16 20:30:40 +000099 /* xcc, icc, ccr */
100 static const unsigned IntCCReg[] = { 6, 4, 2 };
Misha Brukman9cedd432003-07-03 18:36:47 +0000101
Misha Brukmandfbfc572003-07-16 20:30:40 +0000102 assert(fakeReg < sizeof(IntCCReg)/sizeof(IntCCReg[0])
103 && "CC register out of bounds for IntCCReg map");
104 DEBUG(std::cerr << "IntCC reg: " << IntCCReg[fakeReg] << "\n");
105 return IntCCReg[fakeReg];
Misha Brukman9cedd432003-07-03 18:36:47 +0000106 }
Brian Gaekee3d68072004-02-25 18:44:15 +0000107 case SparcV9RegInfo::FloatCCRegClassID: {
Misha Brukman9cedd432003-07-03 18:36:47 +0000108 /* These are laid out %fcc0 - %fcc3 => 0 - 3, so are correct */
109 DEBUG(std::cerr << "FP CC reg: " << fakeReg << "\n");
110 return fakeReg;
111 }
Brian Gaeke7fa84b72004-06-09 21:54:59 +0000112 case SparcV9RegInfo::SpecialRegClassID: {
113 // Currently only "special" reg is %fsr, which is encoded as 1 in
114 // instructions and 0 in SparcV9SpecialRegClass.
115 static const unsigned SpecialReg[] = { 1 };
116 assert(fakeReg < sizeof(SpecialReg)/sizeof(SpecialReg[0])
117 && "Special register out of bounds for SpecialReg map");
118 DEBUG(std::cerr << "Special reg: " << SpecialReg[fakeReg] << "\n");
119 return SpecialReg[fakeReg];
120 }
Misha Brukman9cedd432003-07-03 18:36:47 +0000121 default:
Brian Gaekee8a6bee2004-06-09 20:44:42 +0000122 assert(0 && "Invalid unified register number in getRealRegNum");
Misha Brukman9cedd432003-07-03 18:36:47 +0000123 return fakeReg;
124 }
125}
126
127
Misha Brukman07d45162003-07-15 19:09:43 +0000128
Misha Brukmana9f7f6e2003-05-30 20:17:33 +0000129int64_t SparcV9CodeEmitter::getMachineOpValue(MachineInstr &MI,
130 MachineOperand &MO) {
Brian Gaekec3eaa892003-06-02 02:13:26 +0000131 int64_t rv = 0; // Return value; defaults to 0 for unhandled cases
132 // or things that get fixed up later by the JIT.
Chris Lattner54a4d6a32004-11-22 20:25:10 +0000133 if (MO.isPCRelativeDisp() || MO.isGlobalAddress()) {
Misha Brukman8f122222003-06-06 00:26:11 +0000134 DEBUG(std::cerr << "PCRelativeDisp: ");
Misha Brukmaneaaf8ad2003-06-02 05:24:46 +0000135 Value *V = MO.getVRegValue();
136 if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Misha Brukman8f122222003-06-06 00:26:11 +0000137 DEBUG(std::cerr << "Saving reference to BB (VReg)\n");
Misha Brukmana2196c12003-06-04 20:01:13 +0000138 unsigned* CurrPC = (unsigned*)(intptr_t)MCE.getCurrentPCValue();
Misha Brukmaneaaf8ad2003-06-02 05:24:46 +0000139 BBRefs.push_back(std::make_pair(BB, std::make_pair(CurrPC, &MI)));
Brian Gaekea9004522004-05-19 21:30:01 +0000140 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Brian Gaekeceabd972004-05-20 07:43:40 +0000141 // The real target of the branch is CI = PC + (rv * 4)
142 // So undo that: give the instruction (CI - PC) / 4
143 rv = (CI->getRawValue() - MCE.getCurrentPCValue()) / 4;
Misha Brukmana2196c12003-06-04 20:01:13 +0000144 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Chris Lattner54a4d6a32004-11-22 20:25:10 +0000145 unsigned Reloc;
Misha Brukmana2196c12003-06-04 20:01:13 +0000146 if (MI.getOpcode() == V9::CALL) {
Chris Lattner54a4d6a32004-11-22 20:25:10 +0000147 Reloc = V9::reloc_pcrel_call;
Chris Lattner54a4d6a32004-11-22 20:25:10 +0000148 } else if (MI.getOpcode() == V9::SETHI) {
149 if (MO.isHiBits64())
150 Reloc = V9::reloc_sethi_hh;
151 else if (MO.isHiBits32())
152 Reloc = V9::reloc_sethi_lm;
153 else
154 assert(0 && "Unknown relocation!");
155 } else if (MI.getOpcode() == V9::ORi) {
156 if (MO.isLoBits32())
157 Reloc = V9::reloc_or_lo;
158 else if (MO.isLoBits64())
159 Reloc = V9::reloc_or_hm;
160 else
161 assert(0 && "Unknown relocation!");
162 } else {
163 assert(0 && "Unknown relocation!");
Misha Brukmana2196c12003-06-04 20:01:13 +0000164 }
Chris Lattner54a4d6a32004-11-22 20:25:10 +0000165
Chris Lattner2eeda6e2004-11-22 21:42:40 +0000166 MCE.addRelocation(MachineRelocation(MCE.getCurrentPCOffset(), Reloc, GV));
Chris Lattner54a4d6a32004-11-22 20:25:10 +0000167 rv = 0;
Misha Brukmaneaaf8ad2003-06-02 05:24:46 +0000168 } else {
169 std::cerr << "ERROR: PC relative disp unhandled:" << MO << "\n";
170 abort();
171 }
Alkis Evlogimenosaf862112004-02-11 05:55:00 +0000172 } else if (MO.isRegister() || MO.getType() == MachineOperand::MO_CCRegister)
Misha Brukmanf47d9c22003-06-05 20:52:06 +0000173 {
Brian Gaekee3d68072004-02-25 18:44:15 +0000174 // This is necessary because the SparcV9 backend doesn't actually lay out
Misha Brukman9cedd432003-07-03 18:36:47 +0000175 // registers in the real fashion -- it skips those that it chooses not to
176 // allocate, i.e. those that are the FP, SP, etc.
Alkis Evlogimenosbe766c72004-02-13 21:01:20 +0000177 unsigned fakeReg = MO.getReg();
Misha Brukman173e2502003-07-14 23:26:03 +0000178 unsigned realRegByClass = getRealRegNum(fakeReg, MI);
179 DEBUG(std::cerr << MO << ": Reg[" << std::dec << fakeReg << "] => "
Misha Brukmandfbfc572003-07-16 20:30:40 +0000180 << realRegByClass << " (LLC: "
Chris Lattnerd029cd22004-06-02 05:55:25 +0000181 << TM.getRegInfo()->getUnifiedRegName(fakeReg) << ")\n");
Misha Brukman9cedd432003-07-03 18:36:47 +0000182 rv = realRegByClass;
Misha Brukman3de36f52003-05-27 20:07:58 +0000183 } else if (MO.isImmediate()) {
Brian Gaekec3eaa892003-06-02 02:13:26 +0000184 rv = MO.getImmedValue();
Misha Brukman8f122222003-06-06 00:26:11 +0000185 DEBUG(std::cerr << "immed: " << rv << "\n");
Misha Brukmana9f7f6e2003-05-30 20:17:33 +0000186 } else if (MO.isMachineBasicBlock()) {
Misha Brukmaneaaf8ad2003-06-02 05:24:46 +0000187 // Duplicate code of the above case for VirtualRegister, BasicBlock...
Brian Gaekee3d68072004-02-25 18:44:15 +0000188 // It should really hit this case, but SparcV9 backend uses VRegs instead
Misha Brukman8f122222003-06-06 00:26:11 +0000189 DEBUG(std::cerr << "Saving reference to MBB\n");
Chris Lattner6856d112003-07-26 23:04:00 +0000190 const BasicBlock *BB = MO.getMachineBasicBlock()->getBasicBlock();
Misha Brukmana2196c12003-06-04 20:01:13 +0000191 unsigned* CurrPC = (unsigned*)(intptr_t)MCE.getCurrentPCValue();
Misha Brukmaneaaf8ad2003-06-02 05:24:46 +0000192 BBRefs.push_back(std::make_pair(BB, std::make_pair(CurrPC, &MI)));
Misha Brukmana9f7f6e2003-05-30 20:17:33 +0000193 } else if (MO.isExternalSymbol()) {
Brian Gaekee3d68072004-02-25 18:44:15 +0000194 // SparcV9 backend doesn't generate this (yet...)
Misha Brukmaneaaf8ad2003-06-02 05:24:46 +0000195 std::cerr << "ERROR: External symbol unhandled: " << MO << "\n";
196 abort();
197 } else if (MO.isFrameIndex()) {
Brian Gaekee3d68072004-02-25 18:44:15 +0000198 // SparcV9 backend doesn't generate this (yet...)
Misha Brukmaneaaf8ad2003-06-02 05:24:46 +0000199 int FrameIndex = MO.getFrameIndex();
200 std::cerr << "ERROR: Frame index unhandled.\n";
201 abort();
202 } else if (MO.isConstantPoolIndex()) {
Misha Brukmane5ad8152003-11-07 18:06:26 +0000203 unsigned Index = MO.getConstantPoolIndex();
204 rv = MCE.getConstantPoolEntryAddress(Index);
Misha Brukman3de36f52003-05-27 20:07:58 +0000205 } else {
Misha Brukmana9f7f6e2003-05-30 20:17:33 +0000206 std::cerr << "ERROR: Unknown type of MachineOperand: " << MO << "\n";
Misha Brukmaneaaf8ad2003-06-02 05:24:46 +0000207 abort();
Brian Gaekec3eaa892003-06-02 02:13:26 +0000208 }
209
210 // Finally, deal with the various bitfield-extracting functions that
211 // are used in SPARC assembly. (Some of these make no sense in combination
212 // with some of the above; we'll trust that the instruction selector
213 // will not produce nonsense, and not check for valid combinations here.)
Brian Gaekee3d68072004-02-25 18:44:15 +0000214 if (MO.isLoBits32()) { // %lo(val) == %lo() in SparcV9 ABI doc
Brian Gaekec3eaa892003-06-02 02:13:26 +0000215 return rv & 0x03ff;
Brian Gaekee3d68072004-02-25 18:44:15 +0000216 } else if (MO.isHiBits32()) { // %lm(val) == %hi() in SparcV9 ABI doc
Brian Gaekec3eaa892003-06-02 02:13:26 +0000217 return (rv >> 10) & 0x03fffff;
Brian Gaekee3d68072004-02-25 18:44:15 +0000218 } else if (MO.isLoBits64()) { // %hm(val) == %ulo() in SparcV9 ABI doc
Brian Gaekec3eaa892003-06-02 02:13:26 +0000219 return (rv >> 32) & 0x03ff;
Brian Gaekee3d68072004-02-25 18:44:15 +0000220 } else if (MO.isHiBits64()) { // %hh(val) == %uhi() in SparcV9 ABI doc
Brian Gaekec3eaa892003-06-02 02:13:26 +0000221 return rv >> 42;
222 } else { // (unadorned) val
223 return rv;
Misha Brukman3de36f52003-05-27 20:07:58 +0000224 }
225}
226
227unsigned SparcV9CodeEmitter::getValueBit(int64_t Val, unsigned bit) {
228 Val >>= bit;
229 return (Val & 1);
230}
231
Misha Brukman3de36f52003-05-27 20:07:58 +0000232bool SparcV9CodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Misha Brukmana2196c12003-06-04 20:01:13 +0000233 MCE.startFunction(MF);
Misha Brukman8f122222003-06-06 00:26:11 +0000234 DEBUG(std::cerr << "Starting function " << MF.getFunction()->getName()
Misha Brukmanf86aaa82003-06-02 04:12:39 +0000235 << ", address: " << "0x" << std::hex
Misha Brukman8f122222003-06-06 00:26:11 +0000236 << (long)MCE.getCurrentPCValue() << "\n");
Misha Brukmanf86aaa82003-06-02 04:12:39 +0000237
Misha Brukmane5ad8152003-11-07 18:06:26 +0000238 MCE.emitConstantPool(MF.getConstantPool());
Misha Brukman3de36f52003-05-27 20:07:58 +0000239 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
240 emitBasicBlock(*I);
Misha Brukmana2196c12003-06-04 20:01:13 +0000241 MCE.finishFunction(MF);
Misha Brukmanf86aaa82003-06-02 04:12:39 +0000242
Misha Brukman9cedd432003-07-03 18:36:47 +0000243 DEBUG(std::cerr << "Finishing fn " << MF.getFunction()->getName() << "\n");
Misha Brukmanf86aaa82003-06-02 04:12:39 +0000244
245 // Resolve branches to BasicBlocks for the entire function
246 for (unsigned i = 0, e = BBRefs.size(); i != e; ++i) {
247 long Location = BBLocations[BBRefs[i].first];
248 unsigned *Ref = BBRefs[i].second.first;
249 MachineInstr *MI = BBRefs[i].second.second;
Misha Brukman9cedd432003-07-03 18:36:47 +0000250 DEBUG(std::cerr << "Fixup @ " << std::hex << Ref << " to 0x" << Location
251 << " in instr: " << std::dec << *MI);
Misha Brukmanf86aaa82003-06-02 04:12:39 +0000252 for (unsigned ii = 0, ee = MI->getNumOperands(); ii != ee; ++ii) {
253 MachineOperand &op = MI->getOperand(ii);
254 if (op.isPCRelativeDisp()) {
255 // the instruction's branch target is made such that it branches to
Misha Brukman9cedd432003-07-03 18:36:47 +0000256 // PC + (branchTarget * 4), so undo that arithmetic here:
Misha Brukmanf86aaa82003-06-02 04:12:39 +0000257 // Location is the target of the branch
258 // Ref is the location of the instruction, and hence the PC
Misha Brukman9cedd432003-07-03 18:36:47 +0000259 int64_t branchTarget = (Location - (long)Ref) >> 2;
Misha Brukmanf86aaa82003-06-02 04:12:39 +0000260 // Save the flags.
261 bool loBits32=false, hiBits32=false, loBits64=false, hiBits64=false;
Alkis Evlogimenos4d7af652003-12-14 13:24:17 +0000262 if (op.isLoBits32()) { loBits32=true; }
263 if (op.isHiBits32()) { hiBits32=true; }
264 if (op.isLoBits64()) { loBits64=true; }
265 if (op.isHiBits64()) { hiBits64=true; }
Misha Brukmanf86aaa82003-06-02 04:12:39 +0000266 MI->SetMachineOperandConst(ii, MachineOperand::MO_SignExtendedImmed,
267 branchTarget);
Chris Lattnerf4fc36e2004-07-19 07:52:35 +0000268 if (loBits32) { MI->getOperand(ii).markLo32(); }
269 else if (hiBits32) { MI->getOperand(ii).markHi32(); }
270 else if (loBits64) { MI->getOperand(ii).markLo64(); }
271 else if (hiBits64) { MI->getOperand(ii).markHi64(); }
Misha Brukman8f122222003-06-06 00:26:11 +0000272 DEBUG(std::cerr << "Rewrote BB ref: ");
Misha Brukmanf86aaa82003-06-02 04:12:39 +0000273 unsigned fixedInstr = SparcV9CodeEmitter::getBinaryCodeForInstr(*MI);
Brian Gaeke62c6f872004-04-23 17:11:15 +0000274 MCE.emitWordAt (fixedInstr, Ref);
Misha Brukmanf86aaa82003-06-02 04:12:39 +0000275 break;
276 }
277 }
278 }
279 BBRefs.clear();
280 BBLocations.clear();
281
Misha Brukman3de36f52003-05-27 20:07:58 +0000282 return false;
283}
284
285void SparcV9CodeEmitter::emitBasicBlock(MachineBasicBlock &MBB) {
Misha Brukman0d603452003-05-27 22:41:44 +0000286 currBB = MBB.getBasicBlock();
Misha Brukmana2196c12003-06-04 20:01:13 +0000287 BBLocations[currBB] = MCE.getCurrentPCValue();
Chris Lattner54a4d6a32004-11-22 20:25:10 +0000288 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end(); I != E; ++I)
Chris Lattnerbefc3742004-11-22 21:25:10 +0000289 if (I->getOpcode() != V9::RDCCR) {
290 emitWord(getBinaryCodeForInstr(*I));
291 } else {
292 // FIXME: The tblgen produced code emitter cannot deal with the fact that
293 // machine operand #0 of the RDCCR instruction should be ignored. This is
294 // really a bug in the representation of the RDCCR instruction (which has
295 // no need to explicitly represent the CCR dest), but we hack around it
296 // here.
297 unsigned RegNo = getMachineOpValue(*I, I->getOperand(1));
298 RegNo &= (1<<5)-1;
299 emitWord((RegNo << 25) | 2168487936U);
300 }
Misha Brukman3de36f52003-05-27 20:07:58 +0000301}
302
Misha Brukmanc6b15842003-11-13 00:23:05 +0000303#include "SparcV9CodeEmitter.inc"
Brian Gaeked0fde302003-11-11 22:41:34 +0000304