image/svg+xmlTPAUSE—Timed PAUSEInstruction Operand Encoding1DescriptionTPAUSE instructs the processor to enter an implementation-dependent optimized state. There are two such opti-mized states to choose from: light-weight power/performance optimized state, and improved power/performance optimized state. The selection between the two is governed by the explicit input register bit[0] source operand.TPAUSE is available when CPUID.7.0:ECX.WAITPKG[bit 5] is enumerated as 1. TPAUSE may be executed at any privilege level. This instruction’s operation is the same in non-64-bit modes and in 64-bit mode.Unlike PAUSE, the TPAUSE instruction will not cause an abort when used inside a transactional region, described in the chapter Chapter 16, “Programming with Intel® Transactional Synchronization Extensions,” of the Intel® 64 and IA-32 Architectures Software Developer’s Manual, Volume 1.The input register contains information such as the preferred optimized state the processor should enter as described in the following table. Bits other than bit 0 are reserved and will result in #GP if non-zero.The instruction execution wakes up when the time-stamp counter reaches or exceeds the implicit EDX:EAX 64-bit input value.Prior to executing the TPAUSE instruction, an operating system may specify the maximum delay it allows the processor to suspend its operation. It can do so by writing TSC-quanta value to the following 32-bit MSR (IA32_UMWAIT_CONTROL at MSR index E1H):IA32_UMWAIT_CONTROL[31:2] — Determines the maximum time in TSC-quanta that the processor can reside in either C0.1 or C0.2. A zero value indicates no maximum time. The maximum time value is a 32-bit value where the upper 30 bits come from this field and the lower two bits are zero.IA32_UMWAIT_CONTROL[1] — Reserved.IA32_UMWAIT_CONTROL[0] — C0.2 is not allowed by the OS. Value of “1” means all C0.2 requests revert to C0.1.If the processor that executed a TPAUSE instruction wakes due to the expiration of the operating system time-limit, the instructions sets RFLAGS.CF; otherwise, that flag is cleared.The following additional events cause the processor to exit the implementation-dependent optimized state: a store to the read-set range within the transactional region, an NMI or SMI, a debug exception, a machine check excep-tion, the BINIT# signal, the INIT# signal, and the RESET# signal.Opcode /InstructionOp/ En64/32 bit Mode SupportCPUID Feature FlagDescription66 0F AE /6TPAUSE r32, <edx>, <eax>AV/VWAITPKGDirects the processor to enter an implementation-dependent optimized state until the TSC reaches the value in EDX:EAX.Op/EnTupleOperand 1Operand 2Operand 3Operand 4ANAModRM:r/m (r)NANANA1.The Mod field of the ModR/M byte must have value 11B.Table 4-25. TPAUSE Input Register Bit DefinitionsBit ValueState NameWakeup TimePower SavingsOther Benefitsbit[0] = 0C0.2SlowerLargerImproves performance of the other SMT thread(s) on the same core.bit[0] = 1C0.1FasterSmallerNAbits[31:1]NANANAReserved

image/svg+xmlOther implementation-dependent events may cause the processor to exit the implementation-dependent opti-mized state proceeding to the instruction following TPAUSE. In addition, an external interrupt causes the processor to exit the implementation-dependent optimized state regardless of whether maskable-interrupts are inhibited (EFLAGS.IF =0). It should be noted that if maskable-interrupts are inhibited execution will proceed to the instruc-tion following TPAUSE.Operationos_deadline := TSC+(IA32_MWAIT_CONTROL[31:2]<<2)instr_deadline := UINT64(EDX:EAX)IF os_deadline < instr_deadline:deadline := os_deadlineusing_os_deadline := 1ELSE:deadline := instr_deadlineusing_os_deadline := 0WHILE TSC < deadline:implementation_dependent_optimized_state(Source register, deadline, IA32_UMWAIT_CONTROL[0])IF using_os_deadline AND TSC > deadline:RFLAGS.CF := 1ELSE:RFLAGS.CF := 0RFLAGS.AF,PF,SF,ZF,OF := 0Intel C/C++ Compiler Intrinsic EquivalentTPAUSE uint8_t _tpause(uint32_t control, uint64_t counter);Numeric ExceptionsNone.Exceptions (All Operating Modes)#GP(0)If src[31:1] != 0.If CR4.TSD = 1 and CPL != 0.#UD If CPUID.7.0:ECX.WAITPKG[bit 5]=0.

This UNOFFICIAL reference was generated from the official Intel® 64 and IA-32 Architectures Software Developer’s Manual by a dumb script. There is no guarantee that some parts aren't mangled or broken and is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.