Searched refs:IfStep (Results 1 – 2 of 2) sorted by relevance
413 struct IfStep { struct499 bool isIf() const { return std::holds_alternative<IfStep>(mStep); } in isIf()505 IfStep* ifStep() { return &std::get<IfStep>(mStep); } in ifStep()511 const IfStep* ifStep() const { return &std::get<IfStep>(mStep); } in ifStep()517 IfStep* tryIfStep() { return std::get_if<IfStep>(&mStep); } in tryIfStep()523 const IfStep* tryIfStep() const { return std::get_if<IfStep>(&mStep); } in tryIfStep()530 std::variant<ExecutionStep, IfStep, WhileStep, GotoStep> mStep;533 std::ostream& operator<<(std::ostream& os, const IfStep& step);705 IfStep* createNewIfStep();822 int nextCompound(const IfStep* step, std::shared_ptr<Controller> controller,
700 } else if (const IfStep* step = logicalStep->tryIfStep()) { in findTempsAsStepModelOutputs()886 std::ostream& operator<<(std::ostream& os, const IfStep& step) { in operator <<()902 if (const IfStep* step = tryIfStep()) { in dump()965 } else if (IfStep* step = logicalStep->tryIfStep()) { in finish()1037 if (const IfStep* step = logicalStep->tryIfStep()) { in findControlFlowBoundaryConstants()1064 } else if (const IfStep* step = logicalStep->tryIfStep()) { in findMemoryStepRoles()1349 } else if (const IfStep* step = logicalStep->tryIfStep()) { in makeController()1595 if (const IfStep* step = logicalStep->tryIfStep()) { in nextCompound()1713 int ExecutionPlan::nextCompound(const IfStep* step, std::shared_ptr<Controller> controller, in nextCompound()1914 IfStep* ExecutionPlan::createNewIfStep() { in createNewIfStep()[all …]