Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F4000844
cfgpass.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
Thu, Jul 9, 4:57 AM
Size
446 B
Mime Type
text/x-c++
Expires
Sat, Jul 11, 4:57 AM (1 d, 4 h)
Engine
blob
Format
Raw Data
Handle
273361
Attached To
rXR Xreate
cfgpass.h
View Options
// Control Flow Graph determination pass
#ifndef CFGPASS_H
#define CFGPASS_H
#include "passmanager.h"
#include "clasplayer.h"
namespace xreate {
class CFGPass : public ASTPass
{
public:
void init();
CFGPass(PassManager* manager);
void process(ManagedFnPtr function, PassContext context);
virtual void start();
virtual void finish();
private:
struct {
CFGraph graph;
} __context;
}; }
#endif // CFGPASS_H
Event Timeline
Log In to Comment