Home
last modified time | relevance | path

Searched defs:SimpleForLoopInst (Results 1 – 1 of 1) sorted by relevance

/dports/audio/faust/faust-2.37.3/compiler/generator/
H A Dinstructions.hh1304 struct SimpleForLoopInst : public StatementInst { struct
1311SimpleForLoopInst(const string& name, ValueInst* upperBound, ValueInst* lowerBound, bool reverse, … in SimpleForLoopInst() function
1318 virtual ~SimpleForLoopInst() {} in ~SimpleForLoopInst() argument
1320 void pushFrontInst(StatementInst* inst) { fCode->pushFrontInst(inst); } in pushFrontInst()
1322 void pushBackInst(StatementInst* inst) { fCode->pushBackInst(inst); } in pushBackInst()
1324 void accept(InstVisitor* visitor) { visitor->visit(this); } in accept()
1326 StatementInst* clone(CloneVisitor* cloner) { return cloner->visit(this); } in clone()