/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVTargetTransformInfo.cpp | 364 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Tp); in getShuffleCost() local 374 if (Mask.size() >= 2 && LT.second.isFixedLengthVector()) { in getShuffleCost() 375 MVT EltTp = LT.second.getVectorElementType(); in getShuffleCost() 386 return 2 * LT.first * TLI->getLMULCost(LT.second); in getShuffleCost() 393 return LT.first * getRISCVInstructionCost(RISCV::VNSRL_WI, in getShuffleCost() 394 LT.second, CostKind); in getShuffleCost() 400 if (LT.second.isFixedLengthVector() && LT.first == 1 && in getShuffleCost() 401 (LT.second.getScalarSizeInBits() != 8 || in getShuffleCost() 402 LT.second.getVectorNumElements() <= 256)) { in getShuffleCost() 403 VectorType *IdxTy = getVRGatherIndexType(LT.second, *ST, Tp->getContext()); in getShuffleCost() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ASTImporterLookupTable.cpp | 24 ASTImporterLookupTable < member 25 Builder(ASTImporterLookupTable <) : LT(LT) {} in Builder() 31 LT.add(RTy->getAsRecordDecl()); in VisitTypedefNameDecl() 34 LT.add(it); in VisitTypedefNameDecl() 41 LT.add(D); in VisitNamedDecl() 60 LT.add(RTy->getAsCXXRecordDecl()); in VisitFriendDecl() 62 LT.add(SpecTy->getAsCXXRecordDecl()); in VisitFriendDecl() 66 LT.add(SubstTy->getAsCXXRecordDecl()); in VisitFriendDecl()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Chrono.cpp | 30 struct tm *LT = ::localtime_r(&OurTime, &Storage); in getStructTM() local 31 assert(LT); in getStructTM() 32 (void)LT; in getStructTM() 48 struct tm *LT = ::gmtime_r(&OurTime, &Storage); in operator <<() 49 assert(LT); in operator <<() 50 (void)LT; in operator <<() 62 struct tm LT = getStructTM(TP); in format() 64 strftime(Buffer, sizeof(Buffer), "%Y-%m-%d %H:%M:%S", <); in format() 72 static void format(const T &Fractional, struct tm <, raw_ostream &OS, in format() 105 size_t Len = strftime(Buffer, sizeof(Buffer), Format.c_str(), <); 44 struct tm LT = getStructTM(TP); operator <<() local 58 struct tm LT = getStructTM(Truncated); format() local [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMTargetTransformInfo.cpp | 644 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Src); in getCastInstrCost() local 645 if (const auto *Entry = CostTableLookup(NEONFltDblTbl, ISD, LT.second)) in getCastInstrCost() 646 return AdjustCost(LT.first * Entry->Cost); in getCastInstrCost() 913 std::pair<InstructionCost, MVT> LT = in getVectorInstrCost() local 915 return LT.first * (ValTy->getScalarType()->isIntegerTy() ? 4 : 1); in getVectorInstrCost() 1016 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(ValTy); in getCmpSelInstrCost() local 1017 return LT.first; in getCmpSelInstrCost() 1042 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(ValTy); in getCmpSelInstrCost() local 1049 if (LT.second.isVector() && LT.second.getVectorNumElements() > 2) { in getCmpSelInstrCost() 1050 if (LT.first > 1) in getCmpSelInstrCost() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64TargetTransformInfo.cpp | 566 auto LT = getTypeLegalizationCost(RetTy); in getIntrinsicInstrCost() local 568 if (LT.second == MVT::v2i64) in getIntrinsicInstrCost() 569 return LT.first * 2; in getIntrinsicInstrCost() 570 if (any_of(ValidMinMaxTys, [<](MVT M) { return M == LT.second; })) in getIntrinsicInstrCost() 571 return LT.first; in getIntrinsicInstrCost() 581 auto LT = getTypeLegalizationCost(RetTy); in getIntrinsicInstrCost() local 585 LT.second.getScalarSizeInBits() == RetTy->getScalarSizeInBits() ? 1 : 4; in getIntrinsicInstrCost() 586 if (any_of(ValidSatTys, [<](MVT M) { return M == LT.second; })) in getIntrinsicInstrCost() 587 return LT.first * Instrs; in getIntrinsicInstrCost() 594 auto LT = getTypeLegalizationCost(RetTy); in getIntrinsicInstrCost() local [all …]
|
H A D | AArch64ConditionOptimizer.cpp | 234 case AArch64CC::LT: return AArch64CC::LE; in getAdjustedCmp() 235 case AArch64CC::LE: return AArch64CC::LT; in getAdjustedCmp() 398 if (((HeadCmp == AArch64CC::GT && TrueCmp == AArch64CC::LT) || in runOnMachineFunction() 399 (HeadCmp == AArch64CC::LT && TrueCmp == AArch64CC::GT)) && in runOnMachineFunction() 420 (HeadCmp == AArch64CC::LT && TrueCmp == AArch64CC::LT)) && in runOnMachineFunction() 435 if (HeadCmp == AArch64CC::LT) { in runOnMachineFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/Utils/ |
H A D | ARMBaseInfo.h | 42 LT, // Less than Less than, or unordered enumerator 61 case GE: return LT; in getOppositeCondition() 62 case LT: return GE; in getOppositeCondition() 81 case ARMCC::LT: return ARMCC::GT; in getSwappedCondition() 82 case ARMCC::GT: return ARMCC::LT; in getSwappedCondition() 159 case ARMCC::LT: return "lt"; in ARMCondCodeToString() 182 .Case("lt", ARMCC::LT) in ARMCondCodeFromString()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86TargetTransformInfo.cpp | 268 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Ty); in getArithmeticInstrCost() local 273 if (ISD == ISD::MUL && Args.size() == 2 && LT.second.isVector() && in getArithmeticInstrCost() 274 (LT.second.getScalarType() == MVT::i32 || in getArithmeticInstrCost() 275 LT.second.getScalarType() == MVT::i64)) { in getArithmeticInstrCost() 287 LT.second.getScalarType() == MVT::i32) { in getArithmeticInstrCost() 301 LT.second = in getArithmeticInstrCost() 302 MVT::getVectorVT(MVT::i16, 2 * LT.second.getVectorNumElements()); in getArithmeticInstrCost() 308 if (ST->useSLMArithCosts() && LT.second == MVT::v4i32) { in getArithmeticInstrCost() 310 return LT.first * 3; // pmullw/sext in getArithmeticInstrCost() 312 return LT.first * 3; // pmullw/zext in getArithmeticInstrCost() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUTargetTransformInfo.cpp | 533 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Ty); in getArithmeticInstrCost() local 538 unsigned NElts = LT.second.isVector() ? in getArithmeticInstrCost() 539 LT.second.getVectorNumElements() : 1; in getArithmeticInstrCost() 541 MVT::SimpleValueType SLT = LT.second.getScalarType().SimpleTy; in getArithmeticInstrCost() 548 return get64BitInstrCost(CostKind) * LT.first * NElts; in getArithmeticInstrCost() 554 return getFullRateInstrCost() * LT.first * NElts; in getArithmeticInstrCost() 562 return 2 * getFullRateInstrCost() * LT.first * NElts; in getArithmeticInstrCost() 568 return LT.first * NElts * getFullRateInstrCost(); in getArithmeticInstrCost() 573 return (4 * QuarterRateCost + (2 * 2) * FullRateCost) * LT.first * NElts; in getArithmeticInstrCost() 580 return QuarterRateCost * NElts * LT.first; in getArithmeticInstrCost() [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/sodium/ |
H A D | codecs.c | 113 #define LT(x, y) GT(y, x) macro 119 return (LT(x, 26) & (x + 'A')) | in b64_byte_to_char() 120 (GE(x, 26) & LT(x, 52) & (x + ('a' - 26))) | in b64_byte_to_char() 121 (GE(x, 52) & LT(x, 62) & (x + ('0' - 52))) | (EQ(x, 62) & '+') | in b64_byte_to_char() 140 return (LT(x, 26) & (x + 'A')) | in b64_byte_to_urlsafe_char() 141 (GE(x, 26) & LT(x, 52) & (x + ('a' - 26))) | in b64_byte_to_urlsafe_char() 142 (GE(x, 52) & LT(x, 62) & (x + ('0' - 52))) | (EQ(x, 62) & '-') | in b64_byte_to_urlsafe_char()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCTargetTransformInfo.cpp | 333 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(U->getType()); in getInstructionCost() local 334 return LT.first * BaseT::getInstructionCost(U, Operands, CostKind); in getInstructionCost() 619 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Tp); in getShuffleCost() local 626 return LT.first * CostFactor; in getShuffleCost() 781 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Src); in getMemoryOpCost() local 794 (LT.second == MVT::v16i8 || LT.second == MVT::v8i16 || in getMemoryOpCost() 795 LT.second == MVT::v4i32 || LT.second == MVT::v4f32); in getMemoryOpCost() 797 (LT.second == MVT::v2f64 || LT.second == MVT::v2i64); in getMemoryOpCost() 810 unsigned SrcBytes = LT.second.getStoreSize(); in getMemoryOpCost() 822 *Alignment >= LT.second.getScalarType().getStoreSize()) in getMemoryOpCost() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonTargetTransformInfo.cpp | 151 std::pair<InstructionCost, MVT> LT = in getIntrinsicInstrCost() local 153 return LT.first + 2; in getIntrinsicInstrCost() 266 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(ValTy); in getCmpSelInstrCost() local 268 return LT.first + FloatFactor * getTypeNumElements(ValTy); in getCmpSelInstrCost() 286 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Ty); in getArithmeticInstrCost() local 287 if (LT.second.isFloatingPoint()) in getArithmeticInstrCost() 288 return LT.first + FloatFactor * getTypeNumElements(Ty); in getArithmeticInstrCost()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | BasicTTIImpl.h | 914 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Ty); variable 921 if (TLI->isOperationLegalOrPromote(ISD, LT.second)) { 924 return LT.first * OpCost; 927 if (!TLI->isOperationExpand(ISD, LT.second)) { 930 return LT.first * 2 * OpCost; 939 LT.second) || 941 LT.second)) { 1246 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(ValTy); variable 1248 if (!(ValTy->isVectorTy() && !LT.second.isVector()) && 1249 !TLI->isOperationExpand(ISD, LT.second)) { [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
H A D | LineTable.cpp | 253 LineTable LT; in decode() local 255 LT.Lines.push_back(Row); in decode() 260 return LT; in decode() 284 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const LineTable <) { in lookup() 285 for (const auto &LineEntry : LT) in lookup() 289 operator <<(raw_ostream & OS,const LineTable & LT) operator <<() argument
|
H A D | FunctionInfo.cpp | 76 if (Expected<LineTable> LT = LineTable::decode(InfoData, BaseAddr)) in decode() local 77 FI.OptLineTable = std::move(LT.get()); in decode() 79 return LT.takeError(); in decode()
|
/freebsd/contrib/ncurses/progs/ |
H A D | tset.c | 214 #define LT 0x04 macro 217 #define LE (LT | EQ) 419 mapp->conditional |= LT; in add_mapping() 422 if (mapp->conditional & LT) in add_mapping() 459 mapp->conditional = ~mapp->conditional & (EQ | GT | LT); in add_mapping() 484 if (mapp->conditional & LT) in add_mapping() 519 case LT: in mapped()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DAGISelEmitter.cpp | 88 const TreePatternNode < = LHS->getSrcPattern(); in operator ()() local 91 MVT LHSVT = LT.getNumTypes() != 0 ? LT.getSimpleType(0) : MVT::Other; in operator ()()
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
H A D | DWARFLinkerDeclContext.cpp |
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/ |
H A D | llvm-dwarfdump.cpp | 577 static bool collectLineTableSources(const DWARFDebugLine::LineTable <, in collectLineTableSources() argument 581 std::optional<uint64_t> LastIndex = LT.getLastValidFileIndex(); in collectLineTableSources() 582 for (uint64_t I = LT.hasFileAtIndex(0) ? 0 : 1, in collectLineTableSources() 586 Result &= LT.getFileNameByIndex( in collectLineTableSources() 605 const DWARFDebugLine::LineTable *LT = DICtx.getLineTableForUnit(CU.get()); in collectObjectSources() local 607 if (LT) { in collectObjectSources() 608 Result &= collectLineTableSources(*LT, CompDir, Sources); in collectObjectSources() 641 DWARFDebugLine::LineTable LT = in collectObjectSources() local 643 Result &= collectLineTableSources(LT, /*CompDir=*/"", Sources); in collectObjectSources()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugLine.cpp | 563 struct LineTable *LT, uint64_t TableOffset, in ParsingState() argument 565 : LineTable(LT), LineTableOffset(TableOffset), ErrorHandler(ErrorHandler) { in ParsingState() 613 LineTable *LT = &Pos.first->second; in getOrParseLineTable() local 616 LT->parse(DebugLineData, &Offset, Ctx, U, RecoverableErrorHandler)) in getOrParseLineTable() 618 return LT; in getOrParseLineTable() 620 return LT; in getOrParseLineTable() 1550 LineTable LT; in parseNext() local 1551 if (Error Err = LT.parse(DebugLineData, &Offset, Context, U, in parseNext() 1554 moveToNextTable(OldOffset, LT.Prologue); in parseNext() 1555 return LT; in parseNext() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTX.h | 31 LT, enumerator 157 LT, enumerator
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineLoadStoreAlloca.cpp | 366 if (auto *LT = dyn_cast<LoadInst>(I)) { in replace() local 367 auto *V = getReplacement(LT->getPointerOperand()); in replace() 369 auto *NewI = new LoadInst(LT->getType(), V, "", LT->isVolatile(), in replace() 370 LT->getAlign(), LT->getOrdering(), in replace() 371 LT->getSyncScopeID()); in replace() 372 NewI->takeName(LT); in replace() 373 copyMetadataForLoad(*NewI, *LT); in replace() 375 IC.InsertNewInstWith(NewI, LT->getIterator()); in replace() 376 IC.replaceInstUsesWith(*LT, NewI); in replace() 377 WorkMap[LT] = NewI; in replace()
|
/freebsd/contrib/one-true-awk/ |
H A D | awkgram.y | 54 %token <i> AND BOR APPEND EQ GE GT LE LT NE IN 82 %nonassoc APPEND EQ GE GT LE LT NE MATCHOP IN '|' 233 | pattern LT pattern { $$ = op2($2, $1, $3); } 398 | GETLINE var LT term { $$ = op3(GETLINE, $2, itonp($3), $4); } 399 | GETLINE LT term { $$ = op3(GETLINE, NIL, itonp($2), $3); } 498 case LE: case LT: case EQ: case NE: case GT: case GE:
|
/freebsd/contrib/bearssl/src/codec/ |
H A D | pemdec.c | 453 z = ((p + 2) & -LT(p, 26)) in br_pem_decoder_run() 454 | ((q + 28) & -LT(q, 26)) in br_pem_decoder_run() 455 | ((r + 54) & -LT(r, 10)) in br_pem_decoder_run()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | GlobalValue.h | 537 void setLinkage(LinkageTypes LT) { in setLinkage() argument 538 if (isLocalLinkage(LT)) { in setLinkage() 542 Linkage = LT; in setLinkage()
|