OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isVolatile
(Results
1 - 16
of
16
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineMemOperand.h
260
bool
isVolatile
() const { return FlagVals & MOVolatile; }
275
!
isVolatile
();
SelectionDAGNodes.h
503
uint16_t
IsVolatile
: 1;
1287
bool
isVolatile
() const { return MemSDNodeBits.
IsVolatile
; }
1318
bool isSimple() const { return !isAtomic() && !
isVolatile
(); }
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCall.h
366
unsigned
IsVolatile
: 1;
372
:
IsVolatile
(false), IsUnused(false), IsExternallyDestructed(false) {}
373
ReturnValueSlot(Address Addr, bool
IsVolatile
, bool IsUnused = false,
375
: Addr(Addr),
IsVolatile
(
IsVolatile
), IsUnused(IsUnused),
379
bool
isVolatile
() const { return
IsVolatile
; }
CGValue.h
107
static RValue getAggregate(Address addr, bool
isVolatile
= false) {
114
ER.V2.setInt(
isVolatile
);
303
bool
isVolatile
() const {
592
bool
isVolatile
() const {
643
return RValue::getAggregate(getAddress(),
isVolatile
());
CGExprComplex.cpp
356
bool
isVolatile
= lvalue.isVolatileQualified();
360
if (!IgnoreReal ||
isVolatile
) {
362
Real = Builder.CreateLoad(RealP,
isVolatile
, SrcPtr.getName() + ".real");
365
if (!IgnoreImag ||
isVolatile
) {
367
Imag = Builder.CreateLoad(ImagP,
isVolatile
, SrcPtr.getName() + ".imag");
CGDecl.cpp
917
bool
isVolatile
, CGBuilderTy &Builder,
925
auto *I = Builder.CreateStore(Init, Loc,
isVolatile
);
939
CGM, Elt, Builder.CreateConstInBoundsGEP2_32(Loc, 0, i),
isVolatile
,
955
isVolatile
, Builder, IsAutoInit);
1161
Address Loc, bool
isVolatile
,
1172
auto *I = Builder.CreateStore(constant, Loc,
isVolatile
);
1184
SizeVal,
isVolatile
);
1192
emitStoresForInitAfterBZero(CGM, constant, Loc,
isVolatile
, Builder,
1209
Loc, llvm::ConstantInt::get(CGM.Int8Ty, Value), SizeVal,
isVolatile
);
1223
CGM, D, EltPtr,
isVolatile
, Builder
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/IR/
Instruction.cpp
415
return LI->
isVolatile
() == cast<LoadInst>(I2)->
isVolatile
() &&
421
return SI->
isVolatile
() == cast<StoreInst>(I2)->
isVolatile
() &&
449
return CXI->
isVolatile
() == cast<AtomicCmpXchgInst>(I2)->
isVolatile
() &&
459
RMWI->
isVolatile
() == cast<AtomicRMWInst>(I2)->
isVolatile
() &&
622
bool Instruction::
isVolatile
() const {
627
return cast<AtomicRMWInst>(this)->
isVolatile
();
[
all
...]
/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/include/llvm/IR/
IntrinsicInst.h
843
bool
isVolatile
() const { return !getVolatileCst()->isZero(); }
940
bool
isVolatile
() const {
943
return MI->
isVolatile
();
Instructions.h
194
LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool
isVolatile
,
196
LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool
isVolatile
,
198
LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool
isVolatile
,
200
LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool
isVolatile
,
202
LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool
isVolatile
,
206
LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool
isVolatile
,
211
bool
isVolatile
() const { return getSubclassData<VolatileField>(); }
258
bool isSimple() const { return !isAtomic() && !
isVolatile
(); }
263
!
isVolatile
();
322
StoreInst(Value *Val, Value *Ptr, bool
isVolatile
, Instruction *InsertBefore)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp
693
Info.
IsVolatile
= false;
706
Info.
IsVolatile
= false;
747
bool
isVolatile
() const {
749
return Info.
IsVolatile
;
752
return LI->
isVolatile
();
754
return SI->
isVolatile
();
1112
if (MemInst.
isVolatile
() || !MemInst.isUnordered())
1158
assert(Earlier.isUnordered() && !Earlier.
isVolatile
() &&
1384
if (MemInst.
isVolatile
() || !MemInst.isUnordered()) {
1562
if (MemInst.isUnordered() && !MemInst.
isVolatile
())
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h
327
bool
isVolatile
() const {
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h
1989
bool
isVolatile
() const { return getType()->castAs<FunctionType>()->
isVolatile
(); }
Expr.h
6227
bool
isVolatile
() const {
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/clang/include/clang/Parse/
Parser.h
3486
inline bool
isVolatile
() const { return Qualifiers & AQ_volatile; };
Completed in 127 milliseconds
Indexes created Fri Aug 07 00:26:27 UTC 2026