Searched refs:log2_intptr (Results 1 - 15 of 15) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DadvancedThresholdPolicy.cpp50 int log_cpu = log2_intptr(os::active_processor_count());
51 int loglog_cpu = log2_intptr(MAX2(log_cpu, 1));
H A DsimpleThresholdPolicy.cpp142 count = MAX2(log2_intptr(os::active_processor_count()), 1) * 3 / 2;
H A DcompilationPolicy.cpp154 _compiler_count = MAX2(log2_intptr(os::active_processor_count())-1,1);
H A Dos.cpp1192 int count = log2_intptr(sizeof(class JavaThread)) - log2_intptr(64);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhashtable.cpp56 len = 1 << log2_intptr(len); // round down to power of 2
H A DglobalDefinitions.hpp106 // log2_intptr(sizeof(class JavaThread)) - log2_intptr(64);
990 inline int log2_intptr(intptr_t x) { function
1021 return log2_intptr(x);
/openjdk7/hotspot/src/share/vm/opto/
H A Dmulnode.cpp201 res = new (phase->C) LShiftINode( in(1), phase->intcon(log2_intptr(bit1)) );
208 Node *n1 = phase->transform( new (phase->C) LShiftINode( in(1), phase->intcon(log2_intptr(bit1)) ) );
209 Node *n2 = phase->transform( new (phase->C) LShiftINode( in(1), phase->intcon(log2_intptr(bit2)) ) );
215 Node *n1 = phase->transform( new (phase->C) LShiftINode( in(1), phase->intcon(log2_intptr(temp)) ) );
447 jint t1_support = right_n_bits(1 + log2_intptr(t1->_hi));
H A Ddivnode.cpp134 int l = log2_intptr(d-1)+1;
925 log2_con = log2_intptr((intptr_t)pos_con);
H A Dparse2.cpp534 _est_switch_depth = log2_intptr((hi-lo+1)-1)+1;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp297 __ shift_left(left, log2_intptr(c + 1), result);
301 __ shift_left(left, log2_intptr(c - 1), result);
H A Dassembler_sparc.cpp4144 sll_ptr(t1, log2_intptr(HeapWordSize/sizeof(jint)), t1);
H A Dc1_LIRAssembler_sparc.cpp555 __ sra(Rscratch, log2_intptr(divisor), Rresult);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp240 __ shift_left(left, log2_intptr(c + 1), left);
245 __ shift_left(left, log2_intptr(c - 1), left);
H A Dc1_LIRAssembler_x86.cpp2606 __ sarl(lreg, log2_intptr(divisor));
H A Dassembler_x86.cpp8975 shlptr(t1, log2_intptr(HeapWordSize/sizeof(jint)));

Completed in 167 milliseconds