Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(255)

Unified Diff: src/compiler/instruction-selector-impl.h

Issue 1455833004: [turbofan]: Implement tail calls with more callee than caller parameters (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove stray change Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/compiler/instruction-selector-impl.h
diff --git a/src/compiler/instruction-selector-impl.h b/src/compiler/instruction-selector-impl.h
index 8543aa0b19604dec163c9801a210ec686d0ee691..715e1f12c75979ea1e85e682be31d94e0cad368b 100644
--- a/src/compiler/instruction-selector-impl.h
+++ b/src/compiler/instruction-selector-impl.h
@@ -128,9 +128,15 @@ class OperandGenerator {
reg.code(), GetVReg(node)));
}
- InstructionOperand UseExplicit(Register reg) {
+ InstructionOperand UseExplicit(LinkageLocation location) {
MachineType machine_type = InstructionSequence::DefaultRepresentation();
- return ExplicitOperand(LocationOperand::REGISTER, machine_type, reg.code());
+ if (location.IsRegister()) {
+ return ExplicitOperand(LocationOperand::REGISTER, machine_type,
+ location.AsRegister());
+ } else {
+ return ExplicitOperand(LocationOperand::STACK_SLOT, machine_type,
+ location.GetLocation());
+ }
}
InstructionOperand UseImmediate(Node* node) {
@@ -142,6 +148,18 @@ class OperandGenerator {
return Use(node, ToUnallocatedOperand(location, type, GetVReg(node)));
}
+ // Used to force gap moves from the from_location to the to_location
+ // immediately before an instruction.
+ InstructionOperand UseLocation(LinkageLocation to_location,
+ LinkageLocation from_location,
+ MachineType type) {
+ UnallocatedOperand casted_from_operand =
+ UnallocatedOperand::cast(TempLocation(from_location, kMachPtr));
Benedikt Meurer 2015/11/20 10:06:43 Is kMachPtr really what you want here? Shouldn't i
danno 2015/11/20 14:43:23 Done.
+ selector_->Emit(kArchNop, casted_from_operand);
+ return ToUnallocatedOperand(to_location, type,
+ casted_from_operand.virtual_register());
+ }
+
InstructionOperand TempRegister() {
return UnallocatedOperand(UnallocatedOperand::MUST_HAVE_REGISTER,
UnallocatedOperand::USED_AT_START,

Powered by Google App Engine
This is Rietveld 408576698