HomeSort by: relevance | last modified time | path
    Searched defs:isExact (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
InstructionSimplify.h 87 bool isExact(const BinaryOperator *Op) const {
89 return cast<PossiblyExactOperator>(Op)->isExact();
206 Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
210 Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Operator.h 123 IsExact = (1 << 0)
131 SubclassOptionalData = (SubclassOptionalData & ~IsExact) | (B * IsExact);
136 bool isExact() const {
137 return SubclassOptionalData & IsExact;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instruction.cpp 165 bool Instruction::isExact() const {
166 return cast<PossiblyExactOperator>(this)->isExact();
280 setIsExact(PE->isExact());
302 setIsExact(isExact() & PE->isExact());
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp 1783 bool isExact = false;
1788 IsSigned, mode, &isExact);
1890 bool IsExact = false;
1892 U.convertToInteger(Int, APFloat::rmTowardZero, &IsExact);
1905 bool IsExact;
1906 U.convertToInteger(Int, APFloat::rmTowardZero, &IsExact);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 307 bool isExact;
308 (void)Flt.convertToInteger(SIntVal, APFloat::rmTowardZero, &isExact);
309 if (isExact) {
501 cast<BinaryOperator>(I)->isExact() && isPowerOf2_64(Imm)) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 193 bool isExact = false;
197 APFloat::rmTowardZero, &isExact) != APFloat::opOK ||
198 !isExact)
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 1632 FloatingLiteral(const ASTContext &C, const llvm::APFloat &V, bool isexact,
1640 bool isexact, QualType Type, SourceLocation L);
1676 bool isExact() const { return FloatingLiteralBits.IsExact; }
1677 void setExact(bool E) { FloatingLiteralBits.IsExact = E; }
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 10623 if (FLL->isExact())
10627 if (FLR->isExact())
11848 bool isExact = false;
11853 IntegerValue, llvm::APFloat::rmTowardZero, &isExact);
11872 if (Result == llvm::APFloat::opOK && isExact) {
SemaExpr.cpp 3617 bool isExact = (result == APFloat::opOK);
3618 return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc);

Completed in 86 milliseconds