Home
last modified time | relevance | path

Searched refs:OldV (Results 1 – 6 of 6) sorted by relevance

/external/compiler-rt/lib/profile/
DInstrProfilingPort.h59 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV) \ argument
61 (LONGLONG)OldV) == (LONGLONG)OldV)
66 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV) \ argument
67 (InterlockedCompareExchange((LONG volatile *)Ptr, (LONG)NewV, (LONG)OldV) == \
68 (LONG)OldV)
74 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV) \ argument
75 __sync_bool_compare_and_swap(Ptr, OldV, NewV)
81 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV) \ argument
82 lprofBoolCmpXchg((void **)Ptr, OldV, NewV)
DInstrProfilingUtil.c51 uint32_t lprofBoolCmpXchg(void **Ptr, void *OldV, void *NewV) { in lprofBoolCmpXchg() argument
53 if (R == OldV) { in lprofBoolCmpXchg()
DInstrProfilingUtil.h30 unsigned lprofBoolCmpXchg(void **Ptr, void *OldV, void *NewV);
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
DBitcodeReader.cpp218 WeakVH &OldV = ValuePtrs[Idx]; in AssignValue() local
219 if (OldV == 0) { in AssignValue()
220 OldV = V; in AssignValue()
226 if (Constant *PHC = dyn_cast<Constant>(&*OldV)) { in AssignValue()
228 OldV = V; in AssignValue()
231 Value *PrevVal = OldV; in AssignValue()
232 OldV->replaceAllUsesWith(V); in AssignValue()
363 WeakVH &OldV = MDValuePtrs[Idx]; in AssignValue() local
364 if (OldV == 0) { in AssignValue()
365 OldV = V; in AssignValue()
[all …]
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp950 WeakVH &OldV = ValuePtrs[Idx]; in assignValue() local
951 if (!OldV) { in assignValue()
952 OldV = V; in assignValue()
958 if (Constant *PHC = dyn_cast<Constant>(&*OldV)) { in assignValue()
960 OldV = V; in assignValue()
963 Value *PrevVal = OldV; in assignValue()
964 OldV->replaceAllUsesWith(V); in assignValue()
/external/llvm/lib/Transforms/Scalar/
DSROA.cpp4061 Value *OldV = U; in clobberUse() local
4063 U = UndefValue::get(OldV->getType()); in clobberUse()
4068 if (Instruction *OldI = dyn_cast<Instruction>(OldV)) in clobberUse()