Searched refs:ConstantSize (Results 1 – 8 of 8) sorted by relevance
/external/llvm/lib/Target/Hexagon/ |
D | HexagonSelectionDAGInfo.cpp | 27 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemcpy() local 28 if (AlwaysInline || (Align & 0x3) != 0 || !ConstantSize) in EmitTargetCodeForMemcpy() 31 uint64_t SizeVal = ConstantSize->getZExtValue(); in EmitTargetCodeForMemcpy()
|
/external/llvm/lib/Target/X86/ |
D | X86SelectionDAGInfo.cpp | 51 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemset() local 69 if ((Align & 3) != 0 || !ConstantSize || in EmitTargetCodeForMemset() 70 ConstantSize->getZExtValue() > Subtarget.getMaxInlineSizeThreshold()) { in EmitTargetCodeForMemset() 102 uint64_t SizeVal = ConstantSize->getZExtValue(); in EmitTargetCodeForMemset() 203 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemcpy() local 206 if (!ConstantSize) in EmitTargetCodeForMemcpy() 208 uint64_t SizeVal = ConstantSize->getZExtValue(); in EmitTargetCodeForMemcpy()
|
/external/llvm/lib/Target/ARM/ |
D | ARMSelectionDAGInfo.cpp | 147 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemcpy() local 148 if (!ConstantSize) in EmitTargetCodeForMemcpy() 151 uint64_t SizeVal = ConstantSize->getZExtValue(); in EmitTargetCodeForMemcpy()
|
/external/llvm/include/llvm/Object/ |
D | StackMapParser.h | 306 ConstantsListOffset + getNumConstants() * ConstantSize; in StackMapV1Parser() 425 static const unsigned ConstantSize = sizeof(uint64_t); variable 432 return ConstantsListOffset + ConstantIndex * ConstantSize; in getConstantOffset()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | i915_context.h | 227 GLuint ConstantSize; member
|
D | i915_vtbl.c | 279 sz += state->ConstantSize * sizeof(GLuint); in get_state_size() 488 emit(intel, state->Constant, state->ConstantSize * sizeof(GLuint)); in i915_emit_state()
|
D | i915_program.c | 572 i915->state.ConstantSize = 2 + (nr) * 4; in i915_upload_program()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 4579 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in getMemcpy() local 4580 if (ConstantSize) { in getMemcpy() 4582 if (ConstantSize->isNullValue()) in getMemcpy() 4586 ConstantSize->getZExtValue(),Align, in getMemcpy() 4605 assert(ConstantSize && "AlwaysInline requires a constant size!"); in getMemcpy() 4607 ConstantSize->getZExtValue(), Align, isVol, in getMemcpy() 4652 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in getMemmove() local 4653 if (ConstantSize) { in getMemmove() 4655 if (ConstantSize->isNullValue()) in getMemmove() 4660 ConstantSize->getZExtValue(), Align, isVol, in getMemmove() [all …]
|