/external/clang/lib/Sema/ |
ScopeInfo.cpp | 62 bool IsExact = false; 67 IsExact = isa<VarDecl>(D); 72 IsExact = isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()); 78 IsExact = IE->getBase()->isObjCSelfExpr(); 92 IsExact = DoubleBase->isObjCSelfExpr(); 100 return BaseInfoTy(D, IsExact);
|
/art/compiler/optimizing/ |
induction_var_range_test.cc | 221 bool IsExact(HInductionVarAnalysis::InductionInfo* info, int64_t* value) { 264 EXPECT_TRUE(IsExact(CreateConst(12345), &value)); 271 EXPECT_TRUE(IsExact(CreateRange(111, 111), &value)); 278 EXPECT_FALSE(IsExact(CreateRange(11, 22), &value)); 284 EXPECT_FALSE(IsExact(CreateFetch(x_), &value)); [all...] |
induction_var_analysis.cc | 421 if (a != nullptr && IsExact(b, &value)) { 621 if (!IsExact(stride_expr, &stride_value)) { [all...] |
nodes.h | 177 bool IsExact() const { return is_exact_; } 216 if (!IsExact()) return false; 223 if (!IsExact()) return false; 257 return IsExact() == rti.IsExact() [all...] |
/external/llvm/include/llvm/IR/ |
Operator.h | 129 IsExact = (1 << 0) 136 SubclassOptionalData = (SubclassOptionalData & ~IsExact) | (B * IsExact); 141 bool isExact() const { 142 return SubclassOptionalData & IsExact;
|
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineMulDivRem.cpp | 46 // (PowerOfTwo >>u B) --> isExact since shifting out the result would make it 60 if (I->getOpcode() == Instruction::LShr && !I->isExact()) { 324 if (SDiv->isExact()) { 827 BO->setIsExact(I.isExact()); 855 BO->setIsExact(I.isExact()); [all...] |
InstCombineCompares.cpp | [all...] |
/external/clang/lib/CodeGen/ |
CGExprScalar.cpp | 617 bool IsExact; 619 &IsExact) != APFloat::opOK) [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAG.cpp | [all...] |