blob: 645e7cfedfe784042d1ab2d1991156b2f6eddd4d [file] [log] [blame]
Chris Lattner6b944532002-10-28 01:16:38 +00001//===-- MachineFunction.cpp -----------------------------------------------===//
Chris Lattnerf2868ce2002-02-03 07:54:50 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// 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 Lattner6b944532002-10-28 01:16:38 +000010// Collect native machine code information for a function. This allows
11// target-specific information about the generated code to be stored with each
12// function.
13//
14//===----------------------------------------------------------------------===//
Chris Lattnerf2868ce2002-02-03 07:54:50 +000015
Chris Lattner16c45e92003-12-20 10:20:58 +000016#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattner831fdcf2002-12-25 05:03:22 +000017#include "llvm/CodeGen/MachineInstr.h"
Chris Lattner227c3d32002-10-28 01:12:41 +000018#include "llvm/CodeGen/MachineCodeForInstruction.h"
Chris Lattner831fdcf2002-12-25 05:03:22 +000019#include "llvm/CodeGen/SSARegMap.h"
Chris Lattner955fad12002-12-28 20:37:16 +000020#include "llvm/CodeGen/MachineFunctionInfo.h"
Chris Lattnereb24db92002-12-28 21:08:26 +000021#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner4d149cd2003-01-13 00:23:03 +000022#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner16c45e92003-12-20 10:20:58 +000023#include "llvm/CodeGen/Passes.h"
Chris Lattnerf2868ce2002-02-03 07:54:50 +000024#include "llvm/Target/TargetMachine.h"
Chris Lattner8bd66e62002-12-28 21:00:25 +000025#include "llvm/Target/TargetFrameInfo.h"
Chris Lattnerf27eeea2002-12-29 02:50:35 +000026#include "llvm/Target/TargetCacheInfo.h"
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000027#include "llvm/Function.h"
Chris Lattnerf2868ce2002-02-03 07:54:50 +000028#include "llvm/iOther.h"
Chris Lattner07f32d42003-12-20 09:17:07 +000029using namespace llvm;
Chris Lattnerf2868ce2002-02-03 07:54:50 +000030
Chris Lattnere316efc2002-10-29 23:18:43 +000031static AnnotationID MF_AID(
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000032 AnnotationManager::getID("CodeGen::MachineCodeForFunction"));
Chris Lattnerf2868ce2002-02-03 07:54:50 +000033
Chris Lattner227c3d32002-10-28 01:12:41 +000034
Chris Lattner227c3d32002-10-28 01:12:41 +000035namespace {
Chris Lattner16c45e92003-12-20 10:20:58 +000036 struct Printer : public MachineFunctionPass {
Brian Gaeke09caa372004-01-30 21:53:46 +000037 std::ostream *OS;
Chris Lattnerd4baf0f2004-02-01 05:25:07 +000038 const std::string Banner;
Brian Gaeke09caa372004-01-30 21:53:46 +000039
40 Printer (std::ostream *_OS, const std::string &_Banner) :
41 OS (_OS), Banner (_Banner) { }
42
Chris Lattner10491642002-10-30 00:48:05 +000043 const char *getPassName() const { return "MachineFunction Printer"; }
44
45 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
46 AU.setPreservesAll();
47 }
48
Chris Lattner16c45e92003-12-20 10:20:58 +000049 bool runOnMachineFunction(MachineFunction &MF) {
Brian Gaeke09caa372004-01-30 21:53:46 +000050 (*OS) << Banner;
51 MF.print (*OS);
Chris Lattner10491642002-10-30 00:48:05 +000052 return false;
53 }
54 };
Chris Lattner227c3d32002-10-28 01:12:41 +000055}
56
Brian Gaeke09caa372004-01-30 21:53:46 +000057/// Returns a newly-created MachineFunction Printer pass. The default output
58/// stream is std::cerr; the default banner is empty.
59///
60FunctionPass *llvm::createMachineFunctionPrinterPass(std::ostream *OS,
61 const std::string &Banner) {
62 return new Printer(OS, Banner);
Chris Lattner10491642002-10-30 00:48:05 +000063}
64
Chris Lattner227c3d32002-10-28 01:12:41 +000065//===---------------------------------------------------------------------===//
66// MachineFunction implementation
67//===---------------------------------------------------------------------===//
68
Chris Lattner10491642002-10-30 00:48:05 +000069MachineFunction::MachineFunction(const Function *F,
Chris Lattner955fad12002-12-28 20:37:16 +000070 const TargetMachine &TM)
71 : Annotation(MF_AID), Fn(F), Target(TM) {
Misha Brukmanb7825bc2002-11-20 18:55:27 +000072 SSARegMapping = new SSARegMap();
Chris Lattner955fad12002-12-28 20:37:16 +000073 MFInfo = new MachineFunctionInfo(*this);
Chris Lattnereb24db92002-12-28 21:08:26 +000074 FrameInfo = new MachineFrameInfo();
Chris Lattner4d149cd2003-01-13 00:23:03 +000075 ConstantPool = new MachineConstantPool();
Chris Lattner831fdcf2002-12-25 05:03:22 +000076}
77
78MachineFunction::~MachineFunction() {
79 delete SSARegMapping;
Chris Lattner955fad12002-12-28 20:37:16 +000080 delete MFInfo;
81 delete FrameInfo;
Chris Lattner4d149cd2003-01-13 00:23:03 +000082 delete ConstantPool;
Chris Lattner10491642002-10-30 00:48:05 +000083}
84
85void MachineFunction::dump() const { print(std::cerr); }
86
87void MachineFunction::print(std::ostream &OS) const {
Chris Lattner955fad12002-12-28 20:37:16 +000088 OS << "\n" << *(Value*)Fn->getFunctionType() << " \"" << Fn->getName()
89 << "\"\n";
90
91 // Print Frame Information
Chris Lattner9085d8a2003-01-16 18:35:57 +000092 getFrameInfo()->print(*this, OS);
Chris Lattner4d149cd2003-01-13 00:23:03 +000093
94 // Print Constant Pool
95 getConstantPool()->print(OS);
Chris Lattner10491642002-10-30 00:48:05 +000096
Brian Gaeke90421cd2004-02-13 04:39:55 +000097 for (const_iterator BB = begin(); BB != end(); ++BB)
98 BB->print(OS);
Chris Lattner10491642002-10-30 00:48:05 +000099 OS << "\nEnd function \"" << Fn->getName() << "\"\n\n";
100}
101
Brian Gaeke90421cd2004-02-13 04:39:55 +0000102void MachineBasicBlock::dump() const { print(std::cerr); }
103
104void MachineBasicBlock::print(std::ostream &OS) const {
105 const BasicBlock *LBB = getBasicBlock();
106 OS << "\n" << LBB->getName() << " (" << (const void*)LBB << "):\n";
107 for (const_iterator I = begin(); I != end(); ++I) {
108 OS << "\t";
109 I->print(OS, MachineFunction::get(LBB->getParent()).getTarget());
110 }
111}
Chris Lattner10491642002-10-30 00:48:05 +0000112
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000113// The next two methods are used to construct and to retrieve
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000114// the MachineCodeForFunction object for the given function.
115// construct() -- Allocates and initializes for a given function and target
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000116// get() -- Returns a handle to the object.
117// This should not be called before "construct()"
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000118// for a given Function.
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000119//
Misha Brukmanfce11432002-10-28 00:28:31 +0000120MachineFunction&
Chris Lattner335d5c32002-10-28 05:58:46 +0000121MachineFunction::construct(const Function *Fn, const TargetMachine &Tar)
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000122{
Chris Lattnere316efc2002-10-29 23:18:43 +0000123 assert(Fn->getAnnotation(MF_AID) == 0 &&
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000124 "Object already exists for this function!");
Chris Lattner335d5c32002-10-28 05:58:46 +0000125 MachineFunction* mcInfo = new MachineFunction(Fn, Tar);
126 Fn->addAnnotation(mcInfo);
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000127 return *mcInfo;
128}
129
Chris Lattner16c45e92003-12-20 10:20:58 +0000130void MachineFunction::destruct(const Function *Fn) {
Chris Lattnere316efc2002-10-29 23:18:43 +0000131 bool Deleted = Fn->deleteAnnotation(MF_AID);
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000132 assert(Deleted && "Machine code did not exist for function!");
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000133}
134
Chris Lattner335d5c32002-10-28 05:58:46 +0000135MachineFunction& MachineFunction::get(const Function *F)
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000136{
Chris Lattnere316efc2002-10-29 23:18:43 +0000137 MachineFunction *mc = (MachineFunction*)F->getAnnotation(MF_AID);
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000138 assert(mc && "Call construct() method first to allocate the object");
139 return *mc;
140}
141
Chris Lattner831fdcf2002-12-25 05:03:22 +0000142void MachineFunction::clearSSARegMap() {
143 delete SSARegMapping;
144 SSARegMapping = 0;
145}
146
Chris Lattner955fad12002-12-28 20:37:16 +0000147//===----------------------------------------------------------------------===//
Chris Lattnereb24db92002-12-28 21:08:26 +0000148// MachineFrameInfo implementation
Chris Lattner955fad12002-12-28 20:37:16 +0000149//===----------------------------------------------------------------------===//
150
Chris Lattner4d149cd2003-01-13 00:23:03 +0000151/// CreateStackObject - Create a stack object for a value of the specified type.
152///
153int MachineFrameInfo::CreateStackObject(const Type *Ty, const TargetData &TD) {
154 return CreateStackObject(TD.getTypeSize(Ty), TD.getTypeAlignment(Ty));
155}
156
157int MachineFrameInfo::CreateStackObject(const TargetRegisterClass *RC) {
158 return CreateStackObject(RC->getSize(), RC->getAlignment());
159}
160
161
Chris Lattner9085d8a2003-01-16 18:35:57 +0000162void MachineFrameInfo::print(const MachineFunction &MF, std::ostream &OS) const{
163 int ValOffset = MF.getTarget().getFrameInfo().getOffsetOfLocalArea();
164
Chris Lattner955fad12002-12-28 20:37:16 +0000165 for (unsigned i = 0, e = Objects.size(); i != e; ++i) {
166 const StackObject &SO = Objects[i];
Chris Lattner4d149cd2003-01-13 00:23:03 +0000167 OS << " <fi #" << (int)(i-NumFixedObjects) << "> is ";
Chris Lattner955fad12002-12-28 20:37:16 +0000168 if (SO.Size == 0)
169 OS << "variable sized";
170 else
171 OS << SO.Size << " byte" << (SO.Size != 1 ? "s" : " ");
172
173 if (i < NumFixedObjects)
174 OS << " fixed";
175 if (i < NumFixedObjects || SO.SPOffset != -1) {
Chris Lattner9085d8a2003-01-16 18:35:57 +0000176 int Off = SO.SPOffset + ValOffset;
Chris Lattner955fad12002-12-28 20:37:16 +0000177 OS << " at location [SP";
Chris Lattner9085d8a2003-01-16 18:35:57 +0000178 if (Off > 0)
179 OS << "+" << Off;
180 else if (Off < 0)
181 OS << Off;
Chris Lattner955fad12002-12-28 20:37:16 +0000182 OS << "]";
183 }
184 OS << "\n";
185 }
186
187 if (HasVarSizedObjects)
188 OS << " Stack frame contains variable sized objects\n";
189}
190
Chris Lattner9085d8a2003-01-16 18:35:57 +0000191void MachineFrameInfo::dump(const MachineFunction &MF) const {
192 print(MF, std::cerr);
193}
Chris Lattner955fad12002-12-28 20:37:16 +0000194
195
196//===----------------------------------------------------------------------===//
Chris Lattner4d149cd2003-01-13 00:23:03 +0000197// MachineConstantPool implementation
198//===----------------------------------------------------------------------===//
199
200void MachineConstantPool::print(std::ostream &OS) const {
201 for (unsigned i = 0, e = Constants.size(); i != e; ++i)
202 OS << " <cp #" << i << "> is" << *(Value*)Constants[i] << "\n";
203}
204
205void MachineConstantPool::dump() const { print(std::cerr); }
206
207//===----------------------------------------------------------------------===//
Chris Lattner955fad12002-12-28 20:37:16 +0000208// MachineFunctionInfo implementation
209//===----------------------------------------------------------------------===//
Chris Lattner831fdcf2002-12-25 05:03:22 +0000210
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000211static unsigned
Vikram S. Adve03d33bd2002-04-25 04:30:43 +0000212ComputeMaxOptionalArgsSize(const TargetMachine& target, const Function *F,
213 unsigned &maxOptionalNumArgs)
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000214{
Chris Lattner955fad12002-12-28 20:37:16 +0000215 const TargetFrameInfo &frameInfo = target.getFrameInfo();
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000216
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000217 unsigned maxSize = 0;
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000218
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000219 for (Function::const_iterator BB = F->begin(), BBE = F->end(); BB !=BBE; ++BB)
220 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner2ee82e02003-04-23 16:36:11 +0000221 if (const CallInst *callInst = dyn_cast<CallInst>(I))
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000222 {
223 unsigned numOperands = callInst->getNumOperands() - 1;
224 int numExtra = (int)numOperands-frameInfo.getNumFixedOutgoingArgs();
225 if (numExtra <= 0)
226 continue;
227
Chris Lattner955fad12002-12-28 20:37:16 +0000228 unsigned sizeForThisCall;
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000229 if (frameInfo.argsOnStackHaveFixedSize())
230 {
231 int argSize = frameInfo.getSizeOfEachArgOnStack();
232 sizeForThisCall = numExtra * (unsigned) argSize;
233 }
234 else
235 {
236 assert(0 && "UNTESTED CODE: Size per stack argument is not "
237 "fixed on this architecture: use actual arg sizes to "
238 "compute MaxOptionalArgsSize");
239 sizeForThisCall = 0;
240 for (unsigned i = 0; i < numOperands; ++i)
Chris Lattner955fad12002-12-28 20:37:16 +0000241 sizeForThisCall += target.getTargetData().getTypeSize(callInst->
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000242 getOperand(i)->getType());
243 }
244
245 if (maxSize < sizeForThisCall)
246 maxSize = sizeForThisCall;
247
248 if ((int)maxOptionalNumArgs < numExtra)
249 maxOptionalNumArgs = (unsigned) numExtra;
250 }
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000251
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000252 return maxSize;
253}
254
255// Align data larger than one L1 cache line on L1 cache line boundaries.
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000256// Align all smaller data on the next higher 2^x boundary (4, 8, ...),
257// but not higher than the alignment of the largest type we support
258// (currently a double word). -- see class TargetData).
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000259//
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000260// This function is similar to the corresponding function in EmitAssembly.cpp
261// but they are unrelated. This one does not align at more than a
262// double-word boundary whereas that one might.
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000263//
Chris Lattner955fad12002-12-28 20:37:16 +0000264inline unsigned
265SizeToAlignment(unsigned size, const TargetMachine& target)
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000266{
267 unsigned short cacheLineSize = target.getCacheInfo().getCacheLineSize(1);
268 if (size > (unsigned) cacheLineSize / 2)
269 return cacheLineSize;
270 else
271 for (unsigned sz=1; /*no condition*/; sz *= 2)
Chris Lattner955fad12002-12-28 20:37:16 +0000272 if (sz >= size || sz >= target.getTargetData().getDoubleAlignment())
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000273 return sz;
274}
275
276
Chris Lattner955fad12002-12-28 20:37:16 +0000277void MachineFunctionInfo::CalculateArgSize() {
278 maxOptionalArgsSize = ComputeMaxOptionalArgsSize(MF.getTarget(),
279 MF.getFunction(),
Vikram S. Adve03d33bd2002-04-25 04:30:43 +0000280 maxOptionalNumArgs);
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000281 staticStackSize = maxOptionalArgsSize
Chris Lattner955fad12002-12-28 20:37:16 +0000282 + MF.getTarget().getFrameInfo().getMinStackFrameSize();
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000283}
284
285int
Chris Lattner955fad12002-12-28 20:37:16 +0000286MachineFunctionInfo::computeOffsetforLocalVar(const Value* val,
287 unsigned &getPaddedSize,
288 unsigned sizeToUse)
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000289{
Vikram S. Advee4e4d4e2002-03-24 03:39:26 +0000290 if (sizeToUse == 0)
Chris Lattner955fad12002-12-28 20:37:16 +0000291 sizeToUse = MF.getTarget().findOptimalStorageSize(val->getType());
292 unsigned align = SizeToAlignment(sizeToUse, MF.getTarget());
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000293
294 bool growUp;
Chris Lattner955fad12002-12-28 20:37:16 +0000295 int firstOffset = MF.getTarget().getFrameInfo().getFirstAutomaticVarOffset(MF,
296 growUp);
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000297 int offset = growUp? firstOffset + getAutomaticVarsSize()
298 : firstOffset - (getAutomaticVarsSize() + sizeToUse);
299
Chris Lattner955fad12002-12-28 20:37:16 +0000300 int aligned = MF.getTarget().getFrameInfo().adjustAlignment(offset, growUp, align);
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000301 getPaddedSize = sizeToUse + abs(aligned - offset);
302
303 return aligned;
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000304}
305
Chris Lattner07f32d42003-12-20 09:17:07 +0000306
307int MachineFunctionInfo::allocateLocalVar(const Value* val,
308 unsigned sizeToUse) {
Vikram S. Adve03d33bd2002-04-25 04:30:43 +0000309 assert(! automaticVarsAreaFrozen &&
310 "Size of auto vars area has been used to compute an offset so "
311 "no more automatic vars should be allocated!");
312
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000313 // Check if we've allocated a stack slot for this value already
314 //
Chris Lattner07f32d42003-12-20 09:17:07 +0000315 hash_map<const Value*, int>::const_iterator pair = offsets.find(val);
316 if (pair != offsets.end())
317 return pair->second;
318
319 unsigned getPaddedSize;
320 unsigned offset = computeOffsetforLocalVar(val, getPaddedSize, sizeToUse);
321 offsets[val] = offset;
322 incrementAutomaticVarsSize(getPaddedSize);
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000323 return offset;
324}
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000325
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000326int
Chris Lattner955fad12002-12-28 20:37:16 +0000327MachineFunctionInfo::allocateSpilledValue(const Type* type)
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000328{
Vikram S. Adve03d33bd2002-04-25 04:30:43 +0000329 assert(! spillsAreaFrozen &&
330 "Size of reg spills area has been used to compute an offset so "
331 "no more register spill slots should be allocated!");
332
Chris Lattner955fad12002-12-28 20:37:16 +0000333 unsigned size = MF.getTarget().getTargetData().getTypeSize(type);
334 unsigned char align = MF.getTarget().getTargetData().getTypeAlignment(type);
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000335
336 bool growUp;
Chris Lattner955fad12002-12-28 20:37:16 +0000337 int firstOffset = MF.getTarget().getFrameInfo().getRegSpillAreaOffset(MF, growUp);
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000338
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000339 int offset = growUp? firstOffset + getRegSpillsSize()
340 : firstOffset - (getRegSpillsSize() + size);
341
Chris Lattner955fad12002-12-28 20:37:16 +0000342 int aligned = MF.getTarget().getFrameInfo().adjustAlignment(offset, growUp, align);
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000343 size += abs(aligned - offset); // include alignment padding in size
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000344
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000345 incrementRegSpillsSize(size); // update size of reg. spills area
346
347 return aligned;
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000348}
349
350int
Chris Lattner955fad12002-12-28 20:37:16 +0000351MachineFunctionInfo::pushTempValue(unsigned size)
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000352{
Chris Lattner955fad12002-12-28 20:37:16 +0000353 unsigned align = SizeToAlignment(size, MF.getTarget());
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000354
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000355 bool growUp;
Chris Lattner955fad12002-12-28 20:37:16 +0000356 int firstOffset = MF.getTarget().getFrameInfo().getTmpAreaOffset(MF, growUp);
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000357
358 int offset = growUp? firstOffset + currentTmpValuesSize
359 : firstOffset - (currentTmpValuesSize + size);
360
Chris Lattner955fad12002-12-28 20:37:16 +0000361 int aligned = MF.getTarget().getFrameInfo().adjustAlignment(offset, growUp,
362 align);
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000363 size += abs(aligned - offset); // include alignment padding in size
364
365 incrementTmpAreaSize(size); // update "current" size of tmp area
366
367 return aligned;
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000368}
369
Chris Lattner955fad12002-12-28 20:37:16 +0000370void MachineFunctionInfo::popAllTempValues() {
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000371 resetTmpAreaSize(); // clear tmp area to reuse
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000372}
373