blob: d843b27c49be55b0e0734721993a00ce343c1d10 [file] [log] [blame]
Chris Lattner035dfbe2002-08-09 20:08:06 +00001//===-- MachineInstr.cpp --------------------------------------------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Brian Gaeke21326fc2004-02-13 04:39:32 +00009//
10// Methods common to all machine instructions.
11//
Chris Lattner035dfbe2002-08-09 20:08:06 +000012//===----------------------------------------------------------------------===//
Vikram S. Adve70bc4b52001-07-21 12:41:50 +000013
Chris Lattner822b4fb2001-09-07 17:18:30 +000014#include "llvm/CodeGen/MachineInstr.h"
Chris Lattner8517e1f2004-02-19 16:17:08 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner10491642002-10-30 00:48:05 +000016#include "llvm/Target/TargetMachine.h"
Chris Lattner3501fea2003-01-14 22:00:31 +000017#include "llvm/Target/TargetInstrInfo.h"
Chris Lattner2a79a092002-10-30 00:58:19 +000018#include "llvm/Target/MRegisterInfo.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000019#include "llvm/Support/LeakDetector.h"
Bill Wendlinga09362e2006-11-28 22:48:48 +000020#include "llvm/Support/Streams.h"
Jeff Cohenc21c5ee2006-12-15 22:57:14 +000021#include <ostream>
Chris Lattner0742b592004-02-23 18:38:20 +000022using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000023
Chris Lattnerf7382302007-12-30 21:56:09 +000024//===----------------------------------------------------------------------===//
25// MachineOperand Implementation
26//===----------------------------------------------------------------------===//
27
28/// isIdenticalTo - Return true if this operand is identical to the specified
29/// operand.
30bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const {
31 if (getType() != Other.getType()) return false;
32
33 switch (getType()) {
34 default: assert(0 && "Unrecognized operand type");
35 case MachineOperand::MO_Register:
36 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
37 getSubReg() == Other.getSubReg();
38 case MachineOperand::MO_Immediate:
39 return getImm() == Other.getImm();
40 case MachineOperand::MO_MachineBasicBlock:
41 return getMBB() == Other.getMBB();
42 case MachineOperand::MO_FrameIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +000043 return getIndex() == Other.getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +000044 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +000045 return getIndex() == Other.getIndex() && getOffset() == Other.getOffset();
Chris Lattnerf7382302007-12-30 21:56:09 +000046 case MachineOperand::MO_JumpTableIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +000047 return getIndex() == Other.getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +000048 case MachineOperand::MO_GlobalAddress:
49 return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset();
50 case MachineOperand::MO_ExternalSymbol:
51 return !strcmp(getSymbolName(), Other.getSymbolName()) &&
52 getOffset() == Other.getOffset();
53 }
54}
55
56/// print - Print the specified machine operand.
57///
58void MachineOperand::print(std::ostream &OS, const TargetMachine *TM) const {
59 switch (getType()) {
60 case MachineOperand::MO_Register:
61 if (getReg() == 0 || MRegisterInfo::isVirtualRegister(getReg())) {
62 OS << "%reg" << getReg();
63 } else {
64 // If the instruction is embedded into a basic block, we can find the
65 // target
66 // info for the instruction.
67 if (TM == 0)
68 if (const MachineInstr *MI = getParent())
69 if (const MachineBasicBlock *MBB = MI->getParent())
70 if (const MachineFunction *MF = MBB->getParent())
71 TM = &MF->getTarget();
72
73 if (TM)
74 OS << "%" << TM->getRegisterInfo()->get(getReg()).Name;
75 else
76 OS << "%mreg" << getReg();
77 }
78
79 if (isDef() || isKill() || isDead() || isImplicit()) {
80 OS << "<";
81 bool NeedComma = false;
82 if (isImplicit()) {
83 OS << (isDef() ? "imp-def" : "imp-use");
84 NeedComma = true;
85 } else if (isDef()) {
86 OS << "def";
87 NeedComma = true;
88 }
89 if (isKill() || isDead()) {
90 if (NeedComma) OS << ",";
91 if (isKill()) OS << "kill";
92 if (isDead()) OS << "dead";
93 }
94 OS << ">";
95 }
96 break;
97 case MachineOperand::MO_Immediate:
98 OS << getImm();
99 break;
100 case MachineOperand::MO_MachineBasicBlock:
101 OS << "mbb<"
Chris Lattner8aa797a2007-12-30 23:10:15 +0000102 << ((Value*)getMBB()->getBasicBlock())->getName()
103 << "," << (void*)getMBB() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000104 break;
105 case MachineOperand::MO_FrameIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000106 OS << "<fi#" << getIndex() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000107 break;
108 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000109 OS << "<cp#" << getIndex();
Chris Lattnerf7382302007-12-30 21:56:09 +0000110 if (getOffset()) OS << "+" << getOffset();
111 OS << ">";
112 break;
113 case MachineOperand::MO_JumpTableIndex:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000114 OS << "<jt#" << getIndex() << ">";
Chris Lattnerf7382302007-12-30 21:56:09 +0000115 break;
116 case MachineOperand::MO_GlobalAddress:
117 OS << "<ga:" << ((Value*)getGlobal())->getName();
118 if (getOffset()) OS << "+" << getOffset();
119 OS << ">";
120 break;
121 case MachineOperand::MO_ExternalSymbol:
122 OS << "<es:" << getSymbolName();
123 if (getOffset()) OS << "+" << getOffset();
124 OS << ">";
125 break;
126 default:
127 assert(0 && "Unrecognized operand type");
128 }
129}
130
131//===----------------------------------------------------------------------===//
132// MachineInstr Implementation
133//===----------------------------------------------------------------------===//
134
Evan Chengc0f64ff2006-11-27 23:37:22 +0000135/// MachineInstr ctor - This constructor creates a dummy MachineInstr with
Evan Cheng67f660c2006-11-30 07:08:44 +0000136/// TID NULL and no operands.
Evan Chengc0f64ff2006-11-27 23:37:22 +0000137MachineInstr::MachineInstr()
Evan Cheng67f660c2006-11-30 07:08:44 +0000138 : TID(0), NumImplicitOps(0), parent(0) {
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000139 // Make sure that we get added to a machine basicblock
140 LeakDetector::addGarbageObject(this);
Chris Lattner72791222002-10-28 20:59:49 +0000141}
142
Evan Cheng67f660c2006-11-30 07:08:44 +0000143void MachineInstr::addImplicitDefUseOperands() {
144 if (TID->ImplicitDefs)
Chris Lattnera4161ee2007-12-30 00:12:25 +0000145 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
Chris Lattner8019f412007-12-30 00:41:17 +0000146 addOperand(MachineOperand::CreateReg(*ImpDefs, true, true));
Evan Cheng67f660c2006-11-30 07:08:44 +0000147 if (TID->ImplicitUses)
Chris Lattnera4161ee2007-12-30 00:12:25 +0000148 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
Chris Lattner8019f412007-12-30 00:41:17 +0000149 addOperand(MachineOperand::CreateReg(*ImpUses, false, true));
Evan Chengd7de4962006-11-13 23:34:06 +0000150}
151
152/// MachineInstr ctor - This constructor create a MachineInstr and add the
Evan Chengc0f64ff2006-11-27 23:37:22 +0000153/// implicit operands. It reserves space for number of operands specified by
154/// TargetInstrDescriptor or the numOperands if it is not zero. (for
155/// instructions with variable number of operands).
Evan Chengfa945722007-10-13 02:23:01 +0000156MachineInstr::MachineInstr(const TargetInstrDescriptor &tid, bool NoImp)
Evan Cheng67f660c2006-11-30 07:08:44 +0000157 : TID(&tid), NumImplicitOps(0), parent(0) {
Evan Chengfa945722007-10-13 02:23:01 +0000158 if (!NoImp && TID->ImplicitDefs)
Evan Cheng67f660c2006-11-30 07:08:44 +0000159 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
Evan Chengd7de4962006-11-13 23:34:06 +0000160 NumImplicitOps++;
Evan Chengfa945722007-10-13 02:23:01 +0000161 if (!NoImp && TID->ImplicitUses)
Evan Cheng67f660c2006-11-30 07:08:44 +0000162 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
Evan Chengd7de4962006-11-13 23:34:06 +0000163 NumImplicitOps++;
Evan Cheng67f660c2006-11-30 07:08:44 +0000164 Operands.reserve(NumImplicitOps + TID->numOperands);
Evan Chengfa945722007-10-13 02:23:01 +0000165 if (!NoImp)
166 addImplicitDefUseOperands();
Evan Chengd7de4962006-11-13 23:34:06 +0000167 // Make sure that we get added to a machine basicblock
168 LeakDetector::addGarbageObject(this);
169}
170
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000171/// MachineInstr ctor - Work exactly the same as the ctor above, except that the
172/// MachineInstr is created and added to the end of the specified basic block.
173///
Evan Chengc0f64ff2006-11-27 23:37:22 +0000174MachineInstr::MachineInstr(MachineBasicBlock *MBB,
Evan Cheng67f660c2006-11-30 07:08:44 +0000175 const TargetInstrDescriptor &tid)
176 : TID(&tid), NumImplicitOps(0), parent(0) {
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000177 assert(MBB && "Cannot use inserting ctor with null basic block!");
Evan Cheng67f660c2006-11-30 07:08:44 +0000178 if (TID->ImplicitDefs)
179 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
Evan Chengd7de4962006-11-13 23:34:06 +0000180 NumImplicitOps++;
Evan Cheng67f660c2006-11-30 07:08:44 +0000181 if (TID->ImplicitUses)
182 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
Evan Chengd7de4962006-11-13 23:34:06 +0000183 NumImplicitOps++;
Evan Cheng67f660c2006-11-30 07:08:44 +0000184 Operands.reserve(NumImplicitOps + TID->numOperands);
185 addImplicitDefUseOperands();
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000186 // Make sure that we get added to a machine basicblock
187 LeakDetector::addGarbageObject(this);
Chris Lattnerddd7fcb2002-10-29 23:19:00 +0000188 MBB->push_back(this); // Add instruction to end of basic block!
189}
190
Misha Brukmance22e762004-07-09 14:45:17 +0000191/// MachineInstr ctor - Copies MachineInstr arg exactly
192///
Tanya Lattner466b5342004-05-23 19:35:12 +0000193MachineInstr::MachineInstr(const MachineInstr &MI) {
Evan Cheng67f660c2006-11-30 07:08:44 +0000194 TID = MI.getInstrDescriptor();
Evan Cheng6b2c05f2006-11-15 20:54:29 +0000195 NumImplicitOps = MI.NumImplicitOps;
Chris Lattner943b5e12006-05-04 19:14:44 +0000196 Operands.reserve(MI.getNumOperands());
Tanya Lattnerb5159ed2004-05-23 20:58:02 +0000197
Misha Brukmance22e762004-07-09 14:45:17 +0000198 // Add operands
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000199 for (unsigned i = 0; i != MI.getNumOperands(); ++i) {
Chris Lattner943b5e12006-05-04 19:14:44 +0000200 Operands.push_back(MI.getOperand(i));
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000201 Operands.back().ParentMI = this;
202 }
Tanya Lattner0c63e032004-05-24 03:14:18 +0000203
Misha Brukmance22e762004-07-09 14:45:17 +0000204 // Set parent, next, and prev to null
Tanya Lattner0c63e032004-05-24 03:14:18 +0000205 parent = 0;
206 prev = 0;
207 next = 0;
Tanya Lattner466b5342004-05-23 19:35:12 +0000208}
209
210
Misha Brukmance22e762004-07-09 14:45:17 +0000211MachineInstr::~MachineInstr() {
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000212 LeakDetector::removeGarbageObject(this);
Chris Lattnere12d6ab2007-12-30 06:11:04 +0000213#ifndef NDEBUG
214 for (unsigned i = 0, e = Operands.size(); i != e; ++i)
215 assert(Operands[i].ParentMI == this && "ParentMI mismatch!");
216#endif
Alkis Evlogimenosaad5c052004-02-16 07:17:43 +0000217}
218
Evan Cheng67f660c2006-11-30 07:08:44 +0000219/// getOpcode - Returns the opcode of this MachineInstr.
220///
Dan Gohmancb648f92007-09-14 20:08:19 +0000221int MachineInstr::getOpcode() const {
Evan Cheng67f660c2006-11-30 07:08:44 +0000222 return TID->Opcode;
223}
224
Chris Lattner48d7c062006-04-17 21:35:41 +0000225/// removeFromParent - This method unlinks 'this' from the containing basic
226/// block, and returns it, but does not delete it.
227MachineInstr *MachineInstr::removeFromParent() {
228 assert(getParent() && "Not embedded in a basic block!");
229 getParent()->remove(this);
230 return this;
231}
232
233
Brian Gaeke21326fc2004-02-13 04:39:32 +0000234/// OperandComplete - Return true if it's illegal to add a new operand
235///
Chris Lattner2a90ba62004-02-12 16:09:53 +0000236bool MachineInstr::OperandsComplete() const {
Evan Cheng67f660c2006-11-30 07:08:44 +0000237 unsigned short NumOperands = TID->numOperands;
238 if ((TID->Flags & M_VARIABLE_OPS) == 0 &&
Evan Cheng8bcb0422006-11-28 02:25:34 +0000239 getNumOperands()-NumImplicitOps >= NumOperands)
Vikram S. Adve34977822003-05-31 07:39:06 +0000240 return true; // Broken: we have all the operands of this instruction!
Chris Lattner413746e2002-10-28 20:48:39 +0000241 return false;
242}
243
Evan Cheng19e3f312007-05-15 01:26:09 +0000244/// getNumExplicitOperands - Returns the number of non-implicit operands.
245///
246unsigned MachineInstr::getNumExplicitOperands() const {
247 unsigned NumOperands = TID->numOperands;
248 if ((TID->Flags & M_VARIABLE_OPS) == 0)
249 return NumOperands;
250
251 for (unsigned e = getNumOperands(); NumOperands != e; ++NumOperands) {
252 const MachineOperand &MO = getOperand(NumOperands);
253 if (!MO.isRegister() || !MO.isImplicit())
254 NumOperands++;
255 }
256 return NumOperands;
257}
258
Chris Lattner8ace2cd2006-10-20 22:39:59 +0000259
Evan Chengfaa51072007-04-26 19:00:32 +0000260/// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of
Evan Cheng32eb1f12007-03-26 22:37:45 +0000261/// the specific register or -1 if it is not found. It further tightening
Evan Cheng76d7e762007-02-23 01:04:26 +0000262/// the search criteria to a use that kills the register if isKill is true.
Evan Chengf277ee42007-05-29 18:35:22 +0000263int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill) const {
Evan Cheng576d1232006-12-06 08:27:42 +0000264 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Evan Chengf277ee42007-05-29 18:35:22 +0000265 const MachineOperand &MO = getOperand(i);
Dan Gohman92dfe202007-09-14 20:33:02 +0000266 if (MO.isRegister() && MO.isUse() && MO.getReg() == Reg)
Evan Cheng76d7e762007-02-23 01:04:26 +0000267 if (!isKill || MO.isKill())
Evan Cheng32eb1f12007-03-26 22:37:45 +0000268 return i;
Evan Cheng576d1232006-12-06 08:27:42 +0000269 }
Evan Cheng32eb1f12007-03-26 22:37:45 +0000270 return -1;
Evan Cheng576d1232006-12-06 08:27:42 +0000271}
272
Evan Chengb371f452007-02-19 21:49:54 +0000273/// findRegisterDefOperand() - Returns the MachineOperand that is a def of
274/// the specific register or NULL if it is not found.
275MachineOperand *MachineInstr::findRegisterDefOperand(unsigned Reg) {
276 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
277 MachineOperand &MO = getOperand(i);
Dan Gohman92dfe202007-09-14 20:33:02 +0000278 if (MO.isRegister() && MO.isDef() && MO.getReg() == Reg)
Evan Chengb371f452007-02-19 21:49:54 +0000279 return &MO;
280 }
281 return NULL;
282}
Evan Cheng19e3f312007-05-15 01:26:09 +0000283
Evan Chengf277ee42007-05-29 18:35:22 +0000284/// findFirstPredOperandIdx() - Find the index of the first operand in the
285/// operand list that is used to represent the predicate. It returns -1 if
286/// none is found.
287int MachineInstr::findFirstPredOperandIdx() const {
Evan Cheng19e3f312007-05-15 01:26:09 +0000288 const TargetInstrDescriptor *TID = getInstrDescriptor();
Evan Chengc3a289c2007-05-16 20:56:08 +0000289 if (TID->Flags & M_PREDICABLE) {
Evan Cheng19e3f312007-05-15 01:26:09 +0000290 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
291 if ((TID->OpInfo[i].Flags & M_PREDICATE_OPERAND))
Evan Chengf277ee42007-05-29 18:35:22 +0000292 return i;
Evan Cheng19e3f312007-05-15 01:26:09 +0000293 }
294
Evan Chengf277ee42007-05-29 18:35:22 +0000295 return -1;
Evan Cheng19e3f312007-05-15 01:26:09 +0000296}
Evan Chengb371f452007-02-19 21:49:54 +0000297
Evan Cheng32dfbea2007-10-12 08:50:34 +0000298/// isRegReDefinedByTwoAddr - Returns true if the Reg re-definition is due
299/// to two addr elimination.
300bool MachineInstr::isRegReDefinedByTwoAddr(unsigned Reg) const {
301 const TargetInstrDescriptor *TID = getInstrDescriptor();
302 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
303 const MachineOperand &MO1 = getOperand(i);
304 if (MO1.isRegister() && MO1.isDef() && MO1.getReg() == Reg) {
305 for (unsigned j = i+1; j < e; ++j) {
306 const MachineOperand &MO2 = getOperand(j);
307 if (MO2.isRegister() && MO2.isUse() && MO2.getReg() == Reg &&
308 TID->getOperandConstraint(j, TOI::TIED_TO) == (int)i)
309 return true;
310 }
311 }
312 }
313 return false;
314}
315
Evan Cheng576d1232006-12-06 08:27:42 +0000316/// copyKillDeadInfo - Copies kill / dead operand properties from MI.
317///
318void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) {
319 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
320 const MachineOperand &MO = MI->getOperand(i);
Dan Gohman92dfe202007-09-14 20:33:02 +0000321 if (!MO.isRegister() || (!MO.isKill() && !MO.isDead()))
Evan Cheng576d1232006-12-06 08:27:42 +0000322 continue;
323 for (unsigned j = 0, ee = getNumOperands(); j != ee; ++j) {
324 MachineOperand &MOp = getOperand(j);
325 if (!MOp.isIdenticalTo(MO))
326 continue;
327 if (MO.isKill())
328 MOp.setIsKill();
329 else
330 MOp.setIsDead();
331 break;
332 }
333 }
334}
335
Evan Cheng19e3f312007-05-15 01:26:09 +0000336/// copyPredicates - Copies predicate operand(s) from MI.
337void MachineInstr::copyPredicates(const MachineInstr *MI) {
338 const TargetInstrDescriptor *TID = MI->getInstrDescriptor();
Evan Chengc3a289c2007-05-16 20:56:08 +0000339 if (TID->Flags & M_PREDICABLE) {
Evan Cheng19e3f312007-05-15 01:26:09 +0000340 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
341 if ((TID->OpInfo[i].Flags & M_PREDICATE_OPERAND)) {
Evan Cheng19e3f312007-05-15 01:26:09 +0000342 // Predicated operands must be last operands.
Chris Lattner8019f412007-12-30 00:41:17 +0000343 addOperand(MI->getOperand(i));
Evan Cheng19e3f312007-05-15 01:26:09 +0000344 }
345 }
346 }
347}
348
Brian Gaeke21326fc2004-02-13 04:39:32 +0000349void MachineInstr::dump() const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000350 cerr << " " << *this;
Vikram S. Adve70bc4b52001-07-21 12:41:50 +0000351}
352
Tanya Lattnerb1407622004-06-25 00:13:11 +0000353void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
Chris Lattnere3087892007-12-30 21:31:53 +0000354 // Specialize printing if op#0 is definition
Chris Lattner6a592272002-10-30 01:55:38 +0000355 unsigned StartOp = 0;
Dan Gohman92dfe202007-09-14 20:33:02 +0000356 if (getNumOperands() && getOperand(0).isRegister() && getOperand(0).isDef()) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000357 getOperand(0).print(OS, TM);
Chris Lattner6a592272002-10-30 01:55:38 +0000358 OS << " = ";
359 ++StartOp; // Don't print this operand again!
360 }
Tanya Lattnerb1407622004-06-25 00:13:11 +0000361
Chris Lattnere3087892007-12-30 21:31:53 +0000362 OS << getInstrDescriptor()->Name;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000363
Chris Lattner6a592272002-10-30 01:55:38 +0000364 for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) {
365 if (i != StartOp)
366 OS << ",";
367 OS << " ";
Chris Lattnerf7382302007-12-30 21:56:09 +0000368 getOperand(i).print(OS, TM);
Chris Lattner10491642002-10-30 00:48:05 +0000369 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000370
Chris Lattner10491642002-10-30 00:48:05 +0000371 OS << "\n";
372}
373