HomeSort by relevance Sort by last modified time
    Searched refs:Uniqued (Results 1 - 16 of 16) sorted by null

  /external/llvm/lib/IR/
MetadataImpl.h 31 case Uniqued:
45 case Uniqued:
DebugInfoMetadata.cpp 48 if (Storage == Uniqued) {
56 assert(ShouldCreate && "Expected non-uniqued nodes to always be created");
166 if (Storage == Uniqued) {
174 assert(ShouldCreate && "Expected non-uniqued nodes to always be created");
193 if (Storage == Uniqued) { \
201 "Expected non-uniqued nodes to always be created"); \
365 assert(Storage != Uniqued && "Cannot unique DICompileUnit");
Metadata.cpp 504 assert(isUniqued() && "Expected this to be uniqued");
516 // Make this 'uniqued'.
517 Storage = Uniqued;
524 assert(isUniqued() && "Expected this to be uniqued");
540 assert(isUniqued() && "Expected this to be uniqued");
558 assert(isUniqued() && "Expected this to be uniqued");
575 assert(isUniqued() && "Expected this to be uniqued");
667 // This node is not uniqued. Just set the operand and be done with it.
672 // This node is uniqued.
687 auto *Uniqued = uniquify()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
MetadataImpl.h 31 case Uniqued:
45 case Uniqued:
DebugInfoMetadata.cpp 51 if (Storage == Uniqued) {
59 assert(ShouldCreate && "Expected non-uniqued nodes to always be created");
197 if (Storage == Uniqued) {
205 assert(ShouldCreate && "Expected non-uniqued nodes to always be created");
224 if (Storage == Uniqued) { \
232 "Expected non-uniqued nodes to always be created"); \
453 assert(Storage != Uniqued && "Cannot unique DICompileUnit");
    [all...]
Metadata.cpp 541 assert(isUniqued() && "Expected this to be uniqued");
553 // Make this 'uniqued'.
554 Storage = Uniqued;
561 assert(isUniqued() && "Expected this to be uniqued");
577 assert(isUniqued() && "Expected this to be uniqued");
595 assert(isUniqued() && "Expected this to be uniqued");
612 assert(isUniqued() && "Expected this to be uniqued");
704 // This node is not uniqued. Just set the operand and be done with it.
709 // This node is uniqued.
724 auto *Uniqued = uniquify()
    [all...]
  /external/clang/tools/scan-build/libexec/
ccc-analyzer 456 my %Uniqued;
564 if (defined $Uniqued{$Arg}) {
568 $Uniqued{$Arg} = 1;
  /external/llvm/include/llvm/IR/
Metadata.h 52 enum StorageType { Uniqued, Distinct, Temporary };
54 /// \brief Storage flag for non-uniqued, otherwise unowned, metadata.
202 /// re-uniqued.
211 /// re-uniqued.
325 : Metadata(ID, Uniqued), ReplaceableMetadataImpl(V->getContext()), V(V) {
564 /// \brief A single uniqued string.
576 MDString() : Metadata(MDStringKind, Uniqued), Entry(nullptr) {}
794 /// Metadata nodes can be uniqued, like constants, or distinct. Temporary
800 /// time, if any operand is a temporary node (or an unresolved uniqued node,
885 bool isUniqued() const { return Storage == Uniqued; }
    [all...]
DebugInfoMetadata.h 35 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued); \
39 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued, \
51 /// union beteen MDString (for ODR-uniqued types) and things like DIType. To
561 assert(!isUniqued() && "Cannot set flags on uniqued nodes");
787 assert(getRawIdentifier() && "Only ODR-uniqued nodes should mutate");
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Metadata.h 66 enum StorageType { Uniqued, Distinct, Temporary };
68 /// Storage flag for non-uniqued, otherwise unowned, metadata.
227 /// re-uniqued.
236 /// re-uniqued.
350 : Metadata(ID, Uniqued), ReplaceableMetadataImpl(V->getContext()), V(V) {
598 /// A single uniqued string.
607 MDString() : Metadata(MDStringKind, Uniqued) {}
848 /// Metadata nodes can be uniqued, like constants, or distinct. Temporary
854 /// time, if any operand is a temporary node (or an unresolved uniqued node,
940 bool isUniqued() const { return Storage == Uniqued; }
    [all...]
DebugInfoMetadata.h 53 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued); \
57 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued, \
67 /// union beteen MDString (for ODR-uniqued types) and things like DIType. To
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Metadata.h 63 enum StorageType { Uniqued, Distinct, Temporary };
65 /// \brief Storage flag for non-uniqued, otherwise unowned, metadata.
214 /// re-uniqued.
223 /// re-uniqued.
338 : Metadata(ID, Uniqued), ReplaceableMetadataImpl(V->getContext()), V(V) {
582 /// \brief A single uniqued string.
590 MDString() : Metadata(MDStringKind, Uniqued), Entry(nullptr) {}
816 /// Metadata nodes can be uniqued, like constants, or distinct. Temporary
822 /// time, if any operand is a temporary node (or an unresolved uniqued node,
907 bool isUniqued() const { return Storage == Uniqued; }
    [all...]
  /external/llvm/unittests/IR/
MetadataTest.cpp 234 // uniqued node that references Self, not Self.
252 // uniqued node that references Self, not Self itself.
625 // Should collide with Uniqued above this time.
626 auto *Uniqued = MDNode::replaceWithUniqued(std::move(Temp));
627 EXPECT_TRUE(Uniqued->isUniqued());
628 EXPECT_TRUE(Uniqued->isResolved());
629 EXPECT_EQ(FirstUniqued, Uniqued);
638 auto *Uniqued = MDNode::replaceWithUniqued(std::move(Temp));
639 EXPECT_TRUE(Uniqued->isUniqued());
640 EXPECT_FALSE(Uniqued->isResolved())
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
MetadataTest.cpp 235 // uniqued node that references Self, not Self.
253 // uniqued node that references Self, not Self itself.
660 // Should collide with Uniqued above this time.
661 auto *Uniqued = MDNode::replaceWithUniqued(std::move(Temp));
662 EXPECT_TRUE(Uniqued->isUniqued());
663 EXPECT_TRUE(Uniqued->isResolved());
664 EXPECT_EQ(FirstUniqued, Uniqued);
673 auto *Uniqued = MDNode::replaceWithUniqued(std::move(Temp));
674 EXPECT_TRUE(Uniqued->isUniqued());
675 EXPECT_FALSE(Uniqued->isResolved())
    [all...]
  /external/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp     [all...]

Completed in 688 milliseconds