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

12345

/freebsd-current/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_AArch64.cpp33 inline static bool patchSled(const bool Enable, const uint32_t FuncId,
36 // When |Enable| == true,
60 // When |Enable|==false, we set back the first instruction in the sled to be
65 if (Enable) {
90 bool patchFunctionEntry(const bool Enable, const uint32_t FuncId,
93 return patchSled(Enable, FuncId, Sled, Trampoline);
96 bool patchFunctionExit(const bool Enable, const uint32_t FuncId,
98 return patchSled(Enable, FuncId, Sled, __xray_FunctionExit);
101 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
103 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_hexagon.cpp87 inline static bool patchSled(const bool Enable, const uint32_t FuncId,
90 // When |Enable| == true,
113 // When |Enable|==false, we set back the first instruction in the sled to be
117 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,
149 return patchSled(Enable, FuncI
[all...]
H A Dxray_interface_internal.h81 bool patchFunctionEntry(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled,
83 bool patchFunctionExit(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled);
84 bool patchFunctionTailExit(bool Enable, uint32_t FuncId,
86 bool patchCustomEvent(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled);
87 bool patchTypedEvent(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled);
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
93 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_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
97 if (Enable) {
137 bool patchFunctionEntry(const bool Enable, const uint32_t FuncId,
140 return patchSled(Enable, FuncId, Sled, Trampoline);
143 bool patchFunctionExit(const bool Enable, const uint32_t FuncId,
145 return patchSled(Enable, FuncId, Sled, __xray_FunctionExit);
148 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
152 return patchSled(Enable, FuncI
[all...]
H A Dxray_loongarch64.cpp43 static inline bool patchSled(const bool Enable, const uint32_t FuncId,
46 // When |Enable| == true,
74 // When |Enable|==false, we set the first instruction in the sled back to
78 if (Enable) {
127 bool patchFunctionEntry(const bool Enable, const uint32_t FuncId,
130 return patchSled(Enable, FuncId, Sled, Trampoline);
133 bool patchFunctionExit(const bool Enable, const uint32_t FuncId,
135 return patchSled(Enable, FuncId, Sled, __xray_FunctionExit);
138 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
142 return patchSled(Enable, FuncI
[all...]
H A Dxray_x86_64.cpp123 bool patchFunctionEntry(const bool Enable, const uint32_t FuncId,
156 if (Enable) {
172 bool patchFunctionExit(const bool Enable, const uint32_t FuncId,
203 if (Enable) {
219 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
233 if (Enable) {
249 bool patchCustomEvent(const bool Enable, const uint32_t FuncId,
265 if (Enable) {
277 bool patchTypedEvent(const bool Enable, const uint32_t FuncId,
297 if (Enable) {
[all...]
H A Dxray_interface.cpp153 bool patchSled(const XRaySledEntry &Sled, bool Enable,
158 Success = patchFunctionEntry(Enable, FuncId, Sled, __xray_FunctionEntry);
161 Success = patchFunctionExit(Enable, FuncId, Sled);
164 Success = patchFunctionTailExit(Enable, FuncId, Sled);
167 Success = patchFunctionEntry(Enable, FuncId, Sled, __xray_ArgLoggerEntry);
170 Success = patchCustomEvent(Enable, FuncId, Sled);
173 Success = patchTypedEvent(Enable, FuncId, Sled);
209 bool Enable) XRAY_NEVER_INSTRUMENT {
248 SucceedOnce |= patchSled(f[i], Enable, FuncId);
262 // implementation. |Enable| define
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DCurrentSourceLocExprScope.h52 : Current(Current), OldVal(Current), Enable(false) {
54 if ((Enable = (Current.getDefaultExpr() == nullptr)))
59 if (Enable)
69 bool Enable; member in class:clang::CurrentSourceLocExprScope::SourceLocExprScopeGuard
/freebsd-current/contrib/bmake/unit-tests/
H A Dopt-debug.mk5 # Enable debug logging for the variables (var.c).
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h263 void setFastISel(bool Enable) { Options.EnableFastISel = Enable; } argument
265 void setO0WantsFastISel(bool Enable) { O0WantsFastISel = Enable; } argument
266 void setGlobalISel(bool Enable) { Options.EnableGlobalISel = Enable; } argument
270 void setMachineOutliner(bool Enable) { argument
271 Options.EnableMachineOutliner = Enable;
273 void setSupportsDefaultOutlining(bool Enable) { argument
274 Options.SupportsDefaultOutlining = Enable;
276 setSupportsDebugEntryValues(bool Enable) argument
280 setCFIFixup(bool Enable) argument
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGLoopInfo.h44 enum LVEnableState { Unspecified, Enable, Disable, Full }; enumerator in enum:clang::CodeGen::LoopAttributes::LVEnableState
235 void setParallel(bool Enable = true) { StagedAttrs.IsParallel = Enable; }
238 void setVectorizeEnable(bool Enable = true) {
240 Enable ? LoopAttributes::Enable : LoopAttributes::Disable;
244 void setDistributeState(bool Enable = true) {
246 Enable ? LoopAttributes::Enable : LoopAttributes::Disable;
/freebsd-current/contrib/llvm-project/llvm/lib/TargetParser/
H A DSubtargetFeature.cpp37 void SubtargetFeatures::AddFeature(StringRef String, bool Enable) { argument
42 : (Enable ? "+" : "-") + String.lower());
/freebsd-current/cddl/usr.sbin/dtrace/tests/common/java_api/
H A DMakefile16 tst.Enable.ksh \
17 tst.Enable.ksh.out \
/freebsd-current/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);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/
H A Dguarded_pool_allocator_posix.cpp109 auto Enable = []() { local
113 pthread_atfork(Disable, Enable, Enable);
/freebsd-current/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();
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A Dtype_traits.h43 template<typename T, typename Enable = void>
54 template<typename T, typename Enable = void>
62 template <typename T, typename Enable = void>
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmInfo.cpp25 enum DefaultOnOff { Default, Enable, Disable }; enumerator in enum:__anon2084::DefaultOnOff
31 clEnumVal(Enable, "Enabled"), clEnumVal(Disable, "Disabled")),
64 SupportsExtendedDwarfLocDirective = DwarfExtendedLoc == Enable;
/freebsd-current/contrib/llvm-project/llvm/include/llvm-c/
H A DTargetMachine.h191 /** Enable fast-path instruction selection. */
192 void LLVMSetTargetMachineFastISel(LLVMTargetMachineRef T, LLVMBool Enable);
194 /** Enable global instruction selection. */
195 void LLVMSetTargetMachineGlobalISel(LLVMTargetMachineRef T, LLVMBool Enable);
202 /** Enable the MachineOutliner pass. */
204 LLVMBool Enable);
/freebsd-current/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilder.cpp621 bool Enable = !ParamName.consume_front("no-"); local
623 UnrollOpts.setPartial(Enable);
625 UnrollOpts.setPeeling(Enable);
627 UnrollOpts.setProfileBasedPeeling(Enable);
629 UnrollOpts.setRuntime(Enable);
631 UnrollOpts.setUpperBound(Enable);
812 bool Enable = !ParamName.consume_front("no-"); local
814 Result.speculateBlocks(Enable);
816 Result.setSimplifyCondBranch(Enable);
818 Result.forwardSwitchCondToPhi(Enable);
856 bool Enable = !ParamName.consume_front("no-"); local
886 bool Enable = !ParamName.consume_front("no-"); local
906 bool Enable = !ParamName.consume_front("no-"); local
927 bool Enable = !ParamName.consume_front("no-"); local
945 bool Enable = !ParamName.consume_front("no-"); local
965 bool Enable = !ParamName.consume_front("no-"); local
985 bool Enable = !ParamName.consume_front("no-"); local
1009 bool Enable = !ParamName.consume_front("no-"); local
1118 bool Enable = !ParamName.consume_front("no-"); local
[all...]
/freebsd-current/usr.sbin/lpr/filters.ru/
H A Dbjc-240.sh.sample60 AutoPowerOn=Enable

Completed in 1008 milliseconds

12345