HomeSort by relevance Sort by last modified time
    Searched defs:ConstantRange (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/IR/
ConstantRange.h 1 //===- ConstantRange.h - Represent a range ----------------------*- C++ -*-===//
27 // Note that ConstantRange can be used to represent either signed or
43 class ConstantRange {
52 explicit ConstantRange(uint32_t BitWidth, bool isFullSet = true);
56 ConstantRange(APIntMoveTy Value);
61 ConstantRange(APIntMoveTy Lower, APIntMoveTy Upper);
67 /// answer is not representable as a ConstantRange, the return value will be a
71 static ConstantRange makeAllowedICmpRegion(CmpInst::Predicate Pred,
72 const ConstantRange &Other);
78 /// exact answer is not representable as a ConstantRange, the return valu
    [all...]
  /external/swiftshader/third_party/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 {
48 explicit ConstantRange(uint32_t BitWidth, bool isFullSet = true);
52 ConstantRange(const APInt &Value);
57 ConstantRange(const APInt &Lower, const APInt &Upper);
66 static ConstantRange makeICmpRegion(unsigned Pred,
67 const ConstantRange &Other);
77 /// getBitWidth - get the bit width of this ConstantRange
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
ConstantRange.h 1 //===- ConstantRange.h - Represent a range ----------------------*- C++ -*-===//
27 // Note that ConstantRange can be used to represent either signed or
47 class LLVM_NODISCARD ConstantRange {
52 explicit ConstantRange(uint32_t BitWidth, bool isFullSet = true);
55 ConstantRange(APInt Value);
60 ConstantRange(APInt Lower, APInt Upper);
66 /// answer is not representable as a ConstantRange, the return value will be a
70 static ConstantRange makeAllowedICmpRegion(CmpInst::Predicate Pred,
71 const ConstantRange &Other);
77 /// exact answer is not representable as a ConstantRange, the return valu
    [all...]
  /external/llvm/lib/IR/
ConstantRange.cpp 1 //===-- ConstantRange.cpp - ConstantRange implementation ------------------===//
27 #include "llvm/IR/ConstantRange.h"
34 ConstantRange::ConstantRange(uint32_t BitWidth, bool Full) {
43 ConstantRange::ConstantRange(APIntMoveTy V)
46 ConstantRange::ConstantRange(APIntMoveTy L, APIntMoveTy U)
49 "ConstantRange with unequal bit widths")
    [all...]
  /external/swiftshader/third_party/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(const APInt &V) : Lower(V), Upper(V + 1) {}
43 ConstantRange::ConstantRange(const APInt &L, const APInt &U) :
46 "ConstantRange with unequal bit widths")
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
ConstantRange.cpp 1 //===- ConstantRange.cpp - ConstantRange implementation -------------------===//
26 #include "llvm/IR/ConstantRange.h"
42 ConstantRange::ConstantRange(uint32_t BitWidth, bool Full)
46 ConstantRange::ConstantRange(APInt V)
49 ConstantRange::ConstantRange(APInt L, APInt U)
52 "ConstantRange with unequal bit widths")
    [all...]

Completed in 77 milliseconds