Searched defs:ToOperand (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/v8/src/compiler/ia32/
H A Dcode-generator-ia32.cc28 Operand InputOperand(int index) { return ToOperand(instr_->InputAt(index)); }
34 Operand OutputOperand() { return ToOperand(instr_->Output()); }
36 Operand TempOperand(int index) { return ToOperand(instr_->TempAt(index)); }
38 Operand ToOperand(InstructionOperand* op, int extra = 0) { function in class:v8::internal::compiler::IA32OperandConverter
54 return ToOperand(op, kPointerSize);
801 Operand dst = g.ToOperand(destination);
805 Operand src = g.ToOperand(source);
810 Operand dst = g.ToOperand(destination);
823 Operand dst = g.ToOperand(destination);
836 Operand dst = g.ToOperand(destinatio
[all...]
/external/chromium_org/v8/src/compiler/arm64/
H A Dcode-generator-arm64.cc37 Operand InputOperand(int index) { return ToOperand(instr_->InputAt(index)); }
71 Operand ToOperand(InstructionOperand* op) { function in class:v8::internal::compiler::FINAL
/external/chromium_org/v8/src/compiler/x64/
H A Dcode-generator-x64.cc111 Operand ToOperand(InstructionOperand* op, int extra = 0) { function in class:v8::internal::compiler::X64OperandConverter
884 __ movq(g.ToOperand(destination), src);
888 Operand src = g.ToOperand(source);
896 Operand dst = g.ToOperand(destination);
918 __ movq(g.ToOperand(destination), kScratchRegister);
927 __ movq(g.ToOperand(destination), kScratchRegister);
937 Operand dst = g.ToOperand(destination);
942 Operand src = g.ToOperand(source);
948 Operand dst = g.ToOperand(destination);
968 Operand dst = g.ToOperand(destinatio
[all...]
/external/chromium_org/v8/src/arm/
H A Dlithium-codegen-arm.cc545 Operand LCodeGen::ToOperand(LOperand* op) { function in class:v8::internal::LCodeGen
1740 right = ToOperand(right_op);
1864 __ sub(ToRegister(result), ToRegister(left), ToOperand(right), set_cond);
1885 __ rsb(ToRegister(result), ToRegister(left), ToOperand(right), set_cond);
2058 __ add(ToRegister(result), ToRegister(left), ToOperand(right), set_cond);
2075 ? ToOperand(right)
4245 Operand index = ToOperand(instr->index());
4251 Operand length = ToOperand(instr->length());
/external/chromium_org/v8/src/arm64/
H A Dlithium-codegen-arm64.cc1202 Operand LCodeGen::ToOperand(LOperand* op) { function in class:v8::internal::LCodeGen
1530 Operand right = ToOperand(instr->right());
1811 Operand right = ToOperand(instr->right());
4225 Operand right = ToOperand(instr->right());
5576 Operand right = ToOperand(instr->right());
/external/chromium_org/v8/src/mips/
H A Dlithium-codegen-mips.cc540 Operand LCodeGen::ToOperand(LOperand* op) { function in class:v8::internal::LCodeGen
1586 right = ToOperand(right_op);
1709 __ Subu(ToRegister(result), ToRegister(left), ToOperand(right));
1899 __ Addu(ToRegister(result), ToRegister(left), ToOperand(right));
4194 operand = ToOperand(instr->index());
4199 operand = ToOperand(instr->length());
/external/chromium_org/v8/src/mips64/
H A Dlithium-codegen-mips64.cc487 Operand LCodeGen::ToOperand(LOperand* op) { function in class:v8::internal::LCodeGen
1551 right = ToOperand(right_op);
1668 __ Dsubu(ToRegister(result), ToRegister(left), ToOperand(right));
1862 __ Daddu(ToRegister(result), ToRegister(left), ToOperand(right));
4225 operand = ToOperand(instr->index());
4230 operand = ToOperand(instr->length());

Completed in 1171 milliseconds