HomeSort by: relevance | last modified time | path
    Searched refs:Merged (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/Serialization/
MultiOnDiskHashTable.h 1 //===- MultiOnDiskHashTable.h - Merged set of hash tables -------*- C++ -*-===//
12 // Multiple hash tables from different files are implicitly merged to improve
13 // performance, and on reload the merged table will override those from other
39 /// A collection of on-disk hash tables, merged when relevant for performance.
55 /// The generator is permitted to read our merged table.
81 /// The current set of on-disk and merged tables.
114 // If we already have a merged table, it's the first one.
146 MergedTable *Merged = getMergedTable();
147 if (!Merged)
148 Merged = new MergedTable
    [all...]
ASTReader.cpp 4099 /// We've merged the definition \p MergedDef into the existing definition
7408 // Track that we have merged the declaration with ID \p ID into the
7410 auto &Merged = KeyDecls[D->getCanonicalDecl()];
7411 if (Merged.empty())
7412 Merged.push_back(ID);
9416 // For each declaration from a merged context, check that the canonical
9994 // Multiple different declarations got merged together; tell the user
11240 "Merged functions with different number of parameters");
11250 "Merged function has different parameter types.");
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Core/
Replacement.cpp 323 // with them and replace them with the merged replacements.
334 llvm::Expected<Replacements> Merged =
336 if (!Merged)
337 return Merged.takeError();
339 Replaces.insert(Merged->begin(), Merged->end());
346 // Represents a merged replacement, i.e. a replacement consisting of multiple
376 // Merges the next element 'R' into this merged element. As we always merge
408 // doesn't need to be merged.
415 // Returns 'true' if an element from the second set should be merged next
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/XRay/
Profile.cpp 194 Profile Merged;
210 Merged.internPath(cantFail(P.get().expandPath(PathID)));
227 Merged.addBlock({IndexedThreadBlock.first, std::move(PathAndData)}));
229 return Merged;
233 Profile Merged;
243 Merged.internPath(cantFail(P.get().expandPath(PathId)));
258 cantFail(Merged.addBlock({0, std::move(Block)}));
259 return Merged;
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
function_call_trie_test.cc 287 FunctionCallTrie Merged(B);
289 T0.mergeInto(Merged);
290 T1.mergeInto(Merged);
292 ASSERT_EQ(Merged.getRoots().size(), 1u);
293 const auto &R0 = *Merged.getRoots()[0];
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
RawCommentList.h 42 RCK_Merged ///< Two or more documentation comments merged together
48 const CommentOptions &CommentOpts, bool Merged);
  /src/external/apache2/llvm/dist/llvm/lib/WindowsManifest/
WindowsManifestMerger.cpp 48 bool Merged = false;
624 if (Merged)
660 if (!Merged) {
661 Merged = true;
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Value.h 829 Use *Merged;
830 Use **Next = &Merged;
852 return Merged;
  /src/external/apache2/llvm/dist/clang/lib/AST/
RawCommentList.cpp 110 const CommentOptions &CommentOpts, bool Merged) :
139 if (!Merged) {
ASTContext.cpp 1111 auto &Merged = It->second;
1113 for (Module *&M : Merged)
1116 Merged.erase(std::remove(Merged.begin(), Merged.end(), nullptr), Merged.end());
9376 /// of T is compatible with SubType, return the merged type, else return
9905 // FIXME: The merged type should be an ExtVector!
10012 /// 'RHS' attributes and returns the merged version; including for function
10046 // If the qualifiers are different, the types can still be merged
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp 142 /// merged into a LDM/STM.
153 /// Index into the basic block where the merged instruction will be
157 /// Whether the instructions can be merged into a ldm/stm instruction.
160 /// Whether the instructions can be merged into a ldrd/strd instruction.
523 // Merge it with the update; if the merged offset is too large,
690 // The merged instruction does not exist yet but will use several Regs if
787 // - the base register is killed by the merged instruction,
812 // The base isn't dead after a merged instruction with writeback.
908 MachineInstr *Merged = nullptr;
910 Merged = CreateLoadStoreDouble(MBB, InsertBefore, Offset, Base, BaseKill
    [all...]
ARMISelLowering.cpp 6469 SDValue Merged = DAG.getNode(ISD::AND, dl, SplitVT, Cmp, Reversed);
6470 Merged = DAG.getNode(ISD::BITCAST, dl, CmpVT, Merged);
6472 Merged = DAG.getNOT(dl, Merged, CmpVT);
6473 Merged = DAG.getSExtOrTrunc(Merged, dl, VT);
6474 return Merged;
12280 // Create the merged node.
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
Miscompilation.cpp 223 /// return the merged module. The Broken argument will be set to true if the
232 auto Merged = CloneModule(M1);
233 if (Linker::linkModules(*Merged, CloneModule(M2)))
238 Expected<bool> Diff = BD.diffProgram(*Merged, "", "", false);
242 return std::move(Merged);
350 // Merged program doesn't work anymore!
719 outs() << " Checking to see if the merged program executes correctly: ";
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DebugInfoMetadata.cpp 91 auto *Merged = Locs[0];
93 Merged = getMergedLocation(Merged, L);
94 if (Merged == nullptr)
97 return Merged;
Attributes.cpp 1433 AttrBuilder Merged(getAttributes(Index));
1434 Merged.merge(B);
1435 return setAttributes(C, Index, AttributeSet::get(C, Merged));
2323 // the other, in the merged function we can say that the NoNansFPMathAttr
2327 // that aspect in the merged function.
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 777 APInt Merged = (EarlierValue & ~Mask) | (LaterValue << LShiftAmount);
780 << "\n Merged Value: " << Merged << '\n');
781 return ConstantInt::get(Earlier->getValueOperand()->getType(), Merged);
1957 if (Constant *Merged = tryToMergePartialOverlappingStores(
1961 // Update stored value of earlier store to merged constant.
1962 Earlier->setOperand(0, Merged);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlan.cpp 750 bool Merged = MergeBlockIntoPredecessor(VectorLatchBB, nullptr, State->LI);
751 (void)Merged;
752 assert(Merged && "Could not merge last basic block with latch.");
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 397 bool Merged = false;
414 Merged = true;
419 if (!Merged)
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaLookup.cpp 1568 for (const Module *Merged : Context.getModulesWithMergedDefinition(Def))
1569 if (isModuleVisible(Merged))
1575 for (const Module *Merged : Context.getModulesWithMergedDefinition(Def))
1576 if (isInCurrentModule(Merged, getLangOpts()))
1727 // parent was merged with another definition in the current module.
5344 auto Merged = Context.getModulesWithMergedDefinition(Def);
5345 OwningModules.insert(OwningModules.end(), Merged.begin(), Merged.end());
SemaTemplateDeduction.cpp 366 TemplateArgument Merged = checkDeducedTemplateArguments(
369 if (Merged.isNull() && !(XA->isNull() && YA->isNull()))
371 NewPack.push_back(Merged);
921 // Pick where we're going to put the merged pack.
SemaDecl.cpp 2595 // overloading purposes and must not be merged.
3222 /// merged with.
3855 QualType Merged = Context.mergeTypes(Old->getType(), New->getType());
3856 if (!Merged.isNull() && MergeTypeWithOld)
3857 New->setType(Merged);
4235 // This definition won't be a definition any more once it's been merged.
10744 // Determine whether the type of this function should be merged with
10858 // merged.
10875 // NewTemplateDecl that needs to be merged with OldTemplateDecl before we
11006 // In C++, check default arguments now that we have merged decls. Unles
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp 642 bool Merged = false;
666 Merged = true;
669 if (!Merged) {
680 // This Debug Info could tell us which allocas are merged into one slot.
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBlocks.cpp 108 Merged
146 Name += getBlockCaptureStr(E, CaptureStrKind::Merged,
1747 // CaptureStrKind::Merged should be passed only when the operations and the
1749 assert((StrKind != CaptureStrKind::Merged ||
1784 // If CaptureStrKind::Merged is passed, check both the copy expression
1815 // If CaptureStrKind::Merged is passed, use the copy constructor string.
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegisterCoalescer.cpp 145 /// vreg => {set of vregs merged in}.
492 // SrcReg will be merged with a sub-register of DstReg.
496 // DstReg will be merged with a sub-register of SrcReg.
772 // to be removed. This segment is going to be merged with a pre-existing
778 LiveRange::Segment &Merged = *Dst.addSegment(Added);
779 if (Merged.end.isDead())
2083 // CP.getSrcReg()'s live interval has been merged into CP.getDstReg's live
2085 // is not up-to-date, need to update the merged live interval here.
2095 // being merged.
2249 // be removed, and the value will be merged with the source value
    [all...]
  /src/external/gpl2/xcvs/dist/src/
sanity.sh 23168 # will be merged more than once).
27556 * Consolidated 4100 code merged to trunk
31281 echo "Merged ./"
31305 echo "Merged ./"
31483 # Try the same exploit using the Merged response.
31488 echo "Merged $HOME/"
    [all...]

Completed in 332 milliseconds

1 2