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

1 2 3 4 5 6 7

  /external/llvm/test/Bitcode/
pr18704.ll 10 ; <VERSION op0=1/>
13 ; <NUMENTRY op0=25/>
14 ; <INTEGER op0=8/>
15 ; <POINTER abbrevid=4 op0=0 op1=0/>
16 ; <POINTER abbrevid=4 op0=1 op1=0/>
17 ; <ARRAY abbrevid=9 op0=6 op1=0/>
18 ; <POINTER abbrevid=4 op0=3 op1=0/>
19 ; <ARRAY abbrevid=9 op0=10 op1=0/>
20 ; <POINTER abbrevid=4 op0=5 op1=0/>
21 ; <ARRAY abbrevid=9 op0=4 op1=0/
    [all...]
function-encoding-rel-operands.ll 7 ; CHECK: INST_BINOP {{.*}}op0=1 op1=1
8 ; CHECK: INST_BINOP {{.*}}op0=1 op1=1
9 ; CHECK: INST_BINOP {{.*}}op0=1 op1=1
10 ; CHECK: INST_RET {{.*}}op0=1
21 ; CHECK: INST_CAST {{.*}}op0=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_BINOP {{.*}}op0=1 op1=1
26 ; CHECK: INST_RET {{.*}}op0=
    [all...]
  /external/llvm/test/Other/
bcanalyzer-block-info.txt 10 DATA: op0=42 op1=43 op2=44/>
13 DATA: op0=42/>
16 DATA: op0=42/>
24 DATA: abbrevid=4 op0=50 op1=4/>
27 DATA: op0=42/>
30 DATA: abbrevid=4 op0=50 op1=5/>
  /external/valgrind/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/chromium-trace/trace-viewer/tracing/tracing/extras/chrome/cc/
picture_test.html 42 var op0 = ops[0];
43 assert.equal(op0.cmd_string, 'Save');
44 assert.instanceOf(op0.info, Array);
  /external/v8/src/compiler/
