Searched refs:Enable (Results 1 - 25 of 84) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_AArch64.cpp34 inline static bool patchSled(const bool Enable, const uint32_t FuncId,
37 // When |Enable| == true,
61 // When |Enable|==false, we set back the first instruction in the sled to be
66 if (Enable) {
92 bool patchFunctionEntry(const bool Enable, const uint32_t FuncId,
95 return patchSled(Enable, FuncId, Sled, Trampoline);
98 bool patchFunctionExit(const bool Enable, const uint32_t FuncId,
100 return patchSled(Enable, FuncId, Sled, __xray_FunctionExit);
103 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
105 return patchSled(Enable, FuncI
[all...]
H A Dxray_powerpc64.cpp52 bool patchFunctionEntry(const bool Enable, uint32_t FuncId,
56 if (Enable) {
71 bool patchFunctionExit(const bool Enable, uint32_t FuncId,
74 if (Enable) {
89 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
91 return patchFunctionExit(Enable, FuncId, Sled);
97 bool patchCustomEvent(const bool Enable, const uint32_t FuncId,
103 bool patchTypedEvent(const bool Enable, const uint32_t FuncId,
H A Dxray_arm.cpp76 inline static bool patchSled(const bool Enable, const uint32_t FuncId,
79 // When |Enable| == true,
102 // When |Enable|==false, we set back the first instruction in the sled to be
107 if (Enable) {
129 bool patchFunctionEntry(const bool Enable, const uint32_t FuncId,
132 return patchSled(Enable, FuncId, Sled, Trampoline);
135 bool patchFunctionExit(const bool Enable, const uint32_t FuncId,
137 return patchSled(Enable, FuncId, Sled, __xray_FunctionExit);
140 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
142 return patchSled(Enable, FuncI
[all...]
H A Dxray_interface_internal.h83 bool patchFunctionEntry(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled,
85 bool patchFunctionExit(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled);
86 bool patchFunctionTailExit(bool Enable, uint32_t FuncId,
88 bool patchCustomEvent(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled);
89 bool patchTypedEvent(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled);
H A Dxray_mips.cpp52 inline static bool patchSled(const bool Enable, const uint32_t FuncId,
55 // When |Enable| == true,
93 // When |Enable|==false, we set back the first instruction in the sled to be
96 if (Enable) {
136 bool patchFunctionEntry(const bool Enable, const uint32_t FuncId,
139 return patchSled(Enable, FuncId, Sled, Trampoline);
142 bool patchFunctionExit(const bool Enable, const uint32_t FuncId,
144 return patchSled(Enable, FuncId, Sled, __xray_FunctionExit);
147 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
151 return patchSled(Enable, FuncI
[all...]
H A Dxray_mips64.cpp53 inline static bool patchSled(const bool Enable, const uint32_t FuncId,
56 // When |Enable| == true,
89 // When |Enable|==false, we set back the first instruction in the sled to be
92 if (Enable) {
145 bool patchFunctionEntry(const bool Enable, const uint32_t FuncId,
148 return patchSled(Enable, FuncId, Sled, Trampoline);
151 bool patchFunctionExit(const bool Enable, const uint32_t FuncId,
153 return patchSled(Enable, FuncId, Sled, __xray_FunctionExit);
156 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
160 return patchSled(Enable, FuncI
[all...]
H A Dxray_x86_64.cpp130 bool patchFunctionEntry(const bool Enable, const uint32_t FuncId,
162 if (Enable) {
178 bool patchFunctionExit(const bool Enable, const uint32_t FuncId,
208 if (Enable) {
224 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
237 if (Enable) {
253 bool patchCustomEvent(const bool Enable, const uint32_t FuncId,
279 if (Enable) {
302 bool patchTypedEvent(const bool Enable, const uint32_t FuncId,
322 if (Enable) {
[all...]
H A Dxray_interface.cpp149 bool patchSled(const XRaySledEntry &Sled, bool Enable,
154 Success = patchFunctionEntry(Enable, FuncId, Sled, __xray_FunctionEntry);
157 Success = patchFunctionExit(Enable, FuncId, Sled);
160 Success = patchFunctionTailExit(Enable, FuncId, Sled);
163 Success = patchFunctionEntry(Enable, FuncId, Sled, __xray_ArgLoggerEntry);
166 Success = patchCustomEvent(Enable, FuncId, Sled);
169 Success = patchTypedEvent(Enable, FuncId, Sled);
206 bool Enable) XRAY_NEVER_INSTRUMENT {
241 SucceedOnce |= patchSled(*f++, Enable, FuncId);
255 // implementation. |Enable| define
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DCurrentSourceLocExprScope.h53 : Current(Current), OldVal(Current), Enable(false) {
55 if ((Enable = (Current.getDefaultExpr() == nullptr)))
60 if (Enable)
70 bool Enable; member in class:clang::CurrentSourceLocExprScope::SourceLocExprScopeGuard
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dopt-debug.mk5 # Enable debug logging for the variables (var.c).
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/
H A Dguarded_pool_allocator_posix.cpp78 auto Enable = []() { local
82 pthread_atfork(Disable, Enable, Enable);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h227 void setFastISel(bool Enable) { Options.EnableFastISel = Enable; } argument
229 void setO0WantsFastISel(bool Enable) { O0WantsFastISel = Enable; } argument
230 void setGlobalISel(bool Enable) { Options.EnableGlobalISel = Enable; } argument
234 void setMachineOutliner(bool Enable) { argument
235 Options.EnableMachineOutliner = Enable;
237 void setSupportsDefaultOutlining(bool Enable) { argument
238 Options.SupportsDefaultOutlining = Enable;
240 setSupportsDebugEntryValues(bool Enable) argument
[all...]
H A DTargetOptions.h37 Fast, // Enable fusion of FP ops wherever it's profitable.
105 /// Enable abort calls when global instruction selection fails to lower/select
109 Enable, // Enable the abort. member in class:llvm::GlobalISelAbortMode
215 GlobalISelAbortMode GlobalISelAbort = GlobalISelAbortMode::Enable;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmInfo.cpp23 enum DefaultOnOff { Default, Enable, Disable }; enumerator in enum:DefaultOnOff
28 clEnumVal(Enable, "Enabled"), clEnumVal(Disable, "Disabled")),
53 SupportsExtendedDwarfLocDirective = DwarfExtendedLoc == Enable;
H A DSubtargetFeature.cpp41 void SubtargetFeatures::AddFeature(StringRef String, bool Enable) { argument
46 : (Enable ? "+" : "-") + String.lower());
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGLoopInfo.h44 enum LVEnableState { Unspecified, Enable, Disable, Full }; enumerator in enum:clang::CodeGen::LoopAttributes::LVEnableState
226 void setParallel(bool Enable = true) { StagedAttrs.IsParallel = Enable; }
229 void setVectorizeEnable(bool Enable = true) {
231 Enable ? LoopAttributes::Enable : LoopAttributes::Disable;
235 void setDistributeState(bool Enable = true) {
237 Enable ? LoopAttributes::Enable : LoopAttributes::Disable;
/freebsd-13-stable/cddl/usr.sbin/dtrace/tests/common/java_api/
H A DMakefile18 tst.Enable.ksh \
19 tst.Enable.ksh.out \
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h96 static void Enable(ConstString category,
99 static void Enable(lldb::LanguageType lang_type);
105 static void Enable(const lldb::TypeCategoryImplSP &category,
H A DLanguageCategory.h37 void Enable();
H A DTypeCategoryMap.h49 bool Enable(KeyType category_name, Position pos = Default);
53 bool Enable(ValueSP category, Position pos = Default);
/freebsd-13-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DLanguageCategory.cpp30 Enable();
124 void LanguageCategory::Enable() { function in class:LanguageCategory
126 m_category_sp->Enable(true, TypeCategoryMap::Default);
H A DTypeCategoryMap.cpp24 Enable(default_cs, First);
46 bool TypeCategoryMap::Enable(KeyType category_name, Position pos) { function in class:TypeCategoryMap
51 return Enable(category, pos);
62 bool TypeCategoryMap::Enable(ValueSP category, Position pos) { function in class:TypeCategoryMap
78 category->Enable(true, pos);
114 Enable(*viter, Last);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetPassConfig.h176 void setEnableTailMerge(bool Enable) { setOpt(EnableTailMerge, Enable); } argument
179 void setRequiresCodeGenSCCOrder(bool Enable = true) {
180 setOpt(RequireCodeGenSCCOrder, Enable);
/freebsd-13-stable/usr.sbin/lpr/filters.ru/
H A Dbjc-240.sh.sample60 AutoPowerOn=Enable
/freebsd-13-stable/share/mk/
H A Dbsd.port.mk26 # Enable CTF conversion on request.

Completed in 200 milliseconds

1234