Searched refs:SubclassData (Results 1 - 7 of 7) sorted by relevance

/external/llvm/include/llvm/
H A DValue.h64 /// SubclassOptionalData - This member is similar to SubclassData, however it
71 /// SubclassData - This member is defined by this class, but is not used for
74 unsigned short SubclassData; member in class:llvm::Value
320 unsigned short getSubclassDataFromValue() const { return SubclassData; }
321 void setValueSubclassData(unsigned short D) { SubclassData = D; }
H A DInstructions.h136 /// SubclassData field in Value to store whether or not the load is volatile.
613 unsigned short SubclassData = getSubclassDataFromInstruction(); local
614 setInstructionSubclassData((SubclassData & 31) |
2170 /// SubclassData field in Value to store whether or not the landingpad is a
2955 /// InvokeInst - Invoke instruction. The SubclassData field is used to hold the
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h322 /// SubclassData - This member is defined by this class, but is not used for
325 uint16_t SubclassData : 14;
685 SubclassData(0), NodeId(-1),
701 SubclassData(0), NodeId(-1), OperandList(0), ValueList(VTs.VTs),
919 /// getRawSubclassData - Return the SubclassData value, which contains an
923 return SubclassData;
928 bool isVolatile() const { return (SubclassData >> 5) & 1; }
929 bool isNonTemporal() const { return (SubclassData >> 6) & 1; }
930 bool isInvariant() const { return (SubclassData >> 7) & 1; }
933 return AtomicOrdering((SubclassData >>
[all...]
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h165 return (NoWrapFlags)(SubclassData & Mask);
201 SubclassData |= Flags;
338 SubclassData |= Flags;
H A DScalarEvolution.h68 /// SubclassData - This field is initialized to zero and may be used in
70 unsigned short SubclassData; member in class:llvm::SCEV
77 /// NoWrapFlags are bitfield indices into SubclassData.
101 FastID(ID), SCEVType(SCEVTy), SubclassData(0) {}
/external/llvm/lib/VMCore/
H A DValue.cpp45 SubclassOptionalData(0), SubclassData(0), VTy((Type*)checkType(ty)),
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp5782 SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile(),
5795 SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile(),

Completed in 533 milliseconds