Chromium Code Reviews

Unified Diff: src/IceTargetLowering.h

Issue 1127963004: Subzero ARM: lowerArguments (GPR), basic legalize(), and lowerRet(i32, i64). (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: oops cleanup Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/IceTargetLowering.h
diff --git a/src/IceTargetLowering.h b/src/IceTargetLowering.h
index 50035747cbf33b652bdeb789994b3478a1fec785..8f8a4e2bcb31a5ae0c1c82b37bcdb6e7e16eed08 100644
--- a/src/IceTargetLowering.h
+++ b/src/IceTargetLowering.h
@@ -254,6 +254,10 @@ protected:
// expansion before returning.
virtual void postLower() {}
+ // Find two-address non-SSA instructions and set the DestNonKillable flag
+ // to keep liveness analysis consistent.
+ void inferTwoAddress();
+
// Make a call to an external helper function.
InstCall *makeHelperCall(const IceString &Name, Variable *Dest,
SizeT MaxSrcs);

Powered by Google App Engine