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

  /external/chromium_org/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/chromium_org/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/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 818 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand)
819 : FoldAction(FA), OperandToFold(InputOperand), FoldResult(nullptr) {}
820 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand, size_t SLHS)
821 : FoldAction(FA), OperandToFold(InputOperand), SelectLHSIdx(SLHS) {}
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 279 unsigned InputOperand = VariableMap[N->getName()] - 1;
280 MatchedComplexPatterns.push_back(std::make_pair(N, InputOperand));
    [all...]

Completed in 276 milliseconds