xed-sys 0.6.0+xed-2024.05.20

Rust FFI bindings for Intel XED.
Documentation
/*BEGIN_LEGAL 

Copyright (c) 2019 Intel Corporation

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  
END_LEGAL */
/// @file xed-encode-isa-functions.c
/// 

////////////////////////////////////////////////////////////////////////////
// This file contains the public interface to the encoder. 
////////////////////////////////////////////////////////////////////////////
#include "xed-encode.h"
#include "xed-encode-private.h"
#include "xed-encode-isa-functions.h"
#include "xed-tables-extern.h"
#include "xed-operand-accessors.h"



// FIXME: I could generate these 3 functions:

static xed_bool_t 
xed_encode_nonterminal_INSTRUCTIONS(xed_encoder_request_t* r)
{
    xed_iclass_enum_t iclass;  

    // bind function sets the encoding iform index
    xed_encode_function_pointer_t bind_func;
    
    iclass = xed_encoder_request_get_iclass(r);
    bind_func = xed_encoder_get_group_encoding_function(iclass);
    if (bind_func)    {
        xed_bool_t okay = (*bind_func)(r);
        return okay;
    }
    return 0;
}

// These are called during the encoding sequence to look up the right
// encoder functions specific to an iclass.

xed_bool_t 
xed_encode_nonterminal_INSTRUCTIONS_BIND(xed_encoder_request_t* xes)
{
    return xed_encode_nonterminal_INSTRUCTIONS(xes);
}
xed_bool_t 
xed_encode_nonterminal_INSTRUCTIONS_EMIT(xed_encoder_request_t* xes)
{   
    xed_ptrn_func_ptr_t emit_ptrn_function;
    
    emit_ptrn_function = xed_encoder_get_emit_ptrn(xes);
    (*emit_ptrn_function)(xes);
    return 1;
    //FIXME: use this in the future
    //return xed3_operand_get_error(xes);    
}