Home
last modified time | relevance | path

Searched refs:Old (Results 1 – 25 of 457) sorted by relevance

12345678910>>...19

/external/e2fsprogs/tests/progs/test_data/
Dexpect.irel20 Old= 3, New= 9, Original=3, Max_refs=1
22 Old= 1, New= 8, Original=1, Max_refs=3
26 Old= 1, New= 8, Original=1, Max_refs=3
29 Old= 2, New= 11, Original=2, Max_refs=3
32 Old= 3, New= 9, Original=3, Max_refs=1
42 Old= 2, New= 8, Original=1, Max_refs=3
44 Old= 3, New= 9, Original=3, Max_refs=1
51 Old= 3, New= 9, Original=3, Max_refs=1
52 Old= 4, New= 8, Original=1, Max_refs=3
55 Old= 3, New= 9, Original=3, Max_refs=1
[all …]
Dexpect.brel16 Old= 3, New= 9, Owner= 0:0
18 Old= 1, New= 10, Owner= 4:128
21 Old= 1, New= 10, Owner= 4:128
23 Old= 2, New= 11, Owner= 0:0
25 Old= 3, New= 9, Owner= 0:0
40 Old= 3, New= 9, Owner= 0:0
41 Old= 5, New= 10, Owner= 4:128
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DAllocator.h157 BumpPtrAllocatorImpl(BumpPtrAllocatorImpl &&Old) in BumpPtrAllocatorImpl() argument
158 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), in BumpPtrAllocatorImpl()
159 CustomSizedSlabs(std::move(Old.CustomSizedSlabs)), in BumpPtrAllocatorImpl()
160 BytesAllocated(Old.BytesAllocated), RedZoneSize(Old.RedZoneSize), in BumpPtrAllocatorImpl()
161 Allocator(std::move(Old.Allocator)) { in BumpPtrAllocatorImpl()
162 Old.CurPtr = Old.End = nullptr; in BumpPtrAllocatorImpl()
163 Old.BytesAllocated = 0; in BumpPtrAllocatorImpl()
164 Old.Slabs.clear(); in BumpPtrAllocatorImpl()
165 Old.CustomSizedSlabs.clear(); in BumpPtrAllocatorImpl()
396 SpecificBumpPtrAllocator(SpecificBumpPtrAllocator &&Old) in SpecificBumpPtrAllocator() argument
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DAllocator.h156 BumpPtrAllocatorImpl(BumpPtrAllocatorImpl &&Old) in BumpPtrAllocatorImpl() argument
157 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), in BumpPtrAllocatorImpl()
158 CustomSizedSlabs(std::move(Old.CustomSizedSlabs)), in BumpPtrAllocatorImpl()
159 BytesAllocated(Old.BytesAllocated), in BumpPtrAllocatorImpl()
160 Allocator(std::move(Old.Allocator)) { in BumpPtrAllocatorImpl()
161 Old.CurPtr = Old.End = nullptr; in BumpPtrAllocatorImpl()
162 Old.BytesAllocated = 0; in BumpPtrAllocatorImpl()
163 Old.Slabs.clear(); in BumpPtrAllocatorImpl()
164 Old.CustomSizedSlabs.clear(); in BumpPtrAllocatorImpl()
373 SpecificBumpPtrAllocator(SpecificBumpPtrAllocator &&Old) in SpecificBumpPtrAllocator() argument
[all …]
/external/llvm/include/llvm/Support/
DAllocator.h153 BumpPtrAllocatorImpl(BumpPtrAllocatorImpl &&Old) in BumpPtrAllocatorImpl() argument
154 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), in BumpPtrAllocatorImpl()
155 CustomSizedSlabs(std::move(Old.CustomSizedSlabs)), in BumpPtrAllocatorImpl()
156 BytesAllocated(Old.BytesAllocated), in BumpPtrAllocatorImpl()
157 Allocator(std::move(Old.Allocator)) { in BumpPtrAllocatorImpl()
158 Old.CurPtr = Old.End = nullptr; in BumpPtrAllocatorImpl()
159 Old.BytesAllocated = 0; in BumpPtrAllocatorImpl()
160 Old.Slabs.clear(); in BumpPtrAllocatorImpl()
161 Old.CustomSizedSlabs.clear(); in BumpPtrAllocatorImpl()
370 SpecificBumpPtrAllocator(SpecificBumpPtrAllocator &&Old) in SpecificBumpPtrAllocator() argument
[all …]
/external/clang/lib/Sema/
DSemaExceptionSpec.cpp212 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) { in CheckEquivalentExceptionSpec() argument
229 Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(), in CheckEquivalentExceptionSpec()
238 hasImplicitExceptionSpec(Old) != hasImplicitExceptionSpec(New)) { in CheckEquivalentExceptionSpec()
240 << hasImplicitExceptionSpec(Old); in CheckEquivalentExceptionSpec()
241 if (Old->getLocation().isValid()) in CheckEquivalentExceptionSpec()
242 Diag(Old->getLocation(), diag::note_previous_declaration); in CheckEquivalentExceptionSpec()
264 (Old->getLocation().isInvalid() || in CheckEquivalentExceptionSpec()
265 Context.getSourceManager().isInSystemHeader(Old->getLocation())) && in CheckEquivalentExceptionSpec()
266 Old->isExternC()) { in CheckEquivalentExceptionSpec()
274 Old->getType()->castAs<FunctionProtoType>(); in CheckEquivalentExceptionSpec()
[all …]
DSemaDecl.cpp1871 NamedDecl *Old = Filter.next(); in filterNonConflictingPreviousTypedefDecls() local
1874 if (S.isVisible(Old)) in filterNonConflictingPreviousTypedefDecls()
1879 if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) { in filterNonConflictingPreviousTypedefDecls()
1898 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) { in isIncompatibleTypedef() argument
1900 if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old)) in isIncompatibleTypedef()
1903 OldType = Context.getTypeDeclType(Old); in isIncompatibleTypedef()
1908 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; in isIncompatibleTypedef()
1911 if (Old->getLocation().isValid()) in isIncompatibleTypedef()
1912 Diag(Old->getLocation(), diag::note_previous_definition); in isIncompatibleTypedef()
1921 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; in isIncompatibleTypedef()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
DWebAssemblyRegColoring.cpp140 unsigned Old = LI->reg; in runOnMachineFunction() local
142 const TargetRegisterClass *RC = MRI->getRegClass(Old); in runOnMachineFunction()
145 if (!MRI->isLiveIn(Old)) in runOnMachineFunction()
159 Changed |= Old != New; in runOnMachineFunction()
171 unsigned Old = SortedIntervals[i]->reg; in runOnMachineFunction() local
173 if (Old != New) in runOnMachineFunction()
174 MRI->replaceRegWith(Old, New); in runOnMachineFunction()
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyRegColoring.cpp137 unsigned Old = LI->reg; in runOnMachineFunction() local
139 const TargetRegisterClass *RC = MRI->getRegClass(Old); in runOnMachineFunction()
142 if (!MRI->isLiveIn(Old)) in runOnMachineFunction()
157 Changed |= Old != New; in runOnMachineFunction()
169 unsigned Old = SortedIntervals[i]->reg; in runOnMachineFunction() local
171 if (Old != New) in runOnMachineFunction()
172 MRI->replaceRegWith(Old, New); in runOnMachineFunction()
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
DMSP430RegisterInfo.cpp113 MachineInstr *Old = I; in eliminateCallFramePseudoInstr() local
114 uint64_t Amount = Old->getOperand(0).getImm(); in eliminateCallFramePseudoInstr()
122 if (Old->getOpcode() == TII.getCallFrameSetupOpcode()) { in eliminateCallFramePseudoInstr()
123 New = BuildMI(MF, Old->getDebugLoc(), in eliminateCallFramePseudoInstr()
127 assert(Old->getOpcode() == TII.getCallFrameDestroyOpcode()); in eliminateCallFramePseudoInstr()
129 uint64_t CalleeAmt = Old->getOperand(1).getImm(); in eliminateCallFramePseudoInstr()
132 New = BuildMI(MF, Old->getDebugLoc(), in eliminateCallFramePseudoInstr()
149 MachineInstr *Old = I; in eliminateCallFramePseudoInstr() local
151 BuildMI(MF, Old->getDebugLoc(), TII.get(MSP430::SUB16ri), in eliminateCallFramePseudoInstr()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DLiveRangeShrink.cpp78 MachineInstr *Old, in FindDominatedInstruction() argument
82 return Old; in FindDominatedInstruction()
83 if (Old == nullptr) in FindDominatedInstruction()
85 unsigned OrderOld = M.find(Old)->second; in FindDominatedInstruction()
88 return OrderOld < OrderNew ? &New : Old; in FindDominatedInstruction()
91 for (MachineInstr *I = Old->getNextNode(); M.find(I)->second == OrderNew; in FindDominatedInstruction()
95 return Old; in FindDominatedInstruction()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/MSP430/
DMSP430FrameLowering.cpp238 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local
239 uint64_t Amount = TII.getFrameSize(Old); in eliminateCallFramePseudoInstr()
247 if (Old.getOpcode() == TII.getCallFrameSetupOpcode()) { in eliminateCallFramePseudoInstr()
249 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP) in eliminateCallFramePseudoInstr()
253 assert(Old.getOpcode() == TII.getCallFrameDestroyOpcode()); in eliminateCallFramePseudoInstr()
255 Amount -= TII.getFramePoppedByCallee(Old); in eliminateCallFramePseudoInstr()
257 New = BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::ADD16ri), in eliminateCallFramePseudoInstr()
275 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local
277 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP) in eliminateCallFramePseudoInstr()
/external/llvm/lib/Target/MSP430/
DMSP430FrameLowering.cpp238 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local
239 uint64_t Amount = Old.getOperand(0).getImm(); in eliminateCallFramePseudoInstr()
247 if (Old.getOpcode() == TII.getCallFrameSetupOpcode()) { in eliminateCallFramePseudoInstr()
249 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP) in eliminateCallFramePseudoInstr()
253 assert(Old.getOpcode() == TII.getCallFrameDestroyOpcode()); in eliminateCallFramePseudoInstr()
255 uint64_t CalleeAmt = Old.getOperand(1).getImm(); in eliminateCallFramePseudoInstr()
258 New = BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::ADD16ri), in eliminateCallFramePseudoInstr()
276 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local
278 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP) in eliminateCallFramePseudoInstr()
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/
DAlphaRegisterInfo.cpp93 MachineInstr *Old = I; in eliminateCallFramePseudoInstr() local
94 uint64_t Amount = Old->getOperand(0).getImm(); in eliminateCallFramePseudoInstr()
103 if (Old->getOpcode() == Alpha::ADJUSTSTACKDOWN) { in eliminateCallFramePseudoInstr()
104 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Alpha::LDA), Alpha::R30) in eliminateCallFramePseudoInstr()
107 assert(Old->getOpcode() == Alpha::ADJUSTSTACKUP); in eliminateCallFramePseudoInstr()
108 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Alpha::LDA), Alpha::R30) in eliminateCallFramePseudoInstr()
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
DMBlazeRegisterInfo.cpp96 MachineInstr *Old = I; in eliminateCallFramePseudoInstr() local
97 int Amount = Old->getOperand(0).getImm() + 4; in eliminateCallFramePseudoInstr()
106 if (Old->getOpcode() == MBlaze::ADJCALLSTACKDOWN) { in eliminateCallFramePseudoInstr()
107 New = BuildMI(MF,Old->getDebugLoc(),TII.get(MBlaze::ADDIK),MBlaze::R1) in eliminateCallFramePseudoInstr()
110 assert(Old->getOpcode() == MBlaze::ADJCALLSTACKUP); in eliminateCallFramePseudoInstr()
111 New = BuildMI(MF,Old->getDebugLoc(),TII.get(MBlaze::ADDIK),MBlaze::R1) in eliminateCallFramePseudoInstr()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DScheduleDAGSDNodes.cpp81 SUnit *ScheduleDAGSDNodes::Clone(SUnit *Old) { in Clone() argument
82 SUnit *SU = NewSUnit(Old->getNode()); in Clone()
83 SU->OrigNode = Old->OrigNode; in Clone()
84 SU->Latency = Old->Latency; in Clone()
85 SU->isVRegCycle = Old->isVRegCycle; in Clone()
86 SU->isCall = Old->isCall; in Clone()
87 SU->isCallOp = Old->isCallOp; in Clone()
88 SU->isTwoAddress = Old->isTwoAddress; in Clone()
89 SU->isCommutable = Old->isCommutable; in Clone()
90 SU->hasPhysRegDefs = Old->hasPhysRegDefs; in Clone()
[all …]
/external/swiftshader/third_party/LLVM/unittests/VMCore/
DValueMapTest.cpp188 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { in onRAUW()
192 static void onDelete(const ExtraData &Data, KeyT Old) { in onDelete()
242 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { in onRAUW()
245 static void onDelete(const ExtraData &Data, KeyT Old) { in onDelete()
274 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) { in onRAUW()
275 (*Map)->erase(Old); in onRAUW()
277 static void onDelete(ExtraData Map, KeyT Old) { in onDelete()
278 (*Map)->erase(Old); in onDelete()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DValue.cpp569 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) { in ValueIsRAUWd() argument
570 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present"); in ValueIsRAUWd()
571 assert(Old != New && "Changing value into itself!"); in ValueIsRAUWd()
575 LLVMContextImpl *pImpl = Old->getContext().pImpl; in ValueIsRAUWd()
576 ValueHandleBase *Entry = pImpl->ValueHandles[Old]; in ValueIsRAUWd()
614 if (Old->HasValueHandle) in ValueIsRAUWd()
615 for (Entry = pImpl->ValueHandles[Old]; Entry; Entry = Entry->Next) in ValueIsRAUWd()
619 dbgs() << "After RAUW from " << *Old->getType() << " %" in ValueIsRAUWd()
620 << Old->getNameStr() << " to " << *New->getType() << " %" in ValueIsRAUWd()
/external/llvm/unittests/IR/
DValueMapTest.cpp187 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { in onRAUW()
191 static void onDelete(const ExtraData &Data, KeyT Old) { in onDelete()
242 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { in onRAUW()
245 static void onDelete(const ExtraData &Data, KeyT Old) { in onDelete()
274 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) { in onRAUW()
275 (*Map)->erase(Old); in onRAUW()
277 static void onDelete(ExtraData Map, KeyT Old) { in onDelete()
278 (*Map)->erase(Old); in onDelete()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DValueMapTest.cpp187 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { in onRAUW()
191 static void onDelete(const ExtraData &Data, KeyT Old) { in onDelete()
242 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { in onRAUW()
245 static void onDelete(const ExtraData &Data, KeyT Old) { in onDelete()
274 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) { in onRAUW()
275 (*Map)->erase(Old); in onRAUW()
277 static void onDelete(ExtraData Map, KeyT Old) { in onDelete()
278 (*Map)->erase(Old); in onDelete()
/external/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGSDNodes.cpp89 SUnit *ScheduleDAGSDNodes::Clone(SUnit *Old) { in Clone() argument
90 SUnit *SU = newSUnit(Old->getNode()); in Clone()
91 SU->OrigNode = Old->OrigNode; in Clone()
92 SU->Latency = Old->Latency; in Clone()
93 SU->isVRegCycle = Old->isVRegCycle; in Clone()
94 SU->isCall = Old->isCall; in Clone()
95 SU->isCallOp = Old->isCallOp; in Clone()
96 SU->isTwoAddress = Old->isTwoAddress; in Clone()
97 SU->isCommutable = Old->isCommutable; in Clone()
98 SU->hasPhysRegDefs = Old->hasPhysRegDefs; in Clone()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGSDNodes.cpp90 SUnit *ScheduleDAGSDNodes::Clone(SUnit *Old) { in Clone() argument
91 SUnit *SU = newSUnit(Old->getNode()); in Clone()
92 SU->OrigNode = Old->OrigNode; in Clone()
93 SU->Latency = Old->Latency; in Clone()
94 SU->isVRegCycle = Old->isVRegCycle; in Clone()
95 SU->isCall = Old->isCall; in Clone()
96 SU->isCallOp = Old->isCallOp; in Clone()
97 SU->isTwoAddress = Old->isTwoAddress; in Clone()
98 SU->isCommutable = Old->isCommutable; in Clone()
99 SU->hasPhysRegDefs = Old->hasPhysRegDefs; in Clone()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DValueMapper.cpp61 DelayedBasicBlock(const BlockAddress &Old) in DelayedBasicBlock()
62 : OldBB(Old.getBasicBlock()), in DelayedBasicBlock()
63 TempBB(BasicBlock::Create(Old.getContext())) {} in DelayedBasicBlock()
602 Metadata *Old = N.getOperand(I); in remapOperands() local
603 Metadata *New = mapOperand(Old); in remapOperands()
605 if (Old != New) in remapOperands()
714 remapOperands(*ClonedN, [this, &D, &G](Metadata *Old) { in mapNodesInPOT() argument
715 if (Optional<Metadata *> MappedOp = getMappedOp(Old)) in mapNodesInPOT()
718 assert(G.Info[Old].ID > D.ID && "Expected a forward reference"); in mapNodesInPOT()
719 return &G.getFwdReference(*cast<MDNode>(Old)); in mapNodesInPOT()
[all …]
/external/llvm/lib/Transforms/Utils/
DValueMapper.cpp50 DelayedBasicBlock(const BlockAddress &Old) in DelayedBasicBlock()
51 : OldBB(Old.getBasicBlock()), in DelayedBasicBlock()
52 TempBB(BasicBlock::Create(Old.getContext())) {} in DelayedBasicBlock()
591 Metadata *Old = N.getOperand(I); in remapOperands() local
592 Metadata *New = mapOperand(Old); in remapOperands()
594 if (Old != New) in remapOperands()
701 remapOperands(*ClonedN, [this, &D, &G](Metadata *Old) { in mapNodesInPOT() argument
702 if (Optional<Metadata *> MappedOp = getMappedOp(Old)) in mapNodesInPOT()
704 assert(G.Info[Old].ID > D.ID && "Expected a forward reference"); in mapNodesInPOT()
705 return &G.getFwdReference(*cast<MDNode>(Old)); in mapNodesInPOT()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/XCore/
DXCoreRegisterInfo.cpp123 MachineInstr *Old = I; in eliminateCallFramePseudoInstr() local
124 uint64_t Amount = Old->getOperand(0).getImm(); in eliminateCallFramePseudoInstr()
146 if (Old->getOpcode() == XCore::ADJCALLSTACKDOWN) { in eliminateCallFramePseudoInstr()
148 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode)) in eliminateCallFramePseudoInstr()
151 assert(Old->getOpcode() == XCore::ADJCALLSTACKUP); in eliminateCallFramePseudoInstr()
153 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP) in eliminateCallFramePseudoInstr()

12345678910>>...19