Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F3995769
cfatemporalseqpass.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
Wed, Jul 8, 2:12 AM
Size
1 KB
Mime Type
text/x-c++
Expires
Fri, Jul 10, 2:12 AM (1 d, 15 h)
Engine
blob
Format
Raw Data
Handle
271743
Attached To
rXR Xreate
cfatemporalseqpass.h
View Options
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* File: cfatemporalseqpass.h
* Author: pgess
*
* Created on February 4, 2019, 4:43 PM
*/
/**
* \file cfatemporalseqpass.h
* \brief Code blocks execution order analysis
*/
#ifndef CFATEMPORALSEQPASS_H
#define CFATEMPORALSEQPASS_H
#include "xreatemanager.h"
#include "abstractpass.h"
namespace xreate{namespace cfa {
class TemporalSeqGraph;
/** \brief Code blocks execution order analysis. The results are stored in the \ref xreate::cfa::TemporalSeqGraph graph */
class CFATemporalSeqPass: public AbstractPass<void>{
typedef AbstractPass<void> Parent;
public:
CFATemporalSeqPass(PassManager* manager);
void processFnCall(ManagedFnPtr functionCallee, PassContext context) override;
void processFnCallUncertain(const std::string& calleeName, const std::list<ManagedFnPtr>& candidates, PassContext context) override;
void process(const Expression& expression, PassContext context, const std::string& varDecl="") override;
void process(ManagedFnPtr function) override;
const TemporalSeqGraph* getReport() const {return __graph; }
void finish() override;
private:
TemporalSeqGraph* __graph;
};
}} //end of namespace xreate::cfa
#endif /* CFATEMPORALSEQPASS_H */
Event Timeline
Log In to Comment