mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-11 06:38:20 +00:00
a missed __builtin_object_size case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122676 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -2074,3 +2074,20 @@ define i1 @g(i32 a) nounwind readnone {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//===---------------------------------------------------------------------===//
|
//===---------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
This code can be seen in viterbi:
|
||||||
|
|
||||||
|
%64 = call noalias i8* @malloc(i64 %62) nounwind
|
||||||
|
...
|
||||||
|
%67 = call i64 @llvm.objectsize.i64(i8* %64, i1 false) nounwind
|
||||||
|
%68 = call i8* @__memset_chk(i8* %64, i32 0, i64 %62, i64 %67) nounwind
|
||||||
|
|
||||||
|
llvm.objectsize.i64 should be taught about malloc/calloc, allowing it to
|
||||||
|
fold to %62. This is a security win (overflows of malloc will get caught)
|
||||||
|
and also a performance win by exposing more memsets to the optimizer.
|
||||||
|
|
||||||
|
This occurs several times in viterbi.
|
||||||
|
|
||||||
|
//===---------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user