Searched defs:ConstantSize (Results 1 - 3 of 3) 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() >
81 uint64_t SizeVal = ConstantSize->getZExtValue();
186 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
187 if (!ConstantSize)
189 uint64_t SizeVal = ConstantSize->getZExtValue();
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3757 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
3758 if (ConstantSize) {
3760 if (ConstantSize->isNullValue())
3764 ConstantSize->getZExtValue(),Align,
3782 assert(ConstantSize && "AlwaysInline requires a constant size!");
3784 ConstantSize->getZExtValue(), Align, isVol,
3824 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
3825 if (ConstantSize) {
3827 if (ConstantSize->isNullValue())
3832 ConstantSize
3878 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
[all...]

Completed in 77 milliseconds