Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F3996499
latereasoning.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, 12:30 PM
Size
780 B
Mime Type
text/x-c++
Expires
Fri, Jul 10, 12:30 PM (1 d, 6 h)
Engine
blob
Format
Raw Data
Handle
272138
Attached To
rXR Xreate
latereasoning.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: latereasoning.h
* Author: pgess <v.melnychenko@xreate.org>
*
* Created on May 26, 2018, 3:44 PM
*/
#ifndef CMPLLATEREASONING_H
#define CMPLLATEREASONING_H
#include "ast.h"
#include "pass/compilepass.h"
#include "llvmlayer.h"
namespace xreate{ namespace latereasoning {
class LateReasoningCompiler {
public:
LateReasoningCompiler(compilation::Context ctx): context(ctx){}
llvm::Value* compile(const Expression& expr, const std::string& identHint);
private:
compilation::Context context;
};
}}
#endif /* CMPLLATEREASONING_H */
Event Timeline
Log In to Comment