Home
last modified time | relevance | path

Searched refs:ConstLowerBound (Results 1 – 4 of 4) sorted by relevance

/external/clang/lib/CodeGen/
DCGExpr.cpp3071 llvm::APSInt ConstLowerBound(PointerWidthInBits, /*isUnsigned=*/false); in EmitOMPArraySectionExpr() local
3072 if (LowerBound && LowerBound->isIntegerConstantExpr(ConstLowerBound, C)) { in EmitOMPArraySectionExpr()
3073 ConstLowerBound = ConstLowerBound.zextOrTrunc(PointerWidthInBits); in EmitOMPArraySectionExpr()
3079 --ConstLowerBound; in EmitOMPArraySectionExpr()
3087 : llvm::ConstantInt::get(IntPtrTy, ConstLowerBound); in EmitOMPArraySectionExpr()
3103 Idx = llvm::ConstantInt::get(IntPtrTy, ConstLength + ConstLowerBound); in EmitOMPArraySectionExpr()
/external/llvm-project/clang/lib/CodeGen/
DCGExpr.cpp3945 llvm::APSInt ConstLowerBound(PointerWidthInBits, /*isUnsigned=*/false); in EmitOMPArraySectionExpr() local
3948 ConstLowerBound = LB->zextOrTrunc(PointerWidthInBits); in EmitOMPArraySectionExpr()
3955 --ConstLowerBound; in EmitOMPArraySectionExpr()
3963 : llvm::ConstantInt::get(IntPtrTy, ConstLowerBound); in EmitOMPArraySectionExpr()
3979 Idx = llvm::ConstantInt::get(IntPtrTy, ConstLength + ConstLowerBound); in EmitOMPArraySectionExpr()
/external/clang/lib/Sema/
DSemaOpenMP.cpp10374 llvm::APSInt ConstLowerBound; in CheckArrayExpressionDoesNotReferToWholeSize() local
10375 if (!LowerBound->EvaluateAsInt(ConstLowerBound, SemaRef.getASTContext())) in CheckArrayExpressionDoesNotReferToWholeSize()
10377 if (ConstLowerBound.getSExtValue()) in CheckArrayExpressionDoesNotReferToWholeSize()
/external/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp16717 llvm::APSInt ConstLowerBound = Result.Val.getInt(); in checkArrayExpressionDoesNotReferToWholeSize() local
16718 if (ConstLowerBound.getSExtValue()) in checkArrayExpressionDoesNotReferToWholeSize()