Lines Matching refs:isFatal
252 static void Report(bool isFatal, const char *pFormat, ...) __printflike(2, 3);
330 static void HandleOverflow(bool isFatal, struct COverflowData *pData, unsigned long ulLHS, unsigned…
331 static void HandleNegateOverflow(bool isFatal, struct COverflowData *pData, unsigned long ulOldValu…
332 static void HandleBuiltinUnreachable(bool isFatal, struct CUnreachableData *pData);
333 static void HandleTypeMismatch(bool isFatal, struct CSourceLocation *mLocation, struct CTypeDescrip…
334 static void HandleVlaBoundNotPositive(bool isFatal, struct CVLABoundData *pData, unsigned long ulBo…
335 static void HandleOutOfBounds(bool isFatal, struct COutOfBoundsData *pData, unsigned long ulIndex);
336 static void HandleShiftOutOfBounds(bool isFatal, struct CShiftOutOfBoundsData *pData, unsigned long…
337 static void HandleLoadInvalidValue(bool isFatal, struct CInvalidValueData *pData, unsigned long ulV…
338 static void HandleInvalidBuiltin(bool isFatal, struct CInvalidBuiltinData *pData);
339 static void HandleFunctionTypeMismatch(bool isFatal, struct CFunctionTypeMismatchData *pData, unsig…
340 static void HandleCFIBadType(bool isFatal, struct CCFICheckFailData *pData, unsigned long ulVtable,…
341 static void HandleDynamicTypeCacheMiss(bool isFatal, struct CDynamicTypeCacheMissData *pData, unsig…
342 static void HandleFloatCastOverflow(bool isFatal, struct CFloatCastOverflowData *pData, unsigned lo…
343 static void HandleMissingReturn(bool isFatal, struct CUnreachableData *pData);
344 static void HandleNonnullArg(bool isFatal, struct CNonNullArgData *pData);
345 static void HandleNonnullReturn(bool isFatal, struct CNonNullReturnData *pData, struct CSourceLocat…
346 static void HandlePointerOverflow(bool isFatal, struct CPointerOverflowData *pData, unsigned long u…
347 static void HandleAlignmentAssumption(bool isFatal, struct CAlignmentAssumptionData *pData, unsigne…
350 HandleOverflow(bool isFatal, struct COverflowData *pData, unsigned long ulLHS, unsigned long ulRHS,… in HandleOverflow() argument
365 …Report(isFatal, "UBSan: Undefined Behavior in %s, %s integer overflow: %s %s %s cannot be represen… in HandleOverflow()
370 HandleNegateOverflow(bool isFatal, struct COverflowData *pData, unsigned long ulOldValue) in HandleNegateOverflow() argument
383 …Report(isFatal, "UBSan: Undefined Behavior in %s, negation of %s cannot be represented in type %s\… in HandleNegateOverflow()
388 HandleBuiltinUnreachable(bool isFatal, struct CUnreachableData *pData) in HandleBuiltinUnreachable() argument
399 Report(isFatal, "UBSan: Undefined Behavior in %s, calling __builtin_unreachable()\n", in HandleBuiltinUnreachable()
404 HandleTypeMismatch(bool isFatal, struct CSourceLocation *mLocation, struct CTypeDescriptor *mType, … in HandleTypeMismatch() argument
417 Report(isFatal, "UBSan: Undefined Behavior in %s, %s null pointer of type %s\n", in HandleTypeMismatch()
420 …Report(isFatal, "UBSan: Undefined Behavior in %s, %s misaligned address %p for type %s which requi… in HandleTypeMismatch()
423 …Report(isFatal, "UBSan: Undefined Behavior in %s, %s address %p with insufficient space for an obj… in HandleTypeMismatch()
429 HandleVlaBoundNotPositive(bool isFatal, struct CVLABoundData *pData, unsigned long ulBound) in HandleVlaBoundNotPositive() argument
442 Report(isFatal, "UBSan: Undefined Behavior in %s, variable length array bound value %s <= 0\n", in HandleVlaBoundNotPositive()
447 HandleOutOfBounds(bool isFatal, struct COutOfBoundsData *pData, unsigned long ulIndex) in HandleOutOfBounds() argument
460 Report(isFatal, "UBSan: Undefined Behavior in %s, index %s is out of range for type %s\n", in HandleOutOfBounds()
465 HandleShiftOutOfBounds(bool isFatal, struct CShiftOutOfBoundsData *pData, unsigned long ulLHS, unsi… in HandleShiftOutOfBounds() argument
481 Report(isFatal, "UBSan: Undefined Behavior in %s, shift exponent %s is negative\n", in HandleShiftOutOfBounds()
484 …Report(isFatal, "UBSan: Undefined Behavior in %s, shift exponent %s is too large for %zu-bit type … in HandleShiftOutOfBounds()
487 Report(isFatal, "UBSan: Undefined Behavior in %s, left shift of negative value %s\n", in HandleShiftOutOfBounds()
490 …Report(isFatal, "UBSan: Undefined Behavior in %s, left shift of %s by %s places cannot be represen… in HandleShiftOutOfBounds()
495 HandleLoadInvalidValue(bool isFatal, struct CInvalidValueData *pData, unsigned long ulValue) in HandleLoadInvalidValue() argument
508 …Report(isFatal, "UBSan: Undefined Behavior in %s, load of value %s is not a valid value for type %… in HandleLoadInvalidValue()
513 HandleInvalidBuiltin(bool isFatal, struct CInvalidBuiltinData *pData) in HandleInvalidBuiltin() argument
524 …Report(isFatal, "UBSan: Undefined Behavior in %s, passing zero to %s, which is not a valid argumen… in HandleInvalidBuiltin()
529 HandleFunctionTypeMismatch(bool isFatal, struct CFunctionTypeMismatchData *pData, unsigned long ulF… in HandleFunctionTypeMismatch() argument
550 …Report(isFatal, "UBSan: Undefined Behavior in %s, call to function %#lx through pointer to incorre… in HandleFunctionTypeMismatch()
555 HandleCFIBadType(bool isFatal, struct CCFICheckFailData *pData, unsigned long ulVtable, bool *bVali… in HandleCFIBadType() argument
572 …Report(isFatal, "UBSan: Undefined Behavior in %s, control flow integrity check for type %s failed … in HandleCFIBadType()
575 …Report(isFatal || FromUnrecoverableHandler, "UBSan: Undefined Behavior in %s, control flow integri… in HandleCFIBadType()
581 HandleDynamicTypeCacheMiss(bool isFatal, struct CDynamicTypeCacheMissData *pData, unsigned long ulP… in HandleDynamicTypeCacheMiss() argument
602 …Report(isFatal, "UBSan: Undefined Behavior in %s, %s address %#lx which might not point to an obje… in HandleDynamicTypeCacheMiss()
608 HandleFloatCastOverflow(bool isFatal, struct CFloatCastOverflowData *pData, unsigned long ulFrom) in HandleFloatCastOverflow() argument
621 …Report(isFatal, "UBSan: Undefined Behavior in %s, %s (of type %s) is outside the range of represen… in HandleFloatCastOverflow()
626 HandleMissingReturn(bool isFatal, struct CUnreachableData *pData) in HandleMissingReturn() argument
637 …Report(isFatal, "UBSan: Undefined Behavior in %s, execution reached the end of a value-returning f… in HandleMissingReturn()
642 HandleNonnullArg(bool isFatal, struct CNonNullArgData *pData) in HandleNonnullArg() argument
658 …Report(isFatal, "UBSan: Undefined Behavior in %s, null pointer passed as argument %d, which is dec… in HandleNonnullArg()
663 HandleNonnullReturn(bool isFatal, struct CNonNullReturnData *pData, struct CSourceLocation *pLocati… in HandleNonnullReturn() argument
680 …Report(isFatal, "UBSan: Undefined Behavior in %s, null pointer returned from function declared to … in HandleNonnullReturn()
685 HandlePointerOverflow(bool isFatal, struct CPointerOverflowData *pData, unsigned long ulBase, unsig… in HandlePointerOverflow() argument
696 …Report(isFatal, "UBSan: Undefined Behavior in %s, pointer expression with base %#lx overflowed to … in HandlePointerOverflow()
701 HandleAlignmentAssumption(bool isFatal, struct CAlignmentAssumptionData *pData, unsigned long ulPoi… in HandleAlignmentAssumption() argument
719 …Report(isFatal, "UBSan: Undefined Behavior in %s, alignment assumption of %#lx for pointer %#lx (o… in HandleAlignmentAssumption()
723 …Report(isFatal, "UBSan: Undefined Behavior in %s, alignment assumption of %#lx for pointer %#lx (o… in HandleAlignmentAssumption()
1182 Report(bool isFatal, const char *pFormat, ...) in Report() argument
1190 if (isFatal) in Report()
1258 if (isFatal || ISSET(ubsan_flags, UBSAN_ABORT)) { in Report()