Searched refs:New (Results 101 - 125 of 134) sorted by relevance

123456

/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp995 BinaryOperator *New = local
997 New->setHasNoSignedWrap(I.hasNoSignedWrap());
998 New->setHasNoUnsignedWrap(I.hasNoUnsignedWrap());
999 return New;
H A DInstructionCombining.cpp321 BinaryOperator *New = BinaryOperator::Create(Opcode, A, B); local
322 InsertNewInstWith(New, I);
323 New->takeName(Op1);
324 I.setOperand(0, New);
1937 SmallVector<Constant *, 16> NewFilterElts; // New elements.
2006 assert(MakeNewInstruction && "New filter but not a new instruction!");
2432 << " New = " << *Result << '\n');
2461 << " New = " << *I << '\n');
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaLookup.cpp2843 void ADLResult::insert(NamedDecl *New) { argument
2844 NamedDecl *&Old = Decls[cast<NamedDecl>(New->getCanonicalDecl())];
2848 if (Old == 0 || Old == New) {
2849 Old = New;
2855 if (isa<FunctionTemplateDecl>(New)) {
2857 NewFD = cast<FunctionTemplateDecl>(New)->getTemplatedDecl();
2860 NewFD = cast<FunctionDecl>(New);
2877 Old = New;
H A DSemaTemplateInstantiate.cpp820 void transformAttrs(Decl *Old, Decl *New) { argument
821 SemaRef.InstantiateAttrs(TemplateArgs, Old, New);
824 void transformedLocalDecl(Decl *Old, Decl *New) { argument
825 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Old, New);
1765 // Introduce an Old -> New mapping
H A DSemaOverload.cpp872 // IsOverload - Determine whether the given New declaration is an
874 // New and Old cannot be overloaded, e.g., if New has the same
877 // it does return false, MatchedDecl will point to the decl that New
902 // 'NewIsUsingShadowDecl' indicates that 'New' is being introduced
907 Sema::CheckOverload(Scope *S, FunctionDecl *New, const LookupResult &Old, argument
931 !New->getFriendObjectKind();
934 if (!IsOverload(New, OldT->getTemplatedDecl(), UseMemberUsingDeclRules)) {
944 if (!IsOverload(New, OldF, UseMemberUsingDeclRules)) {
950 if (!shouldLinkPossiblyHiddenDecl(*I, New))
978 IsOverload(FunctionDecl *New, FunctionDecl *Old, bool UseUsingDeclRules) argument
[all...]
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp268 BasicBlock *New = (*I)->splitBasicBlock(RI, (*I)->getName()+".ret"); local
270 // Old dominates New. New node dominates all other nodes dominated
278 DomTreeNode *NewNode = DT->addNewBlock(New, *I);
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp379 void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) { argument
389 ExtraRegInfo.grow(New);
390 ExtraRegInfo[New] = ExtraRegInfo[Old];
1559 // 3. New ranges with the same number of instructions are marked RS_Split2,
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp641 Value *New = ConvertScalar_InsertValue(SI->getOperand(0), Old, Offset, local
643 Builder.CreateStore(New, NewAI);
672 Value *New = ConvertScalar_InsertValue( local
675 Builder.CreateStore(New, NewAI);
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1955 Constant *New = ConstantFoldConstantExpression(CE, DL); local
1956 if (New && New != CE)
1957 return emitGlobalConstantImpl(New, AP);
/freebsd-10.2-release/contrib/llvm/include/llvm/Analysis/
H A DScalarEvolution.h211 virtual void allUsesReplacedWith(Value *New);
H A DScalarEvolutionExpressions.h414 virtual void allUsesReplacedWith(Value *New);
/freebsd-10.2-release/contrib/llvm/include/llvm/Target/
H A DTargetLowering.h1776 SDValue New;
1787 New = N;
1807 /// the original and new nodes in Old and New. Otherwise, analyze the
/freebsd-10.2-release/contrib/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1209 Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr, local
1212 SCI->replaceAllUsesWith(New);
1949 Constant *New = ConstantFoldConstantExpression(CE, TD, TLI); local
1950 if (New && New != CE)
1951 GV->setInitializer(New);
/freebsd-10.2-release/contrib/llvm/lib/TableGen/
H A DRecord.cpp724 Init *New = Typed->resolveListElementReference(R, IRV, Elt); local
725 if (New)
726 return New;
/freebsd-10.2-release/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp4162 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
4175 ParseTypeAndValue(New, NewLoc, PFS) ||
4185 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
4187 if (!New->getType()->isIntegerTy())
4189 unsigned Size = New->getType()->getPrimitiveSizeInBits();
4195 new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, Scope);
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp301 SDValue New = DAG.getNode(Op.getOpcode(), dl, VT, Op.getOperand(0), local
305 return CombineTo(Op, New);
363 /// return true, returning the original and new nodes in Old and New. Otherwise,
547 SDValue New = TLO.DAG.getNode(Op.getOpcode(), dl,VT, Op.getOperand(0), local
549 return TLO.CombineTo(Op, New);
782 // New bits are known one.
H A DLegalizeDAG.cpp168 void ReplaceNode(SDNode *Old, SDNode *New) { argument
169 DAG.ReplaceAllUsesWith(Old, New);
172 void ReplaceNode(SDValue Old, SDValue New) { argument
173 DAG.ReplaceAllUsesWith(Old, New);
176 void ReplaceNode(SDNode *Old, const SDValue *New) { argument
177 DAG.ReplaceAllUsesWith(Old, New);
H A DSelectionDAGISel.cpp1805 SDValue New = CurDAG->getNode(ISD::INLINEASM, SDLoc(N), local
1807 New->setNodeId(-1);
1808 return New.getNode();
/freebsd-10.2-release/contrib/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp77 static void onRAUW(JITResolverState *, Value *Old, Value *New) { argument
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp198 void ReplaceStmt(Stmt *Old, Stmt *New) { argument
208 if (!Rewrite.ReplaceStmt(Old, New)) {
209 ReplacedNodes[Old] = New;
218 void ReplaceStmtWithRange(Stmt *Old, Stmt *New, SourceRange SrcRange) { argument
232 New->printPretty(S, 0, PrintingPolicy(LangOpts));
237 ReplacedNodes[Old] = New;
/freebsd-10.2-release/contrib/llvm/include/llvm/IR/
H A DIRBuilder.h921 AtomicCmpXchgInst *CreateAtomicCmpXchg(Value *Ptr, Value *Cmp, Value *New, argument
924 return Insert(new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, SynchScope));
/freebsd-10.2-release/crypto/openssh/contrib/redhat/
H A Dopenssh.spec809 - New binary names
/freebsd-10.2-release/contrib/gdb/gdb/
H A Dgdbarch.sh515 # See gdbint.texinfo. See infcall.c. New, all singing all dancing,
1241 New code should use register_gdbarch_data(). */
2224 "New architecture 0x%08lx (%s) selected\n",
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/AST/
H A DDecl.cpp3547 FunctionDecl *New = new (C) FunctionDecl(Function, DC, StartLoc, NameInfo, local
3551 New->HasWrittenPrototype = hasWrittenPrototype;
3552 return New;
/freebsd-10.2-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2527 // "New" SwitchInst format with case ranges. The changes to write this
2852 Value *Ptr, *Cmp, *New; local
2857 cast<PointerType>(Ptr->getType())->getElementType(), New) ||
2864 I = new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, SynchScope);

Completed in 342 milliseconds

123456