HomeSort by relevance Sort by last modified time
    Searched defs:ConstantRange (Results 1 - 2 of 2) 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
40 /// ConstantRange - This class represents an range of values.
42 class ConstantRange {
51 explicit ConstantRange(uint32_t BitWidth, bool isFullSet = true);
55 ConstantRange(APIntMoveTy Value);
60 ConstantRange(APIntMoveTy Lower, APIntMoveTy Upper);
69 static ConstantRange makeICmpRegion(unsigned Pred,
70 const ConstantRange &Other);
80 /// getBitWidth - get the bit width of this ConstantRange
    [all...]
  /external/llvm/lib/IR/
ConstantRange.cpp 1 //===-- ConstantRange.cpp - ConstantRange implementation ------------------===//
25 #include "llvm/IR/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 45 milliseconds