Home
last modified time | relevance | path

Searched refs:Expanded (Results 1 – 25 of 26) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DComputeReplacements.cpp73 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 DTokens.cpp272 assert(Expanded); in spelledForExpandedToken()
273 assert(ExpandedTokens.data() <= Expanded && in spelledForExpandedToken()
282 unsigned ExpandedIndex = Expanded - ExpandedTokens.data(); in spelledForExpandedToken()
407 if (!Expanded.empty() && Expanded.back().kind() == tok::eof) { in spelledForExpanded()
408 Expanded = Expanded.drop_back(); in spelledForExpanded()
412 if (Expanded.empty()) in spelledForExpanded()
414 const syntax::Token *First = &Expanded.front(); in spelledForExpanded()
415 const syntax::Token *Last = &Expanded.back(); in spelledForExpanded()
694 Expanded.push_back(syntax::Token(T)); in TokenCollector()
711 Result.ExpandedTokens = std::move(Expanded); in Builder()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp1342 Expanded.BraceWrapping = { in expandPresetsBraceWrapping()
1399 Expanded.SpacesInParensOptions = {}; in expandPresetsSpacesInParens()
3584 FormatStyle Expanded = Style; in reformat() local
3588 Expanded.InsertBraces = false; in reformat()
3589 Expanded.RemoveBracesLLVM = false; in reformat()
3591 Expanded.RemoveSemicolon = false; in reformat()
3601 if (Expanded.DisableFormat) in reformat()
3647 FormatStyle S = Expanded; in reformat()
3655 FormatStyle S = Expanded; in reformat()
3663 FormatStyle S = Expanded; in reformat()
[all …]
H A DUnwrappedLineParser.cpp227 for (const auto &Expanded : it->second) { in parse() local
228 LLVM_DEBUG(printDebugInfo(Expanded)); in parse()
229 Callback.consumeUnwrappedLine(Expanded); in parse()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCExpandPseudos.cpp134 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-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp919 Results.push_back(Expanded); in Expand()
958 Results.push_back(Expanded); in Expand()
965 Results.push_back(Expanded); in Expand()
974 Results.push_back(Expanded); in Expand()
980 Results.push_back(Expanded); in Expand()
986 Results.push_back(Expanded); in Expand()
993 Results.push_back(Expanded); in Expand()
1000 Results.push_back(Expanded); in Expand()
1007 Results.push_back(Expanded); in Expand()
1014 Results.push_back(Expanded); in Expand()
[all …]
H A DLegalizeDAG.cpp3538 if (SDValue Expanded = in ExpandNode() local
3541 Results.push_back(Expanded); in ExpandNode()
3566 Results.push_back(Expanded); in ExpandNode()
3594 if (SDValue Expanded = expandLdexp(Node)) { in ExpandNode() local
3595 Results.push_back(Expanded); in ExpandNode()
3597 Results.push_back(Expanded.getValue(1)); in ExpandNode()
3609 if (SDValue Expanded = expandFrexp(Node)) { in ExpandNode() local
3610 Results.push_back(Expanded); in ExpandNode()
3611 Results.push_back(Expanded.getValue(1)); in ExpandNode()
3808 Results.push_back(Expanded); in ExpandNode()
[all …]
H A DLegalizeVectorTypes.cpp2857 SDValue Expanded = TLI.expandVectorSplice(N, DAG); in SplitVecRes_VECTOR_SPLICE() local
2858 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, LoVT, Expanded, in SplitVecRes_VECTOR_SPLICE()
2861 DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, HiVT, Expanded, in SplitVecRes_VECTOR_SPLICE()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DTokens.h232 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-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.cpp1282 if (auto *Expanded = Plan.getSCEVExpansion(Expr)) in getOrCreateVPValueForSCEVExpr() local
1283 return Expanded; in getOrCreateVPValueForSCEVExpr()
1284 VPValue *Expanded = nullptr; in getOrCreateVPValueForSCEVExpr() local
1286 Expanded = Plan.getVPValueOrAddLiveIn(E->getValue()); in getOrCreateVPValueForSCEVExpr()
1288 Expanded = Plan.getVPValueOrAddLiveIn(E->getValue()); in getOrCreateVPValueForSCEVExpr()
1290 Expanded = new VPExpandSCEVRecipe(Expr, SE); in getOrCreateVPValueForSCEVExpr()
1291 Plan.getPreheader()->appendRecipe(Expanded->getDefiningRecipe()); in getOrCreateVPValueForSCEVExpr()
1293 Plan.addSCEVExpansion(Expr, Expanded); in getOrCreateVPValueForSCEVExpr()
1294 return Expanded; in getOrCreateVPValueForSCEVExpr()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEFrameLowering.cpp105 bool Expanded = false; in expand() local
109 Expanded |= expandInstr(MBB, I++); in expand()
112 return Expanded; in expand()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kInstrCompiler.td53 // CMOV* - Used to implement the SELECT DAG operation. Expanded after
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp296 size_t Expanded = 0; in getSubtreeBfs() local
298 while (Expanded < Ids.size()) in getSubtreeBfs()
299 for (NodeId Child : Tree.getNode(Ids[Expanded++]).Children) in getSubtreeBfs()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp3576 bool Expanded = false; in parseTextItem() local
3589 Expanded = true; in parseTextItem()
3603 Expanded = true; in parseTextItem()
3610 if (!Expanded) { in parseTextItem()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMInstrThumb.td1472 // Expanded after instruction selection into a branch sequence.
1473 let usesCustomInserter = 1 in // Expanded after instruction selection.
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcInstrInfo.td547 // SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after
550 // Expanded after instruction selection.
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.td615 // Store on condition. Expanded from CondStore* pseudos.
647 // Store on condition. Expanded from CondStore* pseudos.
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreInstrInfo.td351 // SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after
/freebsd-14.2/contrib/libpcap/
H A Daclocal.m429 dnl See the "Prerequisite Macros" and "Expanded Before Required" sections
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrCompiler.td539 // CMOV* - Used to implement the SELECT DAG operation. Expanded after
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstructions.td138 // 64-bit vector move with dpp. Expanded post-RA.
/freebsd-14.2/contrib/wpa/wpa_supplicant/
H A DChangeLog1789 * added support for generating EAP Expanded Nak
/freebsd-14.2/contrib/flex/
H A DChangeLog1335 requirements for build tools will be noted in configure.ac. Expanded
8903 * NEWS: Expanded on extern "C++" news item
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.td1227 // SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after
/freebsd-14.2/sys/contrib/dev/acpica/
H A Dchanges.txt2255 iASL: Expanded the -vw option (ignore specific warnings/remarks) to
5477 Disassembler: Expanded maximum output string length to 64K. Was 256 bytes
6923 Expanded the OSL memory read/write interfaces to 64-bit data
8424 Expanded all statistic counters used during namespace and device

12