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

  /src/external/apache2/llvm/dist/llvm/lib/IR/
AbstractCallSite.cpp 45 for (const MDOperand &Op : CallbackMD->operands()) {
103 for (const MDOperand &Op : CallbackMD->operands()) {
Metadata.cpp 188 "Unexpected move of an MDOperand");
495 size_t OpSize = NumOps * sizeof(MDOperand);
500 MDOperand *O = static_cast<MDOperand *>(Ptr);
501 for (MDOperand *E = O - NumOps; O != E; --O)
502 (void)new (O - 1) MDOperand;
510 size_t OpSize = N->NumOperands * sizeof(MDOperand);
513 MDOperand *O = static_cast<MDOperand *>(Mem);
514 for (MDOperand *E = O - N->NumOperands; O != E; --O
    [all...]
LLVMContextImpl.cpp 158 /// Make MDOperand transparent for hashing.
161 /// MDOperand hash to the same value as a \a Metadata pointer.
166 /// size_t hash_value(const MDOperand &X) { return hash_value(X.get()); }
169 /// does not cause MDOperand to be transparent. In particular, a bare pointer
170 /// doesn't get hashed before it's combined, whereas \a MDOperand would.
171 static const Metadata *get_hashable_data(const MDOperand &X) { return X.get(); }
182 "Expected hash of MDOperand to equal hash of Metadata*");
DebugInfo.cpp 389 if (std::none_of(N->op_begin() + 1, N->op_end(), [](const MDOperand &Op) {
396 if (std::none_of(N->op_begin() + 1, N->op_end(), [](const MDOperand &Op) {
Verifier.cpp 457 void visitModuleFlagCGProfileEntry(const MDOperand &MDO);
1631 for (const MDOperand &MDO : cast<MDNode>(Op->getOperand(2))->operands())
1636 void Verifier::visitModuleFlagCGProfileEntry(const MDOperand &MDO) {
1637 auto CheckFunction = [&](const MDOperand &FuncMDO) {
4380 for (const MDOperand &Op : Annotation->operands())
5886 const MDOperand &FieldTy = BaseNode->getOperand(Idx);
5887 const MDOperand &FieldOffset = BaseNode->getOperand(Idx + 1);
DIBuilder.cpp 1055 for (const MDOperand &O : T->operands())
LLVMContextImpl.h 186 ArrayRef<MDOperand> Ops;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
AnnotationRemarks.cpp 40 for (const MDOperand &Op :
96 for (const MDOperand &Op :
LoopDistribute.cpp 941 Optional<const MDOperand *> Value =
946 const MDOperand *Op = *Value;
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Metadata.h 744 class MDOperand {
748 MDOperand() = default;
749 MDOperand(MDOperand &&) = delete;
750 MDOperand(const MDOperand &) = delete;
751 MDOperand &operator=(MDOperand &&) = delete;
752 MDOperand &operator=(const MDOperand &) = delete
    [all...]
DebugInfoMetadata.h 280 const MDOperand &getDwarfOperand(unsigned I) const {
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScopedNoAliasAA.cpp 112 for (const MDOperand &MDOp : List->operands())
125 for (const MDOperand &MDOp : NoAlias->operands())
LoopInfo.cpp 577 for (const MDOperand &MD : drop_begin(ParallelAccesses->operands())) {
602 for (const MDOperand &AccessListItem : AG->operands()) {
VectorUtils.cpp 692 for (const MDOperand &Node : MD1->operands()) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
LoopUtils.h 218 Optional<const MDOperand *> findStringMetadataForLoop(const Loop *TheLoop,
  /src/external/apache2/llvm/dist/llvm/lib/Target/
TargetLoweringObjectFile.cpp 170 auto GetSym = [this](const MDOperand &MDO) -> MCSymbol * {
  /src/external/apache2/llvm/dist/llvm/lib/Object/
IRSymtab.cpp 153 for (const MDOperand &MDOption : cast<MDNode>(MDOptions)->operands())
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LoopUtils.cpp 263 Optional<const MDOperand *> llvm::findStringMetadataForLoop(const Loop *TheLoop,
316 const MDOperand *AttrMD =
347 for (const MDOperand &Existing : drop_begin(OrigLoopID->operands())) {
384 for (const MDOperand &Option : drop_begin(FollowupNode->operands())) {
CloneFunction.cpp 935 for (auto &MDOperand : ScopeList->operands()) {
936 if (MDNode *MD = dyn_cast<MDNode>(MDOperand)) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 3795 for (auto &MDOperand : MDScopeList->operands())
3796 if (auto *MDScope = dyn_cast<MDNode>(MDOperand))
3814 auto &MDOperand = MDSL->getOperand(0);
3815 if (auto *MD = dyn_cast<MDNode>(MDOperand))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 549 const MDOperand &Op = MD->getOperand(0);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 3057 for (const MDOperand &MDOptions : cast<MDNode>(Val)->operands())

Completed in 42 milliseconds