Home
last modified time | relevance | path

Searched refs:SetFlags (Results 1 – 17 of 17) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_mutex.cpp92 s->SetFlags(flagz & MutexCreationFlagMask); in MutexCreate()
124 s->SetFlags(MutexFlagBroken); in MutexDestroy()
187 s->SetFlags(MutexFlagBroken); in MutexPostLock()
233 s->SetFlags(MutexFlagBroken); in MutexUnlock()
298 s->SetFlags(MutexFlagBroken); in MutexPostReadLock()
340 s->SetFlags(MutexFlagBroken); in MutexReadUnlock()
399 s->SetFlags(MutexFlagBroken); in MutexReadOrWriteUnlock()
H A Dtsan_sync.h74 void SetFlags(u32 f) { in SetFlags() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVETailPredUtils.h146 bool SetFlags = false) {
157 if (SetFlags) {
H A DARMLowOverheadLoops.cpp1453 bool SetFlags = in RevertLoopDec() local
1456 llvm::RevertLoopDec(MI, TII, SetFlags); in RevertLoopDec()
1457 return SetFlags; in RevertLoopDec()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DScopedPrinter.h164 SmallVector<FlagEntry, 10> SetFlags; variable
180 SetFlags.emplace_back(Flag.Name, Flag.Value);
184 llvm::sort(SetFlags, &flagName);
185 printFlagsImpl(Label, hex(Value), SetFlags);
189 SmallVector<HexNumber, 10> SetFlags; in printFlags() local
194 SetFlags.emplace_back(Flag); in printFlags()
198 printFlagsImpl(Label, hex(Value), SetFlags); in printFlags()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DArchSpec.h528 void SetFlags(uint32_t flags) { m_flags = flags; } in SetFlags() function
530 void SetFlags(const std::string &elf_abi);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp204 const Value *RHS, bool SetFlags = false,
207 unsigned RHSReg, bool SetFlags = false,
210 uint64_t Imm, bool SetFlags = false,
236 bool SetFlags = false, bool WantResult = true,
1238 SetFlags, WantResult); in emitAddSub()
1317 unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit]; in emitAddSub_rr()
1359 unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit]; in emitAddSub_ri()
1361 if (SetFlags) in emitAddSub_ri()
1403 unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit]; in emitAddSub_rs()
1444 unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit]; in emitAddSub_rx()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp73 FlagVector SetFlags; in getFlagNames() local
78 SetFlags.push_back(Flag); in getFlagNames()
82 llvm::sort(SetFlags, &compEnumNames<TFlag>); in getFlagNames()
86 for (const auto &Flag : SetFlags) { in getFlagNames()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h366 void SetFlags(uint32_t flags);
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbol.h176 void SetFlags(uint32_t flags) { m_flags = flags; } in SetFlags() function
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1350 arch_spec.SetFlags(ArchSpec::eARM_abi_soft_float); in ParseARMAttributes()
1357 arch_spec.SetFlags(ArchSpec::eARM_abi_hard_float); in ParseARMAttributes()
1406 arch_spec.SetFlags(ArchSpec::eMIPSAse_micromips); in GetSectionHeaderInfo()
1409 arch_spec.SetFlags(ArchSpec::eMIPSAse_mips16); in GetSectionHeaderInfo()
1412 arch_spec.SetFlags(ArchSpec::eMIPSAse_mdmx); in GetSectionHeaderInfo()
1422 arch_spec.SetFlags(ArchSpec::eARM_abi_soft_float); in GetSectionHeaderInfo()
1424 arch_spec.SetFlags(ArchSpec::eARM_abi_hard_float); in GetSectionHeaderInfo()
1446 arch_spec.SetFlags(flags); in GetSectionHeaderInfo()
1555 arch_spec.SetFlags(arch_flags); in GetSectionHeaderInfo()
/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DArchSpec.cpp583 void ArchSpec::SetFlags(const std::string &elf_abi) { in SetFlags() function in ArchSpec
594 SetFlags(flag); in SetFlags()
847 SetFlags(other.GetFlags()); in MergeFrom()
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp710 void SBCommand::SetFlags(uint32_t flags) { in SetFlags() function in SBCommand
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelMatchTable.h2258 std::vector<StringRef> SetFlags; variable
2275 void addSetMIFlags(StringRef Flag) { SetFlags.push_back(Flag); } in addSetMIFlags()
H A DGlobalISelMatchTable.cpp2120 if (!SetFlags.empty()) { in emitActionOpcodes()
2123 << MatchTable::NamedValue(4, join(SetFlags, " | ")) in emitActionOpcodes()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp2310 SmallVector<EnumEntry<TFlag>, 10> SetFlags; in printFlags() local
2313 SetFlags.push_back(Flag); in printFlags()
2315 for (const EnumEntry<TFlag> &Flag : SetFlags) in printFlags()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp2202 m_process_arch.SetFlags(elf_abi); in GetCurrentProcessInfo()