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

1234

/external/llvm/lib/Support/Windows/
H A DTimeValue.inc36 // Old versions of mingw don't have _localtime64_s. Remove this once we drop support
/external/clang/test/CXX/temp/temp.type/
H A Dp1-0x.cpp3 namespace Old { namespace
/external/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);
/external/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);
/external/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,
/external/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
300 CheckEquivalentExceptionSpec( const FunctionProtoType *Old, SourceLocation OldLoc, const FunctionProtoType *New, SourceLocation NewLoc) argument
317 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
759 CheckOverridingFunctionExceptionSpec(const CXXMethodDecl *New, const CXXMethodDecl *Old) argument
[all...]
H A DSemaDecl.cpp1637 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) { argument
1639 if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old))
1642 OldType = Context.getTypeDeclType(Old);
1647 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
1650 if (Old->getLocation().isValid())
1651 Diag(Old->getLocation(), diag::note_previous_definition);
1660 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
1663 if (Old->getLocation().isValid())
1664 Diag(Old->getLocation(), diag::note_previous_definition);
1672 /// same name and scope as a previous declaration 'Old'
1723 TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>(); local
1871 mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) argument
2052 checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) argument
2101 mergeDeclAttributes(NamedDecl *New, Decl *Old, AvailabilityMergeKind AMK) argument
2256 haveIncompatibleLanguageLinkages(const T *Old, const T *New) argument
2282 FunctionDecl *Old = 0; local
2773 MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old, Scope *S) argument
2833 MergeVarDeclTypes(VarDecl *New, VarDecl *Old, bool OldWasHidden) argument
[all...]
/external/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),
/external/llvm/lib/Target/X86/
H A DX86JITInfo.h38 virtual void replaceMachineCodeForFunction(void *Old, void *New);
/external/valgrind/main/gdbserver_tests/
H A Dmcwatchpoints.stdoutB.exp20 Old value = 102 'f'
26 Old value = 100 'd'
/external/clang/include/clang/AST/
H A DASTUnresolvedSet.h51 bool replace(const NamedDecl* Old, NamedDecl *New, AccessSpecifier AS) { argument
53 if (I->getDecl() == Old) {
/external/llvm/unittests/IR/
H A DValueMapTest.cpp187 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { argument
191 static void onDelete(const ExtraData &Data, KeyT Old) { argument
241 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { argument
244 static void onDelete(const ExtraData &Data, KeyT Old) { argument
273 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) { argument
274 (*Map)->erase(Old);
276 static void onDelete(ExtraData Map, KeyT Old) { argument
277 (*Map)->erase(Old);
/external/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);
/external/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);
/external/llvm/include/llvm/Target/
H A DTargetJITInfo.h42 virtual void replaceMachineCodeForFunction(void *Old, void *New) = 0;
/external/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...]
/external/llvm/lib/IR/
H A DValue.cpp640 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) { argument
641 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
642 assert(Old != New && "Changing value into itself!");
646 LLVMContextImpl *pImpl = Old->getContext().pImpl;
647 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
672 // Weak goes to the new value, which will unlink it from Old's list.
685 if (Old->HasValueHandle)
686 for (Entry = pImpl->ValueHandles[Old]; Entry; Entry = Entry->Next)
690 dbgs() << "After RAUW from " << *Old->getType() << " %"
691 << Old
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp312 MachineInstr *Old = I; local
313 uint64_t Amount = Old->getOperand(0).getImm();
335 if (Old->getOpcode() == XCore::ADJCALLSTACKDOWN) {
337 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode))
340 assert(Old->getOpcode() == XCore::ADJCALLSTACKUP);
342 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP)
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombine.h240 // InsertNewInstBefore - insert an instruction New before instruction Old
243 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) { argument
246 BasicBlock *BB = Old.getParent();
247 BB->getInstList().insert(&Old, New); // Insert inst
255 Instruction *InsertNewInstWith(Instruction *New, Instruction &Old) { argument
256 New->setDebugLoc(Old.getDebugLoc());
257 return InsertNewInstBefore(New, Old);
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary.compat12 ATTRIBUTE Old-Password 17 string
40 # For compatibility with ESVA RADIUS, Old Cistron RADIUS
/external/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp215 MDNode *Old = MI->second; local
216 MDNode *New = MapValue(Old, VMap, Flags, TypeMapper, Materializer);
217 if (New != Old)
/external/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 467 milliseconds

1234