/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/ |
H A D | PPCMCTargetDesc.h | 232 #define PPC_REGS_LO_HI(LO, HI) \ 234 LO##0, LO##1, LO##2, LO##3, LO##4, LO##5, LO##6, LO##7, LO## 163 PPC_REGS_LO_HI(LO,HI) global() argument [all...] |
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | OpenCLOptions.h | 59 static inline bool isOpenCLVersionContainedInMask(const LangOptions &LO, in isOpenCLVersionContainedInMask() argument 61 auto CLVer = LO.getOpenCLCompatibleVersion(); in isOpenCLVersionContainedInMask() 116 bool isAvailableIn(const LangOptions &LO) const { in isAvailableIn() 118 return LO.getOpenCLCompatibleVersion() >= Avail; in isAvailableIn() 122 bool isCoreIn(const LangOptions &LO) const { in isCoreIn() 123 return isAvailableIn(LO) && isOpenCLVersionContainedInMask(LO, Core); in isCoreIn() 127 bool isOptionalCoreIn(const LangOptions &LO) const { in isOptionalCoreIn() 128 return isAvailableIn(LO) && isOpenCLVersionContainedInMask(LO, Opt); in isOptionalCoreIn() 137 bool isAvailableOption(llvm::StringRef Ext, const LangOptions &LO) const; 143 bool isSupported(llvm::StringRef Ext, const LangOptions &LO) const; [all …]
|
H A D | LangOptions.h | 804 explicit FPOptions(const LangOptions &LO) { in FPOptions() argument 809 auto LangOptContractMode = LO.getDefaultFPContractMode(); in FPOptions() 813 setRoundingMath(LO.RoundingMath); in FPOptions() 815 setSpecifiedExceptionMode(LO.getFPExceptionMode()); in FPOptions() 816 setAllowFPReassociate(LO.AllowFPReassoc); in FPOptions() 817 setNoHonorNaNs(LO.NoHonorNaNs); in FPOptions() 818 setNoHonorInfs(LO.NoHonorInfs); in FPOptions() 819 setNoSignedZero(LO.NoSignedZero); in FPOptions() 820 setAllowReciprocal(LO.AllowRecip); in FPOptions() 821 setAllowApproxFunc(LO.ApproxFunc); in FPOptions() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | PrettyPrinter.h | 59 PrintingPolicy(const LangOptions &LO) in PrintingPolicy() 61 SuppressTagKeyword(LO.CPlusPlus), IncludeTagDefinition(false), in PrintingPolicy() 68 SuppressDefaultTemplateArgs(true), Bool(LO.Bool), in PrintingPolicy() 69 Nullptr(LO.CPlusPlus11 || LO.C23), NullptrTypeInNamespace(LO.CPlusPlus), in PrintingPolicy() 70 Restrict(LO.C99), Alignof(LO.CPlusPlus11), UnderscoreAlignof(LO.C11), in PrintingPolicy() 71 UseVoidForZeroParams(!LO.CPlusPlus), in PrintingPolicy() 72 SplitTemplateClosers(!LO.CPlusPlus11), TerseOutput(false), in PrintingPolicy() 73 PolishForDeclaration(false), Half(LO.Half), in PrintingPolicy() 74 MSWChar(LO.MicrosoftExt && !LO.WChar), IncludeNewlines(true), in PrintingPolicy() 80 UseEnumerators(true), UseHLSLTypes(LO.HLSL) {} in PrintingPolicy()
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | OpenCLOptions.cpp | 33 const LangOptions &LO) const { in isAvailableOption() 38 if (OptInfo.isCoreIn(LO) || OptInfo.isOptionalCoreIn(LO)) in isAvailableOption() 39 return isSupported(Ext, LO); in isAvailableOption() 55 const LangOptions &LO) const { in isSupported() 58 I->getValue().isAvailableIn(LO); in isSupported() 62 const LangOptions &LO) const { in isSupportedCore() 65 I->getValue().isCoreIn(LO); in isSupportedCore() 69 const LangOptions &LO) const { in isSupportedOptionalCore() 72 I->getValue().isOptionalCoreIn(LO); in isSupportedOptionalCore() 76 const LangOptions &LO) const { in isSupportedCoreOrOptionalCore() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | SarifDiagnostics.cpp | 34 const LangOptions &LO; member in __anon096d15bc0111::SarifDiagnostics 38 SarifDiagnostics(const std::string &Output, const LangOptions &LO, in SarifDiagnostics() argument 40 : OutputFile(Output), LO(LO), SarifWriter(SM) {} in SarifDiagnostics() 114 const LangOptions &LO) { in convertTokenRangeToCharRange() argument 125 Lexer::getLocForEndOfToken(R.getEnd(), /* Offset = */ 0, SM, LO); in convertTokenRangeToCharRange() 130 const LangOptions &LO) { in createThreadFlows() argument 135 Piece->getLocation().asRange(), Piece->getLocation().getManager(), LO); in createThreadFlows() 169 const LangOptions &LO) { in createResult() argument 174 Diag->getLocation().asRange(), Diag->getLocation().getManager(), LO); in createResult() 176 SmallVector<ThreadFlow, 8> Flows = createThreadFlows(Diag, LO); in createResult() [all …]
|
H A D | TextDiagnostics.cpp | 40 const LangOptions &LO; member in __anonba5c3fec0111::TextDiagnostics 45 DiagnosticsEngine &DiagEng, const LangOptions &LO, in TextDiagnostics() argument 47 : DiagOpts(std::move(DiagOpts)), DiagEng(DiagEng), LO(LO), in TextDiagnostics() 127 Rewriter Rewrite(SM, LO); in FlushDiagnosticsImpl()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/Utils/ |
H A D | ARMBaseInfo.h | 34 LO, // Carry clear Less than enumerator 53 case HS: return LO; in getOppositeCondition() 54 case LO: return HS; in getOppositeCondition() 77 case ARMCC::LO: return ARMCC::HI; in getSwappedCondition() 78 case ARMCC::HI: return ARMCC::LO; in getSwappedCondition() 151 case ARMCC::LO: return "lo"; in ARMCondCodeToString() 173 .Case("lo", ARMCC::LO) in ARMCondCodeFromString() 174 .Case("cc", ARMCC::LO) in ARMCondCodeFromString()
|
/freebsd/contrib/arm-optimized-routines/math/test/ |
H A D | runulp.sh | 27 IFS=',' read -ra LO <<< "$1"; shift 85 while read F LO HI N 87 [[ -z $F ]] || t $F $LO $HI $N 95 while read F LO HI N 97 [[ -z $F ]] || t $F $LO $HI $N -z
|
/freebsd/crypto/openssl/crypto/aes/asm/ |
H A D | aes-x86_64.pl | 78 sub LO() { my $r=shift; $r =~ s/%r([a-z]+)/%e\1/; subroutine 1121 rol \$8,`&LO("$tp10")` # ROTATE(tp1^tp8,8) 1123 rol \$8,`&LO("$tp18")` # ROTATE(tp1^tp8,8) 1125 rol \$8,`&LO("$acc0")` # ROTATE(tp1^tp8,8) 1128 rol \$8,`&LO("$acc8")` # ROTATE(tp1^tp8,8) 1129 xor `&LO("$tp80")`,`&LO("$tp10")` 1131 xor `&LO("$tp88")`,`&LO("$tp18")` 1133 xor `&LO("$tp80")`,`&LO("$acc0")` 1134 xor `&LO("$tp88")`,`&LO("$acc8")` 1137 rol \$24,`&LO("$tp20")` # ROTATE(tp2^tp1^tp8,24) [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/ |
H A D | ChainedDiagnosticConsumer.h | 39 void BeginSourceFile(const LangOptions &LO, in BeginSourceFile() argument 41 Primary->BeginSourceFile(LO, PP); in BeginSourceFile() 42 Secondary->BeginSourceFile(LO, PP); in BeginSourceFile()
|
H A D | LogDiagnosticPrinter.h | 72 void BeginSourceFile(const LangOptions &LO, const Preprocessor *PP) override { in BeginSourceFile() argument 73 LangOpts = &LO; in BeginSourceFile()
|
/freebsd/contrib/llvm-project/clang/include/clang/Rewrite/Core/ |
H A D | Rewriter.h | 69 explicit Rewriter(SourceManager &SM, const LangOptions &LO) in Rewriter() argument 70 : SourceMgr(&SM), LangOpts(&LO) {} in Rewriter() 72 void setSourceMgr(SourceManager &SM, const LangOptions &LO) { in setSourceMgr() argument 74 LangOpts = &LO; in setSourceMgr()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | StackMapPrinter.h | 72 for (const auto &LO : R.liveouts()) in prettyPrintStackMap() local 73 OS << "R#" << LO.getDwarfRegNum() << " (" in prettyPrintStackMap() 74 << LO.getSizeInBytes() << "-bytes) "; in prettyPrintStackMap()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | PrintfFormatString.cpp | 75 const LangOptions &LO, in ParsePrintfSpecifier() argument 250 if (ParseVectorModifier(H, FS, I, E, LO)) in ParsePrintfSpecifier() 254 if (ParseLengthModifier(FS, I, E, LO) && I == E) { in ParsePrintfSpecifier() 321 if (!LO.OpenCL && !isFreeBSDKPrintf) in ParsePrintfSpecifier() 351 else if (LO.FixedPoint) in ParsePrintfSpecifier() 381 if (LO.FixedPoint) in ParsePrintfSpecifier() 385 if (LO.FixedPoint) in ParsePrintfSpecifier() 389 if (LO.FixedPoint) in ParsePrintfSpecifier() 429 const LangOptions &LO, in ParsePrintfString() argument 438 LO, Target, true, in ParsePrintfString() [all …]
|
H A D | FormatString.cpp | 185 const LangOptions &LO) { in ParseVectorModifier() argument 186 if (!LO.OpenCL) in ParseVectorModifier() 214 const LangOptions &LO, in ParseLengthModifier() argument 226 } else if (I != E && *I == 'l' && LO.OpenCL) { in ParseLengthModifier() 248 if (IsScanf && !LO.C99 && !LO.CPlusPlus11) { in ParseLengthModifier() 840 const LangOptions &LO) const { in hasValidLengthModifier() 848 if (LO.OpenCL && CS.isDoubleArg()) in hasValidLengthModifier() 895 return LO.OpenCL && !VectorNumElts.isInvalid(); in hasValidLengthModifier() 901 if (LO.OpenCL && VectorNumElts.isInvalid()) in hasValidLengthModifier()
|
H A D | FormatStringParsing.h | 59 const LangOptions &LO); 64 const LangOptions &LO, bool IsScanf = false);
|
/freebsd/contrib/arm-optimized-routines/math/ |
H A D | log.c | 44 # define LO asuint64 (1.0 - 0x1p-5) in log() macro 47 # define LO asuint64 (1.0 - 0x1p-4) in log() macro 50 if (unlikely (ix - LO < HI - LO)) in log()
|
H A D | log2.c | 44 # define LO asuint64 (1.0 - 0x1.5b51p-5) in log2() macro 47 if (unlikely (ix - LO < HI - LO)) in log2()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | StackMaps.cpp | 359 for (const auto &LO : LiveOuts) { in createLiveOutReg() 362 OS << printReg(LO.Reg, TRI); in createLiveOutReg() 364 OS << LO.Reg; 365 OS << "\t[encoding: .short " << LO.DwarfRegNum << ", .byte 0, .byte " 366 << LO.Size << "]\n"; 416 llvm::erase_if(LiveOuts, [](const LiveOutReg &LO) { return LO.Reg == 0; }); in parseStatepointOpers() 711 for (const auto &LO : LiveOuts) { in emitCallsiteEntries() 712 OS.emitInt16(LO.DwarfRegNum); in emitCallsiteEntries() 714 OS.emitIntValue(LO in emitCallsiteEntries() 344 for (const auto &LO : LiveOuts) { print() local 401 __anon16f65e5b0202(const LiveOutReg &LO) parseRegisterLiveOutMask() argument 717 for (const auto &LO : LiveOuts) { emitCallsiteEntries() local [all...] |
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/ |
H A D | poly1305_donna64.h | 12 #define LO(in) (unsigned long long) (in) macro 114 h0 = LO(d0) & 0xfffffffffff; in poly1305_blocks() 117 h1 = LO(d1) & 0xfffffffffff; in poly1305_blocks() 120 h2 = LO(d2) & 0x3ffffffffff; in poly1305_blocks()
|
/freebsd/contrib/arm-optimized-routines/math/aarch64/experimental/ |
H A D | log10_2u.c | 22 #define LO asuint64 (1.0 - 0x1p-4) macro 52 if (unlikely (ix - LO < HI - LO)) in log10()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | SARIFDiagnosticPrinter.cpp | 32 void SARIFDiagnosticPrinter::BeginSourceFile(const LangOptions &LO, in BeginSourceFile() argument 37 SARIFDiag = std::make_unique<SARIFDiagnostic>(OS, LO, &*DiagOpts, &*Writer); in BeginSourceFile()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | PointerIterationChecker.cpp | 99 const LangOptions &LO = mgr.getLangOpts(); in shouldRegisterPointerIterationChecker() local 100 return LO.CPlusPlus; in shouldRegisterPointerIterationChecker()
|
/freebsd/sys/contrib/openzfs/module/icp/asm-arm/sha2/ |
H A D | sha512-armv7.S | 39 # define LO 0 macro 44 # define LO 4 macro 121 ldr r7,[r0,#32+LO] 123 ldr r9, [r0,#48+LO] 125 ldr r11, [r0,#56+LO] 132 ldr r5,[r0,#0+LO] 134 ldr r3,[r0,#8+LO] 136 ldr r9, [r0,#16+LO] 138 ldr r11, [r0,#24+LO] 146 ldr r3,[r0,#40+LO] [all …]
|