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

  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 39 static bool LowerAtomicRMWInst(AtomicRMWInst *RMWI) {
40 IRBuilder<> Builder(RMWI->getParent(), RMWI);
41 Value *Ptr = RMWI->getPointerOperand();
42 Value *Val = RMWI->getValOperand();
47 switch (RMWI->getOperation()) {
88 RMWI->replaceAllUsesWith(Orig);
89 RMWI->eraseFromParent();
122 else if (AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(Inst))
123 Changed |= LowerAtomicRMWInst(RMWI);
    [all...]
  /external/llvm/lib/VMCore/
Instruction.cpp 224 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(this))
225 return RMWI->getOperation() == cast<AtomicRMWInst>(I)->getOperation() &&
226 RMWI->isVolatile() == cast<AtomicRMWInst>(I)->isVolatile() &&
227 RMWI->getOrdering() == cast<AtomicRMWInst>(I)->getOrdering() &&
228 RMWI->getSynchScope() == cast<AtomicRMWInst>(I)->getSynchScope();
298 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(this))
299 return RMWI->getOperation() == cast<AtomicRMWInst>(I)->getOperation() &&
300 RMWI->isVolatile() == cast<AtomicRMWInst>(I)->isVolatile() &&
301 RMWI->getOrdering() == cast<AtomicRMWInst>(I)->getOrdering() &&
302 RMWI->getSynchScope() == cast<AtomicRMWInst>(I)->getSynchScope()
    [all...]
Verifier.cpp 287 void visitAtomicRMWInst(AtomicRMWInst &RMWI);
    [all...]
AsmWriter.cpp     [all...]
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 252 AliasAnalysis::getLocation(const AtomicRMWInst *RMWI) {
253 return Location(RMWI->getPointerOperand(),
254 getTypeStoreSize(RMWI->getValOperand()->getType()),
255 RMWI->getMetadata(LLVMContext::MD_tbaa));
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 335 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1))
336 return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() &&
337 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
338 RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() &&
339 RMWI->getSynchScope() == cast<AtomicRMWInst>(I2)->getSynchScope();
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 148 Location getLocation(const AtomicRMWInst *RMWI);
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]

Completed in 1792 milliseconds