/external/llvm/test/Transforms/Inline/ |
D | lifetime.ll | 4 declare void @llvm.lifetime.start(i64, i8*) 5 declare void @llvm.lifetime.end(i64, i8*) 9 ; Size in llvm.lifetime.start / llvm.lifetime.end differs from 11 call void @llvm.lifetime.start(i64 2, i8* %a) 12 call void @llvm.lifetime.end(i64 2, i8* %a) 18 ; CHECK: llvm.lifetime.start(i64 2 19 ; CHECK-NEXT: llvm.lifetime.end(i64 2 21 ; CHECK-NEXT: llvm.lifetime.start(i64 2 22 ; CHECK-NEXT: llvm.lifetime.end(i64 2 29 ;; any lifetime markers. [all …]
|
/external/swiftshader/third_party/LLVM/test/Transforms/Inline/ |
D | lifetime.ll | 3 declare void @llvm.lifetime.start(i64, i8*) 4 declare void @llvm.lifetime.end(i64, i8*) 8 call void @llvm.lifetime.start(i64 1, i8* %a) 9 call void @llvm.lifetime.end(i64 1, i8* %a) 15 ; CHECK: llvm.lifetime.start(i64 1 16 ; CHECK-NEXT: llvm.lifetime.end(i64 1 18 ; CHECK-NEXT: llvm.lifetime.start(i64 1 19 ; CHECK-NEXT: llvm.lifetime.end(i64 1 26 ;; any lifetime markers. 36 ;; Instead, we use CHECK-NOT to verify that there are no other lifetime calls. [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Inline/ |
D | lifetime.ll | 5 declare void @llvm.lifetime.start.p0i8(i64, i8*) 6 declare void @llvm.lifetime.end.p0i8(i64, i8*) 10 ; Size in llvm.lifetime.start / llvm.lifetime.end differs from 12 call void @llvm.lifetime.start.p0i8(i64 2, i8* %a) 13 call void @llvm.lifetime.end.p0i8(i64 2, i8* %a) 19 ; CHECK: llvm.lifetime.start.p0i8(i64 2 20 ; CHECK-NEXT: llvm.lifetime.end.p0i8(i64 2 22 ; CHECK-NEXT: llvm.lifetime.start.p0i8(i64 2 23 ; CHECK-NEXT: llvm.lifetime.end.p0i8(i64 2 30 ;; any lifetime markers. [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/AddressSanitizer/ |
D | lifetime.ll | 1 ; Test handling of llvm.lifetime intrinsics. 8 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) nounwind 9 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) nounwind 20 call void @llvm.lifetime.start.p0i8(i64 -1, i8* %i.ptr) 21 ; Check that lifetime with no size are ignored. 23 ; CHECK: call void @llvm.lifetime.start 28 call void @llvm.lifetime.end.p0i8(i64 -1, i8* %i.ptr) 29 ; Check that lifetime with no size are ignored. 31 ; CHECK: call void @llvm.lifetime.end 39 ; Generic case of lifetime analysis. [all …]
|
/external/llvm/test/Transforms/SafeStack/ |
D | coloring2.ll | 18 call void @llvm.lifetime.start(i64 -1, i8* %z0) 19 call void @llvm.lifetime.start(i64 -1, i8* %x0) 23 call void @llvm.lifetime.end(i64 -1, i8* %x0) 24 call void @llvm.lifetime.start(i64 -1, i8* %y0) 28 call void @llvm.lifetime.end(i64 -1, i8* %y0) 32 call void @llvm.lifetime.end(i64 -1, i8* %z0) 47 call void @llvm.lifetime.start(i64 -1, i8* %x0) 51 call void @llvm.lifetime.end(i64 -1, i8* %x0) 73 call void @llvm.lifetime.start(i64 -1, i8* %x0) 74 call void @llvm.lifetime.start(i64 -1, i8* %y0) [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SafeStack/X86/ |
D | coloring2.ll | 18 call void @llvm.lifetime.start.p0i8(i64 -1, i8* %z0) 19 call void @llvm.lifetime.start.p0i8(i64 -1, i8* %x0) 23 call void @llvm.lifetime.end.p0i8(i64 -1, i8* %x0) 24 call void @llvm.lifetime.start.p0i8(i64 -1, i8* %y0) 28 call void @llvm.lifetime.end.p0i8(i64 -1, i8* %y0) 32 call void @llvm.lifetime.end.p0i8(i64 -1, i8* %z0) 47 call void @llvm.lifetime.start.p0i8(i64 -1, i8* %x0) 51 call void @llvm.lifetime.end.p0i8(i64 -1, i8* %x0) 73 call void @llvm.lifetime.start.p0i8(i64 -1, i8* %x0) 74 call void @llvm.lifetime.start.p0i8(i64 -1, i8* %y0) [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | StackColoring.ll | 2 ; RUN: llc -mcpu=corei7 -no-stack-coloring=false -stackcoloring-lifetime-start-on-first-use=false <… 18 call void @llvm.lifetime.start.p0i8(i64 -1, i8* %b) 21 call void @llvm.lifetime.end.p0i8(i64 -1, i8* %b) 22 call void @llvm.lifetime.start.p0i8(i64 -1, i8* %b2) 25 call void @llvm.lifetime.end.p0i8(i64 -1, i8* %b2) 43 call void @llvm.lifetime.start.p0i8(i64 -1, i8* %b) 48 call void @llvm.lifetime.start.p0i8(i64 -1, i8* %b2) 51 call void @llvm.lifetime.end.p0i8(i64 -1, i8* %b2) 55 call void @llvm.lifetime.end.p0i8(i64 -1, i8* %b) 58 call void @llvm.lifetime.end.p0i8(i64 -1, i8* %b) [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | StackColoring.ll | 2 ; RUN: llc -mcpu=corei7 -no-stack-coloring=false -stackcoloring-lifetime-start-on-first-use=false <… 18 call void @llvm.lifetime.start(i64 -1, i8* %b) 21 call void @llvm.lifetime.end(i64 -1, i8* %b) 22 call void @llvm.lifetime.start(i64 -1, i8* %b2) 25 call void @llvm.lifetime.end(i64 -1, i8* %b2) 43 call void @llvm.lifetime.start(i64 -1, i8* %b) 48 call void @llvm.lifetime.start(i64 -1, i8* %b2) 51 call void @llvm.lifetime.end(i64 -1, i8* %b2) 55 call void @llvm.lifetime.end(i64 -1, i8* %b) 58 call void @llvm.lifetime.end(i64 -1, i8* %b) [all …]
|
/external/llvm/test/Instrumentation/AddressSanitizer/ |
D | lifetime.ll | 1 ; Test hanlding of llvm.lifetime intrinsics. 8 declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind 9 declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind 15 call void @llvm.lifetime.start(i64 -1, i8* %i.ptr) 17 call void @llvm.lifetime.end(i64 -1, i8* %i.ptr) 19 ; Check that lifetime with no size are ignored. 27 ; Generic case of lifetime analysis. 28 define void @lifetime() sanitize_address { 29 ; CHECK-LABEL: define void @lifetime() 31 ; Regular variable lifetime intrinsics. [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/ |
D | store-imm-stack-object.ll | 17 call void @llvm.lifetime.start(i64 1, i8* %v5) 20 call void @llvm.lifetime.start(i64 2, i8* %v6) 23 call void @llvm.lifetime.start(i64 4, i8* %v7) 26 call void @llvm.lifetime.start(i64 4, i8* %v8) 29 call void @llvm.lifetime.end(i64 4, i8* %v8) 30 call void @llvm.lifetime.end(i64 4, i8* %v7) 31 call void @llvm.lifetime.end(i64 2, i8* %v6) 32 call void @llvm.lifetime.end(i64 1, i8* %v5) 49 call void @llvm.lifetime.start(i64 1, i8* %v7) 52 call void @llvm.lifetime.start(i64 2, i8* %v8) [all …]
|
D | memops-stack.ll | 12 call void @llvm.lifetime.start.p0i8(i64 4, i8* %0) #3 18 call void @llvm.lifetime.end.p0i8(i64 4, i8* %0) #3 28 call void @llvm.lifetime.start.p0i8(i64 4, i8* %0) #3 34 call void @llvm.lifetime.end.p0i8(i64 4, i8* %0) #3 44 call void @llvm.lifetime.start.p0i8(i64 4, i8* %0) #3 50 call void @llvm.lifetime.end.p0i8(i64 4, i8* %0) #3 60 call void @llvm.lifetime.start.p0i8(i64 4, i8* %0) #3 66 call void @llvm.lifetime.end.p0i8(i64 4, i8* %0) #3 76 call void @llvm.lifetime.start.p0i8(i64 4, i8* %0) #3 82 call void @llvm.lifetime.end.p0i8(i64 4, i8* %0) #3 [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | lifetime-asan.ll | 3 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) 4 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) 12 call void @llvm.lifetime.start.p0i8(i64 1, i8* %text) 13 call void @llvm.lifetime.end.p0i8(i64 1, i8* %text) 14 ; CHECK: call void @llvm.lifetime.start 15 ; CHECK-NEXT: call void @llvm.lifetime.end 27 call void @llvm.lifetime.start.p0i8(i64 1, i8* %text) 28 call void @llvm.lifetime.end.p0i8(i64 1, i8* %text) 29 ; CHECK: call void @llvm.lifetime.start 30 ; CHECK-NEXT: call void @llvm.lifetime.end [all …]
|
D | lifetime-no-null-opt.ll | 4 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) 5 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) 20 ; CHECK: call void @llvm.lifetime.start.p0i8(i64 1, i8* %[[T]]) 21 ; CHECK-NEXT: call void @llvm.lifetime.start.p0i8(i64 1, i8* %[[B]]) 23 ; CHECK-NEXT: call void @llvm.lifetime.end.p0i8(i64 1, i8* %[[B]]) 24 ; CHECK-NEXT: call void @llvm.lifetime.end.p0i8(i64 1, i8* %[[T]]) 32 call void @llvm.lifetime.start.p0i8(i64 1, i8* %0) 33 call void @llvm.lifetime.start.p0i8(i64 1, i8* %1) 34 call void @llvm.lifetime.end.p0i8(i64 1, i8* %1) 35 call void @llvm.lifetime.end.p0i8(i64 1, i8* %0) [all …]
|
D | lifetime.ll | 4 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) 5 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) 20 ; CHECK: call void @llvm.lifetime.start.p0i8(i64 1, i8* nonnull %[[T]]) 21 ; CHECK-NEXT: call void @llvm.lifetime.start.p0i8(i64 1, i8* nonnull %[[B]]) 23 ; CHECK-NEXT: call void @llvm.lifetime.end.p0i8(i64 1, i8* nonnull %[[B]]) 24 ; CHECK-NEXT: call void @llvm.lifetime.end.p0i8(i64 1, i8* nonnull %[[T]]) 32 call void @llvm.lifetime.start.p0i8(i64 1, i8* %0) 33 call void @llvm.lifetime.start.p0i8(i64 1, i8* %1) 34 call void @llvm.lifetime.end.p0i8(i64 1, i8* %1) 35 call void @llvm.lifetime.end.p0i8(i64 1, i8* %0) [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | lifetime.ll | 4 declare void @llvm.lifetime.start(i64, i8* nocapture) 5 declare void @llvm.lifetime.end(i64, i8* nocapture) 20 ; CHECK: call void @llvm.lifetime.start(i64 1, i8* %[[T]]) 21 ; CHECK-NEXT: call void @llvm.lifetime.start(i64 1, i8* %[[B]]) 23 ; CHECK-NEXT: call void @llvm.lifetime.end(i64 1, i8* %[[B]]) 24 ; CHECK-NEXT: call void @llvm.lifetime.end(i64 1, i8* %[[T]]) 32 call void @llvm.lifetime.start(i64 1, i8* %0) 33 call void @llvm.lifetime.start(i64 1, i8* %1) 34 call void @llvm.lifetime.end(i64 1, i8* %1) 35 call void @llvm.lifetime.end(i64 1, i8* %0) [all …]
|
/external/llvm/test/Transforms/LoopVectorize/ |
D | lifetime.ll | 5 ; Make sure we can vectorize loops which contain lifetime markers. 8 ; CHECK: call void @llvm.lifetime.end 10 ; CHECK: call void @llvm.lifetime.start 16 call void @llvm.lifetime.start(i64 4096, i8* %0) #1 21 call void @llvm.lifetime.end(i64 4096, i8* %0) #1 25 call void @llvm.lifetime.start(i64 4096, i8* %0) #1 32 call void @llvm.lifetime.end(i64 4096, i8* %0) #1 37 ; CHECK: call void @llvm.lifetime.end 39 ; CHECK: call void @llvm.lifetime.start 45 call void @llvm.lifetime.start(i64 4096, i8* %0) #1 [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopVectorize/ |
D | lifetime.ll | 5 ; Make sure we can vectorize loops which contain lifetime markers. 8 ; CHECK: call void @llvm.lifetime.end 10 ; CHECK: call void @llvm.lifetime.start 16 call void @llvm.lifetime.start.p0i8(i64 4096, i8* %0) #1 21 call void @llvm.lifetime.end.p0i8(i64 4096, i8* %0) #1 25 call void @llvm.lifetime.start.p0i8(i64 4096, i8* %0) #1 32 call void @llvm.lifetime.end.p0i8(i64 4096, i8* %0) #1 37 ; CHECK: call void @llvm.lifetime.end 39 ; CHECK: call void @llvm.lifetime.start 45 call void @llvm.lifetime.start.p0i8(i64 4096, i8* %0) #1 [all …]
|
/external/flatbuffers/src/ |
D | idl_gen_rust.cpp | 765 const std::string lifetime) { in TableBuilderArgsDefnType() argument 777 return "Option<&" + lifetime + " " + typname + ">"; in TableBuilderArgsDefnType() 781 return "Option<flatbuffers::WIPOffset<" + typname + "<" + lifetime + \ in TableBuilderArgsDefnType() 785 return "Option<flatbuffers::WIPOffset<&" + lifetime + " str>>"; in TableBuilderArgsDefnType() 801 lifetime + ", " + typname + ">>>"; in TableBuilderArgsDefnType() 805 lifetime + ", bool>>>"; in TableBuilderArgsDefnType() 810 lifetime + ", " + typname + ">>>"; in TableBuilderArgsDefnType() 815 lifetime + ", " + typname + ">>>"; in TableBuilderArgsDefnType() 820 lifetime + ", flatbuffers::ForwardsUOffset<" + typname + \ in TableBuilderArgsDefnType() 821 "<" + lifetime + ">>>>>"; in TableBuilderArgsDefnType() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/DeadStoreElimination/ |
D | lifetime.ll | 5 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) nounwind 6 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) nounwind 14 call void @llvm.lifetime.end.p0i8(i64 1, i8* %A) 15 ; CHECK: lifetime.end 28 call void @llvm.lifetime.start.p0i8(i64 4, i8* %R) 29 ; CHECK: lifetime.start 32 call void @llvm.lifetime.end.p0i8(i64 4, i8* %R) 33 ; CHECK: lifetime.end
|
/external/llvm/test/Transforms/DeadStoreElimination/ |
D | lifetime.ll | 5 declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind 6 declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind 14 call void @llvm.lifetime.end(i64 1, i8* %A) 15 ; CHECK: lifetime.end 28 call void @llvm.lifetime.start(i64 4, i8* %R) 29 ; CHECK: lifetime.start 32 call void @llvm.lifetime.end(i64 4, i8* %R) 33 ; CHECK: lifetime.end
|
/external/swiftshader/third_party/LLVM/test/Transforms/DeadStoreElimination/ |
D | lifetime.ll | 5 declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind 6 declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind 14 call void @llvm.lifetime.end(i64 1, i8* %A) 15 ; CHECK: lifetime.end 28 call void @llvm.lifetime.start(i64 4, i8* %R) 29 ; CHECK: lifetime.start 32 call void @llvm.lifetime.end(i64 4, i8* %R) 33 ; CHECK: lifetime.end
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/ |
D | pr30451.ll | 6 call void @llvm.lifetime.start.p0i8(i64 2, i8* %1) 10 call void @llvm.lifetime.end.p0i8(i64 2, i8* %1) 22 call void @llvm.lifetime.start.p0i8(i64 2, i8* %1) 26 call void @llvm.lifetime.end.p0i8(i64 2, i8* %1) 39 call void @llvm.lifetime.start.p0i8(i64 2, i8* %1) 43 call void @llvm.lifetime.end.p0i8(i64 2, i8* %1) 55 call void @llvm.lifetime.start.p0i8(i64 2, i8* %1) 59 call void @llvm.lifetime.end.p0i8(i64 2, i8* %1) 68 declare void @llvm.lifetime.start.p0i8(i64, i8*) 69 declare void @llvm.lifetime.end.p0i8(i64, i8*)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/CodeExtractor/ |
D | live_shrink_multiple.ll | 13 call void @llvm.lifetime.start.p0i8(i64 4, i8* nonnull %tmp2) 15 call void @llvm.lifetime.start.p0i8(i64 4, i8* nonnull %tmp3) 25 call void @llvm.lifetime.end.p0i8(i64 4, i8* nonnull %tmp3) 26 call void @llvm.lifetime.end.p0i8(i64 4, i8* nonnull %tmp2) 31 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) 36 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) 49 ; CHECK-NEXT: call void @llvm.lifetime.start.p0i8 52 ; CHECK-NEXT: call void @llvm.lifetime.start.p0i8 53 ; CHECK: call void @llvm.lifetime.end.p0i8 54 ; CHECK-NEXT: call void @llvm.lifetime.end.p0i8
|
/external/tcpdump/tests/ |
D | icmpv6_opt24-v.out | 2 …hop limit 0, Flags [managed, other stateful], pref medium, router lifetime 0s, reachable time 0s, … 6 route info option (24), length 16 (2): fd8d:4fb3:5b2e::/48, pref=medium, lifetime=7200s 7 rdnss option (25), length 24 (3): lifetime 1800s, addr: fd8d:4fb3:5b2e::1 8 dnssl option (31), length 16 (2): lifetime 1800s, domain(s): lan. 10 …hop limit 0, Flags [managed, other stateful], pref medium, router lifetime 0s, reachable time 0s, … 14 route info option (24), length 16 (2): fd8d:4fb3:5b2e::/48, pref=medium, lifetime=7200s 15 rdnss option (25), length 24 (3): lifetime 1800s, addr: fd8d:4fb3:5b2e::1 16 dnssl option (31), length 16 (2): lifetime 1800s, domain(s): lan.
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/ |
D | rx-scheduler.hpp | 204 composite_subscription lifetime; member in rxcpp::schedulers::worker 216 , lifetime(std::move(cs)) in worker() 221 , lifetime(std::move(cs)) in worker() 226 return lifetime; in get_subscription() 229 return lifetime; in get_subscription() 235 return lifetime.is_subscribed(); in is_subscribed() 238 return lifetime.add(std::move(s)); in add() 241 return lifetime.remove(std::move(w)); in remove() 244 return lifetime.clear(); in clear() 247 return lifetime.unsubscribe(); in unsubscribe() [all …]
|