HomeSort by relevance Sort by last modified time
    Searched refs:Old (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /external/llvm/unittests/Transforms/Utils/
ValueMapperTest.cpp 45 Metadata *Old = MDTuple::getDistinct(Context, None);
46 auto *D = MDTuple::getDistinct(Context, Old);
47 ASSERT_EQ(Old, D->getOperand(0));
51 VM.MD()[Old].reset(New);
  /external/clang/test/CXX/temp/temp.type/
p1-0x.cpp 3 namespace Old {
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyRegColoring.cpp 137 unsigned Old = LI->reg;
139 const TargetRegisterClass *RC = MRI->getRegClass(Old);
142 if (!MRI->isLiveIn(Old))
157 Changed |= Old != New;
169 unsigned Old = SortedIntervals[i]->reg;
171 if (Old != New)
172 MRI->replaceRegWith(Old, New);
  /external/llvm/include/llvm/CodeGen/
MachineJumpTableInfo.h 109 /// 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/llvm/include/llvm/Support/
Allocator.h 151 // Manually implement a move constructor as we must clear the old allocator's
153 BumpPtrAllocatorImpl(BumpPtrAllocatorImpl &&Old)
154 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)),
155 CustomSizedSlabs(std::move(Old.CustomSizedSlabs)),
156 BytesAllocated(Old.BytesAllocated),
157 Allocator(std::move(Old.Allocator)) {
158 Old.CurPtr = Old.End = nullptr
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 206 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) {
223 Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(),
232 hasImplicitExceptionSpec(Old) != hasImplicitExceptionSpec(New)) {
234 << hasImplicitExceptionSpec(Old);
235 if (Old->getLocation().isValid())
236 Diag(Old->getLocation(), diag::note_previous_declaration);
258 (Old->getLocation().isInvalid() ||
259 Context.getSourceManager().isInSystemHeader(Old->getLocation())) &&
260 Old->isExternC())
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 239 MachineInstr *Old = I;
240 uint64_t Amount = Old->getOperand(0).getImm();
248 if (Old->getOpcode() == TII.getCallFrameSetupOpcode()) {
249 New = BuildMI(MF, Old->getDebugLoc(),
253 assert(Old->getOpcode() == TII.getCallFrameDestroyOpcode());
255 uint64_t CalleeAmt = Old->getOperand(1).getImm();
258 New = BuildMI(MF, Old->getDebugLoc(),
275 MachineInstr *Old = I;
277 BuildMI(MF, Old->getDebugLoc(), TII.get(MSP430::SUB16ri),
  /external/clang/include/clang/AST/
ASTUnresolvedSet.h 57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) {
59 if (I->getDecl() == Old) {
UnresolvedSet.h 88 bool replace(const NamedDecl* Old, NamedDecl *New) {
90 if (I->getDecl() == Old)
  /external/llvm/unittests/IR/
ValueMapTest.cpp 167 // By default, we overwrite the old value with the replaced value.
187 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
191 static void onDelete(const ExtraData &Data, KeyT Old) {
242 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
245 static void onDelete(const ExtraData &Data, KeyT Old) {
274 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) {
275 (*Map)->erase(Old);
277 static void onDelete(ExtraData Map, KeyT Old) {
278 (*Map)->erase(Old);
  /external/llvm/include/llvm/ADT/
SCCIterator.h 132 /// This informs the \c scc_iterator that the specified \c Old node
134 void ReplaceNode(NodeType *Old, NodeType *New) {
135 assert(nodeVisitNumbers.count(Old) && "Old not in scc_iterator?");
136 nodeVisitNumbers[New] = nodeVisitNumbers[Old];
137 nodeVisitNumbers.erase(Old);
  /external/llvm/include/llvm/Analysis/
CallGraphSCCPass.h 98 /// Old node has been deleted, and New is to be used in its place.
99 void ReplaceNode(CallGraphNode *Old, CallGraphNode *New);
  /external/valgrind/gdbserver_tests/
mcwatchpoints.stdoutB.exp 23 Old value = 102 'f'
29 Old value = 100 'd'
  /external/llvm/lib/IR/
Value.cpp 238 // Remove old name.
268 // Remove old name.
593 // point into the old table. Handle this by checking for reallocation and
703 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
704 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
705 assert(Old != New && "Changing value into itself!");
706 assert(Old->getType() == New->getType() &&
711 LLVMContextImpl *pImpl = Old->getContext().pImpl;
712 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
737 // Weak goes to the new value, which will unlink it from Old's list
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIFoldOperands.cpp 110 MachineOperand &Old = MI->getOperand(Fold.UseOpNo);
111 assert(Old.isReg());
114 Old.ChangeToImmediate(Fold.ImmToFold);
119 if (TargetRegisterInfo::isVirtualRegister(Old.getReg()) &&
121 Old.substVirtReg(New->getReg(), New->getSubReg(), TRI);
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 89 SUnit *ScheduleDAGSDNodes::Clone(SUnit *Old) {
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->hasPhysRegDefs
    [all...]
  /cts/hostsidetests/os/
Android.mk 30 LOCAL_CTS_MODULE_CONFIG := $(LOCAL_PATH)/Old$(CTS_MODULE_TEST_CONFIG)
  /cts/hostsidetests/services/activitymanager/
Android.mk 30 LOCAL_CTS_MODULE_CONFIG := $(LOCAL_PATH)/Old$(CTS_MODULE_TEST_CONFIG)
  /cts/hostsidetests/services/windowmanager/
Android.mk 30 LOCAL_CTS_MODULE_CONFIG := $(LOCAL_PATH)/Old$(CTS_MODULE_TEST_CONFIG)
  /cts/hostsidetests/systemui/
Android.mk 31 LOCAL_CTS_MODULE_CONFIG := $(LOCAL_PATH)/Old$(CTS_MODULE_TEST_CONFIG)
  /cts/tests/admin/
Android.mk 35 LOCAL_CTS_MODULE_CONFIG := $(LOCAL_PATH)/Old$(CTS_MODULE_TEST_CONFIG)
  /cts/tests/jank/
Android.mk 32 LOCAL_CTS_MODULE_CONFIG := $(LOCAL_PATH)/Old$(CTS_MODULE_TEST_CONFIG)
  /cts/tests/leanbackjank/
Android.mk 40 LOCAL_CTS_MODULE_CONFIG := $(LOCAL_PATH)/Old$(CTS_MODULE_TEST_CONFIG)
  /cts/tests/tests/accounts/
Android.mk 33 LOCAL_CTS_MODULE_CONFIG := $(LOCAL_PATH)/Old$(CTS_MODULE_TEST_CONFIG)
  /cts/tests/tests/alarmclock/
Android.mk 32 LOCAL_CTS_MODULE_CONFIG := $(LOCAL_PATH)/Old$(CTS_MODULE_TEST_CONFIG)

Completed in 485 milliseconds

1 2 3 4 5