HomeSort by: relevance | last modified time | path
    Searched defs:Bundle (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCCodeEmitter.h 43 const MCInst *Bundle = nullptr;
82 // Return parse bits for instruction `MCI' inside bundle `MCB'
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceFileWriter.h 101 // Each STRINGTABLE bundle depends on ID of the bundle and language
104 // Each bundle is in fact an array of 16 strings.
105 struct Bundle {
109 Bundle(const ObjectInfo &Info, uint16_t Flags)
112 std::map<BundleKey, Bundle> BundleData;
159 Error insertStringIntoBundle(StringTableInfo::Bundle &Bundle,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 1143 // If there is a bundle header fix it up first.
1147 MachineBasicBlock::instr_iterator Bundle = MI.getIterator();
1152 // inside the bundle are ordered and consequently only the last use of
1153 // a register inside the bundle can kill it.
1154 MachineBasicBlock::instr_iterator I = std::next(Bundle);
1161 } while (I != Bundle);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86FloatingPoint.cpp 18 // block to rearrange the live registers to match the outgoing bundle.
122 // The edge bundle analysis provides indices into the LiveBundles vector.
354 LiveBundle &Bundle =
360 CallingConv::X86_RegCall) && (Bundle.Mask && !Bundle.FixCount)) {
363 // If bundle.mask is non-zero and Bundle.FixCount is zero, it means
367 assert((Bundle.Mask & 0xFE) == 0 &&
369 Bundle.FixCount = 1;
370 Bundle.FixStack[0] = 0
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 778 auto Bundle = CI.getOperandBundleAt(I);
780 if (Bundle.getTagID() == LLVMContext::OB_funclet)
782 OpBundles.emplace_back(Bundle);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LICM.cpp 1456 // instructions. The cloned call-site needs a funclet bundle operand
1461 OperandBundleUse Bundle = CI->getOperandBundleAt(BundleIdx);
1462 if (Bundle.getTagID() == LLVMContext::OB_funclet)
1465 OpBundles.emplace_back(Bundle);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 402 llvm_unreachable("Did not find operand bundle for operand!");
408 "The Idx isn't in the operand bundle");
426 "the operand bundle doesn't cover every value in the range");
436 "the operand bundle doesn't cover every value in the range");
458 auto Bundle = CB->getOperandBundleAt(I);
459 if (Bundle.getTagID() == ID) {
463 Bundles.emplace_back(Bundle);
471 // bundle semantics, where *any* non-assume operand bundle forces a callsite
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 2417 Optional<OperandBundleUse> Bundle =
2420 if (!Bundle.hasValue() || NumOfGCLives == Bundle->Inputs.size())
2422 // We can reduce the size of gc live bundle.
2425 for (unsigned I = 0, E = Bundle->Inputs.size(); I < E; ++I) {
2426 Value *V = Bundle->Inputs[I];
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 2700 const auto &Bundle = CS.getOperandBundleAt(i);
2701 Record.push_back(C.getOperandBundleTagID(Bundle.getTagName()));
2703 for (auto &Input : Bundle.Inputs)

Completed in 46 milliseconds