HomeSort by relevance Sort by last modified time
    Searched full:op0 (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /external/llvm/test/Bitcode/
function-encoding-rel-operands.ll 6 ; CHECK: INST_BINOP {{.*}}op0=1 op1=1
7 ; CHECK: INST_BINOP {{.*}}op0=1 op1=1
8 ; CHECK: INST_BINOP {{.*}}op0=1 op1=1
9 ; CHECK: INST_RET {{.*}}op0=1
20 ; CHECK: INST_CAST {{.*}}op0=1
21 ; CHECK: INST_BINOP {{.*}}op0=1 op1=1
22 ; CHECK: INST_BINOP {{.*}}op0=1 op1=1
23 ; CHECK: INST_BINOP {{.*}}op0=1 op1=1
24 ; CHECK: INST_BINOP {{.*}}op0=1 op1=1
25 ; CHECK: INST_RET {{.*}}op0=
    [all...]
  /external/valgrind/main/VEX/test/
test-i386-muldiv.h 2 void glue(glue(test_, OP), b)(int op0, int op1)
5 s0 = op0;
20 void glue(glue(test_, OP), w)(int op0h, int op0, int op1)
25 res = op0;
35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK);
38 void glue(glue(test_, OP), l)(int op0h, int op0, int op1)
43 res = op0;
53 stringify(OP) "l", op0h, op0, s1, resh, res, flags & CC_MASK);
test-amd64-muldiv.h 2 void glue(glue(test_, OP), b)(int64 op0, int64 op1)
5 s0 = op0;
20 void glue(glue(test_, OP), w)(int64 op0h, int64 op0, int64 op1)
25 res = op0;
35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK);
38 void glue(glue(test_, OP), l)(int64 op0h, int64 op0, int64 op1)
43 res = op0;
53 stringify(OP) "l", op0h, op0, s1, resh, res, flags & CC_MASK);
56 void glue(glue(test_, OP), q)(int64 op0h, int64 op0, int64 op1)
61 res = op0;
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 137 if (BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS))
138 if (Op0->getOpcode() == OpcodeToExpand) {
140 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1), *C = RHS;
197 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS);
200 if (!Op0 || Op0->getOpcode() != OpcodeToExtract ||
205 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1);
268 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 119 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
121 if (Value *V = SimplifyMulInst(Op0, Op1, TD))
128 return BinaryOperator::CreateNeg(Op0, I.getName());
163 if (Op0->hasOneUse() &&
164 match(Op0, m_Add(m_Value(X), m_ConstantInt(C1)))) {
178 if (Op0->hasOneUse()) {
181 if (match(Op0, m_Sub(m_Value(Y), m_Value(X))))
183 else if (match(Op0, m_Add(m_Value(Y), m_ConstantInt(C1))))
197 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
201 if (isa<PHINode>(Op0))
    [all...]
InstCombineAndOrXor.cpp 710 Value *Op0 = LHS->getOperand(0), *Op1 = LHS->getOperand(1);
713 return getNewICmpValue(isSigned, Code, Op0, Op1, Builder);
    [all...]
InstCombineShifts.cpp 24 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
31 if (isa<Constant>(Op0))
37 if (Instruction *Res = FoldShiftByConstant(Op0, CUI, I))
312 Instruction *InstCombiner::FoldShiftByConstant(Value *Op0, ConstantInt *Op1,
320 CanEvaluateShifted(Op0, Op1->getZExtValue(), isLeftShift, *this)) {
322 " to eliminate shift:\n IN: " << *Op0 << "\n SH: " << I <<"\n");
325 GetShiftedValue(Op0, Op1->getZExtValue(), isLeftShift, *this));
331 uint32_t TypeBits = Op0->getType()->getScalarSizeInBits();
338 return ReplaceInstUsesWith(I, Constant::getNullValue(Op0->getType()));
345 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Op0))
    [all...]
  /external/chromium-trace/trace-viewer/src/cc/
