/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Instruction.cpp | 220 if (const FenceInst *FI = dyn_cast<FenceInst>(this)) in isIdenticalToWhenDefined() 221 return FI->getOrdering() == cast<FenceInst>(FI)->getOrdering() && in isIdenticalToWhenDefined() 222 FI->getSynchScope() == cast<FenceInst>(FI)->getSynchScope(); in isIdenticalToWhenDefined() 276 if (const FenceInst *FI = dyn_cast<FenceInst>(this)) in isSameOperationAs() 277 return FI->getOrdering() == cast<FenceInst>(I)->getOrdering() && in isSameOperationAs() 278 FI->getSynchScope() == cast<FenceInst>(I)->getSynchScope(); in isSameOperationAs()
|
D | Instructions.cpp | 1314 FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering, in FenceInst() function in FenceInst 1322 FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering, in FenceInst() function in FenceInst 3372 FenceInst *FenceInst::clone_impl() const { in clone_impl() 3373 return new FenceInst(getContext(), getOrdering(), getSynchScope()); in clone_impl()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | LowerAtomic.cpp | 93 static bool LowerFenceInst(FenceInst *FI) { in LowerFenceInst() 118 if (FenceInst *FI = dyn_cast<FenceInst>(Inst)) in runOnBasicBlock()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | LowerAtomic.cpp | 97 static bool LowerFenceInst(FenceInst *FI) { in LowerFenceInst() 116 if (FenceInst *FI = dyn_cast<FenceInst>(Inst)) in runOnBasicBlock()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LowerAtomic.cpp | 98 static bool LowerFenceInst(FenceInst *FI) { in LowerFenceInst() 117 if (FenceInst *FI = dyn_cast<FenceInst>(Inst)) in runOnBasicBlock()
|
D | EarlyCSE.cpp | 702 if (FenceInst *FI = dyn_cast<FenceInst>(Inst)) in processNode()
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | AliasAnalysis.h | 346 case Instruction::Fence: return getModRefInfo((const FenceInst*)I, Loc); in getModRefInfo() 418 ModRefResult getModRefInfo(const FenceInst *S, const Location &Loc) { in getModRefInfo() 425 ModRefResult getModRefInfo(const FenceInst *S, const Value *P, uint64_t Size){ in getModRefInfo()
|
/external/llvm/lib/IR/ |
D | Instruction.cpp | 377 if (const FenceInst *FI = dyn_cast<FenceInst>(I1)) in haveSameSpecialState() 378 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() && in haveSameSpecialState() 379 FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope(); in haveSameSpecialState()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | Instruction.cpp | 410 if (const FenceInst *FI = dyn_cast<FenceInst>(I1)) in haveSameSpecialState() 411 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() && in haveSameSpecialState() 412 FI->getSyncScopeID() == cast<FenceInst>(I2)->getSyncScopeID(); in haveSameSpecialState()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | MergeFunctions.cpp | 328 if (const FenceInst *FI = dyn_cast<FenceInst>(I1)) in isEquivalentOperation() 329 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() && in isEquivalentOperation() 330 FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope(); in isEquivalentOperation()
|
/external/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 394 ModRefInfo getModRefInfo(const FenceInst *S, const MemoryLocation &Loc) { in getModRefInfo() 401 ModRefInfo getModRefInfo(const FenceInst *S, const Value *P, uint64_t Size) { in getModRefInfo() 488 case Instruction::Fence: return getModRefInfo((const FenceInst*)I, Loc); in getModRefInfo()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | FunctionComparator.cpp | 611 if (const FenceInst *FI = dyn_cast<FenceInst>(L)) { in cmpOperations() 613 cmpOrderings(FI->getOrdering(), cast<FenceInst>(R)->getOrdering())) in cmpOperations() 616 cast<FenceInst>(R)->getSyncScopeID()); in cmpOperations()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 557 ModRefInfo getModRefInfo(const FenceInst *S, const MemoryLocation &Loc); 560 ModRefInfo getModRefInfo(const FenceInst *S, const Value *P, in getModRefInfo() 640 case Instruction::Fence: return getModRefInfo((const FenceInst*)I, Loc); in getModRefInfo()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | ThreadSanitizer.cpp | 375 if (isa<FenceInst>(I)) in isAtomic() 653 } else if (FenceInst *FI = dyn_cast<FenceInst>(I)) { in instrumentAtomic()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/ |
D | ThreadSanitizer.cpp | 391 if (isa<FenceInst>(I)) in isAtomic() 678 } else if (FenceInst *FI = dyn_cast<FenceInst>(I)) { in instrumentAtomic()
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | InstVisitor.h | 175 RetTy visitFenceInst(FenceInst &I) { DELEGATE(Instruction); } in visitFenceInst()
|
/external/llvm/lib/Transforms/IPO/ |
D | MergeFunctions.cpp | 1016 if (const FenceInst *FI = dyn_cast<FenceInst>(L)) { in cmpOperations() 1018 cmpOrderings(FI->getOrdering(), cast<FenceInst>(R)->getOrdering())) in cmpOperations() 1020 return cmpNumbers(FI->getSynchScope(), cast<FenceInst>(R)->getSynchScope()); in cmpOperations()
|
/external/llvm/include/llvm/IR/ |
D | InstVisitor.h | 182 RetTy visitFenceInst(FenceInst &I) { DELEGATE(Instruction);} in visitFenceInst()
|
D | Instruction.def | 152 HANDLE_MEMORY_INST(33, Fence , FenceInst )
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Instruction.def | 137 HANDLE_MEMORY_INST(31, Fence , FenceInst )
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | InstVisitor.h | 185 RetTy visitFenceInst(FenceInst &I) { DELEGATE(Instruction);} in visitFenceInst()
|
D | Instruction.def | 156 HANDLE_MEMORY_INST(33, Fence , FenceInst )
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.h | 63 class FenceInst; variable 914 void visitFence(const FenceInst &I);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Instruction.def | 152 HANDLE_MEMORY_INST(33, Fence , FenceInst )
|
/external/llvm/lib/Analysis/ |
D | CFLGraph.h | 480 return !isa<CmpInst>(Inst) && !isa<FenceInst>(Inst) && in hasUsefulEdges()
|