HomeSort by relevance Sort by last modified time
    Searched defs:Old (Results 1 - 19 of 19) sorted by null

  /external/clang/test/CXX/temp/temp.type/
p1-0x.cpp 3 namespace Old {
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 206 MDNode *Old = MI->second;
207 MDNode *New = MapValue(Old, VMap, Flags, TypeMapper);
208 if (New != Old)
Local.cpp 184 // Delete the old switch.
219 // Delete the old switch.
646 // in the PHI node are the entries from the old PHI.
683 BB->eraseFromParent(); // Delete the old basic block.
744 PHINode *Old = Pair.first->second;
746 CollisionMap[PN] = Old;
    [all...]
SimplifyLibCalls.cpp 895 ICmpInst *Old = cast<ICmpInst>(*UI++);
896 Value *Cmp = B.CreateICmp(Old->getPredicate(), StrNCmp,
899 LCS->replaceAllUsesWith(Old, Cmp);
    [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/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 237 MachineInstr *Old = I;
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;
275 BuildMI(MF, Old->getDebugLoc(), TII.get(MSP430::SUB16ri),
  /external/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 245 ExplodedNode *Old = Storage.get<ExplodedNode *>();
250 V->push_back(Old, Ctx);
399 // from the old node to the new node.
403 // Also record the reverse mapping from the new node to the old node.
  /external/llvm/lib/Target/ARM/
Thumb1FrameLowering.cpp 58 MachineInstr *Old = I;
59 DebugLoc dl = Old->getDebugLoc();
60 unsigned Amount = Old->getOperand(0).getImm();
69 unsigned Opc = Old->getOpcode();
307 // pop the old LR into R3 as a temporary.
323 // erase the old tBX_RET instruction
ARMFrameLowering.cpp     [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeFrameLowering.cpp 439 MachineInstr *Old = I;
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)
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 345 MachineInstr *Old = I;
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)
  /external/clang/lib/AST/
TypePrinter.cpp 34 bool Old;
38 : Policy(Policy), Old(Policy.SuppressStrongLifetime) {
43 Policy.SuppressStrongLifetime = Old;
49 bool Old;
53 : Policy(Policy), Old(Policy.SuppressSpecifiers) {
58 Policy.SuppressSpecifiers = Old;
    [all...]
ExprConstant.cpp 543 Expr::EvalStatus Old;
548 : Info(Info), Old(Info.EvalStatus) {
552 Info.EvalStatus = Old;
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 961 ABIArgInfo &Old = FI.getReturnInfo()
    [all...]
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 640 Instruction *Old = Builder.CreateLoad(NewAI, NewAI->getName()+".in");
641 Value *New = ConvertScalar_InsertValue(SI->getOperand(0), Old, Offset,
648 if (Old->use_empty())
649 Old->eraseFromParent();
671 Instruction *Old = Builder.CreateLoad(NewAI, NewAI->getName()+".in");
674 Old, Offset, 0, Builder);
679 if (Old->use_empty())
680 Old->eraseFromParent();
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
SemaDecl.cpp 1613 NamedDecl *old = filter.next(); local
    [all...]
TreeTransform.h 100 TemplateArgument Old;
104 Old = Self.ForgetPartiallySubstitutedPack();
108 Self.RememberPartiallySubstitutedPack(Old);
382 void transformAttrs(Decl *Old, Decl *New) { }
391 void transformedLocalDecl(Decl *Old, Decl *New) {
392 TransformedLocalDecls[Old] = New;
    [all...]

Completed in 785 milliseconds