Home
last modified time | relevance | path

Searched refs:CS (Results 1 – 25 of 306) sorted by relevance

12345678910>>...13

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp744 SegmentReg = X86::CS; in emitNop()
1465 static void printDstRegisterName(raw_ostream &CS, const MachineInstr *MI, in printDstRegisterName() argument
1468 CS << X86ATTInstPrinter::getRegisterName(DstOp.getReg()); in printDstRegisterName()
1476 CS << " {%" << Mask << "}"; in printDstRegisterName()
1478 CS << " {z}"; in printDstRegisterName()
1483 static void printShuffleMask(raw_ostream &CS, StringRef Src1Name, in printShuffleMask() argument
1494 CS << ","; in printShuffleMask()
1496 CS << "zero"; in printShuffleMask()
1503 CS << (isSrc1 ? Src1Name : Src2Name) << '['; in printShuffleMask()
1509 CS << ','; in printShuffleMask()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DPrintfFormatString.cpp405 PrintfConversionSpecifier CS(conversionPosition, k); in ParsePrintfSpecifier() local
406 FS.setConversionSpecifier(CS); in ParsePrintfSpecifier()
407 if (CS.consumesDataArgument() && !FS.usesPositionalArg()) in ParsePrintfSpecifier()
417 CS.setEndScanList(Start + Len); in ParsePrintfSpecifier()
418 FS.setConversionSpecifier(CS); in ParsePrintfSpecifier()
509 if (CS.getKind() == ConversionSpecifier::cArg) in getScalarArgType()
524 if (CS.isIntArg()) in getScalarArgType()
560 if (CS.isUIntArg()) in getScalarArgType()
595 if (CS.isDoubleArg()) { in getScalarArgType()
613 if (CS.getKind() == ConversionSpecifier::nArg) { in getScalarArgType()
[all …]
H A DScanfFormatString.cpp32 ScanfConversionSpecifier &CS, in ParseScanList() argument
69 CS.setEndScanList(I); in ParseScanList()
201 ScanfConversionSpecifier CS(conversionPosition, k); in ParseScanfSpecifier() local
203 if (ParseScanList(H, CS, I, E)) in ParseScanfSpecifier()
206 FS.setConversionSpecifier(CS); in ParseScanfSpecifier()
207 if (CS.consumesDataArgument() && !FS.getSuppressAssignment() in ParseScanfSpecifier()
217 CS.setEndScanList(Beg + Len); in ParseScanfSpecifier()
218 FS.setConversionSpecifier(CS); in ParseScanfSpecifier()
227 const ScanfConversionSpecifier &CS = getConversionSpecifier(); in getArgType() local
229 if (!CS.consumesDataArgument()) in getArgType()
[all …]
H A DFormatString.cpp123 FormatSpecifier &CS, in ParseFieldWidth() argument
129 CS.setFieldWidth(ParseNonPositionAmount(Beg, E, *argIndex)); in ParseFieldWidth()
138 CS.setFieldWidth(Amt); in ParseFieldWidth()
848 if (LO.OpenCL && CS.isDoubleArg()) in hasValidLengthModifier()
851 if (CS.isFixedPointArg()) in hasValidLengthModifier()
855 switch (CS.getKind()) { in hasValidLengthModifier()
873 switch (CS.getKind()) { in hasValidLengthModifier()
899 if (CS.isDoubleArg()) { in hasValidLengthModifier()
906 if (CS.isFixedPointArg()) in hasValidLengthModifier()
909 switch (CS.getKind()) { in hasValidLengthModifier()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionSpecialization.cpp769 if (auto *CS = dyn_cast<CallBase>(U)) { in run() local
771 if (CS->getCalledFunction() != F) in run()
773 Solver.resetLatticeValueFor(CS); in run()
829 auto &CS = *cast<CallBase>(U); in findSpecializations() local
832 if (CS.getCalledFunction() != F) in findSpecializations()
837 if (CS.hasFnAttr(Attribute::MinSize)) in findSpecializations()
842 if (!Solver.isBlockExecutable(CS.getParent())) in findSpecializations()
849 Constant *C = getCandidateConstant(CS.getArgOperand(A->getArgNo())); in findSpecializations()
869 if (CS.getFunction() == F) in findSpecializations()
872 AllSpecs[Index].CallSites.push_back(&CS); in findSpecializations()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/spi/
H A Dspi-nxp-fspi.txt19 This encodes to which bus and CS the flash is connected:
20 - <0>: Bus A, CS 0
21 - <1>: Bus A, CS 1
22 - <2>: Bus B, CS 0
23 - <3>: Bus B, CS 1
H A Dspi-fsl-qspi.txt18 This encodes to which bus and CS the flash is connected:
19 <0>: Bus A, CS 0
20 <1>: Bus A, CS 1
21 <2>: Bus B, CS 0
22 <3>: Bus B, CS 1
H A Dspi-davinci.txt40 For example to have 3 internal CS and 2 GPIO CS, user could define
42 where first three are internal CS and last two are GPIO CS.
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCtorUtils.cpp69 ConstantStruct *CS = cast<ConstantStruct>(V); in parseGlobalCtors()
70 Result.emplace_back(cast<ConstantInt>(CS->getOperand(0))->getZExtValue(), in parseGlobalCtors()
71 dyn_cast<Function>(CS->getOperand(1))); in parseGlobalCtors()
96 ConstantStruct *CS = cast<ConstantStruct>(V); in findGlobalCtors()
97 if (isa<ConstantPointerNull>(CS->getOperand(1))) in findGlobalCtors()
101 Function *F = dyn_cast<Function>(CS->getOperand(1)); in findGlobalCtors()
72 ConstantStruct *CS = cast<ConstantStruct>(V); parseGlobalCtors() local
99 ConstantStruct *CS = cast<ConstantStruct>(V); findGlobalCtors() local
H A DLowerGlobalDtors.cpp102 auto *CS = dyn_cast<ConstantStruct>(O); in runImpl() local
103 if (!CS) in runImpl()
106 auto *Priority = dyn_cast<ConstantInt>(CS->getOperand(0)); in runImpl()
111 Constant *DtorFunc = CS->getOperand(1); in runImpl()
115 Constant *Associated = CS->getOperand(2); in runImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h399 bool startsAfter(const CycleSegment &CS) const { return End <= CS.Begin; } in startsAfter() argument
400 bool endsBefore(const CycleSegment &CS) const { return Begin >= CS.End; } in endsBefore() argument
401 bool overlaps(const CycleSegment &CS) const { in overlaps() argument
402 return !startsAfter(CS) && !endsBefore(CS); in overlaps()
437 CycleSegment CS; member
440 : CS(Cycles), NumUnits(Units) {} in CS() function
441 unsigned size() const { return CS.size(); } in size()
442 bool isReserved() const { return CS.isReserved(); } in isReserved()
443 void setReserved() { CS.setReserved(); } in setReserved()
/freebsd/contrib/sendmail/cf/cf/
H A Dhuginn.cs.mc21 # This file is for the backup CS Division mail server.
27 DOMAIN(CS.Berkeley.EDU)dnl
28 MASQUERADE_AS(CS.Berkeley.EDU)dnl
36 CF CS
H A Ducbvax.mc27 DOMAIN(CS.Berkeley.EDU)
28 MASQUERADE_AS(CS.Berkeley.EDU)
38 CF CS
89 R$+<@cnmat.CS.$D . > $#uucp$@cnmat$:$1
91 R$+<@craig.CS.$D . > $#uucp$@craig$:$1
H A Dchez.cs.mc29 DOMAIN(CS.Berkeley.EDU)dnl
30 define(`LOCAL_RELAY', vangogh.CS.Berkeley.EDU)dnl
31 MASQUERADE_AS(vangogh.CS.Berkeley.EDU)dnl
H A Dvangogh.cs.mc27 DOMAIN(CS.Berkeley.EDU)dnl
32 Cw okeeffe.CS.Berkeley.EDU
33 Cw python.CS.Berkeley.EDU
H A Dmail.cs.mc21 # This file is for the primary CS Division mail server.
28 MASQUERADE_AS(CS.Berkeley.EDU)dnl
37 CF CS
H A Dpython.cs.mc29 DOMAIN(CS.Berkeley.EDU)dnl
30 define(`LOCAL_RELAY', vangogh.CS.Berkeley.EDU)dnl
31 MASQUERADE_AS(vangogh.CS.Berkeley.EDU)dnl
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp194 bool TraverseCapturedStmt(CapturedStmt *CS) { return true; } in TraverseCapturedStmt()
372 for (Stmt *CS : If->children()) { in TraverseIfStmt()
373 if (!CS || NoSingleByteCoverage) in TraverseIfStmt()
375 if (CS == If->getThen()) in TraverseIfStmt()
377 else if (CS == If->getElse()) in TraverseIfStmt()
384 for (Stmt *CS : If->children()) { in TraverseIfStmt()
385 if (!CS) in TraverseIfStmt()
387 if (CS == If->getThen()) in TraverseIfStmt()
389 else if (CS == If->getElse()) in TraverseIfStmt()
391 TraverseStmt(CS); in TraverseIfStmt()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp139 COFFSymbolRef CS = COFF.getCOFFSymbol(S); in getPreferredSymbol() local
140 if (CS.getSectionNumber() == CoffSym.getSectionNumber() && in getPreferredSymbol()
141 CS.getValue() <= CoffSym.getValue() + SymbolOffset && in getPreferredSymbol()
142 CS.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL && in getPreferredSymbol()
143 CS.getSectionDefinition() == nullptr) { in getPreferredSymbol()
144 uint32_t Offset = CoffSym.getValue() + SymbolOffset - CS.getValue(); in getPreferredSymbol()
150 CoffSym = CS; in getPreferredSymbol()
151 if (CS.isExternal() && SymbolOffset == 0) in getPreferredSymbol()
352 DictScope CS(SW, "Chained"); in printUnwindInfo() local
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVFrameLowering.cpp178 for (auto &CS : CSI) in getLibCallID() local
181 if (CS.getFrameIdx() < 0) in getLibCallID()
182 MaxReg = std::max(MaxReg.id(), CS.getReg().id()); in getLibCallID()
298 for (auto &CS : CSI) { in getMaxPushPopReg() local
300 return P.first == CS.getReg(); in getMaxPushPopReg()
302 MaxPushPopReg = std::max(MaxPushPopReg.id(), CS.getReg().id()); in getMaxPushPopReg()
387 for (auto &CS : CSI) { in getUnmanagedCSI() local
388 int FI = CS.getFrameIdx(); in getUnmanagedCSI()
390 NonLibcallCSI.push_back(CS); in getUnmanagedCSI()
402 for (auto &CS : CSI) { in getRVVCalleeSavedInfo() local
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DFormatString.h425 ConversionSpecifier CS; variable
435 : CS(isPrintf), VectorNumElts(false), in FormatSpecifier()
514 static bool classof(const analyze_format_string::ConversionSpecifier *CS) { in classof() argument
515 return CS->isPrintfKind(); in classof()
552 CS = cs; in setConversionSpecifier()
585 return cast<PrintfConversionSpecifier>(CS); in getConversionSpecifier()
660 static bool classof(const analyze_format_string::ConversionSpecifier *CS) { in classof() argument
661 return !CS->isPrintfKind(); in classof()
686 CS = cs; in setConversionSpecifier()
690 return cast<ScanfConversionSpecifier>(CS); in getConversionSpecifier()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCloneDetection.cpp63 auto CS = cast<CompoundStmt>(S); in begin() local
64 return CS->body_begin() + StartIndex; in begin()
71 auto CS = cast<CompoundStmt>(S); in end() local
72 return CS->body_begin() + EndIndex; in end()
256 auto CS = dyn_cast<CompoundStmt>(S); in saveHash() local
270 if (CS) { in saveHash()
274 for (unsigned Pos = 0; Pos < CS->size(); ++Pos) { in saveHash()
279 for (unsigned Length = 1; Length <= CS->size() - Pos; ++Length) { in saveHash()
290 createHash(SubHash), StmtSequence(CS, D, Pos, Pos + Length))); in saveHash()
H A DCFGStmtMap.cpp53 std::optional<CFGStmt> CS = CE.getAs<CFGStmt>(); in Accumulate() local
54 if (!CS) in Accumulate()
57 CFGBlock *&Entry = SM[CS->getStmt()]; in Accumulate()
/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DResourceManager.cpp351 const CycleSegment &CS = R.second.CS; in issueInstruction() local
352 if (!CS.size()) { in issueInstruction()
357 assert(CS.begin() == 0 && "Invalid {Start, End} cycles!"); in issueInstruction()
361 BusyResources[Pipe] += CS.size(); in issueInstruction()
363 Pipe, ReleaseAtCycles(CS.size()))); in issueInstruction()
369 BusyResources[ResourceRef(R.first, R.first)] += CS.size(); in issueInstruction()
/freebsd/sys/contrib/device-tree/Bindings/memory-controllers/
H A Dpl353-smc.txt31 ranges = <0x0 0x0 0xe1000000 0x1000000 //Nand CS Region
32 0x1 0x0 0xe2000000 0x2000000 //SRAM/NOR CS Region
33 0x2 0x0 0xe4000000 0x2000000>; //SRAM/NOR CS Region

12345678910>>...13