Lines Matching refs:insert
122 intcc_values.insert("eq", "Equal"); in new()
123 intcc_values.insert("ne", "NotEqual"); in new()
124 intcc_values.insert("sge", "SignedGreaterThanOrEqual"); in new()
125 intcc_values.insert("sgt", "SignedGreaterThan"); in new()
126 intcc_values.insert("sle", "SignedLessThanOrEqual"); in new()
127 intcc_values.insert("slt", "SignedLessThan"); in new()
128 intcc_values.insert("uge", "UnsignedGreaterThanOrEqual"); in new()
129 intcc_values.insert("ugt", "UnsignedGreaterThan"); in new()
130 intcc_values.insert("ule", "UnsignedLessThanOrEqual"); in new()
131 intcc_values.insert("ult", "UnsignedLessThan"); in new()
142 floatcc_values.insert("ord", "Ordered"); in new()
143 floatcc_values.insert("uno", "Unordered"); in new()
144 floatcc_values.insert("eq", "Equal"); in new()
145 floatcc_values.insert("ne", "NotEqual"); in new()
146 floatcc_values.insert("one", "OrderedNotEqual"); in new()
147 floatcc_values.insert("ueq", "UnorderedOrEqual"); in new()
148 floatcc_values.insert("lt", "LessThan"); in new()
149 floatcc_values.insert("le", "LessThanOrEqual"); in new()
150 floatcc_values.insert("gt", "GreaterThan"); in new()
151 floatcc_values.insert("ge", "GreaterThanOrEqual"); in new()
152 floatcc_values.insert("ult", "UnorderedOrLessThan"); in new()
153 floatcc_values.insert("ule", "UnorderedOrLessThanOrEqual"); in new()
154 floatcc_values.insert("ugt", "UnorderedOrGreaterThan"); in new()
155 floatcc_values.insert("uge", "UnorderedOrGreaterThanOrEqual"); in new()
168 trapcode_values.insert("stk_ovf", "STACK_OVERFLOW"); in new()
169 trapcode_values.insert("heap_oob", "HEAP_OUT_OF_BOUNDS"); in new()
170 trapcode_values.insert("int_ovf", "INTEGER_OVERFLOW"); in new()
171 trapcode_values.insert("int_divz", "INTEGER_DIVISION_BY_ZERO"); in new()
172 trapcode_values.insert("bad_toint", "BAD_CONVERSION_TO_INTEGER"); in new()
182 atomic_rmw_op_values.insert("add", "Add"); in new()
183 atomic_rmw_op_values.insert("sub", "Sub"); in new()
184 atomic_rmw_op_values.insert("and", "And"); in new()
185 atomic_rmw_op_values.insert("nand", "Nand"); in new()
186 atomic_rmw_op_values.insert("or", "Or"); in new()
187 atomic_rmw_op_values.insert("xor", "Xor"); in new()
188 atomic_rmw_op_values.insert("xchg", "Xchg"); in new()
189 atomic_rmw_op_values.insert("umin", "Umin"); in new()
190 atomic_rmw_op_values.insert("umax", "Umax"); in new()
191 atomic_rmw_op_values.insert("smin", "Smin"); in new()
192 atomic_rmw_op_values.insert("smax", "Smax"); in new()