summaryrefslogtreecommitdiffstats
path: root/compiler/sea_ir
diff options
context:
space:
mode:
authorDragos Sbirlea <dragoss@google.com>2013-07-26 17:26:25 -0700
committerDragos Sbirlea <dragoss@google.com>2013-07-26 17:26:25 -0700
commitecde136fb42c38cf9928982605abfcd6de46d86a (patch)
treeb4c9a2df24db78b1c47625574d6e3dc91f31b1ff /compiler/sea_ir
parent6bee4459691c8e3b20fc706e74d52d08a4869731 (diff)
downloadart-ecde136fb42c38cf9928982605abfcd6de46d86a.zip
art-ecde136fb42c38cf9928982605abfcd6de46d86a.tar.gz
art-ecde136fb42c38cf9928982605abfcd6de46d86a.tar.bz2
Fix build (whitespace issues)
Change-Id: I7c65c363d9bbc1033268500d0bb509649793247b
Diffstat (limited to 'compiler/sea_ir')
-rw-r--r--compiler/sea_ir/sea.cc24
1 files changed, 0 insertions, 24 deletions
diff --git a/compiler/sea_ir/sea.cc b/compiler/sea_ir/sea.cc
index 7a1894b..17ee2dd 100644
--- a/compiler/sea_ir/sea.cc
+++ b/compiler/sea_ir/sea.cc
@@ -505,7 +505,6 @@ void Region::ToDot(std::string& result, const art::DexFile& dex_file) const {
for (std::vector<InstructionNode*>::const_iterator cit = instructions_.begin();
cit != instructions_.end(); cit++) {
result += (*cit)->StringId() +";\n";
- // result += StringId() + " -> " + (*cit)->StringId() + "; // region -> instruction \n";
}
result += "} // End Region.\n";
@@ -514,14 +513,12 @@ void Region::ToDot(std::string& result, const art::DexFile& dex_file) const {
for (std::vector<PhiInstructionNode*>::const_iterator cit = phi_instructions_.begin();
cit != phi_instructions_.end(); cit++) {
(*cit)->ToDot(result, dex_file);
- // result += StringId() + " -> " + (*cit)->StringId() + "; // region -> phi-function \n";
}
// Save instruction nodes.
for (std::vector<InstructionNode*>::const_iterator cit = instructions_.begin();
cit != instructions_.end(); cit++) {
(*cit)->ToDot(result, dex_file);
- //result += StringId() + " -> " + (*cit)->StringId() + "; // region -> instruction \n";
}
for (std::vector<Region*>::const_iterator cit = successors_.begin(); cit != successors_.end();
@@ -530,27 +527,6 @@ void Region::ToDot(std::string& result, const art::DexFile& dex_file) const {
result += GetLastChild()->StringId() + " -> " + (*cit)->GetLastChild()->StringId() +
"[lhead=" + (*cit)->StringId() + ", " + "ltail=" + StringId() + "];\n\n";
}
- /*
- // Save reaching definitions.
- for (std::map<int, std::set<sea_ir::InstructionNode*>* >::const_iterator cit =
- reaching_defs_.begin();
- cit != reaching_defs_.end(); cit++) {
- for (std::set<sea_ir::InstructionNode*>::const_iterator
- reaching_set_it = (*cit).second->begin();
- reaching_set_it != (*cit).second->end();
- reaching_set_it++) {
- result += (*reaching_set_it)->StringId() +
- " -> " + StringId() +
- " [style=dotted]; // Reaching def.\n";
- }
- }
- // Save dominance frontier.
- for (std::set<Region*>::const_iterator cit = df_.begin(); cit != df_.end(); cit++) {
- result += StringId() +
- " -> " + (*cit)->StringId() +
- " [color=gray]; // Dominance frontier.\n";
- }
- */
}
void Region::ComputeDownExposedDefs() {