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

Unified Diff: src/code-stubs.h

Issue 2301883002: CallInterfaceDescriptor should use MachineType (Closed)
Patch Set: Remove unneeded zone in the isolate. Created 4 years, 3 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 | « no previous file | src/code-stubs.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.h
diff --git a/src/code-stubs.h b/src/code-stubs.h
index 36757c41c63c929067ad2f8f0d8efa4839276aa2..374edcb1002c133c47b238b3c648d68ce20a4b29 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -564,7 +564,7 @@ class CodeStubDescriptor {
return call_descriptor().GetRegisterParameter(index);
}
- Type* GetParameterType(int index) const {
+ MachineType GetParameterType(int index) const {
return call_descriptor().GetParameterType(index);
}
@@ -3225,6 +3225,7 @@ class ToObjectStub final : public TurboFanCodeStub {
#undef DEFINE_CODE_STUB_BASE
extern Representation RepresentationFromType(Type* type);
+extern Representation RepresentationFromMachineType(MachineType type);
} // namespace internal
} // namespace v8
« no previous file with comments | « no previous file | src/code-stubs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698