Home
last modified time | relevance | path

Searched refs:StatementList (Results 1 – 25 of 375) sorted by relevance

12345678910>>...15

/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/deps/CodeGen/include/
H A DJitter.h273 StatementList statements;
282 StatementList statements;
293 bool ConstantFolding(StatementList&);
294 bool ConstantPropagation(StatementList&);
295 bool CopyPropagation(StatementList&);
296 bool ReorderAdd(StatementList&);
299 void FixFlowControl(StatementList&);
326 VERSIONED_STATEMENT_LIST GenerateVersionedStatementList(const StatementList&);
327 StatementList CollapseVersionedStatementList(const VERSIONED_STATEMENT_LIST&);
H A DJitter_Statement.h242 typedef std::list<STATEMENT> StatementList; typedef
245 void DumpStatementList(const StatementList&);
246 void DumpStatementList(std::ostream&, const StatementList&);
315 …typedef IndexedStatementListBase<StatementList, StatementList::iterator, STATEMENT> IndexedStateme…
316 …typedef IndexedStatementListBase<const StatementList, StatementList::const_iterator, const STATEME…
H A DJitter_CodeGen.h29 virtual void GenerateCode(const StatementList&, unsigned int) = 0;
92 static uint32 GetRegisterUsage(const StatementList&);
/dports/misc/openvdb/openvdb-9.0.0/openvdb_ax/openvdb_ax/test/frontend/
H A DTestStatementListNode.cc22 { "int32 a = (1,2,3), b=1, c=(b=1);", Node::Ptr(new StatementList({
36 { "int32 a, b;", Node::Ptr(new StatementList({
41 { "int32 a, b = 1;", Node::Ptr(new StatementList({
46 { "int32 a, b = 1, c = 1;", Node::Ptr(new StatementList({
52 { "int32 a, b = 1, c;", Node::Ptr(new StatementList({
58 { "int32 a, b = 1, c, d = 1;", Node::Ptr(new StatementList({
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/play/include/
H A DJitter_Statement.h217 typedef std::list<STATEMENT> StatementList; typedef
220 void DumpStatementList(const StatementList&);
221 void DumpStatementList(std::ostream&, const StatementList&);
290 …typedef IndexedStatementListBase<StatementList, StatementList::iterator, STATEMENT> IndexedStateme…
291 …typedef IndexedStatementListBase<const StatementList, StatementList::const_iterator, const STATEME…
H A DJitter.h254 StatementList statements;
263 StatementList statements;
273 bool ConstantFolding(StatementList&);
274 bool ConstantPropagation(StatementList&);
275 bool CopyPropagation(StatementList&);
278 void FixFlowControl(StatementList&);
305 VERSIONED_STATEMENT_LIST GenerateVersionedStatementList(const StatementList&);
306 StatementList CollapseVersionedStatementList(const VERSIONED_STATEMENT_LIST&);
H A DJitter_CodeGen.h22 virtual void GenerateCode(const StatementList&, unsigned int) = 0;
81 static uint32 GetRegisterUsage(const StatementList&);
/dports/math/geogram/geogram-1.7.7/src/bin/fpg/
H A DAST.cpp154 StatementList *slist = new StatementList(); in ConditionalStatement()
164 StatementList *slist = new StatementList(); in ConditionalStatement()
174 StatementList::hasToplevelVariableDeclaration() { in hasToplevelVariableDeclaration()
192 StatementList::hasBreakOrReturnOnExit() { in hasBreakOrReturnOnExit()
201 : global_statements( new StatementList() ), has_main( false ) in TranslationUnit()
242 ACCEPT(StatementList) in ACCEPT()
351 StatementList*
352 StatementList::clone( Clone_context *context ) { in clone()
353 StatementList *new_statementlist = update_location( this, new StatementList ); in clone()
469 AST::StatementList *l = new AST::StatementList(); in make_fe_clear_and_fail()
H A Dparse.y61 AST::StatementList* statements;
63 AST::StatementList* stm_list;
327 { $$ = new AST::StatementList(); $$->add($1); }
339 { $$ = new AST::CompoundStatement(new AST::StatementList()); }
385 { $$ = new AST::StatementList(); $$->add( $1 ); }
400 AST::StatementList *l = new AST::StatementList();
/dports/cad/iverilog/verilog-11.0/vhdlpp/
H A Darchitec.h250 class StatementList : public Architecture::Statement {
252 StatementList(std::list<SequentialStmt*>*statement_list);
253 virtual ~StatementList();
275 class InitialStatement : public StatementList {
278 : StatementList(statement_list) {} in InitialStatement()
286 class FinalStatement : public StatementList {
289 : StatementList(statement_list) {} in FinalStatement()
295 class ProcessStatement : public StatementList, public Scope {
H A Darchitec_debug.cc110 void StatementList::dump(ostream&out, int indent) const in dump()
124 StatementList::dump(out, indent); in dump()
131 StatementList::dump(out, indent); in dump()
146 StatementList::dump(out, indent); in dump()
H A Darchitec.cc256 StatementList::StatementList(std::list<SequentialStmt*>*statement_list) in StatementList() function in StatementList
262 StatementList::~StatementList() in ~StatementList()
274 : StatementList(statements_list), Scope(ref), iname_(iname) in ProcessStatement()
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/common/script_system/parser/
H A Djs_parser.yy58 Program: StatementList;
60 StatementList:
61 | StatementList Statement
74 Block: OpenBlock StatementList CloseBlock;
127 FunctionDecl: StartFun StatementList CloseBlock;
232 FunctionExpr: StartOptFun StatementList CloseBlock
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/play/src/
H A DJitter_Optimize.cpp90 for(StatementList::const_iterator statementIterator(statements.begin()); in GenerateVersionedStatementList()
139 StatementList result; in CollapseVersionedStatementList()
777 bool CJitter::ConstantFolding(StatementList& statements) in ConstantFolding()
793 void CJitter::FixFlowControl(StatementList& statements) in FixFlowControl()
796 for(StatementList::iterator statementIterator(statements.begin()); in FixFlowControl()
813 for(StatementList::iterator statementIterator(statements.begin()); in FixFlowControl()
829 const StatementList& srcStatements(srcBlock.statements); in MergeBasicBlocks()
1060 bool CJitter::ConstantPropagation(StatementList& statements) in ConstantPropagation()
1064 for(StatementList::iterator outerStatementIterator(statements.begin()); in ConstantPropagation()
1104 bool CJitter::CopyPropagation(StatementList& statements) in CopyPropagation()
[all …]
/dports/math/geogram/geogram-1.7.7/src/bin/fpg/FPG/
H A DTransformation.h46 Position( AST::StatementList *stmt_list ) in Position()
51 AST::StatementList *stmt_list;
57 virtual void visit( AST::StatementList * );
95 virtual void visit( AST::StatementList* );
241 virtual void visit( AST::StatementList* stmt_list );
/dports/net-im/dendrite/dendrite-0.5.1/roomserver/storage/shared/
H A Dprepare.go24 type StatementList []struct { type
30 func (s StatementList) Prepare(db *sql.DB) (err error) {
/dports/databases/cegobridge/cegobridge-1.6.1/src/
H A DOracleParser.def83 Start : StatementList ; postAction
84 StatementList : StatementList Statement SEMICOLON
85 StatementList : Statement SEMICOLON
H A DPostgresParser.def86 Start : StatementList ; postAction
87 StatementList : StatementList Statement SEMICOLON
88 StatementList : Statement SEMICOLON
/dports/lang/gnu-apl/apl-1.8/src/
H A DExecutable.hh230 class StatementList : public Executable class
236 static StatementList * fix(const UCS_string & data, const char * loc);
240 StatementList(const UCS_string txt, const char * loc) in StatementList() function in StatementList
/dports/lang/vala/vala-0.48.18/vala/
H A Dvalablock.vala73 unowned StatementList? stmt_list = stmt as StatementList;
182 // use get_statements () instead of statement_list to not miss errors within StatementList objects
194 var stmt_list = statement_list[i] as StatementList;
204 stmt_list = new StatementList (source_reference);
215 var stmt_list = statement_list[i] as StatementList;
/dports/converters/wkhtmltopdf/qt-5db36ec/src/script/parser/
H A Dqscriptast_p.h814 Block(StatementList *slist): in Block()
822 StatementList *statements;
825 class StatementList: public Node
828 StatementList(Statement *stmt): in StatementList() function
832 StatementList(StatementList *previous, Statement *stmt): in StatementList() function
840 virtual ~StatementList() {} in ~StatementList()
844 inline StatementList *finish () in finish()
846 StatementList *front = next; in finish()
853 StatementList *next;
1201 StatementList *statements;
[all …]
/dports/devel/qt5-script/kde-qtscript-5.15.2p4/src/script/parser/
H A Dqscriptast_p.h830 Block(StatementList *slist): in Block()
838 StatementList *statements;
841 class StatementList: public Node
844 StatementList(Statement *stmt): in StatementList() function
848 StatementList(StatementList *previous, Statement *stmt): in StatementList() function
856 virtual ~StatementList() {} in ~StatementList()
860 inline StatementList *finish () in finish()
862 StatementList *front = next; in finish()
869 StatementList *next;
1217 StatementList *statements;
[all …]
/dports/devel/qt5-scripttools/kde-qtscript-5.15.2p4/src/script/parser/
H A Dqscriptast_p.h830 Block(StatementList *slist): in Block()
838 StatementList *statements;
841 class StatementList: public Node
844 StatementList(Statement *stmt): in StatementList() function
848 StatementList(StatementList *previous, Statement *stmt): in StatementList() function
856 virtual ~StatementList() {} in ~StatementList()
860 inline StatementList *finish () in finish()
862 StatementList *front = next; in finish()
869 StatementList *next;
1217 StatementList *statements;
[all …]
/dports/security/openconnect-gui/openconnect-gui-v1.5.3/external/src/qt-solutions-master/qtscriptclassic/src/
H A Dqscriptast_p.h833 Block(StatementList *slist): in Block()
841 StatementList *statements;
844 class StatementList: public Node
847 StatementList(Statement *stmt): in StatementList() function
851 StatementList(StatementList *previous, Statement *stmt): in StatementList() function
859 virtual ~StatementList() {} in ~StatementList()
863 inline StatementList *finish () in finish()
865 StatementList *front = next; in finish()
872 StatementList *next;
1220 StatementList *statements;
[all …]
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/deps/CodeGen/src/
H A DJitter_Optimize.cpp138 StatementList result; in CollapseVersionedStatementList()
830 bool CJitter::ConstantFolding(StatementList& statements) in ConstantFolding()
843 void CJitter::FixFlowControl(StatementList& statements) in FixFlowControl()
860 for(StatementList::iterator statementIterator(statements.begin()); in FixFlowControl()
1009 StatementList::iterator lastStatementIterator(basicBlock.statements.end()); in HarmonizeBlocks()
1031 StatementList::const_iterator lastInstruction(block.statements.end()); in HarmonizeBlocks()
1090 bool CJitter::ConstantPropagation(StatementList& statements) in ConstantPropagation()
1094 for(StatementList::iterator outerStatementIterator(statements.begin()); in ConstantPropagation()
1131 bool CJitter::ReorderAdd(StatementList& statements) in ReorderAdd()
1175 bool CJitter::CopyPropagation(StatementList& statements) in CopyPropagation()
[all …]

12345678910>>...15