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

Side by Side Diff: src/arm/macro-assembler-arm.cc

Issue 189963005: Revert "Handle non-power-of-2 divisors in division-like operations", "A64 tweaks for division-like … (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/macro-assembler-arm.h ('k') | src/assembler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 4014 matching lines...) Expand 10 before | Expand all | Expand 10 after
4025 } 4025 }
4026 4026
4027 4027
4028 void CodePatcher::EmitCondition(Condition cond) { 4028 void CodePatcher::EmitCondition(Condition cond) {
4029 Instr instr = Assembler::instr_at(masm_.pc_); 4029 Instr instr = Assembler::instr_at(masm_.pc_);
4030 instr = (instr & ~kCondMask) | cond; 4030 instr = (instr & ~kCondMask) | cond;
4031 masm_.emit(instr); 4031 masm_.emit(instr);
4032 } 4032 }
4033 4033
4034 4034
4035 void MacroAssembler::FlooringDiv(Register result,
4036 Register dividend,
4037 int32_t divisor) {
4038 ASSERT(!dividend.is(result));
4039 ASSERT(!dividend.is(ip));
4040 ASSERT(!result.is(ip));
4041 MultiplierAndShift ms(divisor);
4042 mov(ip, Operand(ms.multiplier()));
4043 smull(result, ip, dividend, ip);
4044 if (divisor > 0 && ms.multiplier() < 0) add(ip, ip, Operand(dividend));
4045 if (divisor < 0 && ms.multiplier() > 0) sub(ip, ip, Operand(dividend));
4046 if (ms.shift() > 0) mov(ip, Operand(ip, ASR, ms.shift()));
4047 add(result, ip, Operand(dividend, LSR, 31));
4048 }
4049
4050
4051 } } // namespace v8::internal 4035 } } // namespace v8::internal
4052 4036
4053 #endif // V8_TARGET_ARCH_ARM 4037 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « src/arm/macro-assembler-arm.h ('k') | src/assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698