/external/llvm/test/Transforms/Inline/ |
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 [all...] |
lifetime-no-datalayout.ll | 11 ; Size in llvm.lifetime.X should be -1 (unknown). 14 ; CHECK-NOT: lifetime 15 ; CHECK: llvm.lifetime.start(i64 -1 16 ; CHECK-NOT: lifetime 17 ; CHECK: llvm.lifetime.end(i64 -1 19 ; CHECK-NOT: lifetime
|
/external/llvm/test/Transforms/SimplifyCFG/ |
lifetime.ll | 3 ; Test that a lifetime intrinsic doesn't prevent us from simplifying this. 13 call void @llvm.lifetime.start(i64 -1, i8* %a) nounwind 17 call void @llvm.lifetime.end(i64 -1, i8* %a) nounwind 27 declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind 29 declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind
|
/external/clang/test/CodeGen/ |
lifetime2.c | 6 // O0-NOT: @llvm.lifetime.start 9 // O2: @llvm.lifetime.start 13 // O2: @llvm.lifetime.start
|
sanitize-use-after-scope.c | 8 // ADDRESS-ONLY-NOT: @llvm.lifetime.start 11 // USE-AFTER-SCOPE: @llvm.lifetime.start(i64 10, i8* {{.*}}) 14 // USE-AFTER-SCOPE: @llvm.lifetime.end(i64 10, i8* {{.*}}) 16 // USE-AFTER-SCOPE: @llvm.lifetime.start(i64 20, i8* {{.*}}) 19 // USE-AFTER-SCOPE: @llvm.lifetime.end(i64 20, i8* {{.*}})
|
lifetime.c | 18 // O0-NOT: @llvm.lifetime.start 19 // O1: @llvm.lifetime.start 20 // O2: @llvm.lifetime.start 21 // O3: @llvm.lifetime.start
|
/external/llvm/test/Instrumentation/AddressSanitizer/ |
lifetime.ll | 1 ; Test hanlding of llvm.lifetime intrinsics. 2 ; RUN: opt < %s -asan -asan-check-lifetime -S | FileCheck %s 7 declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind 8 declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind 14 call void @llvm.lifetime.start(i64 -1, i8* %i.ptr) 15 call void @llvm.lifetime.end(i64 -1, i8* %i.ptr) 17 ; Check that lifetime with no size are ignored. 25 ; Generic case of lifetime analysis. 26 define void @lifetime() sanitize_address { 27 ; CHECK: @lifetime [all...] |
/external/llvm/test/Transforms/DeadStoreElimination/ |
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
|
dominate.ll | 12 call void @llvm.lifetime.end(i64 -1, i8* %0) 17 call void @llvm.lifetime.end(i64 -1, i8* %0) 25 declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind
|
/external/llvm/test/Transforms/GVN/ |
lifetime-simple.ll | 7 ; CHECK: lifetime.start 9 ; CHECK: lifetime.end 11 call void @llvm.lifetime.start(i64 32, i8* %P) 14 call void @llvm.lifetime.end(i64 32, i8* %P) 19 declare void @llvm.lifetime.start(i64 %S, i8* nocapture %P) readonly 20 declare void @llvm.lifetime.end(i64 %S, i8* nocapture %P)
|
/external/llvm/test/CodeGen/Thumb/ |
stack-coloring-without-frame-ptr.ll | 15 call void @llvm.lifetime.start(i64 16, i8* %1) nounwind 17 call void @llvm.lifetime.end(i64 16, i8* %1) nounwind 20 call void @llvm.lifetime.start(i64 20, i8* %2) nounwind 27 declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind 29 declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind
|
/external/llvm/test/CodeGen/X86/ |
StackColoring.ll | 16 call void @llvm.lifetime.start(i64 -1, i8* %b) 19 call void @llvm.lifetime.end(i64 -1, i8* %b) 20 call void @llvm.lifetime.start(i64 -1, i8* %b2) 23 call void @llvm.lifetime.end(i64 -1, i8* %b2) 40 call void @llvm.lifetime.start(i64 -1, i8* %b) 45 call void @llvm.lifetime.start(i64 -1, i8* %b2) 48 call void @llvm.lifetime.end(i64 -1, i8* %b2) 52 call void @llvm.lifetime.end(i64 -1, i8* %b) 55 call void @llvm.lifetime.end(i64 -1, i8* %b) 68 call void @llvm.lifetime.start(i64 -1, i8* %b [all...] |
/external/llvm/test/Transforms/LoopVectorize/ |
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) # [all...] |
/external/chromium_org/webkit/browser/fileapi/ |
file_system_url_request_job_factory.h | 20 // |context|'s lifetime should exceed the lifetime of the ProtocolHandler.
|
/external/llvm/test/CodeGen/PowerPC/ |
lsa.ll | 11 call void @llvm.lifetime.start(i64 32800, i8* %0) #0 13 call void @llvm.lifetime.start(i64 32800, i8* %1) #0 15 call void @llvm.lifetime.start(i64 32800, i8* %2) #0 31 call void @llvm.lifetime.end(i64 32800, i8* %2) #0 32 call void @llvm.lifetime.end(i64 32800, i8* %1) #0 33 call void @llvm.lifetime.end(i64 32800, i8* %0) #0 37 declare void @llvm.lifetime.start(i64, i8* nocapture) #0 41 declare void @llvm.lifetime.end(i64, i8* nocapture) #0
|
/external/llvm/test/Transforms/Mem2Reg/ |
use-analysis.ll | 5 declare void @llvm.lifetime.start(i64 %size, i8* nocapture %ptr) 6 declare void @llvm.lifetime.end(i64 %size, i8* nocapture %ptr) 9 ; Ensure we can look through a bitcast to i8* and the addition of lifetime 18 call void @llvm.lifetime.start(i64 2, i8* %B) 20 call void @llvm.lifetime.end(i64 2, i8* %B) 25 ; Ensure we can look through a GEP to i8* and the addition of lifetime 34 call void @llvm.lifetime.start(i64 2, i8* %B) 36 call void @llvm.lifetime.end(i64 2, i8* %B) 44 ; through round trip bitcasts, dead bitcasts, GEPs, multiple GEPs, and lifetime 53 call void @llvm.lifetime.start(i64 -1, i8* %b3 [all...] |
/external/chromium_org/chrome/browser/lifetime/ |
application_lifetime_stub.cc | 5 #include "chrome/browser/lifetime/application_lifetime.h"
|
/external/llvm/test/Transforms/InstCombine/ |
deadcode.ll | 25 declare void @llvm.lifetime.start(i64, i8*) 26 declare void @llvm.lifetime.end(i64, i8*) 29 call void @llvm.lifetime.start(i64 -1, i8* undef) 30 call void @llvm.lifetime.end(i64 -1, i8* undef)
|
/external/chromium_org/chrome/browser/ui/cocoa/download/ |
download_shelf_context_menu_controller.mm | 15 // Retain itemController since the lifetime of the ui::MenuModel is bound to 16 // the lifetime of itemController.
|
/external/chromium_org/content/browser/service_worker/ |
service_worker_provider_host.h | 15 // provider. There is a provider per document and the lifetime of this 16 // object is tied to the lifetime of its document in the renderer process.
|
/external/ipsec-tools/src/racoon/samples/ |
racoon.conf.sample-inherit | 38 lifetime time 1 min; # sec,min,hour 51 lifetime time 12 hour;
|
/external/chromium_org/chrome/installer/gcapi/ |
gcapi_test_registry_overrider.h | 10 // Overrides the registry throughout its lifetime; used by GCAPI tests
|
/external/chromium_org/content/renderer/media/ |
pepper_platform_video_decoder.h | 49 // Client lifetime must exceed lifetime of this class. 51 // arcitecture of PPAPI Video Decode to make sure lifetime/ownership makes 52 // sense, including lifetime of this client.
|
/external/e2fsprogs/tests/ |
filter_dumpe2fs | 11 /^Lifetime writes:/d
|
/external/ipsec-tools/src/racoon/samples/roadwarrior/server/ |
racoon.conf | 37 lifetime time 1 hour;
|