Home
last modified time | relevance | path

Searched refs:FlagValue (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp477 auto FlagValue = [](unsigned V) { return V ? '1' : '0'; }; in fflagsToString() local
478 char FlagRep[] = {FlagValue(F.ReadNone), in fflagsToString()
479 FlagValue(F.ReadOnly), in fflagsToString()
480 FlagValue(F.NoRecurse), in fflagsToString()
481 FlagValue(F.ReturnDoesNotAlias), in fflagsToString()
482 FlagValue(F.NoInline), in fflagsToString()
483 FlagValue(F.AlwaysInline), in fflagsToString()
484 FlagValue(F.NoUnwind), in fflagsToString()
485 FlagValue(F.MayThrow), in fflagsToString()
486 FlagValue(F.HasUnknownCall), in fflagsToString()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFPreserveDIType.cpp76 uint64_t FlagValue = Flag->getValue().getZExtValue(); in BPFPreserveDITypeImpl() local
78 if (FlagValue >= BPFCoreSharedInfo::MAX_BTF_TYPE_ID_FLAG) in BPFPreserveDITypeImpl()
84 if (FlagValue == BPFCoreSharedInfo::BTF_TYPE_ID_LOCAL_RELOC) { in BPFPreserveDITypeImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILShaderFlags.h61 uint64_t FlagValue = getModuleFlags(); in uint64_t() local
63 FlagValue |= FlagName ? getMask(DxilModuleBit) : 0ull; in uint64_t()
65 return FlagValue; in uint64_t()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp206 static Expected<SectionRename> parseRenameSectionValue(StringRef FlagValue) { in parseRenameSectionValue() argument
207 if (!FlagValue.contains('=')) in parseRenameSectionValue()
212 auto Old2New = FlagValue.split('='); in parseRenameSectionValue()
233 parseSetSectionAttribute(StringRef Option, StringRef FlagValue) { in parseSetSectionAttribute() argument
234 if (!FlagValue.contains('=')) in parseSetSectionAttribute()
237 auto Split = StringRef(FlagValue).split('='); in parseSetSectionAttribute()
251 parseSetSectionFlagValue(StringRef FlagValue) { in parseSetSectionFlagValue() argument
252 if (!StringRef(FlagValue).contains('=')) in parseSetSectionFlagValue()
257 auto Section2Flags = StringRef(FlagValue).split('='); in parseSetSectionFlagValue()
452 static Expected<NewSymbolInfo> parseNewSymbolInfo(StringRef FlagValue) { in parseNewSymbolInfo() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DDXContainer.cpp78 uint64_t FlagValue = 0; in parseShaderFeatureFlags() local
79 if (Error Err = readInteger(Part, Part.begin(), FlagValue)) in parseShaderFeatureFlags()
81 ShaderFeatureFlags = FlagValue; in parseShaderFeatureFlags()
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp120 static const char *FlagValue(const char *Param, const char *Name) { in FlagValue() function
154 if (FlagValue(Param + 1, FlagDescriptions[F].Name)) in ParseOneFlag()
160 const char *Str = FlagValue(Param, Name); in ParseOneFlag()
281 if (FlagValue(S.c_str(), X1) || FlagValue(S.c_str(), X2)) in CloneArgsWithoutX()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/
H A DMIParser.h152 bool getVRegFlagValue(StringRef FlagName, uint8_t &FlagValue) const;
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnostic.h1244 mutable std::string FlagValue; variable
1330 void addFlagValue(StringRef V) const { FlagValue = std::string(V); } in addFlagValue()
1545 std::string FlagValue; variable
1647 StringRef getFlagValue() const { return FlagValue; } in getFlagValue()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DDiagnostic.cpp786 FlagValue = D.FlagValue; in DiagnosticBuilder()
799 FlagValue(DiagBuilder.FlagValue), DiagStorage(*DiagBuilder.getStorage()) { in Diagnostic()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DMultilib.cpp97 StringRef FlagValue; in DiagnoseUnclaimedMultilibCustomFlags() member
122 << (custom_flag::Prefix + BestCandidate->FlagValue).str(); in DiagnoseUnclaimedMultilibCustomFlags()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp718 uint8_t FlagValue; in parseRegisterInfo() local
719 if (Target->getVRegFlagValue(FlagStringValue.Value, FlagValue)) in parseRegisterInfo()
723 Info.Flags |= FlagValue; in parseRegisterInfo()
H A DMIParser.cpp129 uint8_t &FlagValue) const { in getVRegFlagValue()
134 FlagValue = *FV; in getVRegFlagValue()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1245 uint8_t FlagValue = P.second; in NormalizedOther() local
1246 if ((*Original & FlagValue) != FlagValue) in NormalizedOther()
1248 *Original &= ~FlagValue; in NormalizedOther()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp569 for (SymbolFlag FlagValue : SymInfo.Flags) in addSymbol() local
570 switch (FlagValue) { in addSymbol()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/TargetBuiltins/
H A DARM.cpp8009 Value *FlagValue = ConstantInt::get(Int64Ty, Flag->getSExtValue()); in EmitBPFBuiltinExpr() local
8019 CallInst *Fn = Builder.CreateCall(FnDecl, {SeqNumVal, FlagValue}); in EmitBPFBuiltinExpr()
8049 Value *FlagValue = ConstantInt::get(Int64Ty, Flag->getSExtValue()); in EmitBPFBuiltinExpr() local
8055 Builder.CreateCall(IntrinsicFn, {SeqNumVal, EnumStrVal, FlagValue}); in EmitBPFBuiltinExpr()