HomeSort by relevance Sort by last modified time
    Searched defs:InputOperand (Results 1 - 3 of 3) sorted by null

  /external/v8/src/compiler/arm64/
code-generator-arm64.cc 37 Operand InputOperand(int index) { return ToOperand(instr_->InputAt(index)); }
39 Operand InputOperand64(int index) { return InputOperand(index); }
123 int64_t imm = i.InputOperand##width(1).immediate().value(); \
176 __ Add(i.OutputRegister(), i.InputRegister(0), i.InputOperand(1));
187 __ And(i.OutputRegister(), i.InputRegister(0), i.InputOperand(1));
242 __ Orn(i.OutputRegister(), xzr, i.InputOperand(0));
248 __ Neg(i.OutputRegister(), i.InputOperand(0));
254 __ Orr(i.OutputRegister(), i.InputRegister(0), i.InputOperand(1));
260 __ Eor(i.OutputRegister(), i.InputRegister(0), i.InputOperand(1));
266 __ Sub(i.OutputRegister(), i.InputRegister(0), i.InputOperand(1))
    [all...]
  /external/v8/src/compiler/ia32/
code-generator-ia32.cc 28 Operand InputOperand(int index) { return ToOperand(instr_->InputAt(index)); }
152 __ add(i.InputOperand(0), i.InputImmediate(1));
154 __ add(i.InputRegister(0), i.InputOperand(1));
159 __ and_(i.InputOperand(0), i.InputImmediate(1));
161 __ and_(i.InputRegister(0), i.InputOperand(1));
166 __ cmp(i.InputOperand(0), i.InputImmediate(1));
168 __ cmp(i.InputRegister(0), i.InputOperand(1));
173 __ test(i.InputOperand(0), i.InputImmediate(1));
175 __ test(i.InputRegister(0), i.InputOperand(1));
180 __ imul(i.OutputRegister(), i.InputOperand(0), i.InputInt32(1))
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 277 unsigned InputOperand = VariableMap[N->getName()] - 1;
278 MatchedComplexPatterns.push_back(std::make_pair(N, InputOperand));
    [all...]

Completed in 620 milliseconds