Searched defs:Old (Results 1 - 25 of 61) sorted by relevance

123

/external/clang/test/CXX/temp/temp.type/
H A Dp1-0x.cpp3 namespace Old { namespace
/external/llvm/lib/Target/MBlaze/
H A DMBlazeRegisterInfo.cpp96 MachineInstr *Old = I; local
97 int Amount = Old->getOperand(0).getImm() + 4;
106 if (Old->getOpcode() == MBlaze::ADJCALLSTACKDOWN) {
107 New = BuildMI(MF,Old->getDebugLoc(),TII.get(MBlaze::ADDIK),MBlaze::R1)
110 assert(Old->getOpcode() == MBlaze::ADJCALLSTACKUP);
111 New = BuildMI(MF,Old->getDebugLoc(),TII.get(MBlaze::ADDIK),MBlaze::R1)
/external/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp191 MDNode *Old = MI->second; local
192 MDNode *New = MapValue(Old, VMap, Flags, TypeMapper);
193 if (New != Old)
/external/llvm/lib/Target/ARM/
H A DARMJITInfo.cpp30 void ARMJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
H A DThumb1RegisterInfo.cpp317 MachineInstr *Old = I; local
318 DebugLoc dl = Old->getDebugLoc();
319 unsigned Amount = Old->getOperand(0).getImm();
328 unsigned Opc = Old->getOpcode();
/external/llvm/lib/Target/MSP430/
H A DMSP430RegisterInfo.cpp114 MachineInstr *Old = I; local
115 uint64_t Amount = Old->getOperand(0).getImm();
123 if (Old->getOpcode() == TII.getCallFrameSetupOpcode()) {
124 New = BuildMI(MF, Old->getDebugLoc(),
128 assert(Old->getOpcode() == TII.getCallFrameDestroyOpcode());
130 uint64_t CalleeAmt = Old->getOperand(1).getImm();
133 New = BuildMI(MF, Old->getDebugLoc(),
150 MachineInstr *Old = I; local
152 BuildMI(MF, Old->getDebugLoc(), TII.get(MSP430::SUB16ri),
/external/llvm/tools/bugpoint/
H A DBugDriver.h149 AbstractInterpreter *Old = Interpreter; local
151 return Old;
/external/llvm/unittests/VMCore/
H A DValueMapTest.cpp188 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { argument
192 static void onDelete(const ExtraData &Data, KeyT Old) { argument
242 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { argument
245 static void onDelete(const ExtraData &Data, KeyT Old) { argument
274 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) { argument
275 (*Map)->erase(Old);
277 static void onDelete(ExtraData Map, KeyT Old) { argument
278 (*Map)->erase(Old);
/external/clang/include/clang/AST/
H A DUnresolvedSet.h122 bool replace(const NamedDecl* Old, NamedDecl *New) { argument
124 if (I->getDecl() == Old)
/external/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp213 ExplodedNode *Old = Storage.get<ExplodedNode *>(); local
218 V->push_back(Old, Ctx);
/external/llvm/include/llvm/ADT/
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);
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 DImmutableMap.h110 ImmutableMap add(ImmutableMap Old, key_type_ref K, data_type_ref D) { argument
111 TreeTy *T = F.add(Old.Root, std::pair<key_type,data_type>(K,D));
115 ImmutableMap remove(ImmutableMap Old, key_type_ref K) { argument
116 TreeTy *T = F.remove(Old.Root,K);
/external/llvm/include/llvm/CodeGen/
H A DLiveRangeEdit.h51 /// This is used for new registers representing connected components of Old.
52 virtual void LRE_DidCloneVirtReg(unsigned New, unsigned Old) {} argument
/external/llvm/lib/Analysis/IPA/
H A DCallGraphSCCPass.cpp508 /// Old node has been deleted, and New is to be used in its place.
509 void CallGraphSCC::ReplaceNode(CallGraphNode *Old, CallGraphNode *New) { argument
510 assert(Old != New && "Should not replace node with self");
513 if (Nodes[i] != Old) continue;
521 CGI->ReplaceNode(Old, New);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.h131 void NoteDeletion(SDNode *Old, SDNode *New) { argument
132 ExpungeNode(Old);
134 for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i)
135 ReplacedValues[SDValue(Old, i)] = SDValue(New, i);
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/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);
/external/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp467 void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
468 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit);
469 sys::Memory::InvalidateInstructionCache(Old, 7*4);
/external/llvm/lib/Target/X86/
H A DX86JITInfo.cpp34 void X86JITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
35 unsigned char *OldByte = (unsigned char *)Old;
44 sys::ValgrindDiscardTranslations(Old, 5);
/external/llvm/lib/Target/XCore/
H A DXCoreISelDAGToDAG.cpp233 /// Given a chain return a new chain where any appearance of Old is replaced
234 /// by New. There must be at most one instruction between Old and Chain and
238 replaceInChain(SelectionDAG *CurDAG, SDValue Chain, SDValue Old, SDValue New) argument
240 if (Chain == Old)
247 if (Chain->getOperand(i) == Old) {
H A DXCoreRegisterInfo.cpp114 MachineInstr *Old = I; local
115 uint64_t Amount = Old->getOperand(0).getImm();
137 if (Old->getOpcode() == XCore::ADJCALLSTACKDOWN) {
139 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode))
142 assert(Old->getOpcode() == XCore::ADJCALLSTACKUP);
144 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP)
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombine.h232 // InsertNewInstBefore - insert an instruction New before instruction Old
235 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) { argument
238 BasicBlock *BB = Old.getParent();
239 BB->getInstList().insert(&Old, New); // Insert inst
247 Instruction *InsertNewInstWith(Instruction *New, Instruction &Old) { argument
248 New->setDebugLoc(Old.getDebugLoc());
249 return InsertNewInstBefore(New, Old);
/external/llvm/lib/VMCore/
H A DValue.cpp628 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) { argument
629 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
630 assert(Old != New && "Changing value into itself!");
634 LLVMContextImpl *pImpl = Old->getContext().pImpl;
635 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
660 // Weak goes to the new value, which will unlink it from Old's list.
673 if (Old->HasValueHandle)
674 for (Entry = pImpl->ValueHandles[Old]; Entry; Entry = Entry->Next)
678 dbgs() << "After RAUW from " << *Old->getType() << " %"
679 << Old
[all...]
/external/clang/lib/Sema/
H A DIdentifierResolver.cpp83 IdentifierResolver::IdDeclInfo::ReplaceDecl(NamedDecl *Old, NamedDecl *New) { argument
85 if (Old == *(I-1)) {
235 bool IdentifierResolver::ReplaceDecl(NamedDecl *Old, NamedDecl *New) { argument
236 assert(Old->getDeclName() == New->getDeclName() &&
239 DeclarationName Name = Old->getDeclName();
249 if (Ptr == Old) {
256 return toIdDeclInfo(Ptr)->ReplaceDecl(Old, New);

Completed in 406 milliseconds

123