Home
last modified time | relevance | path

Searched refs:InputOperand (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/compiler/ia32/
Dcode-generator-ia32.cc28 Operand InputOperand(int index) { return ToOperand(instr_->InputAt(index)); } in InputOperand() function in v8::internal::compiler::IA32OperandConverter
152 __ add(i.InputOperand(0), i.InputImmediate(1)); in AssembleArchInstruction()
154 __ add(i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
159 __ and_(i.InputOperand(0), i.InputImmediate(1)); in AssembleArchInstruction()
161 __ and_(i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
166 __ cmp(i.InputOperand(0), i.InputImmediate(1)); in AssembleArchInstruction()
168 __ cmp(i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
173 __ test(i.InputOperand(0), i.InputImmediate(1)); in AssembleArchInstruction()
175 __ test(i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
180 __ imul(i.OutputRegister(), i.InputOperand(0), i.InputInt32(1)); in AssembleArchInstruction()
[all …]
/external/v8/src/compiler/arm64/
Dcode-generator-arm64.cc37 Operand InputOperand(int index) { return ToOperand(instr_->InputAt(index)); } in InputOperand() function in v8::internal::compiler::FINAL
39 Operand InputOperand64(int index) { return InputOperand(index); } in InputOperand64()
123 int64_t imm = i.InputOperand##width(1).immediate().value(); \
176 __ Add(i.OutputRegister(), i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
187 __ And(i.OutputRegister(), i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
242 __ Orn(i.OutputRegister(), xzr, i.InputOperand(0)); in AssembleArchInstruction()
248 __ Neg(i.OutputRegister(), i.InputOperand(0)); in AssembleArchInstruction()
254 __ Orr(i.OutputRegister(), i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
260 __ Eor(i.OutputRegister(), i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
266 __ Sub(i.OutputRegister(), i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
[all …]
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp942 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand) in UDivFoldAction()
943 : FoldAction(FA), OperandToFold(InputOperand), FoldResult(nullptr) {} in UDivFoldAction()
944 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand, size_t SLHS) in UDivFoldAction()
945 : FoldAction(FA), OperandToFold(InputOperand), SelectLHSIdx(SLHS) {} in UDivFoldAction()
/external/llvm/utils/TableGen/
DDAGISelMatcherGen.cpp277 unsigned InputOperand = VariableMap[N->getName()] - 1; in EmitLeafMatchCode() local
278 MatchedComplexPatterns.push_back(std::make_pair(N, InputOperand)); in EmitLeafMatchCode()