HomeSort by: relevance | last modified time | path
    Searched defs:IsVolatile (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPIRBuilder.h 953 bool IsVolatile = false;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIMemoryLegalizer.cpp 98 bool IsVolatile = false;
108 bool IsVolatile = false,
114 IsVolatile(IsVolatile),
194 bool isVolatile() const {
195 return IsVolatile;
311 SIMemOp Op, bool IsVolatile,
388 bool IsVolatile,
441 bool IsVolatile,
476 bool IsVolatile,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 464 ClDistinguishVolatile && (cast<LoadInst>(I)->isVolatile() ||
465 cast<StoreInst>(WI.Inst)->isVolatile());
656 const bool IsVolatile = ClDistinguishVolatile &&
657 (IsWrite ? cast<StoreInst>(II.Inst)->isVolatile()
658 : cast<LoadInst>(II.Inst)->isVolatile());
659 assert((!IsVolatile || !IsCompoundRW) && "Compound volatile invalid!");
667 else if (IsVolatile)
674 else if (IsVolatile)
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGNonTrivialStruct.cpp 151 std::string getVolatileOffsetStr(bool IsVolatile, CharUnits Offset) {
153 if (IsVolatile)
183 void visitArray(FieldKind FK, const ArrayType *AT, bool IsVolatile,
200 EltTy = IsVolatile ? EltTy.withVolatile() : EltTy;
207 std::string getName(QualType QT, bool IsVolatile) {
208 QT = IsVolatile ? QT.withVolatile() : QT;
345 void visitArray(FieldKind FK, const ArrayType *AT, bool IsVolatile,
406 EltQT = IsVolatile ? EltQT.withVolatile() : EltQT;
654 void visitArray(FieldKind FK, const ArrayType *AT, bool IsVolatile,
665 GenFuncBaseTy::visitArray(FK, AT, IsVolatile, FD, CurStructOffset, Addrs)
    [all...]
CGAtomic.cpp 214 bool IsVolatile);
237 bool IsVolatile);
241 bool IsVolatile);
254 llvm::AtomicOrdering AO, bool IsVolatile);
256 llvm::Value *EmitAtomicLoadOp(llvm::AtomicOrdering AO, bool IsVolatile);
276 bool IsVolatile);
280 bool IsVolatile);
283 bool IsVolatile);
286 bool IsVolatile);
379 Pair->setVolatile(E->isVolatile());
    [all...]
CGBlocks.cpp 1805 bool IsVolatile = CaptureTy.isVolatileQualified();
1813 CaptureTy, Alignment, IsVolatile, Ctx);
1818 CaptureTy, Alignment, IsVolatile, Ctx);
CodeGenFunction.h 2641 bool IsVolatile = hasVolatileMember(EltTy);
2642 EmitAggregateCopy(Dest, Src, EltTy, AggValueSlot::MayOverlap, IsVolatile);
2652 /// \param isVolatile \c true iff either the source or the destination is
2659 bool isVolatile = false);
3723 llvm::AtomicOrdering AO, bool IsVolatile = false,
3729 bool IsVolatile, bool isInit);
3741 bool IsVolatile);
3998 bool IsVolatile,
4004 bool IsVolatile,
MicrosoftCXXABI.cpp 3822 bool &IsConst, bool &IsVolatile,
3832 IsVolatile = false;
3837 IsVolatile = PointeeType.isVolatileQualified();
3861 bool IsConst, IsVolatile, IsUnaligned;
3863 decomposeTypeForEH(getContext(), Type, IsConst, IsVolatile, IsUnaligned);
3870 if (IsVolatile)
4281 bool IsConst, IsVolatile, IsUnaligned;
4282 T = decomposeTypeForEH(getContext(), T, IsConst, IsVolatile, IsUnaligned);
4298 getMangleContext().mangleCXXThrowInfo(T, IsConst, IsVolatile, IsUnaligned,
4313 if (IsVolatile)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
AMDGPUMetadata.h 194 constexpr char IsVolatile[] = "IsVolatile";
  /src/external/apache2/llvm/dist/llvm/lib/IR/
IRBuilder.cpp 114 MaybeAlign Align, bool isVolatile,
118 Value *Ops[] = {Ptr, Val, Size, getInt1(isVolatile)};
171 MaybeAlign SrcAlign, Value *Size, bool isVolatile, MDNode *TBAATag,
176 Value *Ops[] = {Dst, Src, Size, getInt1(isVolatile)};
211 Value *IsVolatile = getInt1(false);
213 Value *Ops[] = {Dst, Src, Size, IsVolatile};
273 Value *Size, bool isVolatile,
279 Value *Ops[] = {Dst, Src, Size, getInt1(isVolatile)};
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetTransformInfo.h 84 bool IsVolatile = false;
89 !IsVolatile;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 2216 if (LI->isVolatile())
2267 bool IsVolatile;
2271 IsVolatile = LI->isVolatile();
2277 IsVolatile = SI->isVolatile();
2297 if (IsVolatile)
DAGCombiner.cpp 22724 bool IsVolatile;
22743 return {LSN->isVolatile(), LSN->isAtomic(), LSN->getBasePtr(),
22749 return {false /*isVolatile*/, /*isAtomic*/ false, LN->getOperand(1),
22755 return {false /*isvolatile*/, /*isAtomic*/ false, SDValue(),
22769 if (MUC0.IsVolatile && MUC1.IsVolatile)
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 2826 bool IsVolatile;
2834 AsmStmt(StmtClass SC, SourceLocation asmloc, bool issimple, bool isvolatile,
2836 : Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile),
2850 bool isVolatile() const { return IsVolatile; }
2851 void setVolatile(bool V) { IsVolatile = V; }
2987 bool isvolatile, unsigned numoutputs, unsigned numinputs,
3210 SourceLocation lbraceloc, bool issimple, bool isvolatile,
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir.go 1073 func (v Value) IsVolatile() bool { return C.LLVMGetVolatile(v.C) != 0 }

Completed in 93 milliseconds