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

  /external/clang/test/CXX/temp/temp.type/
p1-0x.cpp 3 namespace Old {
  /external/llvm/lib/Target/MBlaze/
MBlazeRegisterInfo.cpp 96 MachineInstr *Old = I;
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/
ValueMapper.cpp 191 MDNode *Old = MI->second;
192 MDNode *New = MapValue(Old, VMap, Flags, TypeMapper);
193 if (New != Old)
Local.cpp 160 // Delete the old switch.
177 // Delete the old switch.
606 // in the PHI node are the entries from the old PHI.
643 BB->eraseFromParent(); // Delete the old basic block.
704 PHINode *Old = Pair.first->second;
706 CollisionMap[PN] = Old;
    [all...]
  /external/llvm/lib/Target/Alpha/
AlphaRegisterInfo.cpp 93 MachineInstr *Old = I;
94 uint64_t Amount = Old->getOperand(0).getImm();
103 if (Old->getOpcode() == Alpha::ADJUSTSTACKDOWN) {
104 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Alpha::LDA), Alpha::R30)
107 assert(Old->getOpcode() == Alpha::ADJUSTSTACKUP);
108 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Alpha::LDA), Alpha::R30)
166 //fix up the old:
  /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/ARM/
Thumb1RegisterInfo.cpp 316 MachineInstr *Old = I;
317 DebugLoc dl = Old->getDebugLoc();
318 unsigned Amount = Old->getOperand(0).getImm();
327 unsigned Opc = Old->getOpcode();
ARMBaseRegisterInfo.cpp 840 MachineInstr *Old = I;
841 DebugLoc dl = Old->getDebugLoc();
842 unsigned Amount = Old->getOperand(0).getImm();
856 unsigned Opc = Old->getOpcode();
857 int PIdx = Old->findFirstPredOperandIdx();
859 ? ARMCC::AL : (ARMCC::CondCodes)Old->getOperand(PIdx).getImm();
862 unsigned PredReg = Old->getOperand(2).getReg();
866 unsigned PredReg = Old->getOperand(3).getReg();
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430RegisterInfo.cpp 113 MachineInstr *Old = I;
114 uint64_t Amount = Old->getOperand(0).getImm();
122 if (Old->getOpcode() == TII.getCallFrameSetupOpcode()) {
123 New = BuildMI(MF, Old->getDebugLoc(),
127 assert(Old->getOpcode() == TII.getCallFrameDestroyOpcode());
129 uint64_t CalleeAmt = Old->getOperand(1).getImm();
132 New = BuildMI(MF, Old->getDebugLoc(),
149 MachineInstr *Old = I;
151 BuildMI(MF, Old->getDebugLoc(), TII.get(MSP430::SUB16ri),
  /external/llvm/lib/Target/XCore/
XCoreRegisterInfo.cpp 123 MachineInstr *Old = I;
124 uint64_t Amount = Old->getOperand(0).getImm();
146 if (Old->getOpcode() == XCore::ADJCALLSTACKDOWN) {
148 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode))
151 assert(Old->getOpcode() == XCore::ADJCALLSTACKUP);
153 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP)
307 // Erase old instruction.
  /external/clang/lib/AST/
TypePrinter.cpp 31 bool Old;
35 : Policy(Policy), Old(Policy.SuppressStrongLifetime) {
40 Policy.SuppressStrongLifetime = Old;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 684 ICmpInst *Old = cast<ICmpInst>(*UI++);
685 Value *Cmp = B.CreateICmp(Old->getPredicate(), StrNCmp,
688 Old->replaceAllUsesWith(Cmp);
689 Old->eraseFromParent();
    [all...]
ScalarReplAggregates.cpp 558 Instruction *Old = Builder.CreateLoad(NewAI, NewAI->getName()+".in");
559 Value *New = ConvertScalar_InsertValue(SI->getOperand(0), Old, Offset,
566 if (Old->use_empty())
567 Old->eraseFromParent();
587 Instruction *Old = Builder.CreateLoad(NewAI, NewAI->getName()+".in");
590 Old, Offset, Builder);
595 if (Old->use_empty())
596 Old->eraseFromParent();
783 /// or vector value "Old" at the offset specified by Offset.
792 ConvertScalar_InsertValue(Value *SV, Value *Old,
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
SemaDecl.cpp     [all...]
TreeTransform.h 100 TemplateArgument Old;
104 Old = Self.ForgetPartiallySubstitutedPack();
108 Self.RememberPartiallySubstitutedPack(Old);
    [all...]

Completed in 458 milliseconds