Home
last modified time | relevance | path

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

/dports/cad/ktechlab/ktechlab-0.50.0/microbe/
H A Dpic14.cpp529 m_pCode->append( new Instr_call(name) ); in Scall()
636 m_pCode->append(new Instr_call("__picfunc_multiply")); in mul()
691 m_pCode->append(new Instr_call("__picfunc_divide"));//result+=instruction("call __picfunc_divide"); in div()
1054 m_pCode->append( new Instr_call( "__delay_subroutine"), pos ); in Sdelay()
1098 m_pCode->append( new Instr_call( subName ) ); in SsevenSegment()
1176 m_pCode->append( new Instr_call( subName + QString("_lookup_%1").arg(port) ), Code::Subroutine ); in SsevenSegment()
1223 m_pCode->append( new Instr_call( subName ) ); in Skeypad()
1232 m_pCode->append( new Instr_call( readName ), Code::Subroutine ); in Skeypad()
1250 m_pCode->append( new Instr_call( readName ), Code::Subroutine ); in Skeypad()
H A Doptimizer.cpp165 else if ( Instr_call * ins = dynamic_cast<Instr_call*>(*it) ) in pruneInstructions()
H A Dinstruction.cpp2353 Instr_call * ins = dynamic_cast<Instr_call*>(*it); in generateLinksAndStates()
3299 QString Instr_call::code() const in code()
3304 void Instr_call::generateLinksAndStates( Code::iterator current ) in generateLinksAndStates()
3312 ProcessorBehaviour Instr_call::behaviour() const in behaviour()
3318 void Instr_call::makeReturnLinks( Instruction * next ) in makeReturnLinks()
3325 void Instr_call::linkReturns( Instruction * current, Instruction * returnPoint ) in linkReturns()
3341 if ( dynamic_cast<Instr_call*>(current) ) in linkReturns()
H A Dinstruction.h1146 class Instr_call : public Instruction
1149 Instr_call( const QString & label ) { m_label = label; } in Instr_call() function