Searched refs:RegBits (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCCodeEmitter.cpp127 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 16; local
131 return (getMachineOpValue(MI, MO, Fixups, STI) & 0xFFFF) | RegBits;
136 return RegBits;
145 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 14; local
149 return ((getMachineOpValue(MI, MO, Fixups, STI) >> 2) & 0x3FFF) | RegBits;
154 return RegBits;
163 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 12; local
169 return ((getMachineOpValue(MI, MO, Fixups, STI) >> 4) & 0xFFF) | RegBits;
175 return RegBits;
193 uint64_t RegBits local
270 uint64_t RegBits = getMachineOpValue(MI, MI.getOperand(OpNo + 1), Fixups, STI) local
283 uint32_t RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 5; local
298 uint32_t RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 5; local
313 uint32_t RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 5; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCCodeEmitter.cpp760 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI) local
767 return (OffBits & 0xFFFF) | RegBits;
776 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), local
781 return (OffBits & 0xF) | RegBits;
790 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), local
795 return (OffBits & 0xF) | RegBits;
804 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), local
809 return (OffBits & 0xF) | RegBits;
848 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, local
853 return (OffBits & 0x1FF) | RegBits;
862 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, local
886 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI) local
899 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DTargetInfo.cpp5281 uint64_t RegBits = ABIAlign * 8;
5282 uint64_t NumRegs = llvm::alignTo(Bits, RegBits) / RegBits;
5283 llvm::Type *RegTy = llvm::IntegerType::get(getVMContext(), RegBits);

Completed in 194 milliseconds