Home
last modified time | relevance | path

Searched refs:Instr_goto (Results 1 – 4 of 4) sorted by relevance

/dports/cad/ktechlab/ktechlab-0.50.0/microbe/
H A Dpic14.cpp494 m_pCode->append( new Instr_goto(label) ); in Sgoto()
794 m_pCode->append(new Instr_goto(labelEnd)); in equal()
812 m_pCode->append(new Instr_goto(labelEnd)); in notEqual()
829 m_pCode->append(new Instr_goto(labelEnd)); in greaterThan()
850 m_pCode->append(new Instr_goto(labelEnd)); in lessThan()
864 m_pCode->append(new Instr_goto(labelTrue)); in greaterOrEqual()
870 m_pCode->append(new Instr_goto(labelEnd)); in greaterOrEqual()
887 m_pCode->append(new Instr_goto(labelEnd)); in lessOrEqual()
900 whileCode->append( new Instr_goto(ul) ); in Swhile()
915 elseCode->append( new Instr_goto(ul) ); in Srepeat()
[all …]
H A Doptimizer.cpp163 if ( Instr_goto * ins = dynamic_cast<Instr_goto*>(*it) ) in pruneInstructions()
203 Instr_goto * gotoIns = dynamic_cast<Instr_goto*>(*it); in optimizeInstructions()
219 Instruction * gotoIns = dynamic_cast<Instr_goto*>(*it); in optimizeInstructions()
438 Instr_goto * gotoIns = dynamic_cast<Instr_goto*>(*it); in redirectGotos()
H A Dinstruction.h1185 class Instr_goto : public Instruction
1188 Instr_goto( const QString & label ) { m_label = label; } in Instr_goto() function
H A Dinstruction.cpp3372 QString Instr_goto::code() const in code()
3377 void Instr_goto::generateLinksAndStates( Code::iterator current ) in generateLinksAndStates()
3386 ProcessorBehaviour Instr_goto::behaviour() const in behaviour()