Searched refs:getSynchScope (Results 1 - 17 of 17) sorted by relevance

/external/llvm/lib/IR/
H A DInstruction.cpp277 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope();
283 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope();
300 FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope();
308 CXI->getSynchScope() == cast<AtomicCmpXchgInst>(I2)->getSynchScope();
313 RMWI->getSynchScope() == cast<AtomicRMWInst>(I2)->getSynchScope();
[all...]
H A DAsmWriter.cpp2073 writeAtomic(LI->getOrdering(), LI->getSynchScope());
2078 writeAtomic(SI->getOrdering(), SI->getSynchScope());
2083 CXI->getSynchScope());
2085 writeAtomic(RMWI->getOrdering(), RMWI->getSynchScope());
2087 writeAtomic(FI->getOrdering(), FI->getSynchScope());
H A DInstructions.cpp3594 getAlignment(), getOrdering(), getSynchScope());
3599 getAlignment(), getOrdering(), getSynchScope());
3607 getSynchScope());
3616 getOrdering(), getSynchScope());
3622 return new FenceInst(getContext(), getOrdering(), getSynchScope());
H A DVerifier.cpp1910 Assert1(LI.getSynchScope() == CrossThread,
1985 Assert1(SI.getSynchScope() == CrossThread,
/external/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp746 cmpNumbers(LI->getSynchScope(), cast<LoadInst>(R)->getSynchScope()))
761 return cmpNumbers(SI->getSynchScope(), cast<StoreInst>(R)->getSynchScope());
801 return cmpNumbers(FI->getSynchScope(), cast<FenceInst>(R)->getSynchScope());
817 return cmpNumbers(CXI->getSynchScope(),
818 cast<AtomicCmpXchgInst>(R)->getSynchScope());
830 return cmpNumbers(RMWI->getSynchScope(),
831 cast<AtomicRMWInst>(R)->getSynchScope());
[all...]
H A DGlobalOpt.cpp888 SI->getOrdering(), SI->getSynchScope(), SI);
905 LI->getOrdering(), LI->getSynchScope(),
1665 LI->getOrdering(), LI->getSynchScope(), LI);
1674 SI->getOrdering(), SI->getSynchScope(), SI);
1679 LI->getOrdering(), LI->getSynchScope(), LI);
/external/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp301 return LI->isAtomic() && LI->getSynchScope() == CrossThread;
303 return SI->isAtomic() && SI->getSynchScope() == CrossThread;
544 Function *F = FI->getSynchScope() == SingleThread ?
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp344 NewLoad->setAtomic(LI.getOrdering(), LI.getSynchScope());
836 SI.getSynchScope());
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1455 Vals.push_back(GetEncodedSynchScope(cast<LoadInst>(I).getSynchScope()));
1469 Vals.push_back(GetEncodedSynchScope(cast<StoreInst>(I).getSynchScope()));
1481 cast<AtomicCmpXchgInst>(I).getSynchScope()));
1495 cast<AtomicRMWInst>(I).getSynchScope()));
1500 Vals.push_back(GetEncodedSynchScope(cast<FenceInst>(I).getSynchScope()));
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp1331 StringRef CrossThread = ConvertAtomicSynchScope(load->getSynchScope());
1349 StringRef CrossThread = ConvertAtomicSynchScope(store->getSynchScope());
1557 StringRef CrossThread = ConvertAtomicSynchScope(fi->getSynchScope());
1570 StringRef CrossThread = ConvertAtomicSynchScope(cxi->getSynchScope());
1589 StringRef CrossThread = ConvertAtomicSynchScope(rmwi->getSynchScope());
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp177 N->getSynchScope());
190 N->getSynchScope());
214 N->getSynchScope());
227 N->getFailureOrdering(), N->getSynchScope());
896 N->getOrdering(), N->getSynchScope());
1179 AN->getSynchScope());
2445 cast<AtomicSDNode>(N)->getSynchScope());
2877 cast<AtomicSDNode>(N)->getSynchScope());
H A DSelectionDAGBuilder.cpp3623 SynchronizationScope Scope = I.getSynchScope();
3670 SynchronizationScope Scope = I.getSynchScope();
3705 Ops[2] = DAG.getConstant(I.getSynchScope(), TLI->getPointerTy());
3712 SynchronizationScope Scope = I.getSynchScope();
3752 SynchronizationScope Scope = I.getSynchScope();
H A DLegalizeDAG.cpp3020 cast<AtomicSDNode>(Node)->getSynchScope());
3033 cast<AtomicSDNode>(Node)->getSynchScope());
3068 cast<AtomicSDNode>(Node)->getSynchScope());
/external/llvm/include/llvm/IR/
H A DInstructions.h216 SynchronizationScope getSynchScope() const { function in class:llvm::LoadInst
336 SynchronizationScope getSynchScope() const { function in class:llvm::StoreInst
431 SynchronizationScope getSynchScope() const { function in class:llvm::FenceInst
551 SynchronizationScope getSynchScope() const { function in class:llvm::AtomicCmpXchgInst
720 SynchronizationScope getSynchScope() const { function in class:llvm::AtomicRMWInst
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1084 SynchronizationScope getSynchScope() const { function in class:llvm::MemSDNode
1178 assert(getSynchScope() == SynchScope && "Synch-scope encoding error!");
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp2312 Node->getSynchScope());
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp16060 cast<AtomicSDNode>(Node)->getSynchScope());
16081 cast<AtomicSDNode>(Node)->getSynchScope());
16273 cast<AtomicSDNode>(Node)->getSynchScope());

Completed in 286 milliseconds