aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-07 03:35:47 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-07 03:35:47 +0000
commit26c3ebda4c57a29040be904d18b696832e091866 (patch)
tree0444aa77572bfb96a5b17e172486a8f8580eef0c /bignum.c
parent4e91e024948e6d7736abd95f287628afa2ceee6c (diff)
downloadruby-26c3ebda4c57a29040be904d18b696832e091866.tar.gz
Use ADD instead of MUL
* On recent CPUs, 2-operand MUL's latency is 3 cycle but ADD is 1 cycle. * clang Optimizes `MUL rax,2` into `ADD rax,rax` but gcc7 doesn't. * LONG2FIX is compiled into `lea r14,[r15+r15*1+0x1]`; this is 1cycle and run in parallel if the branch prediction is correct. * Note that old (RB_POSFIXABLE(f) && RB_NEGFIXABLE(f)) is usually uses following instructions. * movabs rax,0x4000000000000000 * add rax,rdi * js It needs large immediate and Macro-Fusion is not applied. ADD and JO is much smaller though it is also Macro-Fusion unfriendly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57793 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/bignum.c b/bignum.c
index 50700b4c4a..0e15e58c12 100644
--- a/bignum.c
+++ b/bignum.c
@@ -4436,18 +4436,8 @@ rb_ull2inum(unsigned LONG_LONG n)
VALUE
rb_ll2inum(LONG_LONG n)
{
-#ifdef HAVE_BUILTIN___BUILTIN_MUL_OVERFLOW
- SIGNED_VALUE v;
- if (__builtin_mul_overflow(n, 2, &v)) {
- return rb_ll2big(n);
- }
- else {
- return ((VALUE)v) | RUBY_FIXNUM_FLAG;
- }
-#else
if (FIXABLE(n)) return LONG2FIX(n);
return rb_ll2big(n);
-#endif
}
#endif /* HAVE_LONG_LONG */