Searched refs:isVolatile (Results 1 - 25 of 116) sorted by relevance

12345

/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.h52 bool isVolatile, bool AlwaysInline,
62 bool isVolatile,
H A DARMSelectionDAGInfo.cpp33 bool isVolatile, bool AlwaysInline,
69 SrcPtrInfo.getWithOffset(SrcOff), isVolatile,
82 isVolatile, false, 0);
146 unsigned Align, bool isVolatile,
29 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
143 EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.h41 bool isVolatile,
49 bool isVolatile, bool AlwaysInline,
H A DX86SelectionDAGInfo.cpp34 bool isVolatile,
170 Align, isVolatile, DstPtrInfo.getWithOffset(Offset));
181 bool isVolatile, bool AlwaysInline,
255 Align, isVolatile, AlwaysInline,
30 EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
178 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.h33 bool isVolatile, bool AlwaysInline,
H A DHexagonSelectionDAGInfo.cpp32 bool isVolatile, bool AlwaysInline,
30 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/include/llvm/Target/
H A DTargetSelectionDAGInfo.h60 SDValue Op3, unsigned Align, bool isVolatile,
77 SDValue Op3, unsigned Align, bool isVolatile,
93 SDValue Op3, unsigned Align, bool isVolatile,
57 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
74 EmitTargetCodeForMemmove(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
90 EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
/external/llvm/lib/VMCore/
H A DInstruction.cpp195 return LI->isVolatile() == cast<LoadInst>(I)->isVolatile() &&
200 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile() &&
221 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I)->isVolatile() &&
226 RMWI->isVolatile() == cast<AtomicRMWInst>(I)->isVolatile() &&
266 return LI->isVolatile() == cast<LoadInst>(I)->isVolatile()
[all...]
H A DIRBuilder.cpp65 bool isVolatile, MDNode *TBAATag) {
67 Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) };
83 bool isVolatile, MDNode *TBAATag) {
87 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
103 bool isVolatile, MDNode *TBAATag) {
107 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
64 CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align, bool isVolatile, MDNode *TBAATag) argument
82 CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align, bool isVolatile, MDNode *TBAATag) argument
102 CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align, bool isVolatile, MDNode *TBAATag) argument
H A DInstructions.cpp931 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, argument
935 setVolatile(isVolatile);
942 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, argument
946 setVolatile(isVolatile);
953 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, argument
957 setVolatile(isVolatile);
964 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, argument
968 setVolatile(isVolatile);
975 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, argument
981 setVolatile(isVolatile);
988 LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, unsigned Align, AtomicOrdering Order, SynchronizationScope SynchScope, BasicBlock *InsertAE) argument
1021 LoadInst(Value *Ptr, const char *Name, bool isVolatile, Instruction *InsertBef) argument
1032 LoadInst(Value *Ptr, const char *Name, bool isVolatile, BasicBlock *InsertAE) argument
1094 StoreInst(Value *val, Value *addr, bool isVolatile, Instruction *InsertBefore) argument
1108 StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align, Instruction *InsertBefore) argument
1122 StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align, AtomicOrdering Order, SynchronizationScope SynchScope, Instruction *InsertBefore) argument
1138 StoreInst(Value *val, Value *addr, bool isVolatile, BasicBlock *InsertAtEnd) argument
1152 StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align, BasicBlock *InsertAtEnd) argument
1166 StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align, AtomicOrdering Order, SynchronizationScope SynchScope, BasicBlock *InsertAtEnd) argument
[all...]
/external/jdiff/src/jdiff/
H A DFieldAPI.java47 boolean isTransient, boolean isVolatile,
52 isVolatile_ = isVolatile;
46 FieldAPI(String name, String type, boolean isTransient, boolean isVolatile, String value, Modifiers modifiers) argument
H A DAPIHandler.java130 boolean isVolatile = false;
132 isVolatile = true;
134 XMLToAPI.addField(fieldName, fieldType, isTransient, isVolatile,
/external/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h150 bool isVolatile() const { return Flags & MOVolatile; } function in class:llvm::MachineMemOperand
161 bool isUnordered() const { return !isVolatile(); }
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp166 bool isVolatile = LD->isVolatile(); local
170 isVolatile = false;
229 SDValue Ops[] = { getI32Imm(isVolatile),
259 SDValue Ops[] = { getI32Imm(isVolatile),
289 SDValue Ops[] = { getI32Imm(isVolatile),
318 SDValue Ops[] = { getI32Imm(isVolatile),
355 bool isVolatile = ST->isVolatile(); local
359 isVolatile
[all...]
H A DNVPTXLowerAggrCopies.cpp175 convertTransferToLoop(store, srcAddr, dstAddr, len, load->isVolatile(),
176 store->isVolatile(), Context, F);
/external/javassist/src/main/javassist/
H A DModifier.java107 public static boolean isVolatile(int mod) { method in class:Modifier
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
H A DModifierTest.java161 * @tests java.lang.reflect.Modifier#isVolatile(int)
164 // Test for method boolean java.lang.reflect.Modifier.isVolatile(int)
165 assertTrue("Volatile returned false", Modifier.isVolatile(ALL_FLAGS));
167 .isVolatile(Modifier.VOLATILE));
169 .isVolatile(Modifier.TRANSIENT));
/external/doclava/src/com/google/doclava/
H A DFieldInfo.java33 boolean isFinal, boolean isStatic, boolean isTransient, boolean isVolatile,
40 mIsVolatile = isVolatile;
48 isVolatile(), isSynthetic(), mType, getRawCommentText(), mConstantValue, position(),
397 public boolean isVolatile() { method in class:FieldInfo
31 FieldInfo(String name, ClassInfo containingClass, ClassInfo realContainingClass, boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isFinal, boolean isStatic, boolean isTransient, boolean isVolatile, boolean isSynthetic, TypeInfo type, String rawCommentText, Object constantValue, SourcePositionInfo position, ArrayList<AnnotationInstanceInfo> annotations) argument
/external/clang/lib/CodeGen/
H A DCGExprComplex.cpp73 ComplexPairTy EmitLoadOfComplex(llvm::Value *SrcPtr, bool isVolatile);
292 bool isVolatile) {
295 if (!IgnoreReal || isVolatile) {
298 Real = Builder.CreateLoad(RealP, isVolatile, SrcPtr->getName() + ".real");
301 if (!IgnoreImag || isVolatile) {
304 Imag = Builder.CreateLoad(ImagP, isVolatile, SrcPtr->getName() + ".imag");
312 bool isVolatile) {
316 Builder.CreateStore(Val.first, RealPtr, isVolatile);
317 Builder.CreateStore(Val.second, ImagPtr, isVolatile);
291 EmitLoadOfComplex(llvm::Value *SrcPtr, bool isVolatile) argument
311 EmitStoreOfComplex(ComplexPairTy Val, llvm::Value *Ptr, bool isVolatile) argument
H A DCGValue.h211 bool isVolatile() const { function in class:clang::CodeGen::LValue
410 bool isVolatile() const { function in class:clang::CodeGen::AggValueSlot
440 return RValue::getAggregate(getAddr(), isVolatile());
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypesGeneric.cpp221 bool isVolatile = LD->isVolatile(); local
228 isVolatile, isNonTemporal, isInvariant, Alignment);
236 isVolatile, isNonTemporal, isInvariant,
407 bool isVolatile = St->isVolatile(); local
420 isVolatile, isNonTemporal, Alignment);
427 isVolatile, isNonTemporal,
H A DLegalizeDAG.cpp317 ST->isVolatile(), ST->isNonTemporal(), Alignment);
352 ST->isVolatile(), ST->isNonTemporal(),
375 MemVT, ST->isVolatile(),
403 ST->isVolatile(), ST->isNonTemporal(), Alignment);
409 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
435 LD->isVolatile(),
468 LD->isVolatile(), LD->isNonTemporal(),
486 MemVT, LD->isVolatile(),
531 NewLoadedVT, LD->isVolatile(),
537 NewLoadedVT, LD->isVolatile(),
649 bool isVolatile = ST->isVolatile(); local
702 bool isVolatile = ST->isVolatile(); local
794 ExtraVT, isVolatile, isNonTemporal, local
[all...]
/external/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp307 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
312 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
332 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
337 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp300 bool isVolatile = FirstLI->isVolatile();
313 if (isVolatile &&
325 if (LI->isVolatile() != isVolatile ||
341 if (isVolatile &&
377 if (isVolatile)
381 LoadInst *NewLI = new LoadInst(PhiVal, "", isVolatile, LoadAlignment);
/external/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp403 if (MSI->isVolatile() || ByteVal != MSI->getValue() ||
547 if (isa<ConstantInt>(MSI->getLength()) && !MSI->isVolatile())
709 if (M->getSource() != MDep->getDest() || MDep->isVolatile())
766 Align, M->isVolatile());
769 Align, M->isVolatile());
787 if (CopySize == 0 || M->isVolatile()) return false;
884 if (MDep == 0 || MDep->isVolatile() ||

Completed in 4743 milliseconds

12345