Searched refs:as_constant (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/asm/
H A Dassembler.hpp187 intptr_t as_constant() const { assert(is_constant(),""); return _c; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.cpp2804 if ((s2.is_constant() && s2.as_constant() == 0) ||
2825 set(s1.as_constant(), temp);
2829 intptr_t res = s1.as_constant() & ~s2.as_constant();
2837 if ((s2.is_constant() && s2.as_constant() == 0) ||
2861 intptr_t res = s1.as_constant() + s2.as_constant();
2870 s2 = (s2.as_constant() & 0xFF);
2871 if ((s2.is_constant() && s2.as_constant() == 0) ||
2892 set(s1.as_constant(), tem
[all...]
H A Dassembler_sparc.inline.hpp116 else ldf(w, s1, s2.as_constant(), d);
228 else { add(s1, s2.as_constant() + offset, d); offset = 0; }
234 else andn(s1, s2.as_constant(), d);
256 else stf(w, d, s1, s2.as_constant());
341 else { sub(s1, s2.as_constant() + offset, d); offset = 0; }
537 else sll_ptr(s1, s2.as_constant(), d);
H A Dassembler_sparc.hpp314 int disp() const { return _index_or_disp.as_constant(); }
2214 set(src.as_constant(), temp);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp79 virtual LIR_Const* as_constant() { return NULL; } function in class:LIR_OprPtr
113 virtual LIR_Const* as_constant() { return this; } function in class:LIR_Const
359 bool is_constant() const { return is_pointer() && pointer()->as_constant() != NULL; }
419 LIR_Const* as_constant_ptr() const { return pointer()->as_constant(); }
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.hpp2402 if (src.is_constant()) addptr(dst, (int) src.as_constant());
2469 if (src.is_constant()) subptr(dst, (int) src.as_constant());
2786 if (src.is_constant()) movptr(dst, src.as_constant());
H A Dassembler_x86.cpp9496 } else if (super_check_offset.as_constant() == sc_offset) {
9730 offset += arg_slot.as_constant() * stackElementSize;

Completed in 499 milliseconds