Searched refs:SanOpts (Results 1 - 7 of 7) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp413 if (!CGF.SanOpts->SignedIntegerOverflow)
421 if (Ops.Ty->isUnsignedIntegerType() && CGF.SanOpts->UnsignedIntegerOverflow)
766 if (CGF.SanOpts->FloatCastOverflow &&
998 if (CGF.SanOpts->Bounds)
1437 if (!CGF.SanOpts->SignedIntegerOverflow)
1485 CGF.SanOpts->UnsignedIntegerOverflow) &&
1537 CGF.SanOpts->UnsignedIntegerOverflow) {
1924 CGF.SanOpts->UnsignedIntegerOverflow) &&
2035 if (CGF.SanOpts->IntegerDivideByZero)
2038 if (CGF.SanOpts
[all...]
H A DCodeGenFunction.cpp41 SanOpts(&CGM.getSanOpts()),
503 SanOpts = &SanitizerOptions::Disabled;
723 if (SanOpts->Return)
1322 if (SanOpts->VLABound &&
H A DCGExpr.cpp456 if (SanOpts->Null) {
472 if (SanOpts->ObjectSize && !Ty->isIncompleteType()) {
489 if (SanOpts->Alignment) {
524 if (SanOpts->Vptr &&
641 assert(SanOpts->Bounds && "should not be called unless adding bounds checks");
742 if (SanOpts->Bounds && isa<ArraySubscriptExpr>(E))
1112 if ((SanOpts->Bool && hasBooleanRepresentation(Ty)) ||
1113 (SanOpts->Enum && Ty->getAs<EnumType>())) {
2097 assert(SanOpts != &SanitizerOptions::Disabled);
2218 if (SanOpts
[all...]
H A DCodeGenModule.h417 const SanitizerOptions &SanOpts; member in class:clang::CodeGen::CodeGenModule
978 const SanitizerOptions &getSanOpts() const { return SanOpts; }
H A DCodeGenModule.cpp87 SanOpts(SanitizerBlacklist.isIn(M) ?
117 if (SanOpts.Thread ||
649 if (SanOpts.Address && !D->hasAttr<NoSanitizeAddressAttr>())
652 if (SanOpts.Thread && !D->hasAttr<NoSanitizeThreadAttr>()) {
656 if (SanOpts.Memory && !D->hasAttr<NoSanitizeMemoryAttr>())
1829 if (SanOpts.Address && NeedsGlobalCtor) {
H A DCodeGenFunction.h228 const SanitizerOptions *SanOpts; member in class:clang::CodeGen::CodeGenFunction
H A DCGBuiltin.cpp439 if (SanOpts->Unreachable)

Completed in 179 milliseconds