Home
last modified time | relevance | path

Searched refs:SizeValue (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DContext.cpp153 APValue SizeValue; in evaluateStringRepr() local
154 if (!evaluateAsRValue(Parent, SizeExpr, SizeValue)) in evaluateStringRepr()
157 if (!SizeValue.isInt()) in evaluateStringRepr()
159 uint64_t Size = SizeValue.getInt().getZExtValue(); in evaluateStringRepr()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DIRBuilder.cpp1252 Value *SizeValue) { in CreateDereferenceableAssumption() argument
1255 SmallVector<Value *, 4> Vals({PtrValue, SizeValue}); in CreateDereferenceableAssumption()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1229 const uint64_t SizeValue = Size->getValue().getLimitedValue(); in visitIntrinsicInst() local
1230 if (SizeValue == ~0ULL || in visitIntrinsicInst()
1231 !ConstantInt::isValueValidForType(IntptrTy, SizeValue)) in visitIntrinsicInst()
1245 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison}; in visitIntrinsicInst()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp3527 Value *SizeValue = EmitScalarExpr(Size); in EmitBuiltinExpr() local
3528 if (SizeValue->getType() != IntPtrTy) in EmitBuiltinExpr()
3529 SizeValue = in EmitBuiltinExpr()
3530 Builder.CreateIntCast(SizeValue, IntPtrTy, false, "casted.size"); in EmitBuiltinExpr()
3531 Builder.CreateDereferenceableAssumption(PtrValue, SizeValue); in EmitBuiltinExpr()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h2760 Value *SizeValue);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp18052 APSInt SizeValue; in EvaluateCharRangeAsStringImpl() local
18053 if (!::EvaluateInteger(SizeExpression, SizeValue, Info)) in EvaluateCharRangeAsStringImpl()
18056 uint64_t Size = SizeValue.getZExtValue(); in EvaluateCharRangeAsStringImpl()