aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/graph-replay.cc
blob: efb1180a7777a027d76c2960f5de2feb31496ae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/compiler/graph-replay.h"

#include "src/compiler/common-operator.h"
#include "src/compiler/graph.h"
#include "src/compiler/graph-inl.h"
#include "src/compiler/node.h"
#include "src/compiler/operator.h"
#include "src/compiler/operator-properties-inl.h"

namespace v8 {
namespace internal {
namespace compiler {

#ifdef DEBUG

void GraphReplayPrinter::PrintReplay(Graph* graph) {
  GraphReplayPrinter replay;
  PrintF("  Node* nil = graph.NewNode(common_builder.Dead());\n");
  graph->VisitNodeInputsFromEnd(&replay);
}


GenericGraphVisit::Control GraphReplayPrinter::Pre(Node* node) {
  PrintReplayOpCreator(node->op());
  PrintF("  Node* n%d = graph.NewNode(op", node->id());
  for (int i = 0; i < node->InputCount(); ++i) {
    PrintF(", nil");
  }
  PrintF("); USE(n%d);\n", node->id());
  return GenericGraphVisit::CONTINUE;
}


void GraphReplayPrinter::PostEdge(Node* from, int index, Node* to) {
  PrintF("  n%d->ReplaceInput(%d, n%d);\n", from->id(), index, to->id());
}


void GraphReplayPrinter::PrintReplayOpCreator(Operator* op) {
  IrOpcode::Value opcode = static_cast<IrOpcode::Value>(op->opcode());
  const char* builder =
      IrOpcode::IsCommonOpcode(opcode) ? "common_builder" : "js_builder";
  const char* mnemonic = IrOpcode::IsCommonOpcode(opcode)
                             ? IrOpcode::Mnemonic(opcode)
                             : IrOpcode::Mnemonic(opcode) + 2;
  PrintF("  op = %s.%s(", builder, mnemonic);
  switch (opcode) {
    case IrOpcode::kParameter:
    case IrOpcode::kNumberConstant:
      PrintF("0");
      break;
    case IrOpcode::kLoad:
      PrintF("unique_name");
      break;
    case IrOpcode::kHeapConstant:
      PrintF("unique_constant");
      break;
    case IrOpcode::kPhi:
      PrintF("%d", op->InputCount());
      break;
    case IrOpcode::kEffectPhi:
      PrintF("%d", OperatorProperties::GetEffectInputCount(op));
      break;
    case IrOpcode::kLoop:
    case IrOpcode::kMerge:
      PrintF("%d", OperatorProperties::GetControlInputCount(op));
      break;
    default:
      break;
  }
  PrintF(");\n");
}

#endif  // DEBUG
}
}
}  // namespace v8::internal::compiler