HomeSort by: relevance | last modified time | path
    Searched refs:CBV (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlanPredicator.cpp 32 // bit value %CBV then this function will generate the following two
34 // %IntermediateVal = not %CBV
39 VPValue *CBV = PredBB->getCondBit();
41 // Set the intermediate value - this is either 'CBV', or 'not CBV'
48 IntermediateVal = CBV;
52 // CurrBB is the False successor of PredBB - compute not of CBV.
53 IntermediateVal = Builder.createNot(CBV);
151 // computing 'BP AND (not) CBV" at the top of CurrBB.
VPlan.cpp 337 VPValue *CBV;
338 if (EnableVPlanNativePath && (CBV = getCondBit())) {
339 assert(CBV->getUnderlyingValue() &&
347 Value *NewCond = State->get(CBV, {0, 0});
427 if (const VPValue *CBV = getCondBit()) {
429 CBV->printAsOperand(O, SlotTracker);
430 if (const auto *CBI = dyn_cast<VPInstruction>(CBV))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SwitchLoweringUtils.cpp 416 CaseBitsVector CBV;
421 for (j = 0; j < CBV.size(); ++j)
422 if (CBV[j].BB == Clusters[i].MBB)
424 if (j == CBV.size())
425 CBV.push_back(
427 CaseBits *CB = &CBV[j];
440 llvm::sort(CBV, [](const CaseBits &a, const CaseBits &b) {
449 for (auto &CB : CBV) {

Completed in 128 milliseconds