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

Unified Diff: src/compiler/int64-lowering.cc

Issue 2731713002: [wasm] Fix interpreter entry for i64 return type (Closed)
Patch Set: Address comments Created 3 years, 9 months 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
« no previous file with comments | « src/compiler/int64-lowering.h ('k') | src/compiler/wasm-compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/int64-lowering.cc
diff --git a/src/compiler/int64-lowering.cc b/src/compiler/int64-lowering.cc
index 06c927289e8aafdd9c192e4de0f7982dea784627..91fa7c09ae99271c1550fdf8371aebed50948835 100644
--- a/src/compiler/int64-lowering.cc
+++ b/src/compiler/int64-lowering.cc
@@ -74,6 +74,8 @@ void Int64Lowering::LowerGraph() {
}
}
+namespace {
+
static int GetParameterIndexAfterLowering(
Signature<MachineRepresentation>* signature, int old_index) {
int result = old_index;
@@ -85,6 +87,19 @@ static int GetParameterIndexAfterLowering(
return result;
}
+int GetReturnCountAfterLowering(Signature<MachineRepresentation>* signature) {
+ int result = static_cast<int>(signature->return_count());
+ for (int i = 0; i < static_cast<int>(signature->return_count()); i++) {
+ if (signature->GetReturn(i) == MachineRepresentation::kWord64) {
+ result++;
+ }
+ }
+ return result;
+}
+
+} // namespace
+
+// static
int Int64Lowering::GetParameterCountAfterLowering(
Signature<MachineRepresentation>* signature) {
// GetParameterIndexAfterLowering(parameter_count) returns the parameter count
@@ -93,15 +108,10 @@ int Int64Lowering::GetParameterCountAfterLowering(
signature, static_cast<int>(signature->parameter_count()));
}
-static int GetReturnCountAfterLowering(
- Signature<MachineRepresentation>* signature) {
- int result = static_cast<int>(signature->return_count());
- for (int i = 0; i < static_cast<int>(signature->return_count()); i++) {
- if (signature->GetReturn(i) == MachineRepresentation::kWord64) {
- result++;
- }
- }
- return result;
+// static
+bool Int64Lowering::IsI64AsTwoParameters(MachineOperatorBuilder* machine,
+ MachineRepresentation type) {
+ return machine->Is32() && type == MachineRepresentation::kWord64;
}
void Int64Lowering::GetIndexNodes(Node* index, Node*& index_low,
@@ -120,14 +130,6 @@ void Int64Lowering::GetIndexNodes(Node* index, Node*& index_low,
#endif
}
-#if defined(V8_TARGET_LITTLE_ENDIAN)
-const int Int64Lowering::kLowerWordOffset = 0;
-const int Int64Lowering::kHigherWordOffset = 4;
-#elif defined(V8_TARGET_BIG_ENDIAN)
-const int Int64Lowering::kLowerWordOffset = 4;
-const int Int64Lowering::kHigherWordOffset = 0;
-#endif
-
void Int64Lowering::LowerNode(Node* node) {
switch (node->opcode()) {
case IrOpcode::kInt64Constant: {
@@ -561,7 +563,8 @@ void Int64Lowering::LowerNode(Node* node) {
StoreRepresentation(MachineRepresentation::kWord32,
WriteBarrierKind::kNoWriteBarrier)),
stack_slot,
- graph()->NewNode(common()->Int32Constant(kHigherWordOffset)),
+ graph()->NewNode(
+ common()->Int32Constant(kInt64UpperHalfMemoryOffset)),
GetReplacementHigh(input), graph()->start(), graph()->start());
Node* store_low_word = graph()->NewNode(
@@ -569,7 +572,8 @@ void Int64Lowering::LowerNode(Node* node) {
StoreRepresentation(MachineRepresentation::kWord32,
WriteBarrierKind::kNoWriteBarrier)),
stack_slot,
- graph()->NewNode(common()->Int32Constant(kLowerWordOffset)),
+ graph()->NewNode(
+ common()->Int32Constant(kInt64LowerHalfMemoryOffset)),
GetReplacementLow(input), store_high_word, graph()->start());
Node* load =
@@ -597,13 +601,15 @@ void Int64Lowering::LowerNode(Node* node) {
Node* high_node = graph()->NewNode(
machine()->Load(MachineType::Int32()), stack_slot,
- graph()->NewNode(common()->Int32Constant(kHigherWordOffset)), store,
- graph()->start());
+ graph()->NewNode(
+ common()->Int32Constant(kInt64UpperHalfMemoryOffset)),
+ store, graph()->start());
Node* low_node = graph()->NewNode(
machine()->Load(MachineType::Int32()), stack_slot,
- graph()->NewNode(common()->Int32Constant(kLowerWordOffset)), store,
- graph()->start());
+ graph()->NewNode(
+ common()->Int32Constant(kInt64LowerHalfMemoryOffset)),
+ store, graph()->start());
ReplaceNode(node, low_node, high_node);
break;
}
« no previous file with comments | « src/compiler/int64-lowering.h ('k') | src/compiler/wasm-compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698