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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCCodeEmitter.cpp111 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 16; local
115 return (getMachineOpValue(MI, MO, Fixups, STI) & 0xFFFF) | RegBits;
120 return RegBits;
129 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 14; local
133 return ((getMachineOpValue(MI, MO, Fixups, STI) >> 2) & 0x3FFF) | RegBits;
138 return RegBits;
147 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 12; local
153 return ((getMachineOpValue(MI, MO, Fixups, STI) >> 4) & 0xFFF) | RegBits;
159 return RegBits;
169 uint32_t RegBits local
184 uint32_t RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 5; local
199 uint32_t RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 5; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCCodeEmitter.cpp773 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI) local
780 return (OffBits & 0xFFFF) | RegBits;
789 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), local
794 return (OffBits & 0xF) | RegBits;
803 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), local
808 return (OffBits & 0xF) | RegBits;
817 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), local
822 return (OffBits & 0xF) | RegBits;
861 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, local
866 return (OffBits & 0x1FF) | RegBits;
875 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, local
899 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI) local
912 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DTargetInfo.cpp4844 uint64_t RegBits = ABIAlign * 8;
4845 uint64_t NumRegs = llvm::alignTo(Bits, RegBits) / RegBits;
4846 llvm::Type *RegTy = llvm::IntegerType::get(getVMContext(), RegBits);

Completed in 68 milliseconds