picture_test.js 37 var op0 = ops[0];
38 assertEquals('Save', op0.cmd_string);
39 assertTrue(op0.info instanceof Array);
  /dalvik/vm/mterp/x86/
binop1.S 4 * registers (op0 in eax, op1 in ecx).
bindiv.S 4 * 32-bit binary div/rem operation. Handles special case of op0=minint and
bindiv2addr.S 3 * 32-bit binary div/rem operation. Handles special case of op0=minint and
bindivLit8.S 4 * op0=minint & op1=-1
bindivLit16.S 3 * 32-bit binary div/rem operation. Handles special case of op0=minint and
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_instructions.cpp 43 * Breaks an ir_binop_sub expression down to add(op0, neg(op1))
48 * want to recognize add(op0, neg(op1)) or the other way around to
53 * Breaks an ir_binop_div expression down to op0 * (rcp(op1)).
77 * Breaks an ir_binop_mod expression down to (op1 * fract(op0 / op1))
144 /* op0 / op1 -> op0 * (1.0 / op1) */
160 ir_rvalue *op0, *op1; local
179 op0 = new(ir) ir_expression(ir_unop_i2f, vec_type, ir->operands[0], NULL);
181 op0 = new(ir) ir_expression(ir_unop_u2f, vec_type, ir->operands[0], NULL);
187 op0 = new(ir) ir_expression(ir_binop_mul, vec_type, op0, op1)
    [all...]
ir.cpp 200 ir_rvalue *op0)
206 this->operands[0] = op0;
213 ir_rvalue *op0, ir_rvalue *op1)
220 this->operands[0] = op0;
227 ir_rvalue *op0, ir_rvalue *op1,
233 this->operands[0] = op0;
239 ir_expression::ir_expression(int op, ir_rvalue *op0)
244 this->operands[0] = op0;
275 this->type = op0->type;
283 op0->type->vector_elements, 1)
    [all...]
  /external/mesa3d/src/glsl/
lower_instructions.cpp 43 * Breaks an ir_binop_sub expression down to add(op0, neg(op1))
48 * want to recognize add(op0, neg(op1)) or the other way around to
53 * Breaks an ir_binop_div expression down to op0 * (rcp(op1)).
77 * Breaks an ir_binop_mod expression down to (op1 * fract(op0 / op1))
144 /* op0 / op1 -> op0 * (1.0 / op1) */
160 ir_rvalue *op0, *op1; local
179 op0 = new(ir) ir_expression(ir_unop_i2f, vec_type, ir->operands[0], NULL);
181 op0 = new(ir) ir_expression(ir_unop_u2f, vec_type, ir->operands[0], NULL);
187 op0 = new(ir) ir_expression(ir_binop_mul, vec_type, op0, op1)
    [all...]
ir.cpp 200 ir_rvalue *op0)
206 this->operands[0] = op0;
213 ir_rvalue *op0, ir_rvalue *op1)
220 this->operands[0] = op0;
227 ir_rvalue *op0, ir_rvalue *op1,
233 this->operands[0] = op0;
239 ir_expression::ir_expression(int op, ir_rvalue *op0)
244 this->operands[0] = op0;
275 this->type = op0->type;
283 op0->type->vector_elements, 1)
    [all...]
  /external/llvm/include/llvm/CodeGen/
