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

/external/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.cpp37 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
38 if (ConstantSize) {
39 uint64_t SizeVal = ConstantSize->getZExtValue();
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp36 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
46 !ConstantSize ||
47 ConstantSize->getZExtValue() >
79 uint64_t SizeVal = ConstantSize->getZExtValue();
184 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
185 if (!ConstantSize)
187 uint64_t SizeVal = ConstantSize->getZExtValue();
/external/llvm/lib/Target/PTX/
H A DPTXSelectionDAGInfo.cpp42 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
43 if (!ConstantSize)
45 uint64_t SizeVal = ConstantSize->getZExtValue();
/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp42 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
43 if (!ConstantSize)
45 uint64_t SizeVal = ConstantSize->getZExtValue();
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3666 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
3667 if (ConstantSize) {
3669 if (ConstantSize->isNullValue())
3673 ConstantSize->getZExtValue(),Align,
3691 assert(ConstantSize && "AlwaysInline requires a constant size!");
3693 ConstantSize->getZExtValue(), Align, isVol,
3731 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
3732 if (ConstantSize) {
3734 if (ConstantSize->isNullValue())
3739 ConstantSize
3783 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
[all...]

Completed in 372 milliseconds