/external/clang/test/SemaObjC/ |
scope-check.m | 6 goto L; // expected-error{{cannot jump}} 7 goto L2; // expected-error{{cannot jump}} 8 goto L3; // expected-error{{cannot jump}} 9 @try { // expected-note {{jump bypasses initialization of @try block}} 11 } @catch (A *x) { // expected-note {{jump bypasses initialization of @catch block}} 15 } @finally {// expected-note {{jump bypasses initialization of @finally block}} 20 goto L4; // expected-error{{cannot jump}} 21 goto L5; // expected-error{{cannot jump}} 22 } @catch (C *c) { // expected-note {{jump bypasses initialization of @catch block}} 24 goto L6; // expected-error{{cannot jump}} [all...] |
autoreleasepool.m | 10 goto L; // expected-error {{cannot jump}} 12 @autoreleasepool { // expected-note {{jump bypasses auto release push of @autoreleasepool block}}
|
arc-jump-block.m | 22 dispatch_async((&_dispatch_main_q), ^{ [self pageLeft]; }); // expected-note 3 {{jump enters lifetime of block which strongly captures a variable}} 24 case 2: // expected-error {{cannot jump}} 25 dispatch_async((&_dispatch_main_q), ^{ [self pageRight]; }); // expected-note 2 {{jump enters lifetime of block which strongly captures a variable}} 27 case 3: // expected-error {{cannot jump}} 32 case 4: // expected-error {{cannot jump}} 87 int test2(id obj, int state) { // expected-note {{jump enters lifetime of block}} FIXME: weird location 93 default: // expected-error {{cannot jump}}
|
/external/valgrind/memcheck/tests/ |
supp_unknown.supp | 4 Memcheck:Jump 11 Memcheck:Jump 18 Memcheck:Jump
|
badloop.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s)
|
inits.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s)
|
manuel1.stderr.exp | 2 Conditional jump or move depends on uninitialised value(s)
|
metadata.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s)
|
clientperm.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s) 4 Conditional jump or move depends on uninitialised value(s)
|
supponlyobj.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s) 4 Conditional jump or move depends on uninitialised value(s)
|
badjump2.stderr.exp-kfail | 0 Jump to the invalid address stated on the next line
|
undef_malloc_args.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s) 5 Conditional jump or move depends on uninitialised value(s) 9 Conditional jump or move depends on uninitialised value(s) 13 Conditional jump or move depends on uninitialised value(s) 17 Conditional jump or move depends on uninitialised value(s)
|
/external/clang/test/Sema/ |
scope-check.c | 4 goto L; // expected-error{{cannot jump from this goto statement to its label}} 5 int a[x]; // expected-note {{jump bypasses initialization of variable length array}} 6 int b[x]; // expected-note {{jump bypasses initialization of variable length array}} 12 goto L; // expected-error{{cannot jump from this goto statement to its label}} 13 typedef int a[x]; // expected-note {{jump bypasses initialization of VLA typedef}} 21 goto L; // expected-error{{cannot jump from this goto statement to its label}} 22 int a __attribute((cleanup(test3clean))); // expected-note {{jump bypasses initialization of variable with __attribute__((cleanup))}} 28 goto L; // expected-error{{cannot jump from this goto statement to its label}} 29 int a[x]; // expected-note {{jump bypasses initialization of variable length array}} 52 int a[x]; // expected-note {{jump bypasses initialization of variable length array} [all...] |
/external/llvm/test/MC/Disassembler/Hexagon/ |
j.txt | 12 # Compare and jump 14 # CHECK: p0 = cmp.eq(r9,#-1); if (p0.new) jump:nt 16 # CHECK: p0 = cmp.gt(r9,#-1); if (p0.new) jump:nt 18 # CHECK: p0 = tstbit(r9, #0); if (p0.new) jump:nt 20 # CHECK: p0 = cmp.eq(r9,#-1); if (p0.new) jump:t 22 # CHECK: p0 = cmp.gt(r9,#-1); if (p0.new) jump:t 24 # CHECK: p0 = tstbit(r9, #0); if (p0.new) jump:t 26 # CHECK: p0 = cmp.eq(r9,#-1); if (!p0.new) jump:nt 28 # CHECK: p0 = cmp.gt(r9,#-1); if (!p0.new) jump:nt 30 # CHECK: p0 = tstbit(r9, #0); if (!p0.new) jump:n [all...] |
nv_j.txt | 4 # Jump to address conditioned on new register value 7 # CHECK-NEXT: if (cmp.eq(r2.new, r21)) jump:nt 10 # CHECK-NEXT: if (cmp.eq(r2.new, r21)) jump:t 13 # CHECK-NEXT: if (!cmp.eq(r2.new, r21)) jump:nt 16 # CHECK-NEXT: if (!cmp.eq(r2.new, r21)) jump:t 19 # CHECK-NEXT: if (cmp.gt(r2.new, r21)) jump:nt 22 # CHECK-NEXT: if (cmp.gt(r2.new, r21)) jump:t 25 # CHECK-NEXT: if (!cmp.gt(r2.new, r21)) jump:nt 28 # CHECK-NEXT: if (!cmp.gt(r2.new, r21)) jump:t 31 # CHECK-NEXT: if (cmp.gtu(r2.new, r21)) jump:n [all...] |
/external/valgrind/memcheck/tests/linux/ |
with-space.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s)
|
/external/parameter-framework/ctest/ |
valgrind.supp | 1 # Ignore conditional jump in libz. 5 libz/inflateReset2/jump
|
/external/valgrind/memcheck/tests/amd64/ |
xor-undef-amd64.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s) 4 Conditional jump or move depends on uninitialised value(s) 7 Conditional jump or move depends on uninitialised value(s) 10 Conditional jump or move depends on uninitialised value(s) 13 Conditional jump or move depends on uninitialised value(s)
|
/external/clang/test/SemaCXX/ |
scope-check.cpp | 35 goto foo; // expected-error {{cannot jump}} 36 C c; // expected-note {{jump bypasses variable initialization}} 82 goto *ip; // expected-error {{cannot jump}} 83 C c1; // expected-note {{jump bypasses variable initialization}} 104 D d; // expected-note {{jump exits scope of variable with non-trivial destructor}} 106 goto *ip; // expected-error {{cannot jump}} 155 int x = 56; // expected-note {{jump bypasses variable initialization}} 156 case 1: // expected-error {{cannot jump}} 162 goto l2; // expected-error {{cannot jump}} 163 l1: int x = 5; // expected-note {{jump bypasses variable initialization} [all...] |
/external/valgrind/memcheck/tests/x86/ |
xor-undef-x86.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s) 4 Conditional jump or move depends on uninitialised value(s) 7 Conditional jump or move depends on uninitialised value(s)
|
/external/clang/test/CXX/stmt.stmt/stmt.dcl/ |
p3-0x.cpp | 33 goto end; // expected-error{{cannot jump from this goto statement to its label}} 34 Y y; // expected-note{{jump bypasses variable with a non-trivial destructor}} 37 goto inner; // expected-error{{cannot jump from this goto statement to its label}} 39 Y y2; // expected-note{{jump bypasses variable with a non-trivial destructor}}
|
p3.cpp | 32 goto end; // expected-error{{cannot jump from this goto statement to its label}} 33 Y y; // expected-note{{jump bypasses variable with a non-trivial destructor}} 43 goto end; // expected-error{{cannot jump from this goto statement to its label}} 44 Z z; // expected-note{{jump bypasses initialization of non-POD variable}}
|
/external/llvm/test/Transforms/JumpThreading/ |
2012-07-19-NoSuccessorIndirectBr.ll | 1 ; RUN: opt < %s -jump-threading
|
/external/lldb/examples/python/ |
jump.py | 97 Syntax: jump <linespec> [<location-id>] 100 jump <linenum> 101 jump +<count> 102 jump -<count> 103 jump <filename>:<linenum> 104 jump <function-name> 105 jump *<address-expression> 109 def jump (debugger, command, result, internal_dict): function 121 result.AppendMessage("jump requires a valid target.") 126 result.AppendMessage("jump requires a valid process." [all...] |
/external/llvm/include/llvm/CodeGen/ |
MachineJumpTableInfo.h | 1 //===-- CodeGen/MachineJumpTableInfo.h - Abstract Jump Tables --*- C++ -*-===// 10 // The MachineJumpTableInfo class keeps track of jump tables referenced by 13 // Instructions reference the address of these jump tables through the use of 16 // function jump tables. 32 /// MachineJumpTableEntry - One jump table in the jump table info. 35 /// MBBs - The vector of basic blocks from which to create the jump table. 44 /// JTEntryKind - This enum indicates how each entry of the jump table is 62 /// the address of the jump table. This is used for PIC jump tables wher [all...] |