/external/llvm/test/Verifier/ |
function-metadata-bad.ll | 3 define i32 @bad1() !prof !0 { 9 ; CHECK-NEXT: expected string with name of the !prof annotation 12 define i32 @bad2() !prof !1 { 17 ; CHECK-NEXT: !prof annotations should have exactly 2 operands 21 define i32 @bad3() !prof !2 { 29 define i32 @bad4() !prof !3 {
|
function-metadata-good.ll | 4 define i32 @foo() !prof !0 {
|
/external/jemalloc/test/unit/ |
prof_active.c | 5 "prof:true,prof_thread_active_init:false,lg_prof_sample:0"; 41 mallctl_bool_get("prof.active", prof_active_old_expected, func, line); 51 mallctl_bool_set("prof.active", prof_active_old_expected, 62 mallctl_bool_get("thread.prof.active", thread_prof_active_old_expected, 73 mallctl_bool_set("thread.prof.active", thread_prof_active_old_expected, 106 /* prof.active, !thread.prof.active. */ 111 /* !prof.active, !thread.prof.active. */ 116 /* !prof.active, thread.prof.active. * [all...] |
prof_thread_name.c | 4 const char *malloc_conf = "prof:true,prof_active:false"; 15 assert_d_eq(mallctl("thread.prof.name", &thread_name_old, &sz, NULL, 0), 16 0, "%s():%d: Unexpected mallctl failure reading thread.prof.name", 19 "%s():%d: Unexpected thread.prof.name value", func, line); 29 assert_d_eq(mallctl("thread.prof.name", NULL, NULL, &thread_name, 31 "%s():%d: Unexpected mallctl failure reading thread.prof.name", 49 assert_d_eq(mallctl("thread.prof.name", NULL, NULL, &thread_name, 51 "Unexpected mallctl result writing \"%s\" to thread.prof.name", 56 assert_d_eq(mallctl("thread.prof.name", NULL, NULL, &thread_name, 58 "Unexpected mallctl result writing \"%s\" to thread.prof.name" [all...] |
prof_gdump.c | 4 const char *malloc_conf = "prof:true,prof_active:false,prof_gdump:true"; 31 assert_d_eq(mallctl("prof.active", NULL, NULL, &active, sizeof(active)), 48 assert_d_eq(mallctl("prof.gdump", &gdump_old, &sz, &gdump, 50 "Unexpected mallctl failure while disabling prof.gdump"); 59 assert_d_eq(mallctl("prof.gdump", &gdump_old, &sz, &gdump, 61 "Unexpected mallctl failure while enabling prof.gdump");
|
prof_reset.c | 5 "prof:true,prof_active:false,lg_prof_sample:0"; 23 assert_d_eq(mallctl("prof.active", NULL, NULL, &active, sizeof(active)), 33 assert_d_eq(mallctl("prof.lg_sample", &lg_prof_sample, &sz, NULL, 0), 0, 41 assert_d_eq(mallctl("prof.reset", NULL, NULL, 65 "\"prof.lg_sample\""); 69 assert_d_eq(mallctl("prof.reset", NULL, NULL, NULL, 0), 0, 76 /* Test resets with prof.lg_sample changes. */ 86 /* Make sure the test code restored prof.lg_sample. */ 90 "\"prof.lg_sample\""); 124 assert_d_eq(mallctl("prof.dump", NULL, NULL, NULL, 0) [all...] |
prof_idump.c | 5 "prof:true,prof_accum:true,prof_active:false,lg_prof_sample:0," 32 assert_d_eq(mallctl("prof.active", NULL, NULL, &active, sizeof(active)),
|
/external/llvm/test/Transforms/SampleProfile/ |
syntax.ll | 1 ; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/syntax.prof 2>&1 | FileCheck -check-prefix=NO-DEBUG %s 2 ; RUN: not opt < %s -sample-profile -sample-profile-file=missing.prof 2>&1 | FileCheck -check-prefix=MISSING-FILE %s 3 ; RUN: not opt < %s -sample-profile -sample-profile-file=%S/Inputs/bad_fn_header.prof 2>&1 | FileCheck -check-prefix=BAD-FN-HEADER %s 4 ; RUN: not opt < %s -sample-profile -sample-profile-file=%S/Inputs/bad_sample_line.prof 2>&1 | FileCheck -check-prefix=BAD-SAMPLE-LINE %s 5 ; RUN: not opt < %s -sample-profile -sample-profile-file=%S/Inputs/bad_line_values.prof 2>&1 | FileCheck -check-prefix=BAD-LINE-VALUES %s 6 ; RUN: not opt < %s -sample-profile -sample-profile-file=%S/Inputs/bad_discriminator_value.prof 2>&1 | FileCheck -check-prefix=BAD-DISCRIMINATOR-VALUE %s 7 ; RUN: not opt < %s -sample-profile -sample-profile-file=%S/Inputs/bad_samples.prof 2>&1 | FileCheck -check-prefix=BAD-SAMPLES %s 8 ; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/bad_mangle.prof 2>&1 >/dev/null 15 ; MISSING-FILE: missing.prof: Could not open profile: 16 ; BAD-FN-HEADER: error: {{.*}}bad_fn_header.prof: Could not open profile: Unrecognized sample profile encoding forma [all...] |
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/ |
mockParser.py | 28 prof = hotshot.Profile('stats.prof') 29 prof.runcall(x.parse, sys.argv[1], False) 30 prof.close() 31 stats = hotshot.stats.load('stats.prof')
|
/prebuilts/go/darwin-x86/src/cmd/trace/ |
pprof.go | 40 prof := make(map[uint64]Record) 45 rec := prof[ev.StkID] 49 prof[ev.StkID] = rec 51 serveSVGProfile(w, r, prof) 61 prof := make(map[uint64]Record) 72 rec := prof[ev.StkID] 76 prof[ev.StkID] = rec 78 serveSVGProfile(w, r, prof) 88 prof := make(map[uint64]Record) 93 rec := prof[ev.StkID [all...] |
/prebuilts/go/linux-x86/src/cmd/trace/ |
pprof.go | 40 prof := make(map[uint64]Record) 45 rec := prof[ev.StkID] 49 prof[ev.StkID] = rec 51 serveSVGProfile(w, r, prof) 61 prof := make(map[uint64]Record) 72 rec := prof[ev.StkID] 76 prof[ev.StkID] = rec 78 serveSVGProfile(w, r, prof) 88 prof := make(map[uint64]Record) 93 rec := prof[ev.StkID [all...] |
/external/clang/test/Profile/ |
c-general.c | 30 // PGOUSE: br {{.*}} !prof ![[SL1:[0-9]+]] 34 // PGOUSE: br {{.*}} !prof ![[SL2:[0-9]+]] 38 // PGOUSE: br {{.*}} !prof ![[SL3:[0-9]+]] 42 // PGOUSE-NOT: br {{.*}} !prof ![0-9]+ 50 // PGOUSE: br {{.*}} !prof ![[IF1:[0-9]+]] 53 // PGOUSE: br {{.*}} !prof ![[IF2:[0-9]+]] 56 // PGOUSE: br {{.*}} !prof ![[IF3:[0-9]+]] 59 // PGOUSE: br {{.*}} !prof ![[IF4:[0-9]+]] 62 // PGOUSE: br {{.*}} !prof ![[IF5:[0-9]+]] 66 // PGOUSE: br {{.*}} !prof ![[IF6:[0-9]+] [all...] |
cxx-class.cpp | 24 // CTRUSE: br {{.*}} !prof ![[SC1:[0-9]+]] 27 // CTRUSE-NOT: br {{.*}} !prof ![0-9]+ 37 // DTRUSE: br {{.*}} !prof ![[SD1:[0-9]+]] 40 // DTRUSE-NOT: br {{.*}} !prof ![0-9]+ 50 // MTHUSE: br {{.*}} !prof ![[SM1:[0-9]+]] 53 // MTHUSE-NOT: br {{.*}} !prof ![0-9]+ 64 // WRPUSE: br {{.*}} !prof ![[SW1:[0-9]+]] 70 // WRPUSE-NOT: br {{.*}} !prof ![0-9]+
|
func-entry.c | 8 // CHECK: @foo() #0 !prof [[FOO:![0-9]+]] 11 // CHECK: @main() #1 !prof [[MAIN:![0-9]+]]
|
/cts/hostsidetests/compilation/assets/ |
README.txt | 9 $ adb shell ls -l /data/misc/profiles/cur/0/android.cts.compilation/primary.prof 11 $ adb pull /data/misc/profiles/cur/0/android.cts.compilation/primary.prof ./
|
/external/opencv3/3rdparty/libjasper/ |
jas_cm.c | 98 static int mono(jas_iccprof_t *prof, int op, jas_cmpxformseq_t **pxformseq); 99 static int triclr(jas_iccprof_t *prof, int op, jas_cmpxformseq_t **retpxformseq); 114 #define fwdpxformseq(prof, intent) \ 115 (((prof)->pxformseqs[SEQFWD(intent)]) ? \ 116 ((prof)->pxformseqs[SEQFWD(intent)]) : \ 117 ((prof)->pxformseqs[SEQFWD(0)])) 119 #define revpxformseq(prof, intent) \ 120 (((prof)->pxformseqs[SEQREV(intent)]) ? \ 121 ((prof)->pxformseqs[SEQREV(intent)]) : \ 122 ((prof)->pxformseqs[SEQREV(0)]) 147 jas_cmprof_t *prof; local 176 jas_cmprof_t *prof; local 245 jas_cmprof_t *prof; local 314 jas_cmprof_t *prof; local [all...] |
/external/mksh/src/ |
signames.inc | 22 { "PROF", 27 },
|
/external/llvm/test/CodeGen/X86/ |
code_placement_cold_loop_blocks.ll | 3 define void @foo() !prof !1 { 20 br i1 %call, label %if.then, label %if.else, !prof !4 33 br i1 %call2, label %header, label %end, !prof !5 40 define void @nested_loop_0() !prof !1 { 62 br i1 %call, label %if.then, label %if.else, !prof !2 67 br i1 %call3, label %header2, label %header, !prof !3 72 br i1 %call2, label %header2, label %header, !prof !3 79 define void @nested_loop_1() !prof !1 { 99 br i1 %call, label %end, label %if.else, !prof !4 104 br i1 %call2, label %header2, label %header, !prof ! [all...] |
code_placement_ignore_succ_in_inner_loop.ll | 14 br i1 %call, label %if.then, label %if.else, !prof !1 18 br i1 %call1, label %while.body, label %if.end.1, !prof !1 56 br i1 %call, label %if.then, label %if.else, !prof !1 60 br i1 %call1, label %if.then, label %while.body, !prof !2 64 br i1 %call2, label %while.body, label %if.end, !prof !2 90 br i1 %call, label %if.then, label %if.else, !prof !3 99 br i1 %call1, label %if.end, label %exit, !prof !4 104 br i1 %call2, label %if.cond, label %if.end.2, !prof !2
|
/external/llvm/test/CodeGen/AArch64/ |
fast-isel-tbz.ll | 9 br i1 %2, label %bb1, label %bb2, !prof !0 21 br i1 %2, label %bb1, label %bb2, !prof !0 33 br i1 %2, label %bb1, label %bb2, !prof !0 45 br i1 %2, label %bb1, label %bb2, !prof !0 57 br i1 %2, label %bb1, label %bb2, !prof !0 69 br i1 %2, label %bb1, label %bb2, !prof !0 81 br i1 %2, label %bb1, label %bb2, !prof !0 93 br i1 %2, label %bb1, label %bb2, !prof !0 105 br i1 %2, label %bb1, label %bb2, !prof !0 117 br i1 %2, label %bb1, label %bb2, !prof ! [all...] |
/external/llvm/test/Transforms/SimplifyCFG/ |
preserve-branchweights.ll | 8 br i1 %a, label %Y, label %X, !prof !0 9 ; CHECK: br i1 %or.cond, label %Z, label %Y, !prof !0 13 br i1 %c, label %Z, label %Y, !prof !1 27 br i1 %a, label %X, label %Y, !prof !1 28 ; CHECK: br i1 %or.cond, label %Z, label %Y, !prof !1 29 ; CHECK-NOT: !prof 33 br i1 %c, label %Z, label %Y, !prof !2 46 ; CHECK-NOT: !prof 48 br i1 %a, label %X, label %Y, !prof !1 65 ; CHECK-NOT: !prof [all...] |
/prebuilts/go/darwin-x86/src/cmd/pprof/internal/symbolizer/ |
symbolizer.go | 24 func Symbolize(mode string, prof *profile.Profile, obj plugin.ObjTool, ui plugin.UI) error { 35 if len(prof.Mapping) == 0 { 39 mt, err := newMapping(prof, obj, ui, force) 46 for _, l := range mt.prof.Location { 80 f.ID = uint64(len(mt.prof.Function)) + 1 81 mt.prof.Function = append(mt.prof.Function, f) 97 func newMapping(prof *profile.Profile, obj plugin.ObjTool, ui plugin.UI, force bool) (*mappingTable, error) { 99 prof: prof, [all...] |
/prebuilts/go/linux-x86/src/cmd/pprof/internal/symbolizer/ |
symbolizer.go | 24 func Symbolize(mode string, prof *profile.Profile, obj plugin.ObjTool, ui plugin.UI) error { 35 if len(prof.Mapping) == 0 { 39 mt, err := newMapping(prof, obj, ui, force) 46 for _, l := range mt.prof.Location { 80 f.ID = uint64(len(mt.prof.Function)) + 1 81 mt.prof.Function = append(mt.prof.Function, f) 97 func newMapping(prof *profile.Profile, obj plugin.ObjTool, ui plugin.UI, force bool) (*mappingTable, error) { 99 prof: prof, [all...] |
/external/llvm/test/Analysis/BlockFrequencyInfo/ |
extremely-likely-loop-successor.ll | 16 br i1 %exit.1.cond, label %exit, label %loop.2, !prof !0 21 br i1 %exit.2.cond, label %exit, label %loop.3, !prof !0 26 br i1 %exit.3.cond, label %exit, label %loop.4, !prof !0 31 br i1 %exit.4.cond, label %exit, label %loop, !prof !0
|
/external/llvm/test/Transforms/LoopUnswitch/ |
cold-loop.ll | 4 define i32 @test1(i1 %cond1, i1 %cond2) !prof !1 { 5 br i1 %cond1, label %loop_begin, label %loop_exit, !prof !0 20 define i32 @test2(i32* %var, i1 %cond1, i1 %cond2) !prof !1 { 21 br i1 %cond1, label %loop_begin, label %loop_exit, !prof !0
|