OLD | NEW |
1 //===- subzero/src/IceCfg.cpp - Control flow graph implementation ---------===// | 1 //===- subzero/src/IceCfg.cpp - Control flow graph implementation ---------===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 // | 9 // |
10 // This file implements the Cfg class, including constant pool | 10 // This file implements the Cfg class, including constant pool |
11 // management. | 11 // management. |
12 // | 12 // |
13 //===----------------------------------------------------------------------===// | 13 //===----------------------------------------------------------------------===// |
14 | 14 |
15 #include "IceCfg.h" | 15 #include "IceCfg.h" |
16 #include "IceCfgNode.h" | 16 #include "IceCfgNode.h" |
17 #include "IceClFlags.h" | 17 #include "IceClFlags.h" |
18 #include "IceDefs.h" | 18 #include "IceDefs.h" |
19 #include "IceInst.h" | 19 #include "IceInst.h" |
20 #include "IceLiveness.h" | 20 #include "IceLiveness.h" |
21 #include "IceOperand.h" | 21 #include "IceOperand.h" |
22 #include "IceTargetLowering.h" | 22 #include "IceTargetLowering.h" |
23 | 23 |
24 namespace Ice { | 24 namespace Ice { |
25 | 25 |
26 Cfg::Cfg(GlobalContext *Ctx) | 26 Cfg::Cfg(GlobalContext *Ctx) |
27 : Ctx(Ctx), FunctionName(""), ReturnType(IceType_void), | 27 : Ctx(Ctx), FunctionName(""), ReturnType(IceType_void), |
28 IsInternalLinkage(false), HasError(false), ErrorMessage(""), Entry(NULL), | 28 IsInternalLinkage(false), HasError(false), ErrorMessage(""), Entry(NULL), |
29 NextInstNumber(1), Live(NULL), | 29 NextInstNumber(1), Live(nullptr), |
30 Target(TargetLowering::createLowering(Ctx->getTargetArch(), this)), | 30 Target(TargetLowering::createLowering(Ctx->getTargetArch(), this)), |
31 VMetadata(new VariablesMetadata(this)), | 31 VMetadata(new VariablesMetadata(this)), |
32 TargetAssembler( | 32 TargetAssembler( |
33 TargetLowering::createAssembler(Ctx->getTargetArch(), this)), | 33 TargetLowering::createAssembler(Ctx->getTargetArch(), this)), |
34 CurrentNode(NULL) {} | 34 CurrentNode(NULL) {} |
35 | 35 |
36 Cfg::~Cfg() {} | 36 Cfg::~Cfg() {} |
37 | 37 |
38 void Cfg::setError(const IceString &Message) { | 38 void Cfg::setError(const IceString &Message) { |
39 HasError = true; | 39 HasError = true; |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 for (NodeList::const_iterator I = Nodes.begin(), E = Nodes.end(); I != E; | 391 for (NodeList::const_iterator I = Nodes.begin(), E = Nodes.end(); I != E; |
392 ++I) { | 392 ++I) { |
393 (*I)->dump(this); | 393 (*I)->dump(this); |
394 } | 394 } |
395 if (getContext()->isVerbose(IceV_Instructions)) { | 395 if (getContext()->isVerbose(IceV_Instructions)) { |
396 Str << "}\n"; | 396 Str << "}\n"; |
397 } | 397 } |
398 } | 398 } |
399 | 399 |
400 } // end of namespace Ice | 400 } // end of namespace Ice |
OLD | NEW |