HomeSort by relevance Sort by last modified time
    Searched refs:Old (Results 26 - 50 of 90) sorted by null

12 3 4

  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 191 MDNode *Old = MI->second;
192 MDNode *New = MapValue(Old, VMap, Flags, TypeMapper);
193 if (New != Old)
BasicBlockUtils.cpp 167 // Finally, erase the old block and update dominator info.
223 // Replace all uses of the old instruction, and delete it.
283 /// thing before SplitPt stays in Old and everything starting with SplitPt moves
287 BasicBlock *llvm::SplitBlock(BasicBlock *Old, Instruction *SplitPt, Pass *P) {
291 BasicBlock *New = Old->splitBasicBlock(SplitIt, Old->getName()+".split");
293 // The new block lives in whichever loop the old one did. This preserves
296 if (Loop *L = LI->getLoopFor(Old))
300 // Old dominates New. New node dominates all other nodes dominated by Old
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
TreeTransform.h 100 TemplateArgument Old;
104 Old = Self.ForgetPartiallySubstitutedPack();
108 Self.RememberPartiallySubstitutedPack(Old);
376 void transformAttrs(Decl *Old, Decl *New) { }
385 void transformedLocalDecl(Decl *Old, Decl *New) {
386 TransformedLocalDecls[Old] = New;
    [all...]
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 127 // Remove use of the old number.
581 /// ReplaceMBBInJumpTables - If Old is the target of any jump tables, update
583 bool MachineJumpTableInfo::ReplaceMBBInJumpTables(MachineBasicBlock *Old,
585 assert(Old != New && "Not making a change?");
588 ReplaceMBBInJumpTable(i, Old, New);
592 /// ReplaceMBBInJumpTable - If Old is a target of the jump tables, update
595 MachineBasicBlock *Old,
597 assert(Old != New && "Not making a change?");
601 if (JTE.MBBs[j] == Old) {
MachineModuleInfo.cpp 97 void UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New);
202 void MMIAddrLabelMap::UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New) {
204 AddrLabelSymEntry OldEntry = AddrLabelSymbols[Old];
205 AddrLabelSymbols.erase(Old);
219 // Otherwise, we need to add the old symbol to the new block's set. If it is
230 // If the old entry was a single symbol, add it.
MachineBasicBlock.cpp 480 void MachineBasicBlock::replaceSuccessor(MachineBasicBlock *Old,
483 succ_iterator SI = std::find(Successors.begin(), Successors.end(), Old);
806 /// 'Old', change the code and CFG so that it branches to 'New' instead.
807 void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old,
809 assert(Old != New && "Cannot replace self with self!");
816 // Scan the operands of this machine instruction, replacing any uses of Old
820 I->getOperand(i).getMBB() == Old)
825 replaceSuccessor(Old, New);
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 526 void replaceWithNewValue(Value *Old, Value *New) {
527 copyValue(Old, New);
528 deleteValue(Old);
ProfileInfo.h 160 void splitBlock(const BType *Old, const BType* New);
167 void transfer(const FType *Old, const FType *New);
  /external/llvm/lib/Analysis/
ProfileInfo.cpp 285 // First check if the old edge was taken, if not, just delete it...
412 void ProfileInfoT<Function,BasicBlock>::splitBlock(const BasicBlock *Old,
414 const Function *F = Old->getParent();
419 DEBUG(dbgs() << "Splitting " << Old->getName() << " to " << New->getName() << "\n");
424 Edge old = ewi->first; local
425 if (old.first == Old) {
426 Edges.insert(old);
435 double w = getExecutionCount(Old);
436 setEdgeWeight(getEdge(Old, New), w)
    [all...]
  /external/llvm/lib/Target/X86/
X86JITInfo.cpp 34 void X86JITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
35 unsigned char *OldByte = (unsigned char *)Old;
44 sys::ValgrindDiscardTranslations(Old, 5);
71 // This is needed for old/broken assemblers (for example, gas on
72 // Darwin is pretty old and doesn't support these directives)
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 233 /// 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)
240 if (Chain == Old)
247 if (Chain->getOperand(i) == Old) {
  /external/llvm/include/llvm/ADT/
ImmutableMap.h 110 ImmutableMap add(ImmutableMap Old, key_type_ref K, data_type_ref D) {
111 TreeTy *T = F.add(Old.Root, std::pair<key_type,data_type>(K,D));
115 ImmutableMap remove(ImmutableMap Old, key_type_ref K) {
116 TreeTy *T = F.remove(Old.Root,K);
  /external/llvm/include/llvm/CodeGen/
LiveRangeEdit.h 51 /// This is used for new registers representing connected components of Old.
52 virtual void LRE_DidCloneVirtReg(unsigned New, unsigned Old) {}
  /external/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 158 /// thing before SplitPt stays in Old and everything starting with SplitPt moves
162 BasicBlock *SplitBlock(BasicBlock *Old, Instruction *SplitPt, Pass *P);
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 316 // We scanned the old callgraph node, removing invalidated call sites and
318 // that an old indirect call site was deleted and replaced with a new direct
506 /// Old node has been deleted, and New is to be used in its place.
507 void CallGraphSCC::ReplaceNode(CallGraphNode *Old, CallGraphNode *New) {
508 assert(Old != New && "Should not replace node with self");
511 if (Nodes[i] != Old) continue;
517 // pointers to the old CallGraphNode.
519 CGI->ReplaceNode(Old, New);
  /external/llvm/lib/Target/Mips/
MipsJITInfo.cpp 29 void MipsJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 560 Instruction *Old = Builder.CreateLoad(NewAI, NewAI->getName()+".in");
561 Value *New = ConvertScalar_InsertValue(SI->getOperand(0), Old, Offset,
568 if (Old->use_empty())
569 Old->eraseFromParent();
590 Instruction *Old = Builder.CreateLoad(NewAI, NewAI->getName()+".in");
593 Old, Offset, Builder);
598 if (Old->use_empty())
599 Old->eraseFromParent();
786 /// or vector value "Old" at the offset specified by Offset.
795 ConvertScalar_InsertValue(Value *SV, Value *Old,
    [all...]
  /external/llvm/tools/bugpoint/
BugDriver.h 141 /// the old one.
149 AbstractInterpreter *Old = Interpreter;
151 return Old;
159 /// method to update bugdriver with it. This deletes the old module and sets
  /external/webkit/LayoutTests/fast/url/script-tests/
ipv4.js 62 // Old trunctations tests. They're all "BROKEN" now.
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 747 MachineInstr *Old = I;
748 DebugLoc dl = Old->getDebugLoc();
749 unsigned Amount = Old->getOperand(0).getImm();
763 unsigned Opc = Old->getOpcode();
764 int PIdx = Old->findFirstPredOperandIdx();
766 ? ARMCC::AL : (ARMCC::CondCodes)Old->getOperand(PIdx).getImm();
769 unsigned PredReg = Old->getOperand(2).getReg();
773 unsigned PredReg = Old->getOperand(3).getReg();
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 30 ATTRIBUTE MS-Old-ARAP-Password 19 string Microsoft
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLIsIndexElement02.js 106 assertEquals("IsIndex.Prompt","Old Employee: ",prompt);
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLIsIndexElement02.js 106 assertEquals("IsIndex.Prompt","Old Employee: ",prompt);
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp     [all...]

Completed in 989 milliseconds

12 3 4