Searched refs:ConstantSize (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.cpp37 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
38 if (ConstantSize) {
39 uint64_t SizeVal = ConstantSize->getZExtValue();
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp36 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
46 !ConstantSize ||
47 ConstantSize->getZExtValue() >
81 uint64_t SizeVal = ConstantSize->getZExtValue();
186 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
187 if (!ConstantSize)
189 uint64_t SizeVal = ConstantSize->getZExtValue();
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp42 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
43 if (!ConstantSize)
45 uint64_t SizeVal = ConstantSize->getZExtValue();
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3880 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
3881 if (ConstantSize) {
3883 if (ConstantSize->isNullValue())
3887 ConstantSize->getZExtValue(),Align,
3905 assert(ConstantSize && "AlwaysInline requires a constant size!");
3907 ConstantSize->getZExtValue(), Align, isVol,
3948 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
3949 if (ConstantSize) {
3951 if (ConstantSize->isNullValue())
3956 ConstantSize
4003 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
[all...]

Completed in 166 milliseconds