OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ConstantRange
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Support/
ConstantRange.h
1
//===-- llvm/Support/
ConstantRange
.h - Represent a range --------*- C++ -*-===//
27
// Note that
ConstantRange
can be used to represent either signed or
40
///
ConstantRange
- This class represents an range of values.
42
class
ConstantRange
{
56
explicit
ConstantRange
(uint32_t BitWidth, bool isFullSet = true);
60
ConstantRange
(APIntMoveTy Value);
65
ConstantRange
(APIntMoveTy Lower, APIntMoveTy Upper);
74
static
ConstantRange
makeICmpRegion(unsigned Pred,
75
const
ConstantRange
&Other);
85
/// getBitWidth - get the bit width of this
ConstantRange
[
all
...]
/external/llvm/lib/Support/
ConstantRange.cpp
1
//===--
ConstantRange
.cpp -
ConstantRange
implementation ------------------===//
25
#include "llvm/Support/
ConstantRange
.h"
32
ConstantRange
::
ConstantRange
(uint32_t BitWidth, bool Full) {
41
ConstantRange
::
ConstantRange
(APIntMoveTy V)
44
ConstantRange
::
ConstantRange
(APIntMoveTy L, APIntMoveTy U)
47
"
ConstantRange
with unequal bit widths")
[
all
...]
Completed in 392 milliseconds