Home
last modified time | relevance | path

Searched refs:LT (Results 1 – 25 of 150) sorted by relevance

123456

/NextBSD/contrib/llvm/lib/Target/X86/
HDX86TargetTransformInfo.cpp92 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty); in getArithmeticInstrCost() local
130 int Idx = CostTableLookup(AVX2UniformConstCostTable, ISD, LT.second); in getArithmeticInstrCost()
132 return LT.first * AVX2UniformConstCostTable[Idx].Cost; in getArithmeticInstrCost()
180 int Idx = CostTableLookup(AVX512CostTable, ISD, LT.second); in getArithmeticInstrCost()
182 return LT.first * AVX512CostTable[Idx].Cost; in getArithmeticInstrCost()
186 if (ISD == ISD::SHL && LT.second == MVT::v16i16 && in getArithmeticInstrCost()
191 return LT.first; in getArithmeticInstrCost()
193 int Idx = CostTableLookup(AVX2CostTable, ISD, LT.second); in getArithmeticInstrCost()
195 return LT.first * AVX2CostTable[Idx].Cost; in getArithmeticInstrCost()
227 if (ISD == ISD::SDIV && LT.second == MVT::v4i32 && ST->hasSSE41()) in getArithmeticInstrCost()
[all …]
/NextBSD/contrib/llvm/include/llvm/CodeGen/
HDBasicTTIImpl.h296 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty); variable
303 if (TLI->isOperationLegalOrPromote(ISD, LT.second)) {
308 if (LT.first > 1)
309 return LT.first * 2 * OpCost;
310 return LT.first * 1 * OpCost;
313 if (!TLI->isOperationExpand(ISD, LT.second)) {
316 return LT.first * 2 * OpCost;
451 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, ValTy); in getCmpSelInstrCost() local
453 if (!(ValTy->isVectorTy() && !LT.second.isVector()) && in getCmpSelInstrCost()
454 !TLI->isOperationExpand(ISD, LT.second)) { in getCmpSelInstrCost()
[all …]
/NextBSD/usr.bin/tset/
HDmap.c52 #define LT 0x04 macro
55 #define LE (LT | EQ)
111 mapp->conditional |= LT; in add_mapping()
114 if (mapp->conditional & LT) in add_mapping()
152 mapp->conditional = ~mapp->conditional & (EQ | GT | LT); in add_mapping()
174 if (mapp->conditional & LT) in add_mapping()
210 case LT: in mapped()
/NextBSD/contrib/llvm/lib/Support/Windows/
HDTimeValue.inc38 struct tm *LT;
43 LT = ::localtime(&OurTime);
44 assert(LT);
51 LT = &Storage;
55 strftime(Buffer, sizeof(Buffer), "%Y-%m-%d %H:%M:%S", LT);
/NextBSD/contrib/llvm/lib/Target/ARM/
HDARMTargetTransformInfo.cpp64 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, Src); in getCastInstrCost() local
65 int Idx = CostTableLookup(NEONFltDblTbl, ISD, LT.second); in getCastInstrCost()
67 return LT.first * NEONFltDblTbl[Idx].Cost; in getCastInstrCost()
295 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, ValTy); in getCmpSelInstrCost() local
296 return LT.first; in getCmpSelInstrCost()
356 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp); in getShuffleCost() local
358 int Idx = CostTableLookup(NEONShuffleTbl, ISD::VECTOR_SHUFFLE, LT.second); in getShuffleCost()
362 return LT.first * NEONShuffleTbl[Idx].Cost; in getShuffleCost()
382 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp); in getShuffleCost() local
384 CostTableLookup(NEONAltShuffleTbl, ISD::VECTOR_SHUFFLE, LT.second); in getShuffleCost()
[all …]
/NextBSD/sys/contrib/octeon-sdk/
HDcvmx-access-native.h312 #define CVMX_BUILD_WRITE64(TYPE, LT) extern void cvmx_write64_##TYPE(uint64_t csr_addr, TYPE##_t va… argument
390 #define CVMX_BUILD_READ64(TYPE, LT) \ argument
401 #define CVMX_BUILD_READ64(TYPE, LT) \ argument
405 asm volatile (LT " %[v], 0(%[c])": [v] "=r" (val) : [c] "r" (addr));\
412 #define CVMX_BUILD_READ64(TYPE, LT) extern TYPE##_t cvmx_read64_##TYPE(uint64_t csr_addr); argument
419 #define CVMX_BUILD_READ64(TYPE, LT) \ argument
436 LT " %[vall], 0(%[valh])\n" \
460 LT " %[val], 0(%[val])\n" \
/NextBSD/contrib/llvm/lib/Target/PowerPC/
HDPPCTargetTransformInfo.cpp320 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, Src); in getMemoryOpCost() local
328 if (LT.second == MVT::v2f64 || LT.second == MVT::v2i64) in getMemoryOpCost()
334 Src->getPrimitiveSizeInBits() >= LT.second.getSizeInBits() && in getMemoryOpCost()
335 LT.second.getSizeInBits() == 128 && in getMemoryOpCost()
340 unsigned SrcBytes = LT.second.getStoreSize(); in getMemoryOpCost()
342 Cost += LT.first*(SrcBytes/Alignment-1); in getMemoryOpCost()
/NextBSD/contrib/llvm/lib/Target/AArch64/
HDAArch64ConditionOptimizer.cpp207 case AArch64CC::LT: return AArch64CC::LE; in getAdjustedCmp()
208 case AArch64CC::LE: return AArch64CC::LT; in getAdjustedCmp()
370 if (((HeadCmp == AArch64CC::GT && TrueCmp == AArch64CC::LT) || in runOnMachineFunction()
371 (HeadCmp == AArch64CC::LT && TrueCmp == AArch64CC::GT)) && in runOnMachineFunction()
392 (HeadCmp == AArch64CC::LT && TrueCmp == AArch64CC::LT)) && in runOnMachineFunction()
407 if (HeadCmp == AArch64CC::LT) { in runOnMachineFunction()
HDAArch64TargetTransformInfo.cpp268 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, Val); in getVectorInstrCost() local
271 if (!LT.second.isVector()) in getVectorInstrCost()
275 unsigned Width = LT.second.getVectorNumElements(); in getVectorInstrCost()
292 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty); in getArithmeticInstrCost() local
330 return 1 * LT.first; in getArithmeticInstrCost()
383 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, Src); in getMemoryOpCost() local
394 return LT.first * 2 * AmortizationCost; in getMemoryOpCost()
407 return LT.first; in getMemoryOpCost()
/NextBSD/contrib/llvm/lib/Target/Hexagon/
HDHexagonExpandCondsets.cpp152 void terminateSegment(LiveInterval::iterator LT, SlotIndex S,
384 void HexagonExpandCondsets::terminateSegment(LiveInterval::iterator LT, in terminateSegment() argument
387 if (LT == LI.end()) in terminateSegment()
390 VNInfo *OldVN = LT->valno; in terminateSegment()
391 SlotIndex EX = LT->end; in terminateSegment()
392 LT->end = S; in terminateSegment()
446 LiveInterval::iterator LT = LID.FindSegmentContaining(MX); in addInstrToLiveness() local
447 if (LT != LID.end()) in addInstrToLiveness()
448 terminateSegment(LT, MX, LID); in addInstrToLiveness()
557 LiveInterval::iterator LT = LID.FindSegmentContaining(MX); in removeInstrFromLiveness() local
[all …]
/NextBSD/contrib/llvm/lib/Target/NVPTX/
HDNVPTXTargetTransformInfo.cpp97 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty); in getArithmeticInstrCost() local
113 if (LT.second.SimpleTy == MVT::i64) in getArithmeticInstrCost()
114 return 2 * LT.first; in getArithmeticInstrCost()
HDNVPTX.h37 LT, enumerator
50 case NVPTXCC::LT: in NVPTXCondCodeToString()
163 LT, enumerator
/NextBSD/contrib/llvm/lib/Support/Unix/
HDTimeValue.inc27 struct tm *LT = ::localtime_r(&OurTime, &Storage);
28 assert(LT);
30 strftime(Buffer1, sizeof(Buffer1), "%Y-%m-%d %H:%M:%S", LT);
/NextBSD/contrib/llvm/lib/Target/ARM/MCTargetDesc/
HDARMBaseInfo.h41 LT, // Less than Less than, or unordered enumerator
60 case GE: return LT; in getOppositeCondition()
61 case LT: return GE; in getOppositeCondition()
81 case ARMCC::LT: return "lt"; in ARMCondCodeToString()
/NextBSD/contrib/gcc/config/s390/
HDs390-modes.def47 CCS: EQ LT GT UNORDERED (LTGFR, LTGR, LTR, ICM/Y,
53 CCSR: EQ GT LT UNORDERED (CGF/R, CH/Y)
57 CCA: EQ LT GT Overflow
58 CCAP: EQ LT GT LT (AGHI, AHI)
59 CCAN: EQ LT GT GT (AGHI, AHI)
/NextBSD/contrib/one-true-awk/
HDawkgram.y54 %token <i> AND BOR APPEND EQ GE GT LE LT NE IN
81 %nonassoc APPEND EQ GE GT LE LT NE MATCHOP IN '|'
231 | pattern LT pattern { $$ = op2($2, $1, $3); }
372 | GETLINE var LT term { $$ = op3(GETLINE, $2, itonp($3), $4); }
373 | GETLINE LT term { $$ = op3(GETLINE, NIL, itonp($2), $3); }
469 case LE: case LT: case EQ: case NE: case GT: case GE:
HDmaketab.c49 { LT, "relop", " < " },
/NextBSD/contrib/groff/contrib/mm/examples/
HDREADME9 LT The letter macro
10 LT.se A swedish example with the extra
/NextBSD/contrib/ncurses/progs/
HDtset.c295 #define LT 0x04 macro
298 #define LE (LT | EQ)
445 mapp->conditional |= LT; in add_mapping()
448 if (mapp->conditional & LT) in add_mapping()
485 mapp->conditional = ~mapp->conditional & (EQ | GT | LT); in add_mapping()
510 if (mapp->conditional & LT) in add_mapping()
545 case LT: in mapped()
/NextBSD/contrib/llvm/include/llvm/IR/
HDGlobalValue.h284 void setLinkage(LinkageTypes LT) { in setLinkage() argument
285 if (isLocalLinkage(LT)) in setLinkage()
287 Linkage = LT; in setLinkage()
/NextBSD/contrib/llvm/lib/DebugInfo/DWARF/
HDDWARFDebugLine.cpp205 DWARFDebugLine::ParsingState::ParsingState(struct LineTable *LT) in ParsingState() argument
206 : LineTable(LT), RowNumber(0) { in ParsingState()
248 LineTable *LT = &pos.first->second; in getOrParseLineTable() local
250 if (!LT->parse(debug_line_data, RelocMap, &offset)) in getOrParseLineTable()
253 return LT; in getOrParseLineTable()
/NextBSD/contrib/gcc/
HDjump.c524 return LT; in reverse_condition()
525 case LT: in reverse_condition()
572 case LT: in reverse_condition_maybe_unordered()
589 return LT; in reverse_condition_maybe_unordered()
615 return LT; in swap_condition()
618 case LT: in swap_condition()
665 case LT: in unsigned_condition()
686 case LT: in signed_condition()
695 return LT; in signed_condition()
737 case LT: in comparison_dominates_p()
HDloop-iv.c1461 if ((GET_CODE (a) == GT || GET_CODE (a) == LT) in implies_p()
1547 code = LT, op1 = gen_int_mode (const_val + 1, GET_MODE (op0)); in canon_condition()
1821 cond_under = simplify_gen_relational (LT, SImode, iv->extend_mode, in shorten_into_mode()
1829 case LT: in shorten_into_mode()
1891 case LT: in canonicalize_iv_subregs()
2063 case LT: in iv_number_of_iterations()
2081 get_mode_bounds (mode, (cond == LE || cond == LT), comp_mode, &mmin, &mmax); in iv_number_of_iterations()
2130 case LT: in iv_number_of_iterations()
2162 cond = (cond == LT) ? LE : LEU; in iv_number_of_iterations()
/NextBSD/contrib/llvm/lib/Analysis/
HDDependenceAnalysis.cpp606 if (Direction & DVEntry::LT) in dump()
1134 Result.DV[Level].Direction &= Dependence::DVEntry::LT; in strongSIVtest()
1173 NewDirection = Dependence::DVEntry::LT; in strongSIVtest()
1235 Result.DV[Level].Direction &= unsigned(~Dependence::DVEntry::LT); in weakCrossingSIVtest()
1297 Result.DV[Level].Direction &= unsigned(~Dependence::DVEntry::LT); in weakCrossingSIVtest()
1552 NewDirection |= Dependence::DVEntry::LT; in exactSIVtest()
2597 case Dependence::DVEntry::LT: in exploreDirections()
2628 if (Bound[Level].Lower[Dependence::DVEntry::LT]) in exploreDirections()
2629 DEBUG(dbgs() << *Bound[Level].Lower[Dependence::DVEntry::LT] << '\t'); in exploreDirections()
2632 if (Bound[Level].Upper[Dependence::DVEntry::LT]) in exploreDirections()
[all …]
/NextBSD/usr.bin/xlint/lint1/
HDop.h81 LT, enumerator

123456