Home
last modified time | relevance | path

Searched refs:Mode (Results 1 – 25 of 441) sorted by relevance

12345678910>>...18

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DKnownFPClass.cpp21 static bool inputDenormalIsIEEE(DenormalMode Mode) { in inputDenormalIsIEEE() argument
22 return Mode.Input == DenormalMode::IEEE; in inputDenormalIsIEEE()
25 static bool inputDenormalIsIEEEOrPosZero(DenormalMode Mode) { in inputDenormalIsIEEEOrPosZero() argument
26 return Mode.Input == DenormalMode::IEEE || in inputDenormalIsIEEEOrPosZero()
27 Mode.Input == DenormalMode::PositiveZero; in inputDenormalIsIEEEOrPosZero()
30 bool KnownFPClass::isKnownNeverLogicalZero(DenormalMode Mode) const { in isKnownNeverLogicalZero()
32 (isKnownNeverSubnormal() || inputDenormalIsIEEE(Mode)); in isKnownNeverLogicalZero()
35 bool KnownFPClass::isKnownNeverLogicalNegZero(DenormalMode Mode) const { in isKnownNeverLogicalNegZero()
37 (isKnownNeverNegSubnormal() || inputDenormalIsIEEEOrPosZero(Mode)); in isKnownNeverLogicalNegZero()
40 bool KnownFPClass::isKnownNeverLogicalPosZero(DenormalMode Mode) const { in isKnownNeverLogicalPosZero()
[all …]
H A DFileOutputBuffer.cpp79 unsigned Mode) in InMemoryBuffer() argument
81 Mode(Mode) {} in InMemoryBuffer()
102 openFileForWrite(FinalPath, FD, CD_CreateAlways, OF_Delete, Mode)) in commit()
113 unsigned Mode; member in __anon71e275e70111::InMemoryBuffer
118 createInMemoryBuffer(StringRef Path, size_t Size, unsigned Mode) { in createInMemoryBuffer() argument
124 return std::make_unique<InMemoryBuffer>(Path, MB, Size, Mode); in createInMemoryBuffer()
128 createOnDiskBuffer(StringRef Path, size_t Size, unsigned Mode) { in createOnDiskBuffer() argument
130 fs::TempFile::create(Path + ".tmp%%%%%%%", Mode); in createOnDiskBuffer()
150 return createInMemoryBuffer(Path, Size, Mode); in createOnDiskBuffer()
164 unsigned Mode = fs::all_read | fs::all_write; in create() local
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DDebugify.h101 enum DebugifyMode Mode = DebugifyMode::SyntheticDebugInfo,
105 enum DebugifyMode Mode = DebugifyMode::SyntheticDebugInfo,
112 enum DebugifyMode Mode = DebugifyMode::NoDebugify; variable
115 enum DebugifyMode Mode = DebugifyMode::SyntheticDebugInfo,
119 DebugInfoBeforePass(DebugInfoBeforePass), Mode(Mode) {} in NameOfWrappedPass()
157 enum DebugifyMode Mode = DebugifyMode::SyntheticDebugInfo,
164 enum DebugifyMode Mode = DebugifyMode::SyntheticDebugInfo,
174 enum DebugifyMode Mode; variable
180 enum DebugifyMode Mode = DebugifyMode::SyntheticDebugInfo,
185 StatsMap(StatsMap), DebugInfoBeforePass(DebugInfoBeforePass), Mode(Mode), in NameOfWrappedPass()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_log_interface.cpp40 const char *Mode; member
64 __xray_log_register_mode(const char *Mode, in __xray_log_register_mode() argument
73 if (!internal_strcmp(Mode, it->Mode)) in __xray_log_register_mode()
78 NewModeImpl->Mode = internal_strdup(Mode); in __xray_log_register_mode()
85 __xray_log_select_mode(const char *Mode) XRAY_NEVER_INSTRUMENT { in __xray_log_select_mode() argument
88 if (!internal_strcmp(Mode, it->Mode)) { in __xray_log_select_mode()
102 return CurrentMode->Mode; in __xray_log_get_current_mode()
139 XRayLogInitStatus __xray_log_init_mode(const char *Mode, const char *Config) in __xray_log_init_mode() argument
149 if (CurrentMode == nullptr || internal_strcmp(CurrentMode->Mode, Mode) != 0) in __xray_log_init_mode()
160 __xray_log_init_mode_bin(const char *Mode, const char *Config, in __xray_log_init_mode_bin() argument
[all …]
/freebsd/sys/contrib/device-tree/src/arm/samsung/
H A Dexynos4412-itop-scp-core.dtsi179 op_mode = <1>; /* Normal Mode */
189 op_mode = <1>; /* Normal Mode */
197 op_mode = <1>; /* Normal Mode */
205 op_mode = <1>; /* Normal Mode */
210 op_mode = <0>; /* Always off Mode */
218 op_mode = <1>; /* Normal Mode */
226 op_mode = <1>; /* Normal Mode */
233 op_mode = <1>; /* Normal Mode */
240 op_mode = <1>; /* Normal Mode */
247 op_mode = <1>; /* Normal Mode */
[all …]
H A Dexynos4412-origen.dts168 op_mode = <1>; /* Normal Mode */
176 op_mode = <1>; /* Normal Mode */
184 op_mode = <1>; /* Normal Mode */
192 op_mode = <1>; /* Normal Mode */
200 op_mode = <1>; /* Normal Mode */
208 op_mode = <1>; /* Normal Mode */
216 op_mode = <1>; /* Normal Mode */
224 op_mode = <1>; /* Normal Mode */
232 op_mode = <1>; /* Normal Mode */
240 op_mode = <1>; /* Normal Mode */
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86WinEHUnwindV2.cpp61 WinX64EHUnwindV2Mode Mode,
93 WinX64EHUnwindV2Mode Mode = in runOnMachineFunction() local
98 if (Mode == WinX64EHUnwindV2Mode::Disabled) in runOnMachineFunction()
176 MF, Mode, in runOnMachineFunction()
181 MF, Mode, in runOnMachineFunction()
200 MF, Mode, in runOnMachineFunction()
206 MF, Mode, in runOnMachineFunction()
217 MF, Mode, "Unexpected mov or add instruction after the epilog"); in runOnMachineFunction()
227 MF, Mode, in runOnMachineFunction()
232 MF, Mode, in runOnMachineFunction()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIModeRegister.cpp33 unsigned Mode = 0; member
37 Status(unsigned NewMask, unsigned NewMode) : Mask(NewMask), Mode(NewMode) { in Status()
38 Mode &= Mask; in Status()
44 return Status((Mask | S.Mask), ((Mode & ~S.Mask) | (S.Mode & S.Mask))); in merge()
50 return Status(Mask & ~newMask, Mode & ~newMask); in mergeUnknown()
56 unsigned NewMask = (Mask & S.Mask) & (Mode ^ ~S.Mode); in intersect()
57 unsigned NewMode = (Mode & NewMask); in intersect()
63 return Status((S.Mask & (Mode ^ S.Mode)) | (~Mask & S.Mask), S.Mode); in delta()
67 return (Mask == S.Mask) && (Mode == S.Mode); in operator ==()
73 return ((Mask & S.Mask) == S.Mask) && ((Mode & S.Mask) == S.Mode); in isCompatible()
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DInfoByHwMode.h36 std::string getModeName(unsigned Mode);
114 InfoT &get(unsigned Mode) { in get()
115 auto F = Map.find(Mode); in get()
121 auto P = Map.try_emplace(Mode, Map.begin()->second); in get()
124 const InfoT &get(unsigned Mode) const { in get()
125 auto F = Map.find(Mode); in get()
143 void makeSimple(unsigned Mode) { in makeSimple()
144 assert(hasMode(Mode) || hasDefault()); in makeSimple()
145 InfoT I = get(Mode); in makeSimple()
164 MVT getType(unsigned Mode) const { return get(Mode); } in getType()
[all …]
H A DVarLenCodeEmitterGen.cpp86 const CodeGenTarget &Target, AltEncodingTy Mode);
89 std::string getInstructionCaseForEncoding(const Record *R, AltEncodingTy Mode,
243 for (const auto [Mode, EncodingDef] : EBM) { in run()
244 Modes.try_emplace(Mode, "_" + HWM.getMode(Mode).Name.str()); in run()
247 VarLenInsts[R].try_emplace(Mode, VarLenInst(DI, RV)); in run()
269 for (const auto &Mode : Modes) in run() local
270 emitInstructionBaseValues(OS, NumberedInstructions, Target, Mode.first); in run()
276 for (const auto &Mode : Modes) { in run() local
278 OS << " auto getInstBits" << Mode.second in run()
280 << " unsigned NumBits = Index" << Mode.second << "[Opcode][0];\n" in run()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegAllocPriorityAdvisor.h83 RegAllocPriorityAdvisorProvider(AdvisorMode Mode) : Mode(Mode) {} in RegAllocPriorityAdvisorProvider() argument
94 AdvisorMode getAdvisorMode() const { return Mode; } in getAdvisorMode()
97 const AdvisorMode Mode;
122 void initializeMLProvider(RegAllocPriorityAdvisorProvider::AdvisorMode Mode,
130 RegAllocPriorityAdvisorAnalysisLegacy(AdvisorMode Mode) in RegAllocPriorityAdvisorAnalysisLegacy() argument
131 : ImmutablePass(ID), Mode(Mode) {}; in RegAllocPriorityAdvisorAnalysisLegacy()
136 AdvisorMode getAdvisorMode() const { return Mode; } in getAdvisorMode()
151 const AdvisorMode Mode; variable
H A DRegAllocEvictionAdvisor.h161 RegAllocEvictionAdvisorProvider(AdvisorMode Mode, LLVMContext &Ctx) in RegAllocEvictionAdvisorProvider() argument
162 : Ctx(Ctx), Mode(Mode) {} in RegAllocEvictionAdvisorProvider()
173 AdvisorMode getAdvisorMode() const { return Mode; } in getAdvisorMode()
179 const AdvisorMode Mode;
201 RegAllocEvictionAdvisorAnalysisLegacy(AdvisorMode Mode) in RegAllocEvictionAdvisorAnalysisLegacy() argument
202 : ImmutablePass(ID), Mode(Mode) {}; in RegAllocEvictionAdvisorAnalysisLegacy()
208 AdvisorMode getAdvisorMode() const { return Mode; } in getAdvisorMode()
222 const AdvisorMode Mode; variable
257 initializeProvider(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode Mode,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DDebugify.cpp281 static bool applyDebugify(Function &F, enum DebugifyMode Mode, in applyDebugify() argument
286 if (Mode == DebugifyMode::SyntheticDebugInfo) in applyDebugify()
295 static bool applyDebugify(Module &M, enum DebugifyMode Mode, in applyDebugify() argument
298 if (Mode == DebugifyMode::SyntheticDebugInfo) in applyDebugify()
882 applyDebugify(M, Mode, DebugInfoBeforePass, NameOfWrappedPass); in runOnModule()
886 DebugifyModulePass(enum DebugifyMode Mode = DebugifyMode::SyntheticDebugInfo, in DebugifyModulePass()
890 DebugInfoBeforePass(DebugInfoBeforePass), Mode(Mode) {} in DebugifyModulePass()
901 enum DebugifyMode Mode; member
909 applyDebugify(F, Mode, DebugInfoBeforePass, NameOfWrappedPass); in runOnFunction()
914 enum DebugifyMode Mode = DebugifyMode::SyntheticDebugInfo, in DebugifyFunctionPass()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSIndexPath.cpp87 m_impl.m_mode = Mode::Inlined; in Update()
120 m_impl.m_mode = Mode::Outsourced; in Update()
127 bool MightHaveChildren() override { return m_impl.m_mode != Mode::Invalid; } in MightHaveChildren()
147 enum class Mode { Inlined, Outsourced, Invalid }; enum in NSIndexPathSyntheticFrontEnd
152 case Mode::Inlined: in GetNumIndexes()
154 case Mode::Outsourced: in GetNumIndexes()
168 case Mode::Inlined: in GetIndexAtIndex()
170 case Mode::Outsourced: in GetIndexAtIndex()
293 case Mode::Inlined: in Clear()
296 case Mode::Outsourced: in Clear()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DRemarkSerializer.cpp21 remarks::createRemarkSerializer(Format RemarksFormat, SerializerMode Mode, in createRemarkSerializer() argument
29 return std::make_unique<YAMLRemarkSerializer>(OS, Mode); in createRemarkSerializer()
31 return std::make_unique<BitstreamRemarkSerializer>(OS, Mode); in createRemarkSerializer()
37 remarks::createRemarkSerializer(Format RemarksFormat, SerializerMode Mode, in createRemarkSerializer() argument
45 return std::make_unique<YAMLRemarkSerializer>(OS, Mode, std::move(StrTab)); in createRemarkSerializer()
47 return std::make_unique<BitstreamRemarkSerializer>(OS, Mode, in createRemarkSerializer()
/freebsd/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DRemarkSerializer.h49 SerializerMode Mode; member
55 SerializerMode Mode) in RemarkSerializer()
56 : SerializerFormat(SerializerFormat), OS(OS), Mode(Mode) {} in RemarkSerializer()
82 createRemarkSerializer(Format RemarksFormat, SerializerMode Mode,
87 createRemarkSerializer(Format RemarksFormat, SerializerMode Mode,
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DFloatingPointMode.h184 inline raw_ostream& operator<<(raw_ostream &OS, DenormalMode Mode) {
185 Mode.print(OS);
203 inline StringRef denormalModeKindName(DenormalMode::DenormalModeKind Mode) { in denormalModeKindName() argument
204 switch (Mode) { in denormalModeKindName()
223 DenormalMode Mode; in parseDenormalFPAttribute() local
224 Mode.Output = parseDenormalFPAttributeComponent(OutputStr); in parseDenormalFPAttribute()
228 Mode.Input = InputStr.empty() ? Mode.Output : in parseDenormalFPAttribute()
231 return Mode; in parseDenormalFPAttribute()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp195 void DisplayFunction(const Decl *D, AnalysisMode Mode, in DisplayFunction() argument
205 if (Mode == AM_Syntax) in DisplayFunction()
207 else if (Mode == AM_Path) { in DisplayFunction()
219 assert(Mode == (AM_Syntax | AM_Path) && "Unexpected mode!"); in DisplayFunction()
249 void HandleCode(Decl *D, AnalysisMode Mode,
259 AnalysisMode Mode = getModeForDecl(D, RecVisitorMode); in VisitDecl() local
260 if (Mode & AM_Syntax) { in VisitDecl()
347 AnalysisMode getModeForDecl(Decl *D, AnalysisMode Mode);
660 AnalysisConsumer::getModeForDecl(Decl *D, AnalysisMode Mode) { in getModeForDecl() argument
671 return Mode; in getModeForDecl()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DModuleInliner.h31 InliningAdvisorMode Mode = InliningAdvisorMode::Default,
33 : Params(Params), Mode(Mode), LTOPhase(LTOPhase){}; in Params()
43 const InliningAdvisorMode Mode; variable
/freebsd/sys/dev/smartpqi/
H A Dsmartpqi_ioctl.h54 BYTE Mode:2; /* b00 */ member
59 BYTE Mode:2; /* b01 */ member
65 BYTE Mode:2; /* b10 */ member
73 DWORD Mode:2; member
80 DWORD Mode:2; member
/freebsd/contrib/llvm-project/compiler-rt/include/xray/
H A Dxray_log_interface.h231 XRayLogRegisterStatus __xray_log_register_mode(const char *Mode,
244 XRayLogRegisterStatus __xray_log_select_mode(const char *Mode);
290 XRayLogInitStatus __xray_log_init_mode(const char *Mode, const char *Config);
296 XRayLogInitStatus __xray_log_init_mode_bin(const char *Mode, const char *Config,
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallDescription.cpp37 ento::CallDescription::CallDescription(Mode MatchAs, in CallDescription()
119 if (MatchAs == Mode::SimpleFunc && isMethod) in matchesImpl()
122 if (MatchAs == Mode::CXXMethod && !isMethod) in matchesImpl()
125 if (MatchAs == Mode::CLibraryMaybeHardened) { in matchesImpl()
143 if (MatchAs == Mode::CLibrary || MatchAs == Mode::CLibraryMaybeHardened) in matchesImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DWithColor.h63 ColorMode Mode = ColorMode::Auto);
73 bool Bold = false, bool BG = false, ColorMode Mode = ColorMode::Auto)
74 : OS(OS), Mode(Mode) { in OS()
144 ColorMode Mode; variable
/freebsd/sys/contrib/dev/acpica/components/hardware/
H A Dhwacpi.c175 UINT32 Mode) in AcpiHwSetMode() argument
217 switch (Mode) in AcpiHwSetMode()
258 if (AcpiHwGetMode () == Mode) in AcpiHwSetMode()
261 "Mode %X successfully enabled\n", Mode)); in AcpiHwSetMode()
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/
H A DDirectoryScanner.h29 DirectoryScanner(FileManager &FM, ScanMode Mode = ScanMode::ScanFrameworks)
30 : FM(FM), Mode(Mode) {} in FM()
74 ScanMode Mode; variable

12345678910>>...18