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

  /external/llvm/lib/IR/
MetadataImpl.h 31 case Uniqued:
45 case Uniqued:
Metadata.cpp 468 // Make this 'uniqued'.
469 Storage = Uniqued;
473 assert(isUniqued() && "Expected this to be uniqued");
480 // Pretend to be uniqued, resolve the node, and then store in distinct table.
481 Storage = Uniqued;
490 assert(isUniqued() && "Expected this to be uniqued");
605 // This node is not uniqued. Just set the operand and be done with it.
610 // This node is uniqued.
625 auto *Uniqued = uniquify();
626 if (Uniqued == this)
    [all...]
DebugInfoMetadata.cpp 49 if (Storage == Uniqued) {
57 assert(ShouldCreate && "Expected non-uniqued nodes to always be created");
181 if (Storage == Uniqued) {
189 assert(ShouldCreate && "Expected non-uniqued nodes to always be created");
208 if (Storage == Uniqued) { \
216 "Expected non-uniqued nodes to always be created"); \
320 assert(Storage != Uniqued && "Cannot unique DICompileUnit");
  /external/llvm/include/llvm/IR/
Metadata.h 50 enum StorageType { Uniqued, Distinct, Temporary };
52 /// \brief Storage flag for non-uniqued, otherwise unowned, metadata.
265 : Metadata(ID, Uniqued), ReplaceableMetadataImpl(V->getContext()), V(V) {
504 /// \brief A single uniqued string.
516 MDString() : Metadata(MDStringKind, Uniqued), Entry(nullptr) {}
517 MDString(MDString &&) : Metadata(MDStringKind, Uniqued) {}
728 /// Metadata nodes can be uniqued, like constants, or distinct. Temporary
734 /// time, if any operand is a temporary node (or an unresolved uniqued node,
819 bool isUniqued() const { return Storage == Uniqued; }
843 /// Try to create a uniqued version of \c N -- in place, if possible -- an
    [all...]
DebugInfoMetadata.h 35 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued); \
39 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued, \
554 assert(!isUniqued() && "Cannot set flags on uniqued nodes");
    [all...]
  /external/clang/tools/scan-build/libexec/
ccc-analyzer 456 my %Uniqued;
561 if (defined $Uniqued{$Arg}) {
565 $Uniqued{$Arg} = 1;
  /prebuilts/clang/darwin-x86/host/3.6/tools/scan-build/
ccc-analyzer 446 my %Uniqued;
551 if (defined $Uniqued{$Arg}) {
555 $Uniqued{$Arg} = 1;
  /prebuilts/clang/host/darwin-x86/3.8/tools/scan-build/
ccc-analyzer 449 my %Uniqued;
554 if (defined $Uniqued{$Arg}) {
558 $Uniqued{$Arg} = 1;
  /prebuilts/clang/host/darwin-x86/clang-2629532/tools/scan-build/libexec/
ccc-analyzer 456 my %Uniqued;
561 if (defined $Uniqued{$Arg}) {
565 $Uniqued{$Arg} = 1;
  /prebuilts/clang/host/darwin-x86/clang-2658975/tools/scan-build/libexec/
ccc-analyzer 456 my %Uniqued;
561 if (defined $Uniqued{$Arg}) {
565 $Uniqued{$Arg} = 1;
  /prebuilts/clang/host/darwin-x86/clang-2690385/tools/scan-build/libexec/
ccc-analyzer 456 my %Uniqued;
561 if (defined $Uniqued{$Arg}) {
565 $Uniqued{$Arg} = 1;
  /prebuilts/clang/host/linux-x86/3.8/tools/scan-build/
ccc-analyzer 449 my %Uniqued;
554 if (defined $Uniqued{$Arg}) {
558 $Uniqued{$Arg} = 1;
  /prebuilts/clang/host/linux-x86/clang-2629532/tools/scan-build/libexec/
ccc-analyzer 456 my %Uniqued;
561 if (defined $Uniqued{$Arg}) {
565 $Uniqued{$Arg} = 1;
  /prebuilts/clang/host/linux-x86/clang-2658975/tools/scan-build/libexec/
ccc-analyzer 456 my %Uniqued;
561 if (defined $Uniqued{$Arg}) {
565 $Uniqued{$Arg} = 1;
  /prebuilts/clang/host/linux-x86/clang-2690385/tools/scan-build/libexec/
ccc-analyzer 456 my %Uniqued;
561 if (defined $Uniqued{$Arg}) {
565 $Uniqued{$Arg} = 1;
  /prebuilts/clang/linux-x86/host/3.6/tools/scan-build/
ccc-analyzer 446 my %Uniqued;
551 if (defined $Uniqued{$Arg}) {
555 $Uniqued{$Arg} = 1;
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-build/
ccc-analyzer 424 my %Uniqued;
518 if (defined $Uniqued{$Arg}) {
522 $Uniqued{$Arg} = 1;
  /prebuilts/misc/linux-x86/analyzer/tools/scan-build/
ccc-analyzer 424 my %Uniqued;
518 if (defined $Uniqued{$Arg}) {
522 $Uniqued{$Arg} = 1;
  /external/llvm/unittests/IR/
MetadataTest.cpp 232 // uniqued node that references Self, not Self.
250 // uniqued node that references Self, not Self itself.
623 // Should collide with Uniqued above this time.
624 auto *Uniqued = MDNode::replaceWithUniqued(std::move(Temp));
625 EXPECT_TRUE(Uniqued->isUniqued());
626 EXPECT_TRUE(Uniqued->isResolved());
627 EXPECT_EQ(FirstUniqued, Uniqued);
636 auto *Uniqued = MDNode::replaceWithUniqued(std::move(Temp));
637 EXPECT_TRUE(Uniqued->isUniqued());
638 EXPECT_FALSE(Uniqued->isResolved())
    [all...]
  /external/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp     [all...]

Completed in 358 milliseconds