Searched defs:InputOperand (Results 1 - 4 of 4) sorted by last modified time

/external/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp279 unsigned InputOperand = VariableMap[N->getName()] - 1; local
280 MatchedComplexPatterns.push_back(std::make_pair(N, InputOperand));
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp818 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand) argument
819 : FoldAction(FA), OperandToFold(InputOperand), FoldResult(nullptr) {}
820 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand, size_t SLHS) argument
821 : FoldAction(FA), OperandToFold(InputOperand), SelectLHSIdx(SLHS) {}
/external/chromium_org/v8/src/compiler/arm64/
H A Dcode-generator-arm64.cc37 Operand InputOperand(int index) { return ToOperand(instr_->InputAt(index)); } function in class:v8::internal::compiler::FINAL
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(
[all...]
/external/chromium_org/v8/src/compiler/ia32/
H A Dcode-generator-ia32.cc28 Operand InputOperand(int index) { return ToOperand(instr_->InputAt(index)); } function in class:v8::internal::compiler::IA32OperandConverter
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(
[all...]

Completed in 218 milliseconds