llvm/polly/lib/External/isl/isl_multi_no_domain_templ.c

/*
 * Copyright 2013      Ecole Normale Superieure
 *
 * Use of this software is governed by the MIT license
 *
 * Written by Sven Verdoolaege,
 * Ecole Normale Superieure, 45 rue d'Ulm, 75230 Paris, France
 */

#include <isl/space.h>
#include <isl/local_space.h>
#include <isl_reordering.h>

#include <isl_multi_macro.h>

/* The functions in this file are meant for base object types
 * that do not have any associated space.  They are only meant to be used
 * in the generic isl_multi_* functions which have to deal with base objects
 * that do have an associated space.
 */


/* Drop the "n" first dimensions of type "type" at position "first".
 *
 * For a base expression without an associated space, this function
 * does not do anything.
 */
static __isl_give EL *FN(EL,drop_dims)(__isl_take EL *el,
	enum isl_dim_type type, unsigned first, unsigned n)
{}

/* Return the space of "el".
 *
 * For a base expression without an associated space,
 * the conditions surrounding the call to this function make sure
 * that this function will never actually get called.  We return a valid
 * space anyway, just in case.
 */
static __isl_give isl_space *FN(EL,get_space)(__isl_keep EL *el)
{}

/* Reset the domain space of "el" to "space".
 *
 * For a base expression without an associated space, this function
 * does not do anything, apart from error handling and cleaning up memory.
 */
static __isl_give EL *FN(EL,reset_domain_space)(__isl_take EL *el,
	__isl_take isl_space *space)
{}

/* Align the parameters of "el" to those of "space".
 *
 * For a base expression without an associated space, this function
 * does not do anything, apart from error handling and cleaning up memory.
 * Note that the conditions surrounding the call to this function make sure
 * that this function will never actually get called.
 */
static __isl_give EL *FN(EL,align_params)(__isl_take EL *el,
	__isl_take isl_space *space)
{}

/* Reorder the dimensions of the domain of "el" according
 * to the given reordering.
 *
 * For a base expression without an associated space, this function
 * does not do anything, apart from error handling and cleaning up memory.
 */
static __isl_give EL *FN(EL,realign_domain)(__isl_take EL *el,
	__isl_take isl_reordering *r)
{}

/* Do the parameters of "el" match those of "space"?
 *
 * For a base expression without an associated space, this function
 * simply returns true, except if "el" or "space" are NULL.
 */
static isl_bool FN(EL,matching_params)(__isl_keep EL *el,
	__isl_keep isl_space *space)
{}

/* Check that the domain space of "el" matches "space".
 *
 * For a base expression without an associated space, this function
 * simply returns isl_stat_ok, except if "el" or "space" are NULL.
 */
static isl_stat FN(EL,check_match_domain_space)(__isl_keep EL *el,
	__isl_keep isl_space *space)
{}