FastISel.h 191 unsigned Op0, bool Op0IsKill);
198 unsigned Op0, bool Op0IsKill,
207 unsigned Op0, bool Op0IsKill,
216 unsigned Op0, bool Op0IsKill,
225 unsigned Op0, bool Op0IsKill,
236 unsigned Op0, bool Op0IsKill,
263 unsigned Op0, bool Op0IsKill);
269 unsigned Op0, bool Op0IsKill,
276 unsigned Op0, bool Op0IsKill,
284 unsigned Op0, bool Op0IsKill
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_channel_expressions.cpp 220 ir_rvalue *op0 = get_element(op_var[0], i); local
224 op0,
249 ir_rvalue *op0 = get_element(op_var[0], i); local
254 op0,
279 ir_rvalue *op0 = get_element(op_var[0], i); local
285 op0,
311 ir_rvalue *op0 = get_element(op_var[0], i); local
323 op0,
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_channel_expressions.cpp 220 ir_rvalue *op0 = get_element(op_var[0], i); local
224 op0,
249 ir_rvalue *op0 = get_element(op_var[0], i); local
254 op0,
279 ir_rvalue *op0 = get_element(op_var[0], i); local
285 op0,
311 ir_rvalue *op0 = get_element(op_var[0], i); local
323 op0,
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 398 unsigned Op0 = getRegForValue(I->getOperand(0));
399 if (Op0 == 0) // Unhandled operand. Halt "fast" selection and bail.
423 unsigned ResultReg = FastEmit_ri_(VT.getSimpleVT(), ISDOpcode, Op0,
435 ISDOpcode, Op0, Op0IsKill, CF);
453 Op0, Op0IsKill,
789 unsigned Op0 = getRegForValue(I->getOperand(0));
790 if (Op0 == 0)
805 ResultReg).addReg(Op0);
811 ResultReg = FastEmit_r(SrcVT, DstVT, ISD::BITCAST, Op0, Op0IsKill);
    [all...]
  /external/llvm/include/llvm/Support/
GetElementPtrTypeIterator.h 102 gep_type_begin(Type *Op0, ArrayRef<T> A) {
103 return generic_gep_type_iterator<const T *>::begin(Op0, A.begin());
108 gep_type_end(Type * /*Op0*/, ArrayRef<T> A) {
  /external/libvpx/libvpx/vp9/common/
vp9_loopfilter_filters.c 74 uint8_t *op0, uint8_t *oq0, uint8_t *oq1) {
78 const int8_t ps0 = (int8_t) *op0 ^ 0x80;
95 *op0 = signed_char_clamp(ps0 + filter2) ^ 0x80;
146 uint8_t *op1, uint8_t *op0,
150 const uint8_t p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
156 *op0 = ROUND_POWER_OF_TWO(p3 + p2 + p1 + 2 * p0 + q0 + q1 + q2, 3);
161 filter4(mask, hev, op1, op0, oq0, oq1);
213 uint8_t *op1, uint8_t *op0,
220 p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
238 *op0 = ROUND_POWER_OF_TWO(p7 + p6 + p5 + p4 + p3 + p2 + p1 + p0 * 2
    [all...]
  /external/libvpx/libvpx/vp9/common/arm/neon/
vp9_loopfilter_neon.asm 70 vst1.u8 {d5}, [r3@64], r1 ; store op0
144 ;store op1, op0, oq0, oq1
184 ; d5 op0
272 veor d5, d19, d18 ; *op0 = u^0x80
324 vst1.u8 {d2}, [r2@64], r1 ; store op0
396 ;store op2, op1, op0, oq0
447 ; d2 op0
559 vqadd.s8 d24, d24, d30 ; op0 = clamp(ps0 + filter2)
601 vbif d2, d24, d20 ; op0 |= f_op0 & ~(flat & mask)
622 vbit d2, d23, d20 ; op0 |= r_op0 & (flat & mask
    [all...]
  /external/libvpx/libvpx/vp8/common/
loopfilter_filters.c 52 uc *op0, uc *oq0, uc *oq1)
61 ps0 = (signed char) * op0 ^ 0x80;
84 *op0 = u ^ 0x80;
162 uc *op2, uc *op1, uc *op0, uc *oq0, uc *oq1, uc *oq2)
168 signed char ps0 = (signed char) * op0 ^ 0x80;
199 *op0 = s ^ 0x80;
292 static void vp8_simple_filter(signed char mask, uc *op1, uc *op0, uc *oq0, uc *oq1)
296 signed char p0 = (signed char) * op0 ^ 0x80;
314 *op0 = u ^ 0x80;

Completed in 1272 milliseconds

1 2 3 4 5 6 7