Home
last modified time | relevance | path

Searched refs:Volatile (Results 1 – 25 of 73) sorted by relevance

123

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DAutoInitRemark.cpp23 static void volatileOrAtomicWithExtraArgs(bool Volatile, bool Atomic, in volatileOrAtomicWithExtraArgs() argument
25 if (Volatile) in volatileOrAtomicWithExtraArgs()
32 if (!Volatile || !Atomic) in volatileOrAtomicWithExtraArgs()
34 if (!Volatile) in volatileOrAtomicWithExtraArgs()
47 bool Volatile = SI.isVolatile(); in inspectStore() local
55 volatileOrAtomicWithExtraArgs(Volatile, Atomic, R); in inspectStore()
100 bool Volatile = !Atomic && CIVolatile && CIVolatile->getZExtValue(); in inspectIntrinsicCall() local
102 volatileOrAtomicWithExtraArgs(Volatile, Atomic, R); in inspectIntrinsicCall()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
H A DMSP430RegisterInfo.td74 // Volatile registers
78 // Volatile, but not allocable
82 // Volatile registers
86 // Volatile, but not allocable
/netbsd-src/sys/external/bsd/gnu-efi/dist/inc/
H A Defishell.h144 OUT BOOLEAN *Volatile OPTIONAL
314 IN BOOLEAN Volatile
329 IN BOOLEAN Volatile
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeBuiltin.cpp45 return (Mods & ModifierOptions::Volatile) != ModifierOptions::None; in isVolatileType()
H A DNativeTypePointer.cpp147 return (Record->getOptions() & PointerOptions::Volatile) != in isVolatileType()
H A DNativeTypeUDT.cpp218 return (Modifiers->Modifiers & ModifierOptions::Volatile) != in isVolatileType()
H A DNativeTypeEnum.cpp364 return ((Modifiers->getModifiers() & ModifierOptions::Volatile) != in isVolatileType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DGVNSink.cpp350 bool Volatile = false; member in __anonf1d6865e0111::InstructionUseExpr
370 void setVolatile(bool V) { Volatile = V; } in setVolatile()
374 MemoryUseOrder, Volatile, ShuffleMask); in getHashValue()
378 hash_code H = hash_combine(getOpcode(), getType(), MemoryUseOrder, Volatile, in getHashValue()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h302 Volatile = 0x0002, enumerator
360 Volatile = 0x00000200, enumerator
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp80 PUSH_FLAG(PointerOptions, Volatile, Options, "volatile"); in pointerOptions()
93 PUSH_FLAG(ModifierOptions, Volatile, Options, "volatile"); in modifierOptions()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaLookup.cpp3287 assert(!(Quals & ~(Qualifiers::Const | Qualifiers::Volatile)) && in LookupCopyingConstructor()
3291 Quals & Qualifiers::Volatile, false, false, false); in LookupCopyingConstructor()
3301 Quals & Qualifiers::Volatile, false, false, false); in LookupMovingConstructor()
3329 assert(!(Quals & ~(Qualifiers::Const | Qualifiers::Volatile)) && in LookupCopyingAssignment()
3331 assert(!(ThisQuals & ~(Qualifiers::Const | Qualifiers::Volatile)) && in LookupCopyingAssignment()
3335 Quals & Qualifiers::Volatile, RValueThis, in LookupCopyingAssignment()
3337 ThisQuals & Qualifiers::Volatile); in LookupCopyingAssignment()
3347 assert(!(ThisQuals & ~(Qualifiers::Const | Qualifiers::Volatile)) && in LookupMovingAssignment()
3351 Quals & Qualifiers::Volatile, RValueThis, in LookupMovingAssignment()
3353 ThisQuals & Qualifiers::Volatile); in LookupMovingAssignment()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DType.h150 Volatile = 0x4,
151 CVRMask = Const | Volatile | Restrict
267 bool hasVolatile() const { return Mask & Volatile; }
268 bool hasOnlyVolatile() const { return Mask == Volatile; }
269 void removeVolatile() { Mask &= ~Volatile; }
270 void addVolatile() { Mask |= Volatile; }
761 return (getLocalFastQualifiers() & Qualifiers::Volatile);
846 addFastQualifiers(Qualifiers::Volatile);
849 return withFastQualifiers(Qualifiers::Volatile);
6530 removeLocalFastQualifiers(Qualifiers::Volatile);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp493 auto *Volatile = dyn_cast<ConstantInt>(Inst->getArgOperand(4)); in getTgtMemIntrinsic() local
494 if (!Ordering || !Volatile) in getTgtMemIntrinsic()
505 Info.IsVolatile = !Volatile->isNullValue(); in getTgtMemIntrinsic()
/netbsd-src/sys/arch/arm/nxp/
H A Dfiles.imx139 # iMX6 Secure Non-Volatile Storage (SNVS)
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DRecordName.cpp199 if (Mods & uint16_t(ModifierOptions::Volatile)) in visitKnownRecord()
H A DEnumTables.cpp391 CV_ENUM_CLASS_ENT(ModifierOptions, Volatile),
H A DTypeDumpVisitor.cpp106 ENUM_ENTRY(ModifierOptions, Const), ENUM_ENTRY(ModifierOptions, Volatile),
/netbsd-src/external/apache2/llvm/dist/llvm/docs/PDB/
H A DCodeViewTypes.rst111 Volatile = 0x02, // pointer is marked volatile
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/nios2/
H A Dnios2.opt55 Volatile memory accesses use I/O load/store instructions.
59 Volatile memory accesses do not use I/O load/store instructions.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp336 IO.bitSetCase(Options, "Volatile", PointerOptions::Volatile); in bitset()
348 IO.bitSetCase(Options, "Volatile", ModifierOptions::Volatile); in bitset()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/nios2/
H A Dnios2.opt55 Volatile memory accesses use I/O load/store instructions.
59 Volatile memory accesses do not use I/O load/store instructions.
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenFunction.h3761 llvm::Value *EmitLoadOfScalar(Address Addr, bool Volatile, QualType Ty,
3765 return EmitLoadOfScalar(Addr, Volatile, Ty, Loc, LValueBaseInfo(Source),
3769 llvm::Value *EmitLoadOfScalar(Address Addr, bool Volatile, QualType Ty,
3784 bool Volatile, QualType Ty,
3787 EmitStoreOfScalar(Value, Addr, Volatile, Ty, LValueBaseInfo(Source),
3792 bool Volatile, QualType Ty,
H A DCGExpr.cpp1708 llvm::Value *CodeGenFunction::EmitLoadOfScalar(Address Addr, bool Volatile, in EmitLoadOfScalar() argument
1728 llvm::Value *V = Builder.CreateLoad(Cast, Volatile, "loadVec4"); in EmitLoadOfScalar()
1745 llvm::LoadInst *Load = Builder.CreateLoad(Addr, Volatile); in EmitLoadOfScalar()
1827 bool Volatile, QualType Ty, in EmitStoreOfScalar() argument
1859 llvm::StoreInst *Store = Builder.CreateStore(Value, Addr, Volatile); in EmitStoreOfScalar()
4416 if (RecordCVR & Qualifiers::Volatile) in EmitLValueForField()
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/docs/topics/
H A Dasm.rst157 `volatile <https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#Volatile>`_
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/docs/cp/topics/
H A Dasm.rst154 `volatile <https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#Volatile>`_

123