/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 | 271 TokenBuffer::spelledForExpandedToken(const syntax::Token *Expanded) const { in spelledForExpandedToken() 272 assert(Expanded); in spelledForExpandedToken() 273 assert(ExpandedTokens.data() <= Expanded && in spelledForExpandedToken() 274 Expanded < ExpandedTokens.data() + ExpandedTokens.size()); in spelledForExpandedToken() 277 SourceMgr->getFileID(SourceMgr->getExpansionLoc(Expanded->location()))); in spelledForExpandedToken() 282 unsigned ExpandedIndex = Expanded - ExpandedTokens.data(); in spelledForExpandedToken() 404 TokenBuffer::spelledForExpanded(llvm::ArrayRef<syntax::Token> Expanded) const { in spelledForExpanded() 408 if (!Expanded.empty() && Expanded.back().kind() == tok::eof) { in spelledForExpanded() 409 Expanded = Expanded.drop_back(); in spelledForExpanded() 413 if (Expanded.empty()) in spelledForExpanded() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | Format.cpp | 1280 static void expandPresetsBraceWrapping(FormatStyle &Expanded) { in expandPresetsBraceWrapping() argument 1281 if (Expanded.BreakBeforeBraces == FormatStyle::BS_Custom) in expandPresetsBraceWrapping() 1283 Expanded.BraceWrapping = {/*AfterCaseLabel=*/false, in expandPresetsBraceWrapping() 1301 switch (Expanded.BreakBeforeBraces) { in expandPresetsBraceWrapping() 1303 Expanded.BraceWrapping.AfterClass = true; in expandPresetsBraceWrapping() 1304 Expanded.BraceWrapping.AfterFunction = true; in expandPresetsBraceWrapping() 1305 Expanded.BraceWrapping.AfterNamespace = true; in expandPresetsBraceWrapping() 1308 Expanded.BraceWrapping.AfterClass = true; in expandPresetsBraceWrapping() 1309 Expanded.BraceWrapping.AfterEnum = true; in expandPresetsBraceWrapping() 1310 Expanded.BraceWrapping.AfterFunction = true; in expandPresetsBraceWrapping() [all …]
|
H A D | UnwrappedLineParser.cpp | 233 LLVM_DEBUG(llvm::dbgs() << "Expanded lines:\n"); in parse() 238 for (const auto &Expanded : it->second) { in parse() local 239 LLVM_DEBUG(printDebugInfo(Expanded)); in parse() 240 Callback.consumeUnwrappedLine(Expanded); in parse() 4957 llvm::dbgs() << "Expanded: "; in readToken()
|
/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/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeVectorOps.cpp | 883 if (SDValue Expanded = ExpandVP_REM(Node)) { in Expand() local 884 Results.push_back(Expanded); in Expand() 922 if (SDValue Expanded = TLI.expandABS(Node, DAG)) { in Expand() local 923 Results.push_back(Expanded); in Expand() 929 if (SDValue Expanded = TLI.expandABD(Node, DAG)) { in Expand() local 930 Results.push_back(Expanded); in Expand() 938 if (SDValue Expanded = TLI.expandAVG(Node, DAG)) { in Expand() local 939 Results.push_back(Expanded); in Expand() 947 if (SDValue Expanded = TLI.expandVPBITREVERSE(Node, DAG)) { in Expand() local 948 Results.push_back(Expanded); in Expand() [all …]
|
H A D | LegalizeDAG.cpp | 3607 if (SDValue Expanded = in ExpandNode() local 3610 Results.push_back(Expanded); in ExpandNode() 3634 if (SDValue Expanded = TLI.expandFMINNUM_FMAXNUM(Node, DAG)) in ExpandNode() local 3635 Results.push_back(Expanded); in ExpandNode() 3640 if (SDValue Expanded = TLI.expandFMINIMUM_FMAXIMUM(Node, DAG)) in ExpandNode() local 3641 Results.push_back(Expanded); in ExpandNode() 3669 if (SDValue Expanded = expandLdexp(Node)) { in ExpandNode() local 3670 Results.push_back(Expanded); in ExpandNode() 3672 Results.push_back(Expanded.getValue(1)); in ExpandNode() 3684 if (SDValue Expanded = expandFrexp(Node)) { in ExpandNode() local [all …]
|
H A D | LegalizeVectorTypes.cpp | 3031 SDValue Expanded = TLI.expandVectorSplice(N, DAG); in SplitVecRes_VP_REVERSE() 3032 std::tie(Lo, Hi) = DAG.SplitVector(Expanded, DL); in SplitVecRes_VP_REVERSE() 3027 SDValue Expanded = TLI.expandVectorSplice(N, DAG); SplitVecRes_VECTOR_SPLICE() local
|
/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/Transforms/Vectorize/ |
H A D | VPlan.cpp | 1612 if (auto *Expanded = Plan.getSCEVExpansion(Expr)) in getOrCreateVPValueForSCEVExpr() local 1613 return Expanded; in getOrCreateVPValueForSCEVExpr() 1614 VPValue *Expanded = nullptr; in getOrCreateVPValueForSCEVExpr() local 1616 Expanded = Plan.getOrAddLiveIn(E->getValue()); in getOrCreateVPValueForSCEVExpr() 1618 Expanded = Plan.getOrAddLiveIn(E->getValue()); in getOrCreateVPValueForSCEVExpr() 1620 Expanded = new VPExpandSCEVRecipe(Expr, SE); in getOrCreateVPValueForSCEVExpr() 1621 Plan.getPreheader()->appendRecipe(Expanded->getDefiningRecipe()); in getOrCreateVPValueForSCEVExpr() 1623 Plan.addSCEVExpansion(Expr, Expanded); in getOrCreateVPValueForSCEVExpr() 1624 return Expanded; in getOrCreateVPValueForSCEVExpr()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsSEFrameLowering.cpp | 105 bool Expanded = false; in expand() local 109 Expanded |= expandInstr(MBB, I++); in expand() 112 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 | 3577 bool Expanded = false; in parseTextItem() local 3590 Expanded = true; in parseTextItem() 3604 Expanded = true; in parseTextItem() 3611 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/Sparc/ |
H A D | SparcInstrInfo.td | 557 // SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after 560 // Expanded after instruction selection.
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZInstrInfo.td | 617 // Store on condition. Expanded from CondStore* pseudos. 649 // Store on condition. Expanded from CondStore* pseudos.
|
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/ |
H A D | XCoreInstrInfo.td | 351 // SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after
|
/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/X86/ |
H A D | X86InstrCompiler.td | 550 // CMOV* - Used to implement the SELECT 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/AMDGPU/ |
H A D | SIInstructions.td | 142 // 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
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCInstrInfo.td | 1229 // SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after
|
/freebsd/sys/contrib/dev/acpica/ |
H A D | changes.txt | 2469 iASL: Expanded the -vw option (ignore specific warnings/remarks) to 5691 Disassembler: Expanded maximum output string length to 64K. Was 256 bytes 7137 Expanded the OSL memory read/write interfaces to 64-bit data 8637 Expanded all statistic counters used during namespace and device
|