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

Unified Diff: src/IceTargetLoweringARM32.cpp

Issue 1745393002: Subzero. ARM32. Reverts cl 1687553002. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 10 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 | tests_lit/assembler/arm32/call.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTargetLoweringARM32.cpp
diff --git a/src/IceTargetLoweringARM32.cpp b/src/IceTargetLoweringARM32.cpp
index e5abe21dbda9df1689d7016d118570b428bb463d..c7224381b2bede9f4f631be0cb904144257453c7 100644
--- a/src/IceTargetLoweringARM32.cpp
+++ b/src/IceTargetLoweringARM32.cpp
@@ -3592,10 +3592,7 @@ void TargetARM32::lowerBr(const InstBr *Instr) {
}
void TargetARM32::lowerCall(const InstCall *Instr) {
- // Note: Keep original call target. This allows us to call the correct
- // postamble helper, even if the CallTarget gets modified during lowering.
- Operand *OrigCallTarget = Instr->getCallTarget();
- Operand *CallTarget = OrigCallTarget;
+ Operand *CallTarget = Instr->getCallTarget();
if (Instr->isTargetHelperCall()) {
auto TargetHelperPreamble = ARM32HelpersPreamble.find(CallTarget);
if (TargetHelperPreamble != ARM32HelpersPreamble.end()) {
@@ -3720,9 +3717,12 @@ void TargetARM32::lowerCall(const InstCall *Instr) {
}
}
- // Note: To allow far calls, even for constant relocatables, we force
- // the call target into a register, and make an indirect call.
- CallTarget = legalizeToReg(CallTarget);
+ // Allow ConstantRelocatable to be left alone as a direct call, but force
+ // other constants like ConstantInteger32 to be in a register and make it an
+ // indirect call.
+ if (!llvm::isa<ConstantRelocatable>(CallTarget)) {
+ CallTarget = legalize(CallTarget, Legal_Reg);
+ }
// Copy arguments to be passed in registers to the appropriate registers.
CfgVector<Variable *> RegArgs;
@@ -3777,7 +3777,7 @@ void TargetARM32::lowerCall(const InstCall *Instr) {
}
if (Instr->isTargetHelperCall()) {
- auto TargetHelpersPostamble = ARM32HelpersPostamble.find(OrigCallTarget);
+ auto TargetHelpersPostamble = ARM32HelpersPostamble.find(CallTarget);
if (TargetHelpersPostamble != ARM32HelpersPostamble.end()) {
(this->*TargetHelpersPostamble->second)(Instr);
}
« no previous file with comments | « no previous file | tests_lit/assembler/arm32/call.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698