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

Unified Diff: src/IceTargetLoweringX86BaseImpl.h

Issue 2135403002: Subzero: Aggressive LEA (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Address Comments Created 4 years, 4 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/IceInstX86BaseImpl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTargetLoweringX86BaseImpl.h
diff --git a/src/IceTargetLoweringX86BaseImpl.h b/src/IceTargetLoweringX86BaseImpl.h
index 2acd3312d9b9b74c6a30853cc7cabcab2d2ff59d..5fb42ba74089be3c2e4aff5dee2ecb040d80c1df 100644
--- a/src/IceTargetLoweringX86BaseImpl.h
+++ b/src/IceTargetLoweringX86BaseImpl.h
@@ -2183,11 +2183,25 @@ void TargetX86Base<TraitsType>::lowerArithmetic(const InstArithmetic *Instr) {
case InstArithmetic::_num:
llvm_unreachable("Unknown arithmetic operator");
break;
- case InstArithmetic::Add:
+ case InstArithmetic::Add: {
+ const bool ValidType =
+ Ty == IceType_i32 || (Ty == IceType_i64 && Traits::Is64Bit);
+ auto *Const = llvm::dyn_cast<Constant>(Instr->getSrc(1));
+ const bool ValidKind =
+ Const != nullptr && (llvm::isa<ConstantInteger32>(Const) ||
+ llvm::isa<ConstantRelocatable>(Const));
+ if (getFlags().getAggressiveLea() && ValidType && ValidKind) {
+ auto *Var = legalizeToReg(Src0);
+ auto *Mem = Traits::X86OperandMem::create(Func, IceType_void, Var, Const);
+ T = makeReg(Ty);
+ _lea(T, _sandbox_mem_reference(Mem));
+ _mov(Dest, T);
+ break;
+ }
_mov(T, Src0);
_add(T, Src1);
_mov(Dest, T);
- break;
+ } break;
case InstArithmetic::And:
_mov(T, Src0);
_and(T, Src1);
« no previous file with comments | « src/IceInstX86BaseImpl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698