Searched refs:LIR_Const (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp48 // LIR_Const
53 class LIR_Const;
79 virtual LIR_Const* as_constant() { return NULL; }
88 class LIR_Const: public LIR_OprPtr { class in inherits:LIR_OprPtr
97 LIR_Const(jint i, bool is_address=false) { _value.set_type(is_address?T_ADDRESS:T_INT); _value.set_jint(i); } function in class:LIR_Const
98 LIR_Const(jlong l) { _value.set_type(T_LONG); _value.set_jlong(l); } function in class:LIR_Const
99 LIR_Const(jfloat f) { _value.set_type(T_FLOAT); _value.set_jfloat(f); } function in class:LIR_Const
100 LIR_Const(jdouble d) { _value.set_type(T_DOUBLE); _value.set_jdouble(d); } function in class:LIR_Const
101 LIR_Const(jobject o) { _value.set_type(T_OBJECT); _value.set_jobject(o); } function in class:LIR_Const
102 LIR_Const(voi function in class:LIR_Const
[all...]
H A Dc1_LIRGenerator.hpp183 GrowableArray<LIR_Const*> _constants;
205 LIR_Opr load_constant(LIR_Const* constant);
354 bool can_inline_as_constant(LIR_Const* c) const;
H A Dc1_LIRGenerator.cpp1384 LIR_Opr LIRGenerator::load_constant(LIR_Const* c) {
1387 LIR_Const* other = _constants.at(i);
1584 LIR_Const* card_table_base = new LIR_Const(((CardTableModRefBS*)_bs)->byte_map_base);
H A Dc1_LIR.cpp1548 void LIR_Const::print_value_on(outputStream* out) const {
H A Dc1_LinearScan.cpp2508 LIR_Const* c = opr->as_constant_ptr();
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRAssembler_x86.cpp114 LIR_Const* constant = opr->as_constant_ptr();
198 LIR_Const* const_opr = opr->as_constant_ptr();
637 LIR_Const* c = src->as_constant_ptr();
724 LIR_Const* c = src->as_constant_ptr();
761 LIR_Const* c = src->as_constant_ptr();
2659 LIR_Const* c = opr2->as_constant_ptr();
2765 LIR_Const* c = opr2->as_constant_ptr();
H A Dc1_LIRGenerator_x86.cpp138 bool LIRGenerator::can_inline_as_constant(LIR_Const* c) const {
413 LIR_Const* c = right.result()->as_constant_ptr();
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp48 LIR_Const* constant = opr->as_constant_ptr();
1027 LIR_Const* c = src->as_constant_ptr();
1089 LIR_Const* c = src->as_constant_ptr();
1168 LIR_Const* c = src->as_constant_ptr();
H A Dc1_LIRGenerator_sparc.cpp132 bool LIRGenerator:: can_inline_as_constant(LIR_Const* c) const {

Completed in 4761 milliseconds