Home
last modified time | relevance | path

Searched refs:pgo (Results 1 – 9 of 9) sorted by relevance

/freebsd-12-stable/sys/compat/linuxkpi/common/src/
Dlinux_page.c125 vm_page_t pgo = page + x; in linux_alloc_pages() local
127 if ((pgo->flags & PG_ZERO) == 0) in linux_alloc_pages()
128 pmap_zero_page(pgo); in linux_alloc_pages()
155 vm_page_t pgo = page + x; in linux_free_pages() local
157 vm_page_lock(pgo); in linux_free_pages()
158 if (vm_page_unwire_noq(pgo)) in linux_free_pages()
159 vm_page_free(pgo); in linux_free_pages()
160 vm_page_unlock(pgo); in linux_free_pages()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
DIndirectCallPromotion.cpp304 CallBase &llvm::pgo::promoteIndirectCall(CallBase &CB, Function *DirectCallee, in promoteIndirectCall()
346 pgo::promoteIndirectCall(CB, C.TargetFunction, Count, TotalCount, SamplePGO, in tryToPromote()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/
DInstrumentation.h100 namespace pgo {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Passes/
DPassRegistry.def86 MODULE_PASS("pgo-icall-prom", PGOIndirectCallPromotion())
87 MODULE_PASS("pgo-instr-gen", PGOInstrumentationGen())
88 MODULE_PASS("pgo-instr-use", PGOInstrumentationUse())
271 FUNCTION_PASS("pgo-memop-opt", PGOMemOPSizeOpt())
/freebsd-12-stable/sys/contrib/zstd/programs/
DMakefile188 zstd-pgo : MOREFLAGS = -fprofile-generate
189 zstd-pgo : clean zstd
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DCodeGenOptions.def396 /// Whether emit extra debug info for sample pgo profile collection.
399 /// Whether emit pseudo probes for sample pgo profile collection.
/freebsd-12-stable/contrib/sqlite3/tea/win/
Drules.vc273 !elseif [nmakehlp -f $(OPTS) "pgo"]
/freebsd-12-stable/sys/contrib/zstd/
DNEWS178 Fixed : zstd-pgo, reported by octoploid (#329)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DSampleProfile.cpp883 auto *DI = &pgo::promoteIndirectCall( in tryPromoteAndInlineCandidate()