Lines Matching refs:NameStr

160 …entPtrInstruction(Value *ptr, std::vector<Value*> &indexes, const Twine &NameStr="", Instruction *…
161 …entPtrInstruction(Value *ptr, std::vector<Value*> &indexes, const Twine &NameStr="", BasicBlock *I…
162 … createCallInstruction(Value *F, std::vector<Value*> &args, const Twine &NameStr="", Instruction *…
163 … createCallInstruction(Value *F, std::vector<Value*> &args, const Twine &NameStr="", BasicBlock *I…
468 …entPtrInstruction(Value *ptr, std::vector<Value*> &indexes, const Twine &NameStr, Instruction *Ins… in createGetElementPtrInstruction() argument
471 return GetElementPtrInst::Create(ptr, ref, NameStr, InsertBefore); in createGetElementPtrInstruction()
473 return GetElementPtrInst::Create(ptr, indexes.begin(), indexes.end(), NameStr, InsertBefore); in createGetElementPtrInstruction()
477 …entPtrInstruction(Value *ptr, std::vector<Value*> &indexes, const Twine &NameStr, BasicBlock *Inse… in createGetElementPtrInstruction() argument
480 return GetElementPtrInst::Create(ptr, ref, NameStr, InsertAtEnd); in createGetElementPtrInstruction()
482 return GetElementPtrInst::Create(ptr, indexes.begin(), indexes.end(), NameStr, InsertAtEnd); in createGetElementPtrInstruction()
486 …:createCallInstruction(Value *F, std::vector<Value*> &args, const Twine &NameStr, Instruction *Ins… in createCallInstruction() argument
489 return CallInst::Create(F, ref, NameStr, InsertBefore); in createCallInstruction()
491 return CallInst::Create(F, args.begin(), args.end(), NameStr, InsertBefore); in createCallInstruction()
495 …:createCallInstruction(Value *F, std::vector<Value*> &args, const Twine &NameStr, BasicBlock *Inse… in createCallInstruction() argument
498 return CallInst::Create(F, ref, NameStr, InsertAtEnd); in createCallInstruction()
500 return CallInst::Create(F, args.begin(), args.end(), NameStr, InsertAtEnd); in createCallInstruction()