Home
last modified time | relevance | path

Searched refs:RegBytes (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SpeculativeLoadHardening.cpp1859 int RegBytes = TRI->getRegSizeInBits(*RC) / 8; in canHardenRegister() local
1860 if (RegBytes > 8) in canHardenRegister()
1864 unsigned RegIdx = Log2_32(RegBytes); in canHardenRegister()
H A DX86InstrInfo.h51 unsigned getCMovOpcode(unsigned RegBytes, bool HasMemoryOperand = false,
H A DX86InstrInfo.cpp3461 unsigned X86::getCMovOpcode(unsigned RegBytes, bool HasMemoryOperand, in getCMovOpcode() argument
3463 switch (RegBytes) { in getCMovOpcode()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp10313 unsigned RegBytes = RegVT.getSizeInBits() / 8; in expandUnalignedLoad() local
10314 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes; in expandUnalignedLoad()
10326 SDValue PtrIncrement = DAG.getConstant(RegBytes, dl, PtrVT); in expandUnalignedLoad()
10327 SDValue StackPtrIncrement = DAG.getConstant(RegBytes, dl, StackPtrVT); in expandUnalignedLoad()
10340 Offset += RegBytes; in expandUnalignedLoad()
10462 unsigned RegBytes = RegVT.getSizeInBits() / 8; in expandUnalignedStore() local
10463 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes; in expandUnalignedStore()
10476 SDValue PtrIncrement = DAG.getConstant(RegBytes, dl, PtrVT); in expandUnalignedStore()
10477 SDValue StackPtrIncrement = DAG.getConstant(RegBytes, dl, StackPtrVT); in expandUnalignedStore()
10493 Offset += RegBytes; in expandUnalignedStore()