HomeSort by relevance Sort by last modified time
    Searched refs:NumParts (Results 1 - 12 of 12) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/
LegalizerHelper.cpp 70 void LegalizerHelper::extractParts(unsigned Reg, LLT Ty, int NumParts,
72 for (int i = 0; i < NumParts; ++i)
286 int NumParts = SizeOp0 / NarrowSize;
289 for (int i = 0; i < NumParts; ++i)
302 int NumParts = SizeOp0 / NarrowTy.getSizeInBits();
305 extractParts(MI.getOperand(1).getReg(), NarrowTy, NumParts, Src1Regs);
306 extractParts(MI.getOperand(2).getReg(), NarrowTy, NumParts, Src2Regs);
311 for (int i = 0; i < NumParts; ++i) {
335 int NumParts = SizeOp1 / NarrowSize;
339 extractParts(MI.getOperand(1).getReg(), NarrowTy, NumParts, SrcRegs)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/
LegalizerHelper.h 112 void extractParts(unsigned Reg, LLT Ty, int NumParts,
  /external/libcxx/benchmarks/
filesystem.bench.cpp 139 static fs::path getRandomPaths(int NumParts, int PathLen) {
141 while (NumParts--) {
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 89 const SDValue *Parts, unsigned NumParts,
99 unsigned NumParts, EVT PartVT, EVT ValueVT,
102 return getCopyFromPartsVector(DAG, DL, Parts, NumParts, PartVT, ValueVT);
104 assert(NumParts > 0 && "No parts to assemble!");
108 if (NumParts > 1) {
115 unsigned RoundParts = NumParts & (NumParts - 1) ?
116 1 << Log2_32(NumParts) : NumParts;
139 if (RoundParts < NumParts) {
    [all...]
TargetLowering.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 526 unsigned NumParts = getNumberOfParts(SrcTy);
527 if (NumParts <= 2)
539 if (NumParts > 1)
540 NumParts /= 2;
541 Cost += NumParts;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
X86CallLowering.cpp 74 unsigned NumParts = TLI.getNumRegisters(Context, VT);
76 if (NumParts == 1) {
88 for (unsigned i = 0; i < NumParts; ++i) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 187 const SDValue *Parts, unsigned NumParts,
197 const SDValue *Parts, unsigned NumParts,
202 return getCopyFromPartsVector(DAG, DL, Parts, NumParts, PartVT, ValueVT, V,
205 assert(NumParts > 0 && "No parts to assemble!");
209 if (NumParts > 1) {
216 unsigned RoundParts = NumParts & (NumParts - 1) ?
217 1 << Log2_32(NumParts) : NumParts;
240 if (RoundParts < NumParts) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 120 const SDValue *Parts, unsigned NumParts,
129 const SDValue *Parts, unsigned NumParts,
133 return getCopyFromPartsVector(DAG, DL, Parts, NumParts,
136 assert(NumParts > 0 && "No parts to assemble!");
140 if (NumParts > 1) {
147 unsigned RoundParts = NumParts & (NumParts - 1) ?
148 1 << Log2_32(NumParts) : NumParts;
171 if (RoundParts < NumParts) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
TargetLoweringBase.cpp     [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp     [all...]

Completed in 576 milliseconds