Home
last modified time | relevance | path

Searched refs:RegSet (Results 1 – 12 of 12) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DNativeRegisterContextLinux_x86_64.cpp718 if (IsCPUFeatureAvailable(RegSet::avx)) { in ReadAllRegisterValues()
733 if (IsCPUFeatureAvailable(RegSet::mpx)) { in ReadAllRegisterValues()
816 if (IsCPUFeatureAvailable(RegSet::avx)) { in WriteAllRegisterValues()
831 if (IsCPUFeatureAvailable(RegSet::mpx)) { in WriteAllRegisterValues()
850 RegSet feature_code) const { in IsCPUFeatureAvailable()
856 case RegSet::gpr: in IsCPUFeatureAvailable()
857 case RegSet::fpu: in IsCPUFeatureAvailable()
859 case RegSet::avx: // Check if CPU has AVX and if there is kernel support, by in IsCPUFeatureAvailable()
864 case RegSet::mpx: // Check if CPU has MPX and if there is kernel support, by in IsCPUFeatureAvailable()
877 switch (static_cast<RegSet>(set_index)) { in IsRegisterSetAvailable()
[all …]
H A DNativeRegisterContextLinux_x86_64.h69 enum class RegSet { gpr, fpu, avx, mpx }; enum
110 bool IsCPUFeatureAvailable(RegSet feature_code) const;
/openbsd-src/gnu/llvm/llvm/lib/Target/Lanai/
H A DLanaiDelaySlotFiller.cpp68 bool isRegInSet(SmallSet<unsigned, 32> &RegSet, unsigned Reg);
253 bool Filler::isRegInSet(SmallSet<unsigned, 32> &RegSet, unsigned Reg) { in isRegInSet() argument
256 if (RegSet.count(*AI)) in isRegInSet()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h273 using RegSet = SparseSet<IndexMaskPair>; variable
274 RegSet Regs;
296 RegSet::const_iterator I = Regs.find(SparseIndex); in contains()
319 RegSet::iterator I = Regs.find(SparseIndex); in erase()
/openbsd-src/gnu/llvm/llvm/lib/Target/Sparc/
H A DDelaySlotFiller.cpp74 bool IsRegInSet(SmallSet<unsigned, 32>& RegSet,
344 bool Filler::IsRegInSet(SmallSet<unsigned, 32>& RegSet, unsigned Reg) in IsRegInSet() argument
349 if (RegSet.count(*AI)) in IsRegInSet()
/openbsd-src/gnu/llvm/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp133 bool isRegInSet(const BitVector &RegSet, unsigned Reg) const;
445 bool RegDefsUses::isRegInSet(const BitVector &RegSet, unsigned Reg) const { in isRegInSet() argument
448 if (RegSet.test(*AI)) in isRegInSet()
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCRegisterInfo.h37 const uint8_t *const RegSet; variable
74 return (RegSet[Byte] & (1 << InByte)) != 0; in contains()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachineVerifier.cpp114 using RegSet = DenseSet<Register>; typedef
123 RegSet regsLive;
147 RegSet regsKilled;
151 RegSet regsLiveOut;
155 RegSet vregsPassed;
159 RegSet vregsRequired;
177 bool addRequired(const RegSet &RS) { in addRequired()
H A DRegAllocPBQP.cpp149 using RegSet = std::set<Register>; typedef in __anon9a6f38670111::RegAllocPBQP
153 RegSet VRegsToAlloc, EmptyIntervalVRegs;
H A DAggressiveAntiDepBreaker.cpp259 SmallSet<unsigned, 4> RegSet; in AntiDepEdges() local
262 if (RegSet.insert(Pred.getReg()).second) in AntiDepEdges()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp211 void updateLiveness(const std::set<Register> &RegSet, bool Recalc,
552 void HexagonExpandCondsets::updateLiveness(const std::set<Register> &RegSet, in updateLiveness() argument
556 for (Register R : RegSet) { in updateLiveness()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DThumb1FrameLowering.cpp862 const std::set<Register> &RegSet) { in getNextOrderedReg() argument
864 [&](Register Reg) { return RegSet.count(Reg); }); in getNextOrderedReg()