/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instruction.cpp | 394 LI->getSyncScopeID() == cast<LoadInst>(I2)->getSyncScopeID(); in haveSameSpecialState() 400 SI->getSyncScopeID() == cast<StoreInst>(I2)->getSyncScopeID(); in haveSameSpecialState() 422 FI->getSyncScopeID() == cast<FenceInst>(I2)->getSyncScopeID(); in haveSameSpecialState() 430 CXI->getSyncScopeID() == in haveSameSpecialState() 431 cast<AtomicCmpXchgInst>(I2)->getSyncScopeID(); in haveSameSpecialState() 436 RMWI->getSyncScopeID() == cast<AtomicRMWInst>(I2)->getSyncScopeID(); in haveSameSpecialState()
|
D | Instructions.cpp | 4149 getSyncScopeID()); in cloneImpl() 4155 getSyncScopeID()); in cloneImpl() 4162 getSyncScopeID()); in cloneImpl() 4171 getOrdering(), getSyncScopeID()); in cloneImpl() 4177 return new FenceInst(getContext(), getOrdering(), getSyncScopeID()); in cloneImpl()
|
D | AsmWriter.cpp | 4068 writeAtomic(LI->getContext(), LI->getOrdering(), LI->getSyncScopeID()); in printInstruction() 4073 writeAtomic(SI->getContext(), SI->getOrdering(), SI->getSyncScopeID()); in printInstruction() 4078 CXI->getFailureOrdering(), CXI->getSyncScopeID()); in printInstruction() 4081 RMWI->getSyncScopeID()); in printInstruction() 4083 writeAtomic(FI->getContext(), FI->getOrdering(), FI->getSyncScopeID()); in printInstruction()
|
D | Core.cpp | 3949 return I->getSyncScopeID() == SyncScope::SingleThread; in LLVMIsAtomicSingleThread() 3950 return cast<AtomicCmpXchgInst>(P)->getSyncScopeID() == in LLVMIsAtomicSingleThread()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | FunctionComparator.cpp | 551 if (int Res = cmpNumbers(LI->getSyncScopeID(), in cmpOperations() 552 cast<LoadInst>(R)->getSyncScopeID())) in cmpOperations() 567 return cmpNumbers(SI->getSyncScopeID(), in cmpOperations() 568 cast<StoreInst>(R)->getSyncScopeID()); in cmpOperations() 612 return cmpNumbers(FI->getSyncScopeID(), in cmpOperations() 613 cast<FenceInst>(R)->getSyncScopeID()); in cmpOperations() 630 return cmpNumbers(CXI->getSyncScopeID(), in cmpOperations() 631 cast<AtomicCmpXchgInst>(R)->getSyncScopeID()); in cmpOperations() 643 return cmpNumbers(RMWI->getSyncScopeID(), in cmpOperations() 644 cast<AtomicRMWInst>(R)->getSyncScopeID()); in cmpOperations()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAtomicRMW.cpp | 126 SI->setAtomic(Ordering, RMWI.getSyncScopeID()); in visitAtomicRMWInst() 156 Load->setAtomic(Ordering, RMWI.getSyncScopeID()); in visitAtomicRMWInst()
|
D | InstCombineLoadStoreAlloca.cpp | 474 NewLoad->setAtomic(LI.getOrdering(), LI.getSyncScopeID()); in combineLoadToNewType() 494 NewStore->setAtomic(SI.getOrdering(), SI.getSyncScopeID()); in combineStoreToNewValue() 1046 V1->setAtomic(LI.getOrdering(), LI.getSyncScopeID()); in visitLoadInst() 1048 V2->setAtomic(LI.getOrdering(), LI.getSyncScopeID()); in visitLoadInst() 1608 SI.getOrdering(), SI.getSyncScopeID()); in mergeStoreIntoSuccessor()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MIRVRegNamerUtils.cpp | 114 MIOperands.push_back((unsigned)Op->getSyncScopeID()); in getInstructionOpcodeHash()
|
D | MachineFunction.cpp | 438 Align, AAMDNodes(), nullptr, MMO->getSyncScopeID(), in getMachineMemOperand() 452 MMO->getRanges(), MMO->getSyncScopeID(), in getMachineMemOperand() 461 MMO->getAAInfo(), MMO->getRanges(), MMO->getSyncScopeID(), in getMachineMemOperand()
|
D | AtomicExpandPass.cpp | 388 NewLI->setAtomic(LI->getOrdering(), LI->getSyncScopeID()); in convertAtomicLoadToIntegerType() 475 NewSI->setAtomic(SI->getOrdering(), SI->getSyncScopeID()); in convertAtomicStoreToIntegerType() 894 CI->getFailureOrdering(), CI->getSyncScopeID()); in expandPartwordCmpXchg() 1073 CI->getSyncScopeID()); in convertCmpXchgToIntegerType()
|
D | MachineOperand.cpp | 1021 assert(getSyncScopeID() == SSID && "Value truncated"); in MachineMemOperand() 1090 printSyncScope(OS, Context, getSyncScopeID(), SSNs); in print()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | ThreadSanitizer.cpp | 417 return LI->isAtomic() && LI->getSyncScopeID() != SyncScope::SingleThread; in isAtomic() 419 return SI->isAtomic() && SI->getSyncScopeID() != SyncScope::SingleThread; in isAtomic() 712 FunctionCallee F = FI->getSyncScopeID() == SyncScope::SingleThread in instrumentAtomic()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineMemOperand.h | 241 SyncScope::ID getSyncScopeID() const { in getSyncScopeID() function
|
D | SelectionDAGNodes.h | 1344 SyncScope::ID getSyncScopeID() const { return MMO->getSyncScopeID(); }
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | IRTranslator.cpp | 898 LI.getSyncScopeID(), LI.getOrdering()); in translateLoad() 941 SI.getSyncScopeID(), SI.getOrdering()); in translateStore() 1989 I.getSyncScopeID(), I.getSuccessOrdering(), in translateAtomicCmpXchg() 2061 nullptr, I.getSyncScopeID(), I.getOrdering())); in translateAtomicRMW() 2069 Fence.getSyncScopeID()); in translateFence()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 908 None, SI->getOrdering(), SI->getSyncScopeID(), SI); in OptimizeGlobalAddressOfMalloc() 926 LI->getOrdering(), LI->getSyncScopeID(), in OptimizeGlobalAddressOfMalloc() 1733 LI->getOrdering(), LI->getSyncScopeID(), LI); in TryToShrinkGlobalToBoolean() 1743 SI->getSyncScopeID(), SI); in TryToShrinkGlobalToBoolean() 1750 LI->getOrdering(), LI->getSyncScopeID(), LI); in TryToShrinkGlobalToBoolean()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SIMemoryLegalizer.cpp | 535 MMI->isSyncScopeInclusion(SSID, MMO->getSyncScopeID()); in constructFromMIWithMMO() 542 SSID = IsSyncScopeInclusion.getValue() ? SSID : MMO->getSyncScopeID(); in constructFromMIWithMMO()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Instructions.h | 270 SyncScope::ID getSyncScopeID() const { in getSyncScopeID() function 401 SyncScope::ID getSyncScopeID() const { in getSyncScopeID() function 507 SyncScope::ID getSyncScopeID() const { 627 SyncScope::ID getSyncScopeID() const { 821 SyncScope::ID getSyncScopeID() const {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 2943 Vals.push_back(getEncodedSyncScopeID(cast<LoadInst>(I).getSyncScopeID())); in writeInstruction() 2958 getEncodedSyncScopeID(cast<StoreInst>(I).getSyncScopeID())); in writeInstruction() 2970 getEncodedSyncScopeID(cast<AtomicCmpXchgInst>(I).getSyncScopeID())); in writeInstruction() 2984 getEncodedSyncScopeID(cast<AtomicRMWInst>(I).getSyncScopeID())); in writeInstruction() 2989 Vals.push_back(getEncodedSyncScopeID(cast<FenceInst>(I).getSyncScopeID())); in writeInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | DeadStoreElimination.cpp | 1283 Earlier->getSyncScopeID(), DepWrite); in eliminateDeadStores()
|
D | SROA.cpp | 2521 NewLI->setAtomic(LI.getOrdering(), LI.getSyncScopeID()); in visitLoadInst() 2560 NewLI->setAtomic(LI.getOrdering(), LI.getSyncScopeID()); in visitLoadInst() 2713 NewSI->setAtomic(SI.getOrdering(), SI.getSyncScopeID()); in visitStoreInst()
|
D | GVN.cpp | 1248 MaybeAlign(LI->getAlignment()), LI->getOrdering(), LI->getSyncScopeID(), in PerformLoadPRE()
|
D | JumpThreading.cpp | 1434 LoadI->getOrdering(), LoadI->getSyncScopeID(), in SimplifyPartiallyRedundantLoad()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 4629 SyncScope::ID SSID = I.getSyncScopeID(); in visitAtomicCmpXchg() 4682 SyncScope::ID SSID = I.getSyncScopeID(); in visitAtomicRMW() 4718 Ops[2] = DAG.getTargetConstant(I.getSyncScopeID(), dl, in visitFence() 4726 SyncScope::ID SSID = I.getSyncScopeID(); in visitAtomicLoad() 4792 SyncScope::ID SSID = I.getSyncScopeID(); in visitAtomicStore()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonFrameLowering.cpp | 1405 MMO->getSyncScopeID(), MMO->getOrdering(), in processFunctionBeforeFrameFinalized()
|