blob: 0fcb5f7e100d9e1ea3bc80a20fce8a9c32c88aa1 [file] [log] [blame]
/*
* Copyright (c) 2019 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef PAS_VIRTUAL_RANGE_H
#define PAS_VIRTUAL_RANGE_H
#include "pas_lock.h"
#include "pas_range.h"
#include "pas_utils.h"
PAS_BEGIN_EXTERN_C;
struct pas_virtual_range;
typedef struct pas_virtual_range pas_virtual_range;
PAS_API extern pas_lock pas_virtual_range_common_lock;
struct pas_virtual_range {
uintptr_t begin;
uintptr_t end;
pas_lock* lock_ptr;
};
static inline pas_virtual_range pas_virtual_range_create(uintptr_t begin,
uintptr_t end,
pas_lock* lock_ptr)
{
pas_virtual_range result;
result.begin = begin;
result.end = end;
result.lock_ptr = lock_ptr;
return result;
}
static inline pas_virtual_range pas_virtual_range_create_empty(void)
{
return pas_virtual_range_create(0, 0, NULL);
}
static inline pas_range pas_virtual_range_get_range(pas_virtual_range range)
{
return pas_range_create(range.begin, range.end);
}
static inline bool pas_virtual_range_is_empty(pas_virtual_range range)
{
return pas_range_is_empty(pas_virtual_range_get_range(range));
}
static inline size_t pas_virtual_range_size(pas_virtual_range range)
{
return pas_range_size(pas_virtual_range_get_range(range));
}
static inline bool pas_virtual_range_overlaps(pas_virtual_range left,
pas_virtual_range right)
{
return pas_range_overlaps(pas_virtual_range_get_range(left),
pas_virtual_range_get_range(right));
}
PAS_END_EXTERN_C;
#endif /* PAS_VIRTUAL_RANGE_H */