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

  /external/llvm/lib/CodeGen/
AtomicExpandPass.cpp 97 auto RMWI = dyn_cast<AtomicRMWInst>(I);
99 assert((LI || SI || RMWI || CASI || isa<FenceInst>(I)) &&
115 } else if (RMWI && (isAtLeastRelease(RMWI->getOrdering()) ||
116 isAtLeastAcquire(RMWI->getOrdering()))) {
117 FenceOrdering = RMWI->getOrdering();
118 RMWI->setOrdering(Monotonic);
160 } else if (RMWI) {
166 if (isIdempotentRMW(RMWI) && simplifyIdempotentRMW(RMWI)) {
    [all...]
  /external/clang/lib/CodeGen/
CGAtomic.cpp 624 llvm::AtomicRMWInst *RMWI =
626 RMWI->setVolatile(E->isVolatile());
630 llvm::Value *Result = RMWI;
632 Result = CGF.Builder.CreateBinOp(PostOp, RMWI, LoadVal1);
    [all...]
CGBuiltin.cpp     [all...]

Completed in 3937 milliseconds