| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| H A D | CloneModule.cpp | 131 GV->addMetadata(MD.first, *MapMetadata(MD.second, VMap)); in CloneModule() 158 F->addMetadata(MD.first, *MapMetadata(MD.second, VMap)); in CloneModule()
|
| H A D | ValueMapper.cpp | 994 GO.addMetadata(I.first, *cast<MDNode>(mapMetadata(I.second))); in remapGlobalObjectMetadata()
|
| H A D | CloneFunction.cpp | 260 NewFunc->addMetadata(MD.first, *MapMetadata(MD.second, VMap, RemapFlag, in CloneFunctionInto()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | Metadata.cpp | 1359 void Value::addMetadata(unsigned KindID, MDNode &MD) { in addMetadata() function in Value 1366 void Value::addMetadata(StringRef Kind, MDNode &MD) { in addMetadata() function in Value 1367 addMetadata(getContext().getMDKindID(Kind), MD); in addMetadata() 1561 addMetadata(LLVMContext::MD_type, in copyMetadata() 1587 addMetadata(MD.first, *Attachment); in copyMetadata() 1592 addMetadata( in addTypeMetadata() 1604 addMetadata(LLVMContext::MD_vcall_visibility, in setVCallVisibilityMetadata() 1639 addMetadata(LLVMContext::MD_dbg, *GV); in addDebugInfo()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanRecipes.cpp | 494 State.addMetadata(V, &CI); in execute() 552 State.addMetadata(Sel, &I); in execute() 609 State.addMetadata(V, &I); in execute() 644 State.addMetadata(C, &I); in execute() 674 State.addMetadata(Cast, &I); in execute() 770 State.addMetadata(EntryPart, GEP); in execute() 813 State.addMetadata(NewGEP, GEP); in execute()
|
| H A D | VPlan.cpp | 245 void VPTransformState::addMetadata(Instruction *To, Instruction *From) { in addMetadata() function in VPTransformState 250 void VPTransformState::addMetadata(ArrayRef<Value *> To, Instruction *From) { in addMetadata() function in VPTransformState 253 addMetadata(I, From); in addMetadata()
|
| H A D | VPlan.h | 319 void addMetadata(Instruction *To, Instruction *From); 323 void addMetadata(ArrayRef<Value *> To, Instruction *From);
|
| H A D | LoopVectorize.cpp | 2686 Group->addMetadata(NewLoad); in vectorizeInterleaveGroup() 2789 Group->addMetadata(NewStoreInstr); in vectorizeInterleaveGroup() 9436 State.addMetadata(LastInduction, EntryVal); in execute() 9797 State.addMetadata(NewSI, SI); in execute() 9812 State.addMetadata(NewLI, LI); in execute() 9825 State.addMetadata(NewLI, LI); in execute()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | MachineInstr.cpp | 2130 return MIB.addMetadata(Variable).addMetadata(Expr); in BuildMI() 2154 return MIB.addMetadata(Variable).addMetadata(Expr); in BuildMI() 2158 MIB.addMetadata(Variable).addMetadata(Expr); in BuildMI() 2237 NewMI.addMetadata(Orig.getDebugVariable()).addMetadata(Expr); in buildDbgValueForSpill() 2258 NewMI.addMetadata(Orig.getDebugVariable()).addMetadata(Expr); in buildDbgValueForSpill()
|
| H A D | JMCInstrumenter.cpp | 117 GV.addMetadata(LLVMContext::MD_dbg, *DGVE); in attachDebugInfo()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | GlobalObject.h | 126 using Value::addMetadata;
|
| H A D | Value.h | 608 void addMetadata(unsigned KindID, MDNode &MD); 609 void addMetadata(StringRef Kind, MDNode &MD);
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | InstrEmitter.cpp | 912 MIB.addMetadata(Var); in EmitDbgValueList() 913 MIB.addMetadata(Expr); in EmitDbgValueList() 950 return MIB.addMetadata(Var).addMetadata(Expr); in EmitDbgValueFromSingleOp() 962 MIB.addMetadata(Label); in EmitDbgLabel() 1386 MIB.addMetadata(MD); in EmitSpecialNode()
|
| H A D | FastISel.cpp | 1175 MIB.addMetadata(SrcLoc); in selectCall() 1296 .addMetadata(DI->getVariable()) in selectIntrinsicCall() 1297 .addMetadata(Expr); in selectIntrinsicCall() 1302 .addMetadata(DI->getVariable()) in selectIntrinsicCall() 1303 .addMetadata(Expr); in selectIntrinsicCall() 1308 .addMetadata(DI->getVariable()) in selectIntrinsicCall() 1309 .addMetadata(DI->getExpression()); in selectIntrinsicCall() 1345 TII.get(TargetOpcode::DBG_LABEL)).addMetadata(DI->getLabel()); in selectIntrinsicCall()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/ |
| H A D | GlobalSplit.cpp | 107 SplitGV->addMetadata( in splitGlobal()
|
| H A D | ThinLTOBitcodeWriter.cpp | 159 GO.addMetadata(LLVMContext::MD_type, *MD); in promoteTypeIds() 162 GO.addMetadata( in promoteTypeIds()
|
| H A D | DeadArgumentElimination.cpp | 242 NF->addMetadata(KindID, *Node); in deleteDeadVarargs() 1066 NF->addMetadata(KindID, *Node); in removeDeadStuffFromFunction()
|
| H A D | Attributor.cpp | 2576 Wrapper->addMetadata(MDIt.first, *MDIt.second); in createShallowWrapper() 2656 Copied->addMetadata(MDIt.first, *MDIt.second); in internalizeFunctions()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/ |
| H A D | MachineIRBuilder.cpp | 86 .addMetadata(Variable) in buildFIDbgValue() 87 .addMetadata(Expr); in buildFIDbgValue() 121 MIB.addImm(0).addMetadata(Variable).addMetadata(Expr); in buildConstDbgValue() 131 return MIB.addMetadata(Label); in buildDbgLabel()
|
| H A D | InlineAsmLowering.cpp | 596 Inst.addMetadata(SrcLoc); in lowerInlineAsm()
|
| H A D | IRTranslator.cpp | 2209 .addMetadata(cast<MDNode>(cast<MetadataAsValue>(Arg)->getMetadata())); in translateKnownIntrinsic() 2215 .addMetadata(cast<MDNode>(cast<MetadataAsValue>(Arg)->getMetadata())) in translateKnownIntrinsic() 2471 MIB.addMetadata(MDN); in translateCall()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | VectorUtils.h | 718 void addMetadata(InstTy *NewInst) const;
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | VectorUtils.cpp | 1518 void InterleaveGroup<InstT>::addMetadata(InstT *NewInst) const { in addMetadata() function in InterleaveGroup 1524 void InterleaveGroup<Instruction>::addMetadata(Instruction *NewInst) const { in addMetadata() function in llvm::InterleaveGroup
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | MachineInstrBuilder.h | 236 const MachineInstrBuilder &addMetadata(const MDNode *MD) const { in addMetadata() function
|
| /openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/ |
| H A D | MetadataLoader.cpp | 518 GV.addMetadata(LLVMContext::MD_dbg, *DGVE); in upgradeCUVariables() 520 GV.addMetadata(LLVMContext::MD_dbg, *MD); in upgradeCUVariables() 2212 GO.addMetadata(K->second, *MD); in parseGlobalObjectAttachment()
|