Searched refs:New (Results 26 - 50 of 134) sorted by relevance

123456

/freebsd-10.2-release/contrib/llvm/include/llvm/Analysis/
H A DCallGraphSCCPass.h97 /// Old node has been deleted, and New is to be used in its place.
98 void ReplaceNode(CallGraphNode *Old, CallGraphNode *New);
H A DLoopInfo.h549 void addTopLevelLoop(LoopT *New) { argument
550 assert(New->getParentLoop() == 0 && "Loop already in subloop!");
551 TopLevelLoops.push_back(New);
672 inline void addTopLevelLoop(Loop *New) { argument
673 LI.addTopLevelLoop(New);
/freebsd-10.2-release/contrib/llvm/include/llvm/Target/
H A DTargetJITInfo.h42 virtual void replaceMachineCodeForFunction(void *Old, void *New) = 0;
/freebsd-10.2-release/contrib/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp44 Matcher *New = 0; local
47 New = new RecordChildMatcher(MC->getChildNo(), RM->getWhatFor(),
53 New = new CheckChildTypeMatcher(MC->getChildNo(), CT->getType());
57 New = new CheckChildSameMatcher(MC->getChildNo(), CS->getMatchNumber());
59 if (New) {
61 New->setNext(MatcherPtr.take());
62 MatcherPtr.reset(New);
/freebsd-10.2-release/contrib/llvm/lib/IR/
H A DModule.cpp145 Function *New = Function::Create(Ty, GlobalVariable::ExternalLinkage, Name); local
146 if (!New->isIntrinsic()) // Intrinsics get attrs set on construction
147 New->setAttributes(AttributeList);
148 FunctionList.push_back(New);
149 return New; // Return the new prototype.
255 GlobalVariable *New = local
258 return New; // Return the new declaration.
H A DInstruction.cpp542 Instruction *New = clone_impl(); local
543 New->SubclassOptionalData = SubclassOptionalData;
545 return New;
552 New->setMetadata(TheMDs[i].first, TheMDs[i].second);
554 New->setDebugLoc(getDebugLoc());
555 return New;
/freebsd-10.2-release/contrib/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp728 Instruction *New; local
730 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
732 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
733 cast<InvokeInst>(New)->setAttributes(AttributeSet::get(II->getContext(),
736 New = CallInst::Create(NF, Args, "", Call);
737 cast<CallInst>(New)->setCallingConv(CS.getCallingConv());
738 cast<CallInst>(New)->setAttributes(AttributeSet::get(New->getContext(),
741 cast<CallInst>(New)->setTailCall();
748 AA.replaceWithNewValue(Call, New);
[all...]
H A DPruneEH.cpp216 BasicBlock *New = BB->splitBasicBlock(I); local
222 DeleteBasicBlock(New); // Delete the new BB.
/freebsd-10.2-release/contrib/llvm/lib/Target/Mips/
H A DMipsJITInfo.cpp29 void MipsJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
30 unsigned NewAddr = (intptr_t)New;
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp216 MDNode *New = MapValue(Old, VMap, Flags, TypeMapper, Materializer); local
217 if (New != Old)
218 I->setMetadata(MI->first, New);
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp76 const AlignedAttr *Aligned, Decl *New, bool IsPackExpansion) {
82 S.AddAlignedAttr(Aligned->getLocation(), New, Result.takeAs<Expr>(),
89 S.AddAlignedAttr(Aligned->getLocation(), New, Result,
96 const AlignedAttr *Aligned, Decl *New) {
98 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, false);
123 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, true);
127 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, false);
133 const Decl *Tmpl, Decl *New,
143 instantiateDependentAlignedAttr(*this, TemplateArgs, Aligned, New);
154 LateAttrs->push_back(LateInstantiatedAttribute(TmplAttr, Saved, New));
74 instantiateDependentAlignedAttr( Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const AlignedAttr *Aligned, Decl *New, bool IsPackExpansion) argument
94 instantiateDependentAlignedAttr( Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs, const AlignedAttr *Aligned, Decl *New) argument
132 InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs, const Decl *Tmpl, Decl *New, LateInstantiatedAttrVec *LateAttrs, LocalInstantiationScope *OuterMostScope) argument
2993 InstantiateExceptionSpec(Sema &SemaRef, FunctionDecl *New, const FunctionProtoType *Proto, const MultiLevelTemplateArgumentList &TemplateArgs) argument
3159 InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl) argument
3236 InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl) argument
3946 InstantiateMemInitializers(CXXConstructorDecl *New, const CXXConstructorDecl *Tmpl, const MultiLevelTemplateArgumentList &TemplateArgs) argument
[all...]
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Scalar/
H A DLICM.cpp554 Instruction *New; local
557 New = &I;
559 New = I.clone();
561 New->setName(I.getName()+".le");
562 ExitBlock->getInstList().insert(InsertPt, New);
567 SSA.AddAvailableValue(ExitBlock, New);
H A DJumpThreading.cpp1402 Instruction *New = BI->clone(); local
1403 New->setName(BI->getName());
1404 NewBB->getInstList().push_back(New);
1405 ValueMapping[BI] = New;
1408 for (unsigned i = 0, e = New->getNumOperands(); i != e; ++i)
1409 if (Instruction *Inst = dyn_cast<Instruction>(New->getOperand(i))) {
1412 New->setOperand(i, I->second);
1547 Instruction *New = BI->clone(); local
1550 for (unsigned i = 0, e = New->getNumOperands(); i != e; ++i)
1551 if (Instruction *Inst = dyn_cast<Instruction>(New
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Rewrite/Core/
H A DDeltaTree.cpp306 DeltaTreeInteriorNode *New = new DeltaTreeInteriorNode(); local
307 memcpy(&New->Children[0], &IN->Children[WidthFactor],
309 NewNode = New;
/freebsd-10.2-release/contrib/llvm/lib/Support/
H A DFoldingSet.cpp176 unsigned *New = Allocator.Allocate<unsigned>(Bits.size()); local
177 std::uninitialized_copy(Bits.begin(), Bits.end(), New);
178 return FoldingSetNodeIDRef(New, Bits.size());
/freebsd-10.2-release/contrib/llvm/lib/Target/XCore/
H A DXCoreISelDAGToDAG.cpp183 /// by New. There must be at most one instruction between Old and Chain and
187 replaceInChain(SelectionDAG *CurDAG, SDValue Chain, SDValue Old, SDValue New) argument
190 return New;
197 Ops.push_back(New);
/freebsd-10.2-release/contrib/llvm/lib/Target/ARM/
H A DARMJITInfo.h56 virtual void replaceMachineCodeForFunction(void *Old, void *New);
/freebsd-10.2-release/contrib/llvm/lib/Analysis/IPA/
H A DCallGraphSCCPass.cpp511 /// Old node has been deleted, and New is to be used in its place.
512 void CallGraphSCC::ReplaceNode(CallGraphNode *Old, CallGraphNode *New) { argument
513 assert(Old != New && "Should not replace node with self");
517 Nodes[i] = New;
524 CGI->ReplaceNode(Old, New);
/freebsd-10.2-release/contrib/llvm/tools/bugpoint/
H A DMiscompilation.cpp336 Module *New = TestMergedProgram(BD, ToOptimizeLoopExtracted, ToNotOptimize, local
338 if (!New)
342 Module *Old = BD.swapProgramIn(New);
535 if (Module *New = BD.ExtractMappedBlocksFromModule(BBsOnClone, ToOptimize)) {
539 bool Ret = TestFn(BD, New, ToNotOptimize, Error);
739 Module *New = TestMergedProgram(BD, Optimized, Safe, true, Error, Broken); local
740 if (New) {
743 delete BD.swapProgramIn(New);
/freebsd-10.2-release/contrib/llvm/include/llvm/ADT/
H A DSCCIterator.h188 /// has been deleted, and New is to be used in its place.
189 void ReplaceNode(NodeType *Old, NodeType *New) { argument
191 nodeVisitNumbers[New] = nodeVisitNumbers[Old];
/freebsd-10.2-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp468 void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
469 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit);
/freebsd-10.2-release/sys/boot/i386/kgzldr/
H A Dcrt.s55 crt_putchr.1: cmpb $0xa,%al # New line?
72 leal 2*SCR_COL(%edi),%esi # New top line
/freebsd-10.2-release/sys/boot/pc98/kgzldr/
H A Dcrt.s51 crt_putchr.1: cmpb $0xa,%al # New line?
67 leal 2*SCR_COL(%edi),%esi # New top line
/freebsd-10.2-release/tools/tools/portsinfo/
H A Dportsinfo.sh46 New ports added last two weeks
/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp710 } else if ((KnownOne & SignBit) != 0) { // New bits are known one.
887 BinaryOperator *New;
890 New = BinaryOperator::CreateShl(VarX, Amt);
892 New->setHasNoSignedWrap(Orig->hasNoSignedWrap());
893 New->setHasNoUnsignedWrap(Orig->hasNoUnsignedWrap());
896 New = isLshr ? BinaryOperator::CreateLShr(VarX, Amt) :
899 New->setIsExact(true);
902 return InsertNewInstWith(New, *Shl);
1266 Instruction *New = local
1271 InsertNewInstWith(New, *I
[all...]

Completed in 311 milliseconds

123456