aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineFunction.cpp
diff options
context:
space:
mode:
authorVedant Kumar <vsk@apple.com>2017-03-09 16:06:27 +0000
committerVedant Kumar <vsk@apple.com>2017-03-09 16:06:27 +0000
commit129edab125931162665df2ceecb87bf917f2425d (patch)
tree619625ca620e42ca553699edbc2a7b8dd7368f91 /llvm/lib/CodeGen/MachineFunction.cpp
parent4d297df95c4e6299087ed12e9aa67a1b686d01fd (diff)
downloadllvm-129edab125931162665df2ceecb87bf917f2425d.zip
llvm-129edab125931162665df2ceecb87bf917f2425d.tar.gz
llvm-129edab125931162665df2ceecb87bf917f2425d.tar.bz2
Retry: [ubsan] Detect UB loads from bitfields
It's possible to load out-of-range values from bitfields backed by a boolean or an enum. Check for UB loads from bitfields. This is the motivating example: struct S { BOOL b : 1; // Signed ObjC BOOL. }; S s; s.b = 1; // This is actually stored as -1. if (s.b == 1) // Evaluates to false, -1 != 1. ... Changes since the original commit: - Single-bit bools are a special case (see CGF::EmitFromMemory), and we can't avoid dealing with them when loading from a bitfield. Don't try to insert a check in this case. Differential Revision: https://reviews.llvm.org/D30423 llvm-svn: 297389
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
0 files changed, 0 insertions, 0 deletions