Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F3995713
dfgpass.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jul 7, 10:19 PM
Size
669 B
Mime Type
text/x-c++
Expires
Thu, Jul 9, 10:19 PM (1 d, 14 h)
Engine
blob
Format
Raw Data
Handle
271720
Attached To
rXR Xreate
dfgpass.h
View Options
// Data Flow Graph determination pass
#ifndef DFGPASS_H
#define DFGPASS_H
#include "abstractpass.h"
#include "clasplayer.h"
namespace xreate {
class DFGPass: public AbstractPass {
public:
void process(const Expression& expression, PassContext context, const std::string& varDecl="");
SymbolPacked processExpression(const Expression& expression, PassContext context, const std::string& decl="");
DFGPass(PassManager* manager);
unsigned int hash(const CodeScope* scope);
void init();
void run();
void finish();
private:
struct
{
DFGraph graph;
} __context;
std::map<Operator, Expression> __schemes;
};
};
#endif
Event Timeline
Log In to Comment