Searched refs:Old (Results 1 - 25 of 86) sorted by relevance

1234

/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/
H A DMipsJITInfo.cpp29 void MipsJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
31 unsigned OldAddr = (intptr_t)Old;
36 unsigned *OldInstruction = (unsigned *)Old;
47 sys::Memory::InvalidateInstructionCache(Old, 2 * 4);
51 unsigned* CurrentInstr = (unsigned*)Old;
70 sys::Memory::InvalidateInstructionCache(Old, 4 * 4);
H A DMipsJITInfo.h40 virtual void replaceMachineCodeForFunction(void *Old, void *New);
/freebsd-10.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.h45 virtual void replaceMachineCodeForFunction(void *Old, void *New);
H A DPPCJITInfo.cpp468 void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
469 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit);
470 sys::Memory::InvalidateInstructionCache(Old, 7*4);
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineJumpTableInfo.h109 /// ReplaceMBBInJumpTables - If Old is the target of any jump tables, update
111 bool ReplaceMBBInJumpTables(MachineBasicBlock *Old, MachineBasicBlock *New);
113 /// ReplaceMBBInJumpTable - If Old is a target of the jump tables, update
115 bool ReplaceMBBInJumpTable(unsigned Idx, MachineBasicBlock *Old,
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExceptionSpec.cpp153 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) { argument
166 Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(),
175 hasImplicitExceptionSpec(Old) != hasImplicitExceptionSpec(New)) {
177 << hasImplicitExceptionSpec(Old);
178 if (!Old->getLocation().isInvalid())
179 Diag(Old->getLocation(), diag::note_previous_declaration);
201 (Old->getLocation().isInvalid() ||
202 Context.getSourceManager().isInSystemHeader(Old->getLocation())) &&
203 Old
329 CheckEquivalentExceptionSpec( const FunctionProtoType *Old, SourceLocation OldLoc, const FunctionProtoType *New, SourceLocation NewLoc) argument
346 CheckEquivalentExceptionSpec(const PartialDiagnostic &DiagID, const PartialDiagnostic & NoteID, const FunctionProtoType *Old, SourceLocation OldLoc, const FunctionProtoType *New, SourceLocation NewLoc, bool *MissingExceptionSpecification, bool*MissingEmptyExceptionSpecification, bool AllowNoexceptAllMatchWithNoSpec, bool IsOperatorNew) argument
788 CheckOverridingFunctionExceptionSpec(const CXXMethodDecl *New, const CXXMethodDecl *Old) argument
[all...]
H A DIdentifierResolver.cpp82 IdentifierResolver::IdDeclInfo::ReplaceDecl(NamedDecl *Old, NamedDecl *New) { argument
84 if (Old == *(I-1)) {
238 bool IdentifierResolver::ReplaceDecl(NamedDecl *Old, NamedDecl *New) { argument
239 assert(Old->getDeclName() == New->getDeclName() &&
242 DeclarationName Name = Old->getDeclName();
252 if (Ptr == Old) {
259 return toIdDeclInfo(Ptr)->ReplaceDecl(Old, New);
H A DSemaDecl.cpp1626 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) { argument
1628 if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old))
1631 OldType = Context.getTypeDeclType(Old);
1636 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
1639 if (Old->getLocation().isValid())
1640 Diag(Old->getLocation(), diag::note_previous_definition);
1649 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
1652 if (Old->getLocation().isValid())
1653 Diag(Old->getLocation(), diag::note_previous_definition);
1661 /// same name and scope as a previous declaration 'Old'
1712 TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>(); local
1858 mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) argument
2039 checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) argument
2088 mergeDeclAttributes(NamedDecl *New, Decl *Old, AvailabilityMergeKind AMK) argument
2243 haveIncompatibleLanguageLinkages(const T *Old, const T *New) argument
2269 FunctionDecl *Old = 0; local
2756 MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old, Scope *S) argument
2816 MergeVarDeclTypes(VarDecl *New, VarDecl *Old, bool OldWasHidden) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/MSP430/
H A DMSP430FrameLowering.cpp237 MachineInstr *Old = I; local
238 uint64_t Amount = Old->getOperand(0).getImm();
246 if (Old->getOpcode() == TII.getCallFrameSetupOpcode()) {
247 New = BuildMI(MF, Old->getDebugLoc(),
251 assert(Old->getOpcode() == TII.getCallFrameDestroyOpcode());
253 uint64_t CalleeAmt = Old->getOperand(1).getImm();
256 New = BuildMI(MF, Old->getDebugLoc(),
273 MachineInstr *Old = I; local
275 BuildMI(MF, Old->getDebugLoc(), TII.get(MSP430::SUB16ri),
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/
H A DX86JITInfo.h38 virtual void replaceMachineCodeForFunction(void *Old, void *New);
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DASTUnresolvedSet.h51 bool replace(const NamedDecl* Old, NamedDecl *New, AccessSpecifier AS) { argument
53 if (I->getDecl() == Old) {
/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DSCCIterator.h187 /// ReplaceNode - This informs the scc_iterator that the specified Old node
189 void ReplaceNode(NodeType *Old, NodeType *New) { argument
190 assert(nodeVisitNumbers.count(Old) && "Old not in scc_iterator?");
191 nodeVisitNumbers[New] = nodeVisitNumbers[Old];
192 nodeVisitNumbers.erase(Old);
H A DImmutableIntervalMap.h220 ImmutableIntervalMap add(ImmutableIntervalMap Old, argument
222 TreeTy *T = F.add(Old.Root, std::pair<key_type, data_type>(K, D));
226 ImmutableIntervalMap remove(ImmutableIntervalMap Old, key_type_ref K) { argument
227 TreeTy *T = F.remove(Old.Root, K);
/freebsd-10.0-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);
/freebsd-10.0-release/contrib/llvm/include/llvm/Target/
H A DTargetJITInfo.h42 virtual void replaceMachineCodeForFunction(void *Old, void *New) = 0;
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp89 SUnit *ScheduleDAGSDNodes::Clone(SUnit *Old) { argument
90 SUnit *SU = newSUnit(Old->getNode());
91 SU->OrigNode = Old->OrigNode;
92 SU->Latency = Old->Latency;
93 SU->isVRegCycle = Old->isVRegCycle;
94 SU->isCall = Old->isCall;
95 SU->isCallOp = Old->isCallOp;
96 SU->isTwoAddress = Old->isTwoAddress;
97 SU->isCommutable = Old->isCommutable;
98 SU->hasPhysRegDefs = Old
[all...]
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DValue.cpp641 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) { argument
642 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
643 assert(Old != New && "Changing value into itself!");
647 LLVMContextImpl *pImpl = Old->getContext().pImpl;
648 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
673 // Weak goes to the new value, which will unlink it from Old's list.
686 if (Old->HasValueHandle)
687 for (Entry = pImpl->ValueHandles[Old]; Entry; Entry = Entry->Next)
691 dbgs() << "After RAUW from " << *Old->getType() << " %"
692 << Old
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Support/Unix/
H A DProgram.inc307 struct sigaction Act, Old;
321 sigaction(SIGALRM, &Act, &Old);
336 sigaction(SIGALRM, &Old, 0);
353 sigaction(SIGALRM, &Old, 0);
/freebsd-10.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombine.h239 // InsertNewInstBefore - insert an instruction New before instruction Old
242 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) { argument
245 BasicBlock *BB = Old.getParent();
246 BB->getInstList().insert(&Old, New); // Insert inst
254 Instruction *InsertNewInstWith(Instruction *New, Instruction &Old) { argument
255 New->setDebugLoc(Old.getDebugLoc());
256 return InsertNewInstBefore(New, Old);
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DIdentifierResolver.h54 /// Replaces the Old declaration with the New declaration. If the
57 bool ReplaceDecl(NamedDecl *Old, NamedDecl *New);
171 /// Replace the decl Old with the new declaration New on its
174 bool ReplaceDecl(NamedDecl *Old, NamedDecl *New);
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp206 MDNode *Old = MI->second; local
207 MDNode *New = MapValue(Old, VMap, Flags, TypeMapper);
208 if (New != Old)
H A DBasicBlockUtils.cpp283 /// thing before SplitPt stays in Old and everything starting with SplitPt moves
287 BasicBlock *llvm::SplitBlock(BasicBlock *Old, Instruction *SplitPt, Pass *P) { argument
291 BasicBlock *New = Old->splitBasicBlock(SplitIt, Old->getName()+".split");
296 if (Loop *L = LI->getLoopFor(Old))
300 // Old dominates New. New node dominates all other nodes dominated by Old.
301 if (DomTreeNode *OldNode = DT->getNode(Old)) {
307 DomTreeNode *NewNode = DT->addNewBlock(New,Old);
/freebsd-10.0-release/contrib/llvm/lib/Target/MBlaze/
H A DMBlazeFrameLowering.cpp439 MachineInstr *Old = I; local
440 int Amount = Old->getOperand(0).getImm() + 4;
449 if (Old->getOpcode() == MBlaze::ADJCALLSTACKDOWN) {
450 New = BuildMI(MF,Old->getDebugLoc(), TII.get(MBlaze::ADDIK),MBlaze::R1)
453 assert(Old->getOpcode() == MBlaze::ADJCALLSTACKUP);
454 New = BuildMI(MF,Old->getDebugLoc(), TII.get(MBlaze::ADDIK),MBlaze::R1)
/freebsd-10.0-release/contrib/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp345 MachineInstr *Old = I; local
346 uint64_t Amount = Old->getOperand(0).getImm();
368 if (Old->getOpcode() == XCore::ADJCALLSTACKDOWN) {
370 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode))
373 assert(Old->getOpcode() == XCore::ADJCALLSTACKUP);
375 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP)
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DProfileInfo.cpp412 void ProfileInfoT<Function,BasicBlock>::splitBlock(const BasicBlock *Old, argument
414 const Function *F = Old->getParent();
419 DEBUG(dbgs() << "Splitting " << Old->getName() << " to " << New->getName() << "\n");
425 if (old.first == Old) {
435 double w = getExecutionCount(Old);
436 setEdgeWeight(getEdge(Old, New), w);
478 void ProfileInfoT<Function,BasicBlock>::transfer(const Function *Old, argument
480 DEBUG(dbgs() << "Replacing Function " << Old->getName() << " with "
483 EdgeInformation.find(Old);
487 EdgeInformation.erase(Old);
[all...]

Completed in 203 milliseconds

1234