Home
last modified time | relevance | path

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

12345678910>>...26

/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/llvm-project/llvm/lib/Transforms/IPO/
DConstantMerge.cpp103 static CanMerge makeMergeable(GlobalVariable *Old, GlobalVariable *New) { in makeMergeable() argument
104 if (!Old->hasGlobalUnnamedAddr() && !New->hasGlobalUnnamedAddr()) in makeMergeable()
106 if (hasMetadataOtherThanDebugLoc(Old)) in makeMergeable()
109 if (!Old->hasGlobalUnnamedAddr()) in makeMergeable()
114 static void replace(Module &M, GlobalVariable *Old, GlobalVariable *New) { in replace() argument
117 LLVM_DEBUG(dbgs() << "Replacing global: @" << Old->getName() << " -> @" in replace()
121 if (Old->getAlign() || New->getAlign()) in replace()
122 New->setAlignment(std::max(getAlign(Old), getAlign(New))); in replace()
124 copyDebugLocMetadata(Old, New); in replace()
125 Old->replaceAllUsesWith(NewConstant); in replace()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DConstantMerge.cpp105 static CanMerge makeMergeable(GlobalVariable *Old, GlobalVariable *New) { in makeMergeable() argument
106 if (!Old->hasGlobalUnnamedAddr() && !New->hasGlobalUnnamedAddr()) in makeMergeable()
108 if (hasMetadataOtherThanDebugLoc(Old)) in makeMergeable()
111 if (!Old->hasGlobalUnnamedAddr()) in makeMergeable()
116 static void replace(Module &M, GlobalVariable *Old, GlobalVariable *New) { in replace() argument
119 LLVM_DEBUG(dbgs() << "Replacing global: @" << Old->getName() << " -> @" in replace()
123 if (Old->getAlignment() || New->getAlignment()) in replace()
124 New->setAlignment(Align(std::max(getAlignment(Old), getAlignment(New)))); in replace()
126 copyDebugLocMetadata(Old, New); in replace()
127 Old->replaceAllUsesWith(NewConstant); in replace()
[all …]
/external/llvm-project/clang/lib/Tooling/Syntax/
DMutations.cpp49 static void replace(syntax::Node *Old, syntax::Node *New) { in replace() argument
50 assert(Old != nullptr); in replace()
51 assert(Old->Parent != nullptr); in replace()
52 assert(Old->canModify()); in replace()
58 New->Role = Old->Role; in replace()
59 auto *P = Old->getParent(); in replace()
60 P->replaceChildRangeLowLevel(Old, Old->getNextSibling(), New); in replace()
/external/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyRegColoring.cpp138 unsigned Old = LI->reg(); in runOnMachineFunction() local
140 const TargetRegisterClass *RC = MRI->getRegClass(Old); in runOnMachineFunction()
143 if (!MRI->isLiveIn(Old)) in runOnMachineFunction()
157 Changed |= Old != New; in runOnMachineFunction()
161 if (Old != New && MFI.isFrameBaseVirtual() && MFI.getFrameBaseVreg() == Old) 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-project/llvm/include/llvm/Support/
DAllocator.h87 BumpPtrAllocatorImpl(BumpPtrAllocatorImpl &&Old) in BumpPtrAllocatorImpl() argument
88 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), in BumpPtrAllocatorImpl()
89 CustomSizedSlabs(std::move(Old.CustomSizedSlabs)), in BumpPtrAllocatorImpl()
90 BytesAllocated(Old.BytesAllocated), RedZoneSize(Old.RedZoneSize), in BumpPtrAllocatorImpl()
91 Allocator(std::move(Old.Allocator)) { in BumpPtrAllocatorImpl()
92 Old.CurPtr = Old.End = nullptr; in BumpPtrAllocatorImpl()
93 Old.BytesAllocated = 0; in BumpPtrAllocatorImpl()
94 Old.Slabs.clear(); in BumpPtrAllocatorImpl()
95 Old.CustomSizedSlabs.clear(); in BumpPtrAllocatorImpl()
386 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/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/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 …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DAllocator.h158 BumpPtrAllocatorImpl(BumpPtrAllocatorImpl &&Old) in BumpPtrAllocatorImpl() argument
159 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), in BumpPtrAllocatorImpl()
160 CustomSizedSlabs(std::move(Old.CustomSizedSlabs)), in BumpPtrAllocatorImpl()
161 BytesAllocated(Old.BytesAllocated), RedZoneSize(Old.RedZoneSize), in BumpPtrAllocatorImpl()
162 Allocator(std::move(Old.Allocator)) { in BumpPtrAllocatorImpl()
163 Old.CurPtr = Old.End = nullptr; in BumpPtrAllocatorImpl()
164 Old.BytesAllocated = 0; in BumpPtrAllocatorImpl()
165 Old.Slabs.clear(); in BumpPtrAllocatorImpl()
166 Old.CustomSizedSlabs.clear(); in BumpPtrAllocatorImpl()
455 SpecificBumpPtrAllocator(SpecificBumpPtrAllocator &&Old) in SpecificBumpPtrAllocator() argument
[all …]
/external/llvm-project/clang/lib/Sema/
DSemaExceptionSpec.cpp259 const FunctionProtoType *Old, SourceLocation OldLoc,
285 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) { in CheckEquivalentExceptionSpec() argument
307 if (exceptionSpecNotKnownYet(Old) || exceptionSpecNotKnownYet(New)) { in CheckEquivalentExceptionSpec()
308 DelayedEquivalentExceptionSpecChecks.push_back({New, Old}); in CheckEquivalentExceptionSpec()
316 Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(), in CheckEquivalentExceptionSpec()
325 hasImplicitExceptionSpec(Old) != hasImplicitExceptionSpec(New)) { in CheckEquivalentExceptionSpec()
327 << hasImplicitExceptionSpec(Old); in CheckEquivalentExceptionSpec()
328 if (Old->getLocation().isValid()) in CheckEquivalentExceptionSpec()
329 Diag(Old->getLocation(), diag::note_previous_declaration); in CheckEquivalentExceptionSpec()
351 (Old->getLocation().isInvalid() || in CheckEquivalentExceptionSpec()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyRegColoring.cpp138 unsigned Old = LI->reg; in runOnMachineFunction() local
140 const TargetRegisterClass *RC = MRI->getRegClass(Old); in runOnMachineFunction()
143 if (!MRI->isLiveIn(Old)) in runOnMachineFunction()
157 Changed |= Old != New; in runOnMachineFunction()
168 unsigned Old = SortedIntervals[I]->reg; in runOnMachineFunction() local
170 if (Old != New) in runOnMachineFunction()
171 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-10.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/llvm-project/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/llvm-project/llvm/lib/Target/MSP430/
DMSP430FrameLowering.cpp231 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local
232 uint64_t Amount = TII.getFrameSize(Old); in eliminateCallFramePseudoInstr()
240 if (Old.getOpcode() == TII.getCallFrameSetupOpcode()) { in eliminateCallFramePseudoInstr()
242 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP) in eliminateCallFramePseudoInstr()
246 assert(Old.getOpcode() == TII.getCallFrameDestroyOpcode()); in eliminateCallFramePseudoInstr()
248 Amount -= TII.getFramePoppedByCallee(Old); in eliminateCallFramePseudoInstr()
250 New = BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::ADD16ri), in eliminateCallFramePseudoInstr()
268 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local
270 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-10.0/llvm/lib/Target/MSP430/
DMSP430FrameLowering.cpp237 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local
238 uint64_t Amount = TII.getFrameSize(Old); in eliminateCallFramePseudoInstr()
246 if (Old.getOpcode() == TII.getCallFrameSetupOpcode()) { in eliminateCallFramePseudoInstr()
248 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP) in eliminateCallFramePseudoInstr()
252 assert(Old.getOpcode() == TII.getCallFrameDestroyOpcode()); in eliminateCallFramePseudoInstr()
254 Amount -= TII.getFramePoppedByCallee(Old); in eliminateCallFramePseudoInstr()
256 New = BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::ADD16ri), in eliminateCallFramePseudoInstr()
274 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local
276 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP) in eliminateCallFramePseudoInstr()
/external/llvm-project/clang/lib/AST/Interp/
DPointer.cpp42 Block *Old = Pointee; in operator =() local
54 if (Old) in operator =()
55 Old->cleanup(); in operator =()
59 Block *Old = Pointee; in operator =() local
71 if (Old) in operator =()
72 Old->cleanup(); in operator =()
/external/llvm-project/clang-tools-extra/clang-tidy/portability/
DSIMDIntrinsicsCheck.cpp110 StringRef Old = Callee->getName(); in check() local
123 New = TrySuggestPPC(Old); in check()
127 New = TrySuggestX86(Old); in check()
137 Message = (Twine("'") + Old + "' can be replaced by " + New).str(); in check()
142 Message = (Twine("'") + Old + "' is a non-portable " + in check()
/external/llvm-project/clang-tools-extra/clangd/
DSemanticHighlighting.cpp456 ArrayRef<HighlightingToken> Old) { in diffHighlightings() argument
459 assert(std::is_sorted(Old.begin(), Old.end()) && in diffHighlightings()
478 ArrayRef<HighlightingToken> OldLine(Old.begin(), in diffHighlightings()
481 auto OldEnd = Old.end(); in diffHighlightings()
493 OldLine = takeLine(Old, OldLine.end(), LineNumber); in diffHighlightings()
675 diffTokens(llvm::ArrayRef<SemanticToken> Old, in diffTokens() argument
681 while (!Old.empty() && !New.empty() && Old.front() == New.front()) { in diffTokens()
683 Old = Old.drop_front(); in diffTokens()
686 while (!Old.empty() && !New.empty() && Old.back() == New.back()) { in diffTokens()
687 Old = Old.drop_back(); in diffTokens()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DOrderedBasicBlock.cpp101 void OrderedBasicBlock::replaceInstruction(const Instruction *Old, in replaceInstruction() argument
103 auto OI = NumberedInsts.find(Old); in replaceInstruction()
108 if (LastInstFound != BB->end() && Old == &*LastInstFound) in replaceInstruction()
110 NumberedInsts.erase(Old); in replaceInstruction()
/external/llvm-project/compiler-rt/lib/fuzzer/
DFuzzerValueBitMap.h37 uintptr_t Old = Map[WordIdx]; in AddValue() local
38 uintptr_t New = Old | (1ULL << BitIdx); in AddValue()
40 return New != Old; in AddValue()
/external/rust/crates/libfuzzer-sys/libfuzzer/
DFuzzerValueBitMap.h37 uintptr_t Old = Map[WordIdx]; in AddValue() local
38 uintptr_t New = Old | (1ULL << BitIdx); in AddValue()
40 return New != Old; in AddValue()

12345678910>>...26