Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F3996879
operators.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, 4:33 PM
Size
669 B
Mime Type
text/x-c++
Expires
Fri, Jul 10, 4:33 PM (1 d, 9 h)
Engine
blob
Format
Raw Data
Handle
272337
Attached To
rXR Xreate
operators.h
View Options
/*
* File: operators.h
* Author: pgess <v.melnychenko@xreate.org>
*
* Created on April 8, 2017, 1:33 PM
*/
#ifndef OPERATORS_H
#define OPERATORS_H
#include "pass/compilepass.h"
namespace llvm {
class Value;
}
namespace xreate { namespace compilation {
class PointerArithmetic {
public:
static llvm::Value* add(llvm::Value *left, llvm::Value *right, Context context, const std::string& hintVarDecl);
};
class StructUpdate {
public:
static llvm::Value* add(const Expression& left, llvm::Value *leftRaw, const Expression& right, Context context, const std::string& hintVarDecl);
};
} } //namespace xreate
#endif /* OPERATORS_H */
Event Timeline
Log In to Comment