1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
use llvm_sys::core::{
LLVMConstExtractElement, LLVMConstInsertElement, LLVMConstSelect, LLVMConstShuffleVector, LLVMGetAsString,
LLVMGetElementAsConstant, LLVMIsAConstantDataVector, LLVMIsAConstantVector, LLVMIsConstantString,
};
use llvm_sys::prelude::LLVMValueRef;
use std::ffi::CStr;
use std::fmt::{self, Display};
use crate::types::VectorType;
use crate::values::traits::AsValueRef;
use crate::values::{BasicValue, BasicValueEnum, InstructionValue, IntValue, Value};
use super::AnyValue;
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash)]
pub struct VectorValue<'ctx> {
vec_value: Value<'ctx>,
}
impl<'ctx> VectorValue<'ctx> {
pub(crate) unsafe fn new(vector_value: LLVMValueRef) -> Self {
assert!(!vector_value.is_null());
VectorValue {
vec_value: Value::new(vector_value),
}
}
pub fn is_const(self) -> bool {
self.vec_value.is_const()
}
pub fn is_constant_vector(self) -> bool {
unsafe { !LLVMIsAConstantVector(self.as_value_ref()).is_null() }
}
pub fn is_constant_data_vector(self) -> bool {
unsafe { !LLVMIsAConstantDataVector(self.as_value_ref()).is_null() }
}
pub fn print_to_stderr(self) {
self.vec_value.print_to_stderr()
}
pub fn get_name(&self) -> &CStr {
self.vec_value.get_name()
}
pub fn set_name(&self, name: &str) {
self.vec_value.set_name(name)
}
pub fn get_type(self) -> VectorType<'ctx> {
unsafe { VectorType::new(self.vec_value.get_type()) }
}
pub fn is_null(self) -> bool {
self.vec_value.is_null()
}
pub fn is_undef(self) -> bool {
self.vec_value.is_undef()
}
pub fn as_instruction(self) -> Option<InstructionValue<'ctx>> {
self.vec_value.as_instruction()
}
pub fn const_extract_element(self, index: IntValue<'ctx>) -> BasicValueEnum<'ctx> {
unsafe { BasicValueEnum::new(LLVMConstExtractElement(self.as_value_ref(), index.as_value_ref())) }
}
pub fn const_insert_element<BV: BasicValue<'ctx>>(self, index: IntValue<'ctx>, value: BV) -> BasicValueEnum<'ctx> {
unsafe {
BasicValueEnum::new(LLVMConstInsertElement(
self.as_value_ref(),
value.as_value_ref(),
index.as_value_ref(),
))
}
}
pub fn replace_all_uses_with(self, other: VectorValue<'ctx>) {
self.vec_value.replace_all_uses_with(other.as_value_ref())
}
pub fn is_const_string(self) -> bool {
unsafe { LLVMIsConstantString(self.as_value_ref()) == 1 }
}
pub fn get_string_constant(&self) -> &CStr {
let mut len = 0;
let ptr = unsafe { LLVMGetAsString(self.as_value_ref(), &mut len) };
if ptr.is_null() {
panic!("FIXME: Need to retun an Option");
}
unsafe { CStr::from_ptr(ptr) }
}
pub fn get_element_as_constant(self, index: u32) -> BasicValueEnum<'ctx> {
unsafe { BasicValueEnum::new(LLVMGetElementAsConstant(self.as_value_ref(), index)) }
}
pub fn const_select<BV: BasicValue<'ctx>>(self, then: BV, else_: BV) -> BasicValueEnum<'ctx> {
unsafe {
BasicValueEnum::new(LLVMConstSelect(
self.as_value_ref(),
then.as_value_ref(),
else_.as_value_ref(),
))
}
}
pub fn const_shuffle_vector(self, right: VectorValue<'ctx>, mask: VectorValue<'ctx>) -> VectorValue<'ctx> {
unsafe {
VectorValue::new(LLVMConstShuffleVector(
self.as_value_ref(),
right.as_value_ref(),
mask.as_value_ref(),
))
}
}
}
impl AsValueRef for VectorValue<'_> {
fn as_value_ref(&self) -> LLVMValueRef {
self.vec_value.value
}
}
impl Display for VectorValue<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.print_to_string())
}
}