/external/clang/test/CodeGenCXX/ |
catch-undef-behavior2.cpp | 1 // RUN: %clang_cc1 -std=c++11 -fsanitize=signed-integer-overflow,integer-divide-by-zero,float-divide-by-zero,shift-base,shift-exponent,unreachable,return,vla-bound,alignment,null,vptr,object-size,float-cast-overflow,bool,enum,array-bounds,function -emit-llvm %s -o - -triple x86_64-linux-gnu | FileCheck %s
|
/external/llvm/test/CodeGen/ARM/ |
intrinsics-overflow.ll | 4 %sadd = tail call { i32, i1 } @llvm.uadd.with.overflow.i32(i32 %a, i32 %b) 18 %sadd = tail call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %a, i32 %b) 31 %sadd = tail call { i32, i1 } @llvm.usub.with.overflow.i32(i32 %a, i32 %b) 43 %sadd = tail call { i32, i1 } @llvm.ssub.with.overflow.i32(i32 %a, i32 %b) 54 declare { i32, i1 } @llvm.uadd.with.overflow.i32(i32, i32) #1 55 declare { i32, i1 } @llvm.sadd.with.overflow.i32(i32, i32) #2 56 declare { i32, i1 } @llvm.usub.with.overflow.i32(i32, i32) #3 57 declare { i32, i1 } @llvm.ssub.with.overflow.i32(i32, i32) #4
|
/external/llvm/test/CodeGen/Generic/ |
add-with-overflow.ll | 9 %t = call {i32, i1} @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2) 12 br i1 %obit, label %overflow, label %normal 18 overflow: 25 %t = call {i32, i1} @llvm.uadd.with.overflow.i32(i32 %v1, i32 %v2) 28 br i1 %obit, label %overflow, label %normal 34 overflow: 40 declare {i32, i1} @llvm.sadd.with.overflow.i32(i32, i32) 41 declare {i32, i1} @llvm.uadd.with.overflow.i32(i32, i32)
|
/external/llvm/test/Transforms/InstCombine/ |
overflow-mul.ll | 11 ; CHECK: [[MUL:%.*]] = call { i32, i1 } @llvm.umul.with.overflow.i32(i32 %x, i32 %y) 12 %overflow = icmp ugt i64 %mul64, 4294967295 14 %retval = zext i1 %overflow to i32 26 ; CHECK: [[MUL:%.*]] = call { i32, i1 } @llvm.umul.with.overflow.i32(i32 %x, i32 %y) 27 %overflow = icmp uge i64 %mul64, 4294967296 29 %retval = zext i1 %overflow to i32 42 ; CHECK: [[MUL:%.*]] = call { i32, i1 } @llvm.umul.with.overflow.i32(i32 %x, i32 %y) 43 %overflow = icmp ugt i64 %mul64, 4294967295 47 %retval = select i1 %overflow, i32 %mul32, i32 111 60 ; CHECK-NOT: umul.with.overflow.i3 [all...] |
/frameworks/av/media/libstagefright/codecs/aacdec/ |
Android.mk | 23 LOCAL_SANITIZE := signed-integer-overflow unsigned-integer-overflow
|
/frameworks/av/media/libstagefright/codecs/on2/dec/ |
Android.mk | 25 LOCAL_SANITIZE := signed-integer-overflow unsigned-integer-overflow
|
/frameworks/av/media/libstagefright/codecs/on2/enc/ |
Android.mk | 15 LOCAL_SANITIZE := signed-integer-overflow unsigned-integer-overflow
|
/frameworks/av/media/libstagefright/httplive/ |
Android.mk | 18 LOCAL_SANITIZE := unsigned-integer-overflow signed-integer-overflow
|
/frameworks/av/media/libstagefright/id3/ |
Android.mk | 9 LOCAL_SANITIZE := unsigned-integer-overflow signed-integer-overflow
|
/frameworks/av/media/libstagefright/mpeg2ts/ |
Android.mk | 18 LOCAL_SANITIZE := unsigned-integer-overflow signed-integer-overflow
|
/external/llvm/test/CodeGen/AArch64/ |
arm64-xaluo.ll | 5 ; Get the actual value of the overflow bit. 12 %t = call {i32, i1} @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2) 25 %t = call {i32, i1} @llvm.sadd.with.overflow.i32(i32 %v1, i32 4) 38 %t = call {i32, i1} @llvm.sadd.with.overflow.i32(i32 %v1, i32 -4) 51 %t = call {i32, i1} @llvm.sadd.with.overflow.i32(i32 %v1, i32 16777215) 65 %t = call {i32, i1} @llvm.sadd.with.overflow.i32(i32 %v1, i32 %lsl) 77 %t = call {i64, i1} @llvm.sadd.with.overflow.i64(i64 %v1, i64 %v2) 89 %t = call {i64, i1} @llvm.sadd.with.overflow.i64(i64 %v1, i64 4) 101 %t = call {i64, i1} @llvm.sadd.with.overflow.i64(i64 %v1, i64 -4) 113 %t = call {i32, i1} @llvm.uadd.with.overflow.i32(i32 %v1, i32 %v2 [all...] |
/art/test/302-float-conversion/ |
info.txt | 3 should not overflow under constant conversions.
|
/external/clang/test/CodeGen/ |
compound-assign-overflow.c | 2 // RUN: %clang_cc1 -ffreestanding -triple x86_64-apple-darwin10 -emit-llvm -o - %s -fsanitize=signed-integer-overflow,unsigned-integer-overflow -fsanitize-recover=signed-integer-overflow,unsigned-integer-overflow | FileCheck %s
|
neon-immediate-ubsan.c | 3 // RUN: -fsanitize=signed-integer-overflow \ 8 // RUN: -fsanitize=signed-integer-overflow \ 13 // overflow intrinsics, if the overflow sanitizer is enabled.
|
/external/compiler-rt/test/ubsan/TestCases/Integer/ |
negate-overflow.cpp | 1 // RUN: %clangxx -fsanitize=signed-integer-overflow %s -o %t1 && %run %t1 2>&1 | FileCheck %s --check-prefix=CHECKS 2 // RUN: %clangxx -fsanitize=unsigned-integer-overflow %s -o %t2 && %run %t2 2>&1 | FileCheck %s --check-prefix=CHECKU 6 // CHECKU: negate-overflow.cpp:[[@LINE+2]]:3: runtime error: negation of 2147483648 cannot be represented in type 'unsigned int' 9 // CHECKS: negate-overflow.cpp:[[@LINE+2]]:10: runtime error: negation of -2147483648 cannot be represented in type 'int'; cast to an unsigned type to negate this value to itself
|
/external/llvm/test/CodeGen/X86/ |
umul-with-overflow.ll | 3 declare {i32, i1} @llvm.umul.with.overflow.i32(i32 %a, i32 %b) 5 %res = call {i32, i1} @llvm.umul.with.overflow.i32(i32 %x, i32 3) 19 %tmp1 = call { i32, i1 } @llvm.umul.with.overflow.i32(i32 %tmp0, i32 2) 31 %tmp1 = call { i32, i1 } @llvm.umul.with.overflow.i32(i32 %tmp0, i32 4)
|
/external/v8/test/mjsunit/es6/regress/ |
regress-crbug-465671.js | 5 // This used to trigger crash because of an unhandled stack overflow.
|
/external/valgrind/memcheck/tests/amd64-solaris/ |
context_rflags.c | 2 handler. Note that we actually test only the propagation of the overflow 45 /* Set overflow and sign flags. */ 58 printf(" overflow=%d, sign=%d\n", 63 printf(" overflow=%d, sign=%d\n", OBIT(rflags), SBIT(rflags));
|
/frameworks/av/media/libstagefright/timedtext/ |
Android.mk | 9 LOCAL_SANITIZE := signed-integer-overflow
|
/frameworks/av/media/libstagefright/yuv/ |
Android.mk | 17 LOCAL_SANITIZE := signed-integer-overflow
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug015.go | 11 if i33 == (1<<64) -1 { // ERROR "overflow"
|
bug108.go | 9 v := 1 << 1025; // ERROR "overflow|stupid shift"
|
issue5609.go | 7 // issue 5609: overflow when calculating array size
|
issue8073.go | 8 // was "internal compiler error: overflow: float64 integer constant"
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug015.go | 11 if i33 == (1<<64) -1 { // ERROR "overflow"
|