blob: eb6553d53b58c102683ca1e188e45adee24ab527 [file] [log] [blame]
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +00001//===-- llvm/CodeGen/VirtRegMap.cpp - Virtual Register Map ----------------===//
2//
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//===----------------------------------------------------------------------===//
9//
Chris Lattner8c4d88d2004-09-30 01:54:45 +000010// This file implements the VirtRegMap class.
11//
12// It also contains implementations of the the Spiller interface, which, given a
13// virtual register map and a machine function, eliminates all virtual
14// references by replacing them with physical register references - adding spill
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +000015// code as necessary.
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000016//
17//===----------------------------------------------------------------------===//
18
Chris Lattner8c4d88d2004-09-30 01:54:45 +000019#define DEBUG_TYPE "spiller"
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000020#include "VirtRegMap.h"
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +000021#include "llvm/Function.h"
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner8c4d88d2004-09-30 01:54:45 +000023#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/SSARegMap.h"
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000025#include "llvm/Target/TargetMachine.h"
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +000026#include "llvm/Target/TargetInstrInfo.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000027#include "llvm/Support/CommandLine.h"
28#include "llvm/Support/Debug.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000029#include "llvm/ADT/Statistic.h"
30#include "llvm/ADT/STLExtras.h"
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000031using namespace llvm;
32
33namespace {
Chris Lattner8c4d88d2004-09-30 01:54:45 +000034 Statistic<> NumSpills("spiller", "Number of register spills");
35 Statistic<> NumStores("spiller", "Number of stores added");
36 Statistic<> NumLoads ("spiller", "Number of loads added");
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +000037
Chris Lattner8c4d88d2004-09-30 01:54:45 +000038 enum SpillerName { simple, local };
Alkis Evlogimenosdd420e02004-03-01 23:18:15 +000039
Chris Lattner8c4d88d2004-09-30 01:54:45 +000040 cl::opt<SpillerName>
41 SpillerOpt("spiller",
Chris Lattner5f7d2d42004-09-30 02:40:06 +000042 cl::desc("Spiller to use: (default: simple)"),
Chris Lattner8c4d88d2004-09-30 01:54:45 +000043 cl::Prefix,
44 cl::values(clEnumVal(simple, " simple spiller"),
45 clEnumVal(local, " local spiller"),
46 clEnumValEnd),
Chris Lattner5f7d2d42004-09-30 02:40:06 +000047 cl::init(simple));
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000048}
49
Chris Lattner8c4d88d2004-09-30 01:54:45 +000050//===----------------------------------------------------------------------===//
51// VirtRegMap implementation
52//===----------------------------------------------------------------------===//
53
54void VirtRegMap::grow() {
Chris Lattner7f690e62004-09-30 02:15:18 +000055 Virt2PhysMap.grow(MF.getSSARegMap()->getLastVirtReg());
56 Virt2StackSlotMap.grow(MF.getSSARegMap()->getLastVirtReg());
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000057}
58
Chris Lattner8c4d88d2004-09-30 01:54:45 +000059int VirtRegMap::assignVirt2StackSlot(unsigned virtReg) {
60 assert(MRegisterInfo::isVirtualRegister(virtReg));
Chris Lattner7f690e62004-09-30 02:15:18 +000061 assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT &&
Chris Lattner8c4d88d2004-09-30 01:54:45 +000062 "attempt to assign stack slot to already spilled register");
Chris Lattner7f690e62004-09-30 02:15:18 +000063 const TargetRegisterClass* RC = MF.getSSARegMap()->getRegClass(virtReg);
64 int frameIndex = MF.getFrameInfo()->CreateStackObject(RC->getSize(),
65 RC->getAlignment());
66 Virt2StackSlotMap[virtReg] = frameIndex;
Chris Lattner8c4d88d2004-09-30 01:54:45 +000067 ++NumSpills;
68 return frameIndex;
69}
70
71void VirtRegMap::assignVirt2StackSlot(unsigned virtReg, int frameIndex) {
72 assert(MRegisterInfo::isVirtualRegister(virtReg));
Chris Lattner7f690e62004-09-30 02:15:18 +000073 assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT &&
Chris Lattner8c4d88d2004-09-30 01:54:45 +000074 "attempt to assign stack slot to already spilled register");
Chris Lattner7f690e62004-09-30 02:15:18 +000075 Virt2StackSlotMap[virtReg] = frameIndex;
Alkis Evlogimenos38af59a2004-05-29 20:38:05 +000076}
77
Alkis Evlogimenos5f375022004-03-01 20:05:10 +000078void VirtRegMap::virtFolded(unsigned virtReg,
79 MachineInstr* oldMI,
Chris Lattner8c4d88d2004-09-30 01:54:45 +000080 MachineInstr* newMI) {
81 // move previous memory references folded to new instruction
Chris Lattner7f690e62004-09-30 02:15:18 +000082 MI2VirtMapTy::iterator i, e;
83 std::vector<MI2VirtMapTy::mapped_type> regs;
84 for (tie(i, e) = MI2VirtMap.equal_range(oldMI); i != e; ) {
Chris Lattner8c4d88d2004-09-30 01:54:45 +000085 regs.push_back(i->second);
Chris Lattner7f690e62004-09-30 02:15:18 +000086 MI2VirtMap.erase(i++);
Chris Lattner8c4d88d2004-09-30 01:54:45 +000087 }
88 for (unsigned i = 0, e = regs.size(); i != e; ++i)
Chris Lattner7f690e62004-09-30 02:15:18 +000089 MI2VirtMap.insert(std::make_pair(newMI, i));
Alkis Evlogimenos5f375022004-03-01 20:05:10 +000090
Chris Lattner8c4d88d2004-09-30 01:54:45 +000091 // add new memory reference
Chris Lattner7f690e62004-09-30 02:15:18 +000092 MI2VirtMap.insert(std::make_pair(newMI, virtReg));
Alkis Evlogimenos5f375022004-03-01 20:05:10 +000093}
94
Chris Lattner7f690e62004-09-30 02:15:18 +000095void VirtRegMap::print(std::ostream &OS) const {
96 const MRegisterInfo* MRI = MF.getTarget().getRegisterInfo();
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000097
Chris Lattner7f690e62004-09-30 02:15:18 +000098 OS << "********** REGISTER MAP **********\n";
Chris Lattner8c4d88d2004-09-30 01:54:45 +000099 for (unsigned i = MRegisterInfo::FirstVirtualRegister,
Chris Lattner7f690e62004-09-30 02:15:18 +0000100 e = MF.getSSARegMap()->getLastVirtReg(); i <= e; ++i) {
101 if (Virt2PhysMap[i] != (unsigned)VirtRegMap::NO_PHYS_REG)
102 OS << "[reg" << i << " -> " << MRI->getName(Virt2PhysMap[i]) << "]\n";
103
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000104 }
105
106 for (unsigned i = MRegisterInfo::FirstVirtualRegister,
Chris Lattner7f690e62004-09-30 02:15:18 +0000107 e = MF.getSSARegMap()->getLastVirtReg(); i <= e; ++i)
108 if (Virt2StackSlotMap[i] != VirtRegMap::NO_STACK_SLOT)
109 OS << "[reg" << i << " -> fi#" << Virt2StackSlotMap[i] << "]\n";
110 OS << '\n';
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +0000111}
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000112
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000113void VirtRegMap::dump() const { print(std::cerr); }
Alkis Evlogimenosdd420e02004-03-01 23:18:15 +0000114
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000115
116//===----------------------------------------------------------------------===//
117// Simple Spiller Implementation
118//===----------------------------------------------------------------------===//
119
120Spiller::~Spiller() {}
Alkis Evlogimenosdd420e02004-03-01 23:18:15 +0000121
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000122namespace {
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000123 struct SimpleSpiller : public Spiller {
124 bool runOnMachineFunction(MachineFunction& mf, const VirtRegMap &VRM);
125 };
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000126}
127
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000128bool SimpleSpiller::runOnMachineFunction(MachineFunction& MF,
129 const VirtRegMap& VRM) {
130 DEBUG(std::cerr << "********** REWRITE MACHINE CODE **********\n");
131 DEBUG(std::cerr << "********** Function: "
132 << MF.getFunction()->getName() << '\n');
133 const TargetMachine& TM = MF.getTarget();
Chris Lattner7f690e62004-09-30 02:15:18 +0000134 const MRegisterInfo& MRI = *TM.getRegisterInfo();
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000135
Chris Lattner4ea1b822004-09-30 02:33:48 +0000136 // LoadedRegs - Keep track of which vregs are loaded, so that we only load
137 // each vreg once (in the case where a spilled vreg is used by multiple
138 // operands). This is always smaller than the number of operands to the
139 // current machine instr, so it should be small.
140 std::vector<unsigned> LoadedRegs;
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000141
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000142 for (MachineFunction::iterator MBBI = MF.begin(), E = MF.end();
143 MBBI != E; ++MBBI) {
144 DEBUG(std::cerr << MBBI->getBasicBlock()->getName() << ":\n");
145 MachineBasicBlock &MBB = *MBBI;
146 for (MachineBasicBlock::iterator MII = MBB.begin(),
147 E = MBB.end(); MII != E; ++MII) {
148 MachineInstr &MI = *MII;
149 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
150 MachineOperand &MOP = MI.getOperand(i);
151 if (MOP.isRegister() && MOP.getReg() &&
152 MRegisterInfo::isVirtualRegister(MOP.getReg())){
153 unsigned VirtReg = MOP.getReg();
154 unsigned PhysReg = VRM.getPhys(VirtReg);
155 if (VRM.hasStackSlot(VirtReg)) {
156 int StackSlot = VRM.getStackSlot(VirtReg);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000157
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000158 if (MOP.isUse() &&
159 std::find(LoadedRegs.begin(), LoadedRegs.end(), VirtReg)
160 == LoadedRegs.end()) {
161 MRI.loadRegFromStackSlot(MBB, &MI, PhysReg, StackSlot);
162 LoadedRegs.push_back(VirtReg);
163 ++NumLoads;
164 DEBUG(std::cerr << '\t'; prior(MII)->print(std::cerr, &TM));
165 }
166
167 if (MOP.isDef()) {
168 MRI.storeRegToStackSlot(MBB, next(MII), PhysReg,
169 VRM.getStackSlot(VirtReg));
170 ++NumStores;
171 }
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000172 }
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000173 MI.SetMachineOperandReg(i, PhysReg);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000174 }
175 }
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000176 DEBUG(std::cerr << '\t'; MI.print(std::cerr, &TM));
Chris Lattner4ea1b822004-09-30 02:33:48 +0000177 LoadedRegs.clear();
Alkis Evlogimenosdd420e02004-03-01 23:18:15 +0000178 }
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000179 }
180 return true;
181}
182
183//===----------------------------------------------------------------------===//
184// Local Spiller Implementation
185//===----------------------------------------------------------------------===//
186
187namespace {
188 class LocalSpiller : public Spiller {
189 typedef std::vector<unsigned> Phys2VirtMap;
190 typedef std::vector<bool> PhysFlag;
191 typedef DenseMap<MachineInstr*, VirtReg2IndexFunctor> Virt2MI;
192
193 MachineFunction *MF;
194 const TargetMachine *TM;
195 const TargetInstrInfo *TII;
196 const MRegisterInfo *MRI;
197 const VirtRegMap *VRM;
198 Phys2VirtMap p2vMap_;
199 PhysFlag dirty_;
200 Virt2MI lastDef_;
201
202 public:
203 bool runOnMachineFunction(MachineFunction &MF, const VirtRegMap &VRM);
204
205 private:
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000206 void vacateJustPhysReg(MachineBasicBlock& MBB,
207 MachineBasicBlock::iterator MII,
208 unsigned PhysReg);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000209
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000210 void vacatePhysReg(MachineBasicBlock& MBB,
211 MachineBasicBlock::iterator MII,
212 unsigned PhysReg) {
213 vacateJustPhysReg(MBB, MII, PhysReg);
214 for (const unsigned* as = MRI->getAliasSet(PhysReg); *as; ++as)
215 vacateJustPhysReg(MBB, MII, *as);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000216 }
217
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000218 void handleUse(MachineBasicBlock& MBB,
219 MachineBasicBlock::iterator MII,
220 unsigned VirtReg,
221 unsigned PhysReg) {
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000222 // check if we are replacing a previous mapping
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000223 if (p2vMap_[PhysReg] != VirtReg) {
224 vacatePhysReg(MBB, MII, PhysReg);
225 p2vMap_[PhysReg] = VirtReg;
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000226 // load if necessary
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000227 if (VRM->hasStackSlot(VirtReg)) {
228 MRI->loadRegFromStackSlot(MBB, MII, PhysReg,
229 VRM->getStackSlot(VirtReg));
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000230 ++NumLoads;
231 DEBUG(std::cerr << "added: ";
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000232 prior(MII)->print(std::cerr, TM));
233 lastDef_[VirtReg] = MII;
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000234 }
235 }
236 }
237
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000238 void handleDef(MachineBasicBlock& MBB,
239 MachineBasicBlock::iterator MII,
240 unsigned VirtReg,
241 unsigned PhysReg) {
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000242 // check if we are replacing a previous mapping
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000243 if (p2vMap_[PhysReg] != VirtReg)
244 vacatePhysReg(MBB, MII, PhysReg);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000245
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000246 p2vMap_[PhysReg] = VirtReg;
247 dirty_[PhysReg] = true;
248 lastDef_[VirtReg] = MII;
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000249 }
250
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000251 void eliminateVirtRegsInMBB(MachineBasicBlock& MBB);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000252 };
253}
254
255bool LocalSpiller::runOnMachineFunction(MachineFunction &mf,
256 const VirtRegMap &vrm) {
257 MF = &mf;
258 TM = &MF->getTarget();
259 TII = TM->getInstrInfo();
260 MRI = TM->getRegisterInfo();
261 VRM = &vrm;
262 p2vMap_.assign(MRI->getNumRegs(), 0);
263 dirty_.assign(MRI->getNumRegs(), false);
264
265 DEBUG(std::cerr << "********** REWRITE MACHINE CODE **********\n");
266 DEBUG(std::cerr << "********** Function: "
267 << MF->getFunction()->getName() << '\n');
268
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000269 for (MachineFunction::iterator MBB = MF->begin(), E = MF->end();
270 MBB != E; ++MBB) {
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000271 lastDef_.grow(MF->getSSARegMap()->getLastVirtReg());
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000272 DEBUG(std::cerr << MBB->getBasicBlock()->getName() << ":\n");
273 eliminateVirtRegsInMBB(*MBB);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000274 // clear map, dirty flag and last ref
275 p2vMap_.assign(p2vMap_.size(), 0);
276 dirty_.assign(dirty_.size(), false);
277 lastDef_.clear();
278 }
279 return true;
280}
281
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000282void LocalSpiller::vacateJustPhysReg(MachineBasicBlock& MBB,
283 MachineBasicBlock::iterator MII,
284 unsigned PhysReg) {
285 unsigned VirtReg = p2vMap_[PhysReg];
286 if (dirty_[PhysReg] && VRM->hasStackSlot(VirtReg)) {
287 assert(lastDef_[VirtReg] && "virtual register is mapped "
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000288 "to a register and but was not defined!");
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000289 MachineBasicBlock::iterator lastDef = lastDef_[VirtReg];
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000290 MachineBasicBlock::iterator nextLastRef = next(lastDef);
291 MRI->storeRegToStackSlot(*lastDef->getParent(),
292 nextLastRef,
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000293 PhysReg,
294 VRM->getStackSlot(VirtReg));
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000295 ++NumStores;
296 DEBUG(std::cerr << "added: ";
297 prior(nextLastRef)->print(std::cerr, TM);
298 std::cerr << "after: ";
299 lastDef->print(std::cerr, TM));
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000300 lastDef_[VirtReg] = 0;
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000301 }
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000302 p2vMap_[PhysReg] = 0;
303 dirty_[PhysReg] = false;
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000304}
305
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000306void LocalSpiller::eliminateVirtRegsInMBB(MachineBasicBlock &MBB) {
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000307 for (MachineBasicBlock::iterator MI = MBB.begin(), E = MBB.end();
308 MI != E; ++MI) {
309
310 // if we have references to memory operands make sure
311 // we clear all physical registers that may contain
312 // the value of the spilled virtual register
Chris Lattner7f690e62004-09-30 02:15:18 +0000313 VirtRegMap::MI2VirtMapTy::const_iterator i, e;
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000314 for (tie(i, e) = VRM->getFoldedVirts(MI); i != e; ++i) {
315 if (VRM->hasPhys(i->second))
316 vacateJustPhysReg(MBB, MI, VRM->getPhys(i->second));
317 }
318
319 // rewrite all used operands
320 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
321 MachineOperand& op = MI->getOperand(i);
322 if (op.isRegister() && op.getReg() && op.isUse() &&
323 MRegisterInfo::isVirtualRegister(op.getReg())) {
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000324 unsigned VirtReg = op.getReg();
325 unsigned PhysReg = VRM->getPhys(VirtReg);
326 handleUse(MBB, MI, VirtReg, PhysReg);
327 MI->SetMachineOperandReg(i, PhysReg);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000328 // mark as dirty if this is def&use
329 if (op.isDef()) {
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000330 dirty_[PhysReg] = true;
331 lastDef_[VirtReg] = MI;
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000332 }
333 }
334 }
335
336 // spill implicit physical register defs
337 const TargetInstrDescriptor& tid = TII->get(MI->getOpcode());
338 for (const unsigned* id = tid.ImplicitDefs; *id; ++id)
339 vacatePhysReg(MBB, MI, *id);
340
341 // spill explicit physical register defs
342 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
343 MachineOperand& op = MI->getOperand(i);
344 if (op.isRegister() && op.getReg() && !op.isUse() &&
345 MRegisterInfo::isPhysicalRegister(op.getReg()))
346 vacatePhysReg(MBB, MI, op.getReg());
347 }
348
349 // rewrite def operands (def&use was handled with the
350 // uses so don't check for those here)
351 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
352 MachineOperand& op = MI->getOperand(i);
353 if (op.isRegister() && op.getReg() && !op.isUse())
354 if (MRegisterInfo::isPhysicalRegister(op.getReg()))
355 vacatePhysReg(MBB, MI, op.getReg());
356 else {
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000357 unsigned PhysReg = VRM->getPhys(op.getReg());
358 handleDef(MBB, MI, op.getReg(), PhysReg);
359 MI->SetMachineOperandReg(i, PhysReg);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000360 }
361 }
362
363 DEBUG(std::cerr << '\t'; MI->print(std::cerr, TM));
364 }
365
366 for (unsigned i = 1, e = p2vMap_.size(); i != e; ++i)
367 vacateJustPhysReg(MBB, MBB.getFirstTerminator(), i);
368}
369
370
371llvm::Spiller* llvm::createSpiller() {
372 switch (SpillerOpt) {
373 default: assert(0 && "Unreachable!");
374 case local:
375 return new LocalSpiller();
376 case simple:
377 return new SimpleSpiller();
378 }
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000379}