graph-reducer-unittest.cc 23 SimpleOperator OP0(0, Operator::kNoWrite, 0, 1, "op0");
79 Node* node0 = graph()->NewNode(&OP0);
92 Node* node0 = graph()->NewNode(&OP0);
102 Node* node0 = graph()->NewNode(&OP0);
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 147 if (BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS))
148 if (Op0->getOpcode() == OpcodeToExpand) {
150 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1), *C = RHS;
206 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS);
210 if (Op0 && Op0->getOpcode() == Opcode) {
211 Value *A = Op0->getOperand(0);
212 Value *B = Op0->getOperand(1);
252 if (Op0 && Op0->getOpcode() == Opcode)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 170 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
175 if (Value *V = SimplifyMulInst(Op0, Op1, DL, TLI, DT, AC))
183 BinaryOperator *BO = BinaryOperator::CreateNeg(Op0, I.getName());
241 if (Op0->hasOneUse()) {
244 if (match(Op0, m_Sub(m_Value(Y), m_Value(X))))
246 else if (match(Op0, m_Add(m_Value(Y), m_ConstantInt(C1))))
260 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
264 if (isa<PHINode>(Op0))
272 if (match(Op0, m_OneUse(m_Add(m_Value(X), m_Constant(C1))))) {
282 if (Value *Op0v = dyn_castNegVal(Op0)) { // -X * -Y = X*
    [all...]
InstCombineAndOrXor.cpp     [all...]
InstCombineShifts.cpp 26 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
33 if (isa<Constant>(Op0))
39 if (Instruction *Res = FoldShiftByConstant(Op0, CUI, I))
321 Instruction *InstCombiner::FoldShiftByConstant(Value *Op0, Constant *Op1,
339 CanEvaluateShifted(Op0, COp1->getZExtValue(), isLeftShift, *this, &I)) {
341 " to eliminate shift:\n IN: " << *Op0 << "\n SH: " << I <<"\n");
344 I, GetShiftedValue(Op0, COp1->getZExtValue(), isLeftShift, *this, DL));
349 uint32_t TypeBits = Op0->getType()->getScalarSizeInBits();
355 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Op0))
362 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
    [all...]
InstCombineCompares.cpp     [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/lib/Transforms/Scalar/
Scalarizer.cpp 74 Value *operator()(IRBuilder<> &Builder, Value *Op0, Value *Op1,
76 return Builder.CreateFCmp(FCI.getPredicate(), Op0, Op1, Name);
85 Value *operator()(IRBuilder<> &Builder, Value *Op0, Value *Op1,
87 return Builder.CreateICmp(ICI.getPredicate(), Op0, Op1, Name);
96 Value *operator()(IRBuilder<> &Builder, Value *Op0, Value *Op1,
98 return Builder.CreateBinOp(BO.getOpcode(), Op0, Op1, Name);
375 Scatterer Op0 = scatter(&I, I.getOperand(0));
377 assert(Op0.size() == NumElems && "Mismatched binary operation");
382 Res[Elem] = Split(Builder, Op0[Elem], Op1[Elem],
403 Scatterer Op0 = scatter(&SI, SI.getOperand(0))
    [all...]
  /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/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;
81 const uint8_t hev = hev_mask(thresh, *op1, *op0, *oq0, *oq1);
96 *op0 = signed_char_clamp(ps0 + filter2) ^ 0x80;
158 uint8_t *op1, uint8_t *op0,
162 const uint8_t p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
168 *op0 = ROUND_POWER_OF_TWO(p3 + p2 + p1 + 2 * p0 + q0 + q1 + q2, 3);
173 filter4(mask, thresh, op1, op0, oq0, oq1);
236 uint8_t *op1, uint8_t *op0,
243 p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
    [all...]
  /external/llvm/include/llvm/IR/
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) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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;
81 const uint8_t hev = hev_mask(thresh, *op1, *op0, *oq0, *oq1);
96 *op0 = signed_char_clamp(ps0 + filter2) ^ 0x80;
158 uint8_t *op1, uint8_t *op0,
162 const uint8_t p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
168 *op0 = ROUND_POWER_OF_TWO(p3 + p2 + p1 + 2 * p0 + q0 + q1 + q2, 3);
173 filter4(mask, thresh, op1, op0, oq0, oq1);
236 uint8_t *op1, uint8_t *op0,
243 p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 421 unsigned Op0 = getRegForValue(I->getOperand(0));
422 if (!Op0) // Unhandled operand. Halt "fast" selection and bail.
444 unsigned ResultReg = fastEmit_ri_(VT.getSimpleVT(), ISDOpcode, Op0,
457 ISDOpcode, Op0, Op0IsKill, CF);
472 ISDOpcode, Op0, Op0IsKill, Op1, Op1IsKill);
    [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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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/llvm/include/llvm/CodeGen/
FastISel.h 336 virtual unsigned fastEmit_r(MVT VT, MVT RetVT, unsigned Opcode, unsigned Op0,
341 virtual unsigned fastEmit_rr(MVT VT, MVT RetVT, unsigned Opcode, unsigned Op0,
347 virtual unsigned fastEmit_ri(MVT VT, MVT RetVT, unsigned Opcode, unsigned Op0,
353 virtual unsigned fastEmit_rf(MVT VT, MVT RetVT, unsigned Opcode, unsigned Op0,
360 unsigned Op0, bool Op0IsKill, unsigned Op1,
368 unsigned fastEmit_ri_(MVT VT, unsigned Opcode, unsigned Op0, bool Op0IsKill,
389 const TargetRegisterClass *RC, unsigned Op0,
395 const TargetRegisterClass *RC, unsigned Op0,
401 const TargetRegisterClass *RC, unsigned Op0,
408 const TargetRegisterClass *RC, unsigned Op0,
    [all...]
  /external/webp/src/dsp/
dec_neon.c 484 uint8x16_t* const op0, uint8x16_t* const oq0) {
493 *op0 = FlipSignBack(sp0);
502 uint8x16_t* const op0, uint8x16_t* const oq0) {
509 ApplyFilter2(p0s, q0s, delta1, op0, oq0);
513 uint8x16_t p1, p0, q0, q1, op0, oq0; local
517 DoFilter2(p1, p0, q0, q1, mask, &op0, &oq0);
519 Store16x2(op0, oq0, p, stride);
523 uint8x16_t p1, p0, q0, q1, oq0, op0; local
527 DoFilter2(p1, p0, q0, q1, mask, &op0, &oq0);
529 Store2x16(op0, oq0, p, stride)
828 uint8x16_t op2, op1, op0, oq0, oq1, oq2; local
845 uint8x16_t op2, op1, op0, oq0, oq1, oq2; local
910 uint8x16_t op2, op1, op0, oq0, oq1, oq2; local
928 uint8x16_t op1, op0, oq0, oq1; local
943 uint8x16_t op2, op1, op0, oq0, oq1, oq2; local
960 uint8x16_t op1, op0, oq0, oq1; local
    [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 706 milliseconds

1 2 3 4 5 6 7