Home
last modified time | relevance | path

Searched defs:isVolatile (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
HDInstructions.h210 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile, in LoadInst()
218 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile, MaybeAlign Align, in LoadInst()
227 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile, MaybeAlign Align, in LoadInst()
233 bool isVolatile() const { return getSubclassDataFromInstruction() & 1; } in isVolatile() function
362 bool isVolatile() const { return getSubclassDataFromInstruction() & 1; } in isVolatile() function
HDIntrinsicInst.h573 bool isVolatile() const { in isVolatile() function
649 bool isVolatile() const { in isVolatile() function
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
HDSelectionDAGTargetInfo.h54 unsigned Align, bool isVolatile, in EmitTargetCodeForMemcpy()
69 SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, in EmitTargetCodeForMemmove()
83 unsigned Align, bool isVolatile, in EmitTargetCodeForMemset()
HDMachineMemOperand.h260 bool isVolatile() const { return FlagVals & MOVolatile; } in isVolatile() function
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
HDARMSelectionDAGInfo.cpp129 SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy()
243 SDValue Size, unsigned Align, bool isVolatile, in EmitTargetCodeForMemmove()
251 SDValue Size, unsigned Align, bool isVolatile, in EmitTargetCodeForMemset()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
HDX86SelectionDAGInfo.cpp48 SDValue Size, unsigned Align, bool isVolatile, in EmitTargetCodeForMemset()
239 unsigned Align, bool isVolatile, bool AlwaysInline, in emitConstantSizeRepmov()
294 SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
HDBPFSelectionDAGInfo.cpp22 SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
HDXCoreSelectionDAGInfo.cpp20 SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
HDHexagonSelectionDAGInfo.cpp21 SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
HDFileManager.cpp461 FileManager::getBufferForFile(const FileEntry *Entry, bool isVolatile) { in getBufferForFile()
484 bool isVolatile) { in getBufferForFileImpl()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
HDAArch64SelectionDAGInfo.cpp20 SDValue Size, unsigned Align, bool isVolatile, in EmitTargetCodeForMemset()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
HDIRBuilder.cpp100 MaybeAlign Align, bool isVolatile, in CreateMemSet()
157 bool isVolatile, MDNode *TBAATag, in CreateMemCpy()
167 Value *Size, bool isVolatile, in CreateMemCpy()
246 Value *Size, bool isVolatile, in CreateMemMove()
HDInstructions.cpp1298 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst()
1302 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst()
1306 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst()
1311 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst()
1316 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst()
1328 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst()
1369 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst()
1373 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst()
1377 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, MaybeAlign Align, in StoreInst()
1382 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, MaybeAlign Align, in StoreInst()
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGValue.h301 bool isVolatile() const { in isVolatile() function
560 bool isVolatile() const { in isVolatile() function
HDCGDecl.cpp903 bool isVolatile, CGBuilderTy &Builder) { in emitStoresForInitAfterBZero()
1145 Address Loc, bool isVolatile, in emitStoresForConstant()
1227 Address Loc, bool isVolatile, in emitStoresForZeroInit()
1236 Address Loc, bool isVolatile, in emitStoresForPatternInit()
1669 bool isVolatile = type.isVolatileQualified(); in emitZeroOrPatternForAutoVarInit() local
HDCGCall.h378 bool isVolatile() const { return Value.getInt() & IS_VOLATILE; } in isVolatile() function
HDCGExprComplex.cpp353 bool isVolatile = lvalue.isVolatileQualified(); in EmitLoadOfLValue() local
HDCGExprAgg.cpp1906 bool isVolatile) { in EmitAggregateCopy()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
HDNVPTXISelDAGToDAG.cpp874 bool isVolatile = LD->isVolatile() || Ordering == AtomicOrdering::Monotonic; in tryLoad() local
1737 bool isVolatile = ST->isVolatile() || Ordering == AtomicOrdering::Monotonic; in tryStore() local
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
HDParseStmtAsm.cpp729 bool isVolatile = DS.getTypeQualifiers() & DeclSpec::TQ_volatile; in ParseAsmStatement() local
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
HDInstCombinePHI.cpp556 bool isVolatile = FirstLI->isVolatile(); in FoldPHIArgLoadIntoPHI() local
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
HDEarlyCSE.cpp678 bool isVolatile() const { in isVolatile() function in __anonda9905a20311::EarlyCSE::ParseMemoryInst
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
HDMemoryDependenceAnalysis.cpp318 static bool isVolatile(Instruction *Inst) { in isVolatile() function
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
HDLLParser.cpp6964 bool isVolatile = false; in ParseLoad() local
7013 bool isVolatile = false; in ParseStore() local
7051 bool isVolatile = false; in ParseCmpXchg() local
7103 bool isVolatile = false; in ParseAtomicRMW() local
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
HDTypeRecord.h333 bool isVolatile() const { in isVolatile() function

12