OpCodes.Bge_Un_S Campo

Definição

Transferirá o controle para uma instrução de destino (forma abreviada) se o primeiro valor for maior que o segundo valor ao comparar valores de inteiro sem sinal ou valores float não ordenados.Transfers control to a target instruction (short form) if the first value is greater than the second value, when comparing unsigned integer values or unordered float values.

public: static initonly System::Reflection::Emit::OpCode Bge_Un_S;
public static readonly System.Reflection.Emit.OpCode Bge_Un_S;
 staticval mutable Bge_Un_S : System.Reflection.Emit.OpCode
Public Shared ReadOnly Bge_Un_S As OpCode 

Valor do campo

OpCode

Comentários

A tabela a seguir lista o formato de assembly hexadecimal e da MSIL (Microsoft Intermediate Language) da instrução, juntamente com um resumo de referência breve:The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:

FormatarFormat Formato do assemblyAssembly Format DescriçãoDescription
34 < int8 >34 < int8 > bge. un. s targetbge.un.s target Branch para a instrução de destino no deslocamento especificado se o primeiro valor for maior ou igual ao segundo valor (valores não assinados), forma abreviada.Branch to the target instruction at the specified offset if the first value is greater than or equal to the second value (unsigned values), short form.

O comportamento de transição de pilha, em ordem sequencial, é:The stack transitional behavior, in sequential order, is:

  1. value1 é enviado por push para a pilha.value1 is pushed onto the stack.

  2. value2 é enviado por push para a pilha.value2 is pushed onto the stack.

  3. value2 e value1 são retirados da pilha; se value1 for maior ou igual a value2 , a operação de ramificação será executada.value2 and value1 are popped from the stack; if value1 is greater than or equal to value2, the branch operation is performed.

A bge.un.s instrução transfere o controle para a instrução de destino especificada se value1 for maior ou igual a, quando comparada value2 usando valores de float de inteiros ou não ordenados sem sinal.The bge.un.s instruction transfers control to the specified target instruction if value1 is greater than or equal to value2, when compared using unsigned integer or unordered float values. O efeito é idêntico à execução de uma clt.un instrução ( clt para floats) seguida por uma brfalse ramificação para a instrução de destino específica.The effect is identical to performing a clt.un instruction (clt for floats) followed by a brfalse branch to the specific target instruction. A instrução de destino é representada como um deslocamento assinado de 1 byte do início da instrução após a instrução atual.The target instruction is represented as a 1-byte signed offset from the beginning of the instruction following the current instruction.

Se a instrução de destino tiver um ou mais códigos de prefixo, o controle só poderá ser transferido para o primeiro desses prefixos.If the target instruction has one or more prefix codes, control can only be transferred to the first of these prefixes. As transferências de controle para dentro e fora dos try catch blocos,, filter e finally não podem ser executadas por essa instrução.Control transfers into and out of try, catch, filter, and finally blocks cannot be performed by this instruction.

A sobrecarga do método a seguir Emit pode usar o bge.un.s opcode:The following Emit method overload can use the bge.un.s opcode:

Aplica-se a