Home
last modified time | relevance | path

Searched refs:oldValue (Results 1 – 17 of 17) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/vector-types/
H A DTestVectorTypesFormatting.py76 oldValue = v.GetChildAtIndex(0).GetValue()
79 self.assertNotEqual(oldValue, newValue,
85 oldValue, oldValueAgain,
/llvm-project-15.0.7/clang/test/CodeGenObjCXX/
H A Drefence-assign-write-barrier.mm14 NSArray* oldValue = target;
18 [oldValue release];
/llvm-project-15.0.7/mlir/lib/AsmParser/
H A DAsmParserState.cpp338 void AsmParserState::refineDefinition(Value oldValue, Value newValue) { in refineDefinition() argument
339 auto it = impl->placeholderValueUses.find(oldValue); in refineDefinition()
343 impl->placeholderValueUses.erase(oldValue); in refineDefinition()
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dcmpxchg-idioms.ll39 define i1 @test_return_bool(i8* %value, i8 %oldValue, i8 %newValue) {
73 %pair = cmpxchg i8* %value, i8 %oldValue, i8 %newValue acq_rel monotonic
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DFunctionInterfaces.h135 Attribute oldValue = attributes.set(name, value); in setArgAttr() local
138 if (value != oldValue) in setArgAttr()
/llvm-project-15.0.7/mlir/lib/Conversion/PDLToPDLInterp/
H A DPDLToPDLInterp.cpp605 auto mapRewriteValue = [&](Value oldValue) { in generateRewriter() argument
606 Value &newValue = rewriteValues[oldValue]; in generateRewriter()
611 Operation *oldOp = oldValue.getDefiningOp(); in generateRewriter()
630 Position *inputPos = valueToPosition.lookup(oldValue); in generateRewriter()
633 return newValue = rewriterFunc.front().addArgument(oldValue.getType(), in generateRewriter()
634 oldValue.getLoc()); in generateRewriter()
/llvm-project-15.0.7/mlir/include/mlir/AsmParser/
H A DAsmParserState.h171 void refineDefinition(Value oldValue, Value newValue);
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Dcmpxchg-idioms.ll52 define i1 @test_return_bool(i8* %value, i8 %oldValue, i8 %newValue) {
96 %pair = cmpxchg i8* %value, i8 %oldValue, i8 %newValue acq_rel monotonic
/llvm-project-15.0.7/mlir/lib/IR/
H A DOperationSupport.cpp112 Attribute oldValue = it.first->getValue(); in set() local
119 return oldValue; in set()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/readability/
H A Dsuspicious-call-argument.rst74 In the case of ``oldValue`` and ``value`` compared, the similarity percentage
/llvm-project-15.0.7/mlir/lib/Target/LLVMIR/
H A DConvertFromLLVMIR.cpp1230 Value oldValue = llvmAndUnknown.second->getResult(0); in processFunction() local
1231 oldValue.replaceAllUsesWith(newValue); in processFunction()
/llvm-project-15.0.7/mlir/lib/Conversion/TosaToLinalg/
H A DTosaToLinalg.cpp2006 auto oldValue = blockArgs[2]; in matchAndRewrite() local
2015 nestedLoc, arith::CmpFPredicate::OGT, newValue, oldValue); in matchAndRewrite()
2018 nestedLoc, arith::CmpIPredicate::sgt, newValue, oldValue); in matchAndRewrite()
2025 nestedLoc, predicate, newValue, oldValue); in matchAndRewrite()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGObjC.cpp2491 llvm::Value *oldValue = EmitLoadOfScalar(dst, SourceLocation()); in EmitARCStoreStrong() local
2498 EmitARCRelease(oldValue, dst.isARCPreciseLifetime()); in EmitARCStoreStrong()
3596 llvm::Value *oldValue = EmitLoadOfScalar(lvalue, SourceLocation()); in EmitARCStoreStrong() local
3598 EmitARCRelease(oldValue, lvalue.isARCPreciseLifetime()); in EmitARCStoreStrong()
H A DCGDecl.cpp882 llvm::Value *oldValue = EmitLoadOfScalar(lvalue, init->getExprLoc()); in EmitScalarInit() local
884 EmitARCRelease(oldValue, ARCImpreciseLifetime); in EmitScalarInit()
H A DCGBlocks.cpp2263 llvm::Value *oldValue = CGF.Builder.CreateLoad(srcField); in emitCopy() local
2264 llvm::Value *copy = CGF.EmitARCRetainBlock(oldValue, /*mandatory*/ true); in emitCopy()
H A DCGCall.cpp3873 llvm::Value *oldValue = CGF.EmitLoadOfScalar(srcLV, SourceLocation()); in emitWriteback() local
3879 CGF.EmitARCRelease(oldValue, srcLV.isARCPreciseLifetime()); in emitWriteback()
/llvm-project-15.0.7/clang/docs/
H A DAutomaticReferenceCounting.rst2617 id oldValue = *object;
2620 [oldValue release];