#include <range_analysis.h>
Definition at line 643 of file range_analysis.h.
◆ IntegerInstructionSelector()
dart::IntegerInstructionSelector::IntegerInstructionSelector |
( |
FlowGraph * |
flow_graph | ) |
|
|
explicit |
Definition at line 1459 of file range_analysis.cc.
1460 : flow_graph_(flow_graph) {
1461 ASSERT(flow_graph_ !=
nullptr);
1462 zone_ = flow_graph_->
zone();
1463 selected_uint32_defs_ =
1465}
intptr_t current_ssa_temp_index() const
◆ Select()
void dart::IntegerInstructionSelector::Select |
( |
| ) |
|
Definition at line 1467 of file range_analysis.cc.
1467 {
1468 if (FLAG_trace_integer_ir_selection) {
1469 THR_Print(
"---- starting integer ir selection -------\n");
1470 }
1471 FindPotentialUint32Definitions();
1472 FindUint32NarrowingDefinitions();
1473 Propagate();
1474 ReplaceInstructions();
1476 THR_Print(
"---- after integer ir selection -------\n");
1477 FlowGraphPrinter printer(*flow_graph_);
1478 printer.PrintBlocks();
1479 }
1480}
#define THR_Print(format,...)
constexpr bool FLAG_support_il_printer
The documentation for this class was generated from the following files: