HomeSort by relevance Sort by last modified time
    Searched refs:FenceInst (Results 1 - 22 of 22) sorted by null

  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 93 static bool LowerFenceInst(FenceInst *FI) {
118 if (FenceInst *FI = dyn_cast<FenceInst>(Inst))
SCCP.cpp 496 void visitFenceInst (FenceInst &I) { /*returns void*/ }
    [all...]
  /external/llvm/lib/IR/
Instruction.cpp 307 if (const FenceInst *FI = dyn_cast<FenceInst>(this))
308 return FI->getOrdering() == cast<FenceInst>(FI)->getOrdering() &&
309 FI->getSynchScope() == cast<FenceInst>(FI)->getSynchScope();
381 if (const FenceInst *FI = dyn_cast<FenceInst>(this))
382 return FI->getOrdering() == cast<FenceInst>(I)->getOrdering() &&
383 FI->getSynchScope() == cast<FenceInst>(I)->getSynchScope();
Instructions.cpp     [all...]
AsmWriter.cpp     [all...]
Verifier.cpp 292 void visitFenceInst(FenceInst &FI);
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 359 case Instruction::Fence: return getModRefInfo((const FenceInst*)I, Loc);
431 ModRefResult getModRefInfo(const FenceInst *S, const Location &Loc) {
438 ModRefResult getModRefInfo(const FenceInst *S, const Value *P, uint64_t Size){
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 299 if (isa<FenceInst>(I))
499 } else if (FenceInst *FI = dyn_cast<FenceInst>(I)) {
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 328 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
329 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() &&
330 FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope();
  /external/llvm/include/llvm/
InstVisitor.h 179 RetTy visitFenceInst(FenceInst &I) { DELEGATE(Instruction);}
  /external/llvm/include/llvm/IR/
Instructions.h 379 // FenceInst Class
382 /// FenceInst - an instruction for ordering other memory operations
384 class FenceInst : public Instruction {
388 virtual FenceInst *clone_impl() const;
397 FenceInst(LLVMContext &C, AtomicOrdering Ordering,
400 FenceInst(LLVMContext &C, AtomicOrdering Ordering,
    [all...]
IRBuilder.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 524 void visitFence(const FenceInst &I);
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]

Completed in 1043 milliseconds