Lines Matching defs:constants
372 #define CACHE_CP() cp = istate->constants();
489 register constantPoolCacheOop cp = istate->constants(); // method()->constants()->cache()
661 rcvr = METHOD->constants()->pool_holder()->java_mirror();
915 /* Push miscellaneous constants onto the stack. */
1943 constantPoolOop constants = istate->method()->constants();
1944 if (!constants->tag_at(index).is_unresolved_klass()) {
1946 oop entry = constants->slot_at(index).get_oop();
1994 CALL_VM(InterpreterRuntime::_new(THREAD, METHOD->constants(), index),
2003 CALL_VM(InterpreterRuntime::anewarray(THREAD, METHOD->constants(), index, size),
2033 if (METHOD->constants()->tag_at(index).is_unresolved_klass()) {
2036 klassOop klassOf = (klassOop) METHOD->constants()->slot_at(index).get_oop();
2068 if (METHOD->constants()->tag_at(index).is_unresolved_klass()) {
2071 klassOop klassOf = (klassOop) METHOD->constants()->slot_at(index).get_oop();
2099 constantPoolOop constants = METHOD->constants();
2100 switch (constants->tag_at(index).value()) {
2102 SET_STACK_INT(constants->int_at(index), 0);
2106 SET_STACK_FLOAT(constants->float_at(index), 0);
2110 VERIFY_OOP(constants->resolved_string_at(index));
2111 SET_STACK_OBJECT(constants->resolved_string_at(index), 0);
2115 VERIFY_OOP(constants->resolved_klass_at(index)->java_mirror());
2116 SET_STACK_OBJECT(constants->resolved_klass_at(index)->java_mirror(), 0);
2136 constantPoolOop constants = METHOD->constants();
2137 switch (constants->tag_at(index).value()) {
2140 SET_STACK_LONG(constants->long_at(index), 1);
2144 SET_STACK_DOUBLE(constants->double_at(index), 1);
2217 constantPoolOop constants = METHOD->constants();
2218 SET_STACK_OBJECT(cache->appendix_if_resolved(constants), 0);
2250 constantPoolOop constants = METHOD->constants();
2251 SET_STACK_OBJECT(cache->appendix_if_resolved(constants), 0);
3078 tty->print_cr("constants: " INTPTR_FORMAT, (uintptr_t) this->_constants);