use llvm_sys::core::*;
use llvm_sys::prelude::LLVMValueRef;
use std::marker::PhantomData;
use crate::values::*;
use crate::*;
#[derive(Copy, Clone, PartialEq, Eq, Hash)]
pub struct IndirectBranchInstruction<'ctx>(LLVMValueRef, PhantomData<&'ctx ()>);
impl_instr_debug!(IndirectBranchInstruction);
impl_as_operand_for_instr!(IndirectBranchInstruction);
impl_send_sync!(IndirectBranchInstruction);
impl<'ctx> GetType<'ctx> for IndirectBranchInstruction<'ctx> {}
impl<'ctx> GetDebugMetadata<'ctx> for IndirectBranchInstruction<'ctx> {}
impl<'ctx> InstructionDebugLoc for IndirectBranchInstruction<'ctx> {}
impl<'ctx> InstructionTrait<'ctx> for IndirectBranchInstruction<'ctx> {}
impl<'ctx> IndirectBranchInstruction<'ctx> {
pub fn address(&self) -> BlockAddress<'ctx> {
BlockAddress::from_llvm(unsafe { LLVMGetOperand(self.0, 0) })
}
pub fn destinations(&self) -> Vec<Block<'ctx>> {
let num_operands = unsafe { LLVMGetNumOperands(self.0) as u32 };
let num_dests = num_operands - 1;
(1..=num_dests)
.map(|i| Block::from_llvm(unsafe { LLVMValueAsBasicBlock(LLVMGetOperand(self.0, i)) }))
.collect()
}
}
impl<'ctx> ValueOpcode for IndirectBranchInstruction<'ctx> {
fn opcode(&self) -> Opcode {
Opcode::IndirectBr
}
}
impl<'ctx> AsInstruction<'ctx> for IndirectBranchInstruction<'ctx> {
fn as_instruction(&self) -> Instruction<'ctx> {
Instruction::IndirectBranch(*self)
}
}
impl_positional_value_ref!(IndirectBranchInstruction, 0);
impl_positional_from_llvm_value!(IndirectBranchInstruction);