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

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
LiveRegUnits.h 10 /// A set of register units. It is intended for register liveness tracking.
29 /// A set of register units used to track register liveness.
32 BitVector Units;
43 /// For a machine instruction \p MI, adds all register units used in
75 Units.reset();
76 Units.resize(TRI.getNumRegUnits());
80 void clear() { Units.reset(); }
83 bool empty() const { return Units.none(); }
85 /// Adds register units covered by physical register \p Reg.
88 Units.set(*Unit)
    [all...]
RDFRegisters.h 131 return MaskInfos[Register::stackSlot2Index(MaskId)].Units;
150 BitVector Units;
170 : Units(pri.getTRI().getNumRegUnits()), PRI(pri) {}
173 unsigned count() const { return Units.count(); }
174 bool empty() const { return Units.none(); }
179 return DenseMapInfo<BitVector>::isEqual(Units, A.Units);
199 return DenseMapInfo<BitVector>::getHashValue(Units);
245 BitVector Units;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
FoldingSet.cpp 96 unsigned Units = Size / 4;
102 Bits.append(Base, Base + Units);
103 Pos = (Units + 1) * 4;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonShuffler.cpp 93 unsigned Units = getUnits();
94 unsigned Key = ((1u << s) & Units) != 0;
99 if (Key == 0 || Units == 0 || (SlotWeight * s >= 32))
102 unsigned Ctpop = countPopulation(Units);
103 unsigned Cttz = countTrailingZeros(Units);
116 const unsigned Units = HexagonConvertUnits(ItinUnits, &Lanes);
118 if (Units == 0 && Lanes == 0) {
128 setUnits(Units);
136 unsigned Units;
151 if (!hvxInsts[startIdx].Units)
    [all...]
HexagonMCInstrInfo.cpp 466 unsigned Units = (Stage + HexagonStages)->getUnits();
467 if (Units > HexagonGetLastSlot())
470 Slots |= Units;
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/
FuzzerUnittest.cpp 559 Vector<Unit> Units;
560 EXPECT_FALSE(ParseDictionaryFile("zzz\n", &Units));
561 EXPECT_FALSE(ParseDictionaryFile("", &Units));
562 EXPECT_TRUE(ParseDictionaryFile("\n", &Units));
563 EXPECT_EQ(Units.size(), 0U);
564 EXPECT_TRUE(ParseDictionaryFile("#zzzz a b c d\n", &Units));
565 EXPECT_EQ(Units.size(), 0U);
566 EXPECT_TRUE(ParseDictionaryFile(" #zzzz\n", &Units));
567 EXPECT_EQ(Units.size(), 0U);
568 EXPECT_TRUE(ParseDictionaryFile(" #zzzz\n", &Units));
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
llvm-jitlink.cpp 480 uint64_t Units = 1024;
485 Units = 1024 * 1024;
488 Units = 1024 * 1024 * 1024;
497 return SlabSize * Units;
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenRegisters.h 225 // List of register units in ascending order.
232 // Get the list of register units.
240 // Get the native register units. This is a prefix of getRegUnits().
249 // Inherit register units from subregisters.
447 // Populate a unique sorted list of units from a register set.
478 // Register units are used to model interference and register pressure.
479 // Every register is assigned one or more register units such that two
483 // registers inherit the units of their sub-registers.
517 std::vector<unsigned> Units;
552 // Includes native (0..NumNativeRegUnits-1) and adopted register units
    [all...]
CodeGenSchedule.cpp 462 RecVec Units = Records.getAllDerivedDefinitions("RetireControlUnit");
464 for (Record *RCU : Units) {
2096 // Find the processor's resource units for this kind of resource.
  /src/sys/external/bsd/acpica/dist/include/
actbl3.h 856 UINT8 Units;

Completed in 30 milliseconds