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

123

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_interface_internal.h59 bool patchFunctionEntry(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled,
61 bool patchFunctionExit(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled);
62 bool patchFunctionTailExit(bool Enable, uint32_t FuncId,
64 bool patchCustomEvent(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled);
65 bool patchTypedEvent(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled);
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,
55 if (Enable) {
70 bool patchFunctionExit(const bool Enable, uint32_t FuncId,
72 if (Enable) {
87 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
89 return patchFunctionExit(Enable, FuncId, Sled);
95 bool patchCustomEvent(const bool Enable, const uint32_t FuncId,
101 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_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,
161 if (Enable) {
177 bool patchFunctionExit(const bool Enable, const uint32_t FuncId,
206 if (Enable) {
222 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
234 if (Enable) {
250 bool patchCustomEvent(const bool Enable, const uint32_t FuncId,
275 if (Enable) {
297 bool patchTypedEvent(const bool Enable, const uint32_t FuncId,
316 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);
179 bool Enable) XRAY_NEVER_INSTRUMENT {
214 SucceedOnce |= patchSled(*f++, Enable, FuncId);
228 // implementation. |Enable| define
[all...]
/freebsd-11-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-11-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;
[all...]
H A DTargetOptions.h33 Fast, // Enable fusion of FP ops wherever it's profitable.
98 /// Enable abort calls when global instruction selection fails to lower/select
102 Enable, // Enable the abort. member in class:llvm::GlobalISelAbortMode
205 GlobalISelAbortMode GlobalISelAbort = GlobalISelAbortMode::Enable;
/freebsd-11-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.cpp39 void SubtargetFeatures::AddFeature(StringRef String, bool Enable) { argument
44 : (Enable ? "+" : "-") + String.lower());
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGLoopInfo.h43 enum LVEnableState { Unspecified, Enable, Disable, Full }; enumerator in enum:clang::CodeGen::LoopAttributes::LVEnableState
224 void setParallel(bool Enable = true) { StagedAttrs.IsParallel = Enable; }
227 void setVectorizeEnable(bool Enable = true) {
229 Enable ? LoopAttributes::Enable : LoopAttributes::Disable;
233 void setDistributeState(bool Enable = true) {
235 Enable ? LoopAttributes::Enable : LoopAttributes::Disable;
H A DCGLoopInfo.cpp127 if (Attrs.UnrollEnable == LoopAttributes::Enable) {
151 else if (Attrs.UnrollAndJamEnable == LoopAttributes::Enable ||
190 if (Attrs.UnrollAndJamEnable == LoopAttributes::Enable) {
262 (Attrs.VectorizePredicateEnable == LoopAttributes::Enable);
323 if (Attrs.DistributeEnable == LoopAttributes::Enable)
352 (Attrs.DistributeEnable == LoopAttributes::Enable)))};
518 case LoopAttributes::Enable:
519 AfterJam.UnrollEnable = LoopAttributes::Enable;
602 State = LoopHintAttr::Enable;
652 case LoopHintAttr::Enable
[all...]
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/common/java_api/
H A DMakefile18 tst.Enable.ksh \
19 tst.Enable.ksh.out \
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h97 static void Enable(ConstString category,
100 static void Enable(lldb::LanguageType lang_type);
106 static void Enable(const lldb::TypeCategoryImplSP &category,
H A DLanguageCategory.h38 void Enable();
H A DTypeCategoryMap.h49 bool Enable(KeyType category_name, Position pos = Default);
53 bool Enable(ValueSP category, Position pos = Default);
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DLanguageCategory.cpp31 Enable();
125 void LanguageCategory::Enable() { function in class:LanguageCategory
127 m_category_sp->Enable(true, TypeCategoryMap::Default);
H A DTypeCategoryMap.cpp25 Enable(default_cs, First);
47 bool TypeCategoryMap::Enable(KeyType category_name, Position pos) { function in class:TypeCategoryMap
52 return Enable(category, pos);
63 bool TypeCategoryMap::Enable(ValueSP category, Position pos) { function in class:TypeCategoryMap
79 category->Enable(true, pos);
115 Enable(*viter, Last);
H A DDataVisualization.cpp110 void DataVisualization::Categories::Enable(ConstString category, function in class:DataVisualization::Categories
117 void DataVisualization::Categories::Enable(lldb::LanguageType lang_type) { function in class:DataVisualization::Categories
120 lang_category->Enable();
134 void DataVisualization::Categories::Enable( function in class:DataVisualization::Categories
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetPassConfig.h175 void setEnableTailMerge(bool Enable) { setOpt(EnableTailMerge, Enable); } argument
178 void setRequiresCodeGenSCCOrder(bool Enable = true) {
179 setOpt(RequireCodeGenSCCOrder, Enable);
/freebsd-11-stable/usr.sbin/lpr/filters.ru/
H A Dbjc-240.sh.sample60 AutoPowerOn=Enable
/freebsd-11-stable/share/mk/
H A Dbsd.port.mk26 # Enable CTF conversion on request.

Completed in 264 milliseconds

123