Searched defs:InputOperand (Results 1 - 4 of 4) sorted by relevance
/external/v8/src/compiler/ia32/ |
H A D | code-generator-ia32.cc | 28 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...] |
/external/llvm/utils/TableGen/ |
H A D | DAGISelMatcherGen.cpp | 277 unsigned InputOperand = VariableMap[N->getName()] - 1; local 278 MatchedComplexPatterns.push_back(std::make_pair(N, InputOperand));
|
/external/v8/src/compiler/arm64/ |
H A D | code-generator-arm64.cc | 37 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/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineMulDivRem.cpp | 942 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand) argument 943 : FoldAction(FA), OperandToFold(InputOperand), FoldResult(nullptr) {} 944 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand, size_t SLHS) argument 945 : FoldAction(FA), OperandToFold(InputOperand), SelectLHSIdx(SLHS) {}
|
Completed in 189 milliseconds