HomeSort by: relevance | last modified time | path
    Searched refs:Uniqued (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/IR/
MetadataImpl.h 30 case Uniqued:
44 case Uniqued:
Metadata.cpp 556 assert(isUniqued() && "Expected this to be uniqued");
568 // Make this 'uniqued'.
569 Storage = Uniqued;
576 assert(isUniqued() && "Expected this to be uniqued");
592 assert(isUniqued() && "Expected this to be uniqued");
610 assert(isUniqued() && "Expected this to be uniqued");
627 assert(isUniqued() && "Expected this to be uniqued");
716 // This node is not uniqued. Just set the operand and be done with it.
721 // This node is uniqued.
736 auto *Uniqued = uniquify()
    [all...]
DebugInfoMetadata.cpp 65 if (Storage == Uniqued) {
73 assert(ShouldCreate && "Expected non-uniqued nodes to always be created");
289 if (Storage == Uniqued) {
297 assert(ShouldCreate && "Expected non-uniqued nodes to always be created");
316 if (Storage == Uniqued) { \
324 "Expected non-uniqued nodes to always be created"); \
747 assert(Storage != Uniqued && "Cannot unique DICompileUnit");
  /src/external/apache2/llvm/dist/clang/tools/scan-build/libexec/
ccc-analyzer 451 my %Uniqued;
560 if (defined $Uniqued{$Arg}) {
564 $Uniqued{$Arg} = 1;
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Metadata.h 70 enum StorageType { Uniqued, Distinct, Temporary };
72 /// Storage flag for non-uniqued, otherwise unowned, metadata.
231 /// re-uniqued.
240 /// re-uniqued.
357 : Metadata(ID, Uniqued), ReplaceableMetadataImpl(V->getContext()), V(V) {
607 /// A single uniqued string.
616 MDString() : Metadata(MDStringKind, Uniqued) {}
883 /// Metadata nodes can be uniqued, like constants, or distinct. Temporary
889 /// time, if any operand is a temporary node (or an unresolved uniqued node,
975 bool isUniqued() const { return Storage == Uniqued; }
    [all...]
DebugInfoMetadata.h 54 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued); \
58 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued, \
1071 assert(getRawIdentifier() && "Only ODR-uniqued nodes should mutate");
1364 assert(Storage != Uniqued);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp 2392 std::set<CallBase *> Uniqued;
2393 Uniqued.insert(ToUpdate.begin(), ToUpdate.end());
2394 assert(Uniqued.size() == ToUpdate.size() && "no duplicates please!");

Completed in 50 milliseconds