HomeSort by: relevance | last modified time | path
    Searched defs:TBAA (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
InferAddressSpaces.cpp 936 MDNode *TBAA = MI->getMetadata(LLVMContext::MD_tbaa);
944 TBAA, ScopeMD, NoAliasMD);
961 TBAA, TBAAStruct, ScopeMD, NoAliasMD);
967 TBAA, ScopeMD, NoAliasMD);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenModule.h 316 std::unique_ptr<CodeGenTBAA> TBAA;
722 bool shouldUseTBAA() const { return TBAA != nullptr; }
745 /// getTBAAAccessInfo - Get TBAA information that describes an access to
749 /// getTBAAVTablePtrAccessInfo - Get the TBAA information that describes an
756 /// type. Return null if the type is not suitable for use in TBAA access tags.
759 /// getTBAAAccessTagInfo - Get TBAA tag for a given memory access.
762 /// mergeTBAAInfoForCast - Get merged TBAA information for the purposes of
767 /// mergeTBAAInfoForConditionalOperator - Get merged TBAA information for the
772 /// mergeTBAAInfoForMemoryTransfer - Get merged TBAA information for the
777 /// getTBAAInfoForSubobject - Get TBAA information for an access with a give
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Metadata.h 654 : TBAA(T), TBAAStruct(TS), Scope(S), NoAlias(N) {}
657 return TBAA == A.TBAA && TBAAStruct == A.TBAAStruct && Scope == A.Scope &&
664 return TBAA || TBAAStruct || Scope || NoAlias;
668 MDNode *TBAA = nullptr;
670 /// The tag for type-based alias analysis (tbaa struct).
679 // Shift tbaa Metadata node to start off bytes later
682 // Shift tbaa.struct Metadata node to start off bytes later
692 Result.TBAA = Other.TBAA == TBAA ? TBAA : nullptr
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 160 // Strip all the TBAA attachment for the module.
5597 // Check if the TBAA Metadata are valid, otherwise we will need to strip them.
5600 MDNode *TBAA = I.getMetadata(LLVMContext::MD_tbaa);
5601 if (!TBAA || TBAAVerifyHelper.visitTBAAMetadata(I, TBAA))

Completed in 24 milliseconds