| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanUtils.cpp | 29 if (auto *Expanded = Plan.getSCEVExpansion(Expr)) in getOrCreateVPValueForSCEVExpr() local 30 return Expanded; in getOrCreateVPValueForSCEVExpr() 31 VPValue *Expanded = nullptr; in getOrCreateVPValueForSCEVExpr() local 33 Expanded = Plan.getOrAddLiveIn(E->getValue()); in getOrCreateVPValueForSCEVExpr() 41 Expanded = Plan.getOrAddLiveIn(U->getValue()); in getOrCreateVPValueForSCEVExpr() 43 Expanded = new VPExpandSCEVRecipe(Expr, SE); in getOrCreateVPValueForSCEVExpr() 44 Plan.getEntry()->appendRecipe(Expanded->getDefiningRecipe()); in getOrCreateVPValueForSCEVExpr() 47 Plan.addSCEVExpansion(Expr, Expanded); in getOrCreateVPValueForSCEVExpr() 48 return Expanded; in getOrCreateVPValueForSCEVExpr()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeVectorOps.cpp | 934 if (SDValue Expanded = ExpandSEXTINREG(Node)) { in Expand() local 935 Results.push_back(Expanded); in Expand() 949 if (SDValue Expanded = ExpandBSWAP(Node)) { in Expand() local 950 Results.push_back(Expanded); in Expand() 958 if (SDValue Expanded = ExpandVSELECT(Node)) { in Expand() local 959 Results.push_back(Expanded); in Expand() 964 if (SDValue Expanded = ExpandVP_SELECT(Node)) { in Expand() local 965 Results.push_back(Expanded); in Expand() 971 if (SDValue Expanded = ExpandVP_REM(Node)) { in Expand() local 972 Results.push_back(Expanded); in Expand() [all …]
|
| H A D | LegalizeDAG.cpp | 3730 if (SDValue Expanded = in ExpandNode() local 3733 Results.push_back(Expanded); in ExpandNode() 3757 if (SDValue Expanded = TLI.expandFMINNUM_FMAXNUM(Node, DAG)) in ExpandNode() local 3758 Results.push_back(Expanded); in ExpandNode() 3763 if (SDValue Expanded = TLI.expandFMINIMUM_FMAXIMUM(Node, DAG)) in ExpandNode() local 3764 Results.push_back(Expanded); in ExpandNode() 3797 if (SDValue Expanded = expandLdexp(Node)) { in ExpandNode() local 3798 Results.push_back(Expanded); in ExpandNode() 3800 Results.push_back(Expanded.getValue(1)); in ExpandNode() 3812 if (SDValue Expanded = expandFrexp(Node)) { in ExpandNode() local [all …]
|
| H A D | TargetLowering.cpp | 8646 if (SDValue Expanded = expandVectorNaryOpBySplitting(Node, DAG)) in expandFMINNUM_FMAXNUM() local 8647 return Expanded; in expandFMINNUM_FMAXNUM() 8702 if (SDValue Expanded = expandVectorNaryOpBySplitting(N, DAG)) in expandFMINIMUM_FMAXIMUM() local 8703 return Expanded; in expandFMINIMUM_FMAXIMUM()
|
| H A D | LegalizeVectorTypes.cpp | 3166 SDValue Expanded = TLI.expandVectorSplice(N, DAG); in SplitVecRes_VECTOR_SPLICE() local 3167 std::tie(Lo, Hi) = DAG.SplitVector(Expanded, DL); in SplitVecRes_VECTOR_SPLICE()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | ComputeReplacements.cpp | 73 llvm::ArrayRef<syntax::Token> Expanded) { in rangeOfExpanded() argument 78 assert(Buffer.expandedTokens().begin() <= Expanded.begin()); in rangeOfExpanded() 79 assert(Expanded.end() < Buffer.expandedTokens().end()); in rangeOfExpanded() 81 if (Expanded.empty()) in rangeOfExpanded() 84 SM, SM.getExpansionLoc(Expanded.begin()->location()), /*Length=*/0); in rangeOfExpanded() 86 auto Spelled = Buffer.spelledForExpanded(Expanded); in rangeOfExpanded()
|
| H A D | Tokens.cpp | 269 TokenBuffer::spelledForExpandedToken(const syntax::Token *Expanded) const { in spelledForExpandedToken() 270 assert(Expanded); in spelledForExpandedToken() 271 assert(ExpandedTokens.data() <= Expanded && in spelledForExpandedToken() 272 Expanded < ExpandedTokens.data() + ExpandedTokens.size()); in spelledForExpandedToken() 275 SourceMgr->getFileID(SourceMgr->getExpansionLoc(Expanded->location()))); in spelledForExpandedToken() 280 unsigned ExpandedIndex = Expanded - ExpandedTokens.data(); in spelledForExpandedToken() 402 TokenBuffer::spelledForExpanded(llvm::ArrayRef<syntax::Token> Expanded) const { in spelledForExpanded() 406 if (!Expanded.empty() && Expanded.back().kind() == tok::eof) { in spelledForExpanded() 407 Expanded = Expanded.drop_back(); in spelledForExpanded() 411 if (Expanded.empty()) in spelledForExpanded() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | Format.cpp | 1371 static void expandPresetsBraceWrapping(FormatStyle &Expanded) { in expandPresetsBraceWrapping() argument 1372 if (Expanded.BreakBeforeBraces == FormatStyle::BS_Custom) in expandPresetsBraceWrapping() 1374 Expanded.BraceWrapping = {/*AfterCaseLabel=*/false, in expandPresetsBraceWrapping() 1392 switch (Expanded.BreakBeforeBraces) { in expandPresetsBraceWrapping() 1394 Expanded.BraceWrapping.AfterClass = true; in expandPresetsBraceWrapping() 1395 Expanded.BraceWrapping.AfterFunction = true; in expandPresetsBraceWrapping() 1396 Expanded.BraceWrapping.AfterNamespace = true; in expandPresetsBraceWrapping() 1399 Expanded.BraceWrapping.AfterClass = true; in expandPresetsBraceWrapping() 1400 Expanded.BraceWrapping.AfterEnum = true; in expandPresetsBraceWrapping() 1401 Expanded.BraceWrapping.AfterFunction = true; in expandPresetsBraceWrapping() [all …]
|
| H A D | UnwrappedLineParser.cpp | 233 for (const auto &Expanded : it->second) { in parse() local 234 LLVM_DEBUG(printDebugInfo(Expanded)); in parse() 235 Callback.consumeUnwrappedLine(Expanded); in parse()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARC/ |
| H A D | ARCExpandPseudos.cpp | 134 bool Expanded = false; in runOnMachineFunction() local 144 Expanded = true; in runOnMachineFunction() 148 Expanded = true; in runOnMachineFunction() 152 Expanded = true; in runOnMachineFunction() 160 return Expanded; in runOnMachineFunction()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/Syntax/ |
| H A D | Tokens.h | 232 spelledForExpanded(llvm::ArrayRef<syntax::Token> Expanded) const; 275 llvm::ArrayRef<syntax::Token> Expanded; member 355 spelledForExpandedToken(const syntax::Token *Expanded) const; 451 std::vector<syntax::Token> Expanded; variable
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsSEFrameLowering.cpp | 103 bool Expanded = false; in expand() local 107 Expanded |= expandInstr(MBB, I++); in expand() 110 return Expanded; in expand()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kInstrCompiler.td | 53 // CMOV* - Used to implement the SELECT DAG operation. Expanded after
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | MasmParser.cpp | 3109 bool Expanded = false; in parseTextItem() local 3122 Expanded = true; in parseTextItem() 3134 Expanded = true; in parseTextItem() 3148 Expanded = true; in parseTextItem() 3155 if (!Expanded) { in parseTextItem()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMInstrThumb.td | 1466 // Expanded after instruction selection into a branch sequence. 1467 let usesCustomInserter = 1 in // Expanded after instruction selection.
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVInstrInfoZb.td | 53 // RV64IZbb absolute value for i32. Expanded to (max (negw X), X) during isel.
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| H A D | SparcInstrInfo.td | 589 // SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after 592 // Expanded after instruction selection.
|
| /freebsd/contrib/libpcap/ |
| H A D | aclocal.m4 | 29 dnl See the "Prerequisite Macros" and "Expanded Before Required" sections
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZInstrInfo.td | 610 // Store on condition. Expanded from CondStore* pseudos. 642 // Store on condition. Expanded from CondStore* pseudos.
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCoreInstrInfo.td | 386 // SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after
|
| /freebsd/crypto/libecc/ |
| H A D | README.md | 480 * Expanded with new hash functions and new signature algorithms with some coding effort, but clean …
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstrCompiler.td | 565 // CMOV* - Used to implement the SELECT DAG operation. Expanded after
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIInstructions.td | 162 // 64-bit vector move with dpp. Expanded post-RA.
|
| /freebsd/contrib/wpa/wpa_supplicant/ |
| H A D | ChangeLog | 1789 * added support for generating EAP Expanded Nak
|
| /freebsd/contrib/flex/ |
| H A D | ChangeLog | 1335 requirements for build tools will be noted in configure.ac. Expanded 8903 * NEWS: Expanded on extern "C++" news item
|