Home
last modified time | relevance | path

Searched refs:CD8_Scale (Results 1 – 5 of 5) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp418 unsigned CD8_Scale = in isDispOrCDisp8() local
420 CD8_Scale = CD8_Scale ? 1U << (CD8_Scale - 1) : 0U; in isDispOrCDisp8()
421 if (!HasEVEX || !CD8_Scale) in isDispOrCDisp8()
424 assert(isPowerOf2_32(CD8_Scale) && "Unexpected CD8 scale!"); in isDispOrCDisp8()
425 if (Value & (CD8_Scale - 1)) // Unaligned offset in isDispOrCDisp8()
428 int CDisp8 = Value / static_cast<int>(CD8_Scale); in isDispOrCDisp8()
/src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFormats.td276 bits<7> CD8_Scale = !if (!eq (OpEnc.Value, EncEVEX.Value),
306 let TSFlags{47-45} = !if(!eq(CD8_Scale, 0), 0, !add(!logtwo(CD8_Scale), 1));
H A DX86InstrUtils.td65 class NoCD8 { bits<7> CD8_Scale = 0; }
/src/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.h230 uint8_t CD8_Scale; member
H A DX86RecognizableInstr.cpp134 CD8_Scale = byteFromRec(Rec, "CD8_Scale"); in RecognizableInstrBase()
402 CD8_Scale == 0) in adjustOperandEncoding()
404 encoding = (OperandEncoding)(encoding + Log2_32(CD8_Scale)); in adjustOperandEncoding()