Files
clang-r547379/include/polly/Support/ISLOperators.h
Ryan Prichard 6024e5c395 Update prebuilt Clang to r547379 (20.0.0).
clang 20.0.0 (based on r547379) from build 12806354.

Bug: http://b/379133546
Test: N/A
Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b

Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
2025-11-26 14:59:46 -05:00

185 lines
4.9 KiB
C++

//===------ ISLOperators.h --------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// Operator overloads for isl C++ objects.
//
//===----------------------------------------------------------------------===//
#ifndef POLLY_ISLOPERATORS_H
#define POLLY_ISLOPERATORS_H
#include "isl/isl-noexceptions.h"
namespace polly {
/// Addition
/// @{
inline isl::pw_aff operator+(isl::pw_aff Left, isl::pw_aff Right) {
return Left.add(Right);
}
inline isl::pw_aff operator+(isl::val ValLeft, isl::pw_aff Right) {
isl::pw_aff Left(Right.domain(), ValLeft);
return Left.add(Right);
}
inline isl::pw_aff operator+(isl::pw_aff Left, isl::val ValRight) {
isl::pw_aff Right(Left.domain(), ValRight);
return Left.add(Right);
}
inline isl::pw_aff operator+(long IntLeft, isl::pw_aff Right) {
isl::ctx Ctx = Right.ctx();
isl::val ValLeft(Ctx, IntLeft);
isl::pw_aff Left(Right.domain(), ValLeft);
return Left.add(Right);
}
inline isl::pw_aff operator+(isl::pw_aff Left, long IntRight) {
isl::ctx Ctx = Left.ctx();
isl::val ValRight(Ctx, IntRight);
isl::pw_aff Right(Left.domain(), ValRight);
return Left.add(Right);
}
/// @}
/// Multiplication
/// @{
inline isl::pw_aff operator*(isl::pw_aff Left, isl::pw_aff Right) {
return Left.mul(Right);
}
inline isl::pw_aff operator*(isl::val ValLeft, isl::pw_aff Right) {
isl::pw_aff Left(Right.domain(), ValLeft);
return Left.mul(Right);
}
inline isl::pw_aff operator*(isl::pw_aff Left, isl::val ValRight) {
isl::pw_aff Right(Left.domain(), ValRight);
return Left.mul(Right);
}
inline isl::pw_aff operator*(long IntLeft, isl::pw_aff Right) {
isl::ctx Ctx = Right.ctx();
isl::val ValLeft(Ctx, IntLeft);
isl::pw_aff Left(Right.domain(), ValLeft);
return Left.mul(Right);
}
inline isl::pw_aff operator*(isl::pw_aff Left, long IntRight) {
isl::ctx Ctx = Left.ctx();
isl::val ValRight(Ctx, IntRight);
isl::pw_aff Right(Left.domain(), ValRight);
return Left.mul(Right);
}
/// @}
/// Subtraction
/// @{
inline isl::pw_aff operator-(isl::pw_aff Left, isl::pw_aff Right) {
return Left.sub(Right);
}
inline isl::pw_aff operator-(isl::val ValLeft, isl::pw_aff Right) {
isl::pw_aff Left(Right.domain(), ValLeft);
return Left.sub(Right);
}
inline isl::pw_aff operator-(isl::pw_aff Left, isl::val ValRight) {
isl::pw_aff Right(Left.domain(), ValRight);
return Left.sub(Right);
}
inline isl::pw_aff operator-(long IntLeft, isl::pw_aff Right) {
isl::ctx Ctx = Right.ctx();
isl::val ValLeft(Ctx, IntLeft);
isl::pw_aff Left(Right.domain(), ValLeft);
return Left.sub(Right);
}
inline isl::pw_aff operator-(isl::pw_aff Left, long IntRight) {
isl::ctx Ctx = Left.ctx();
isl::val ValRight(Ctx, IntRight);
isl::pw_aff Right(Left.domain(), ValRight);
return Left.sub(Right);
}
/// @}
/// Division
///
/// This division rounds towards zero. This follows the semantics of C/C++.
///
/// @{
inline isl::pw_aff operator/(isl::pw_aff Left, isl::pw_aff Right) {
return Left.tdiv_q(Right);
}
inline isl::pw_aff operator/(isl::val ValLeft, isl::pw_aff Right) {
isl::pw_aff Left(Right.domain(), ValLeft);
return Left.tdiv_q(Right);
}
inline isl::pw_aff operator/(isl::pw_aff Left, isl::val ValRight) {
isl::pw_aff Right(Left.domain(), ValRight);
return Left.tdiv_q(Right);
}
inline isl::pw_aff operator/(long IntLeft, isl::pw_aff Right) {
isl::ctx Ctx = Right.ctx();
isl::val ValLeft(Ctx, IntLeft);
isl::pw_aff Left(Right.domain(), ValLeft);
return Left.tdiv_q(Right);
}
inline isl::pw_aff operator/(isl::pw_aff Left, long IntRight) {
isl::ctx Ctx = Left.ctx();
isl::val ValRight(Ctx, IntRight);
isl::pw_aff Right(Left.domain(), ValRight);
return Left.tdiv_q(Right);
}
/// @}
/// Remainder
///
/// This is the remainder of a division which rounds towards zero. This follows
/// the semantics of C/C++.
///
/// @{
inline isl::pw_aff operator%(isl::pw_aff Left, isl::pw_aff Right) {
return Left.tdiv_r(Right);
}
inline isl::pw_aff operator%(isl::val ValLeft, isl::pw_aff Right) {
isl::pw_aff Left(Right.domain(), ValLeft);
return Left.tdiv_r(Right);
}
inline isl::pw_aff operator%(isl::pw_aff Left, isl::val ValRight) {
isl::pw_aff Right(Left.domain(), ValRight);
return Left.tdiv_r(Right);
}
inline isl::pw_aff operator%(long IntLeft, isl::pw_aff Right) {
isl::ctx Ctx = Right.ctx();
isl::val ValLeft(Ctx, IntLeft);
isl::pw_aff Left(Right.domain(), ValLeft);
return Left.tdiv_r(Right);
}
inline isl::pw_aff operator%(isl::pw_aff Left, long IntRight) {
isl::ctx Ctx = Left.ctx();
isl::val ValRight(Ctx, IntRight);
isl::pw_aff Right(Left.domain(), ValRight);
return Left.tdiv_r(Right);
}
/// @}
} // namespace polly
#endif // POLLY_ISLOPERATORS_H