Searched defs:bc (Results 1 - 25 of 38) sorted by relevance

12

/openjdk7/jdk/test/java/beans/beancontext/
H A DTest4132698.java51 public Test4132698(BeanContext bc, Object[] objects) { argument
52 super(bc, objects);
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextChild.java83 * @param bc The <code>BeanContext</code> with which
88 void setBeanContext(BeanContext bc) throws PropertyVetoException; argument
H A DBeanContextEvent.java56 * @param bc The BeanContext source
58 protected BeanContextEvent(BeanContext bc) { argument
59 super(bc);
70 * @param bc the <code>BeanContext</code> from which this event
73 public synchronized void setPropagatedFrom(BeanContext bc) { argument
74 propagatedFrom = bc;
H A DBeanContextMembershipEvent.java63 * @param bc The BeanContext source
68 public BeanContextMembershipEvent(BeanContext bc, Collection changes) { argument
69 super(bc);
80 * @param bc The BeanContext source
86 public BeanContextMembershipEvent(BeanContext bc, Object[] changes) { argument
87 super(bc);
H A DBeanContextChildSupport.java95 * @param bc the new value to be assigned to the <code>BeanContext</code>
99 public synchronized void setBeanContext(BeanContext bc) throws PropertyVetoException { argument
100 if (bc == beanContext) return;
103 BeanContext newValue = bc;
106 if (rejectedSetBCOnce = !validatePendingSetBeanContext(bc)) {
/openjdk7/hotspot/src/share/vm/ci/
H A DciSignature.hpp66 int arg_size_for_bc(Bytecodes::Code bc) { return size() + (Bytecodes::has_receiver(bc) ? 1 : 0); } argument
H A DciField.cpp316 Bytecodes::Code bc) {
318 assert(bc == Bytecodes::_getstatic || bc == Bytecodes::_putstatic ||
319 bc == Bytecodes::_getfield || bc == Bytecodes::_putfield,
330 bool is_static = (bc == Bytecodes::_getstatic || bc == Bytecodes::_putstatic);
336 bool is_put = (bc == Bytecodes::_putfield || bc == Bytecodes::_putstatic);
351 Bytecodes::java_code(bc),
315 will_link(ciInstanceKlass* accessing_klass, Bytecodes::Code bc) argument
[all...]
H A DciStreams.cpp92 Bytecodes::Code ciBytecodeStream::next_wide_or_table(Bytecodes::Code bc) { argument
93 switch (bc) { // Check for special bytecode handling
98 bc = Bytecodes::java_code(_raw_bc = (Bytecodes::Code)_pc[1]);
99 assert(Bytecodes::wide_length_for(bc) > 2, "must make progress");
100 _pc += Bytecodes::wide_length_for(bc);
130 return bc;
268 cur_bc() == Bytecodes::_putstatic, "wrong bc");
H A DciEnv.cpp704 Bytecodes::Code bc) {
710 switch (bc) {
739 int index, Bytecodes::Code bc,
741 if (bc == Bytecodes::_invokedynamic) {
779 switch (bc) {
796 methodOop m = lookup_method(accessor->get_instanceKlass(), lookup, name_sym, sig_sym, bc);
798 (bc == Bytecodes::_invokestatic
844 int index, Bytecodes::Code bc,
846 GUARDED_VM_ENTRY(return get_method_by_index_impl(cpool, index, bc, accessor);)
700 lookup_method(instanceKlass* accessor, instanceKlass* holder, Symbol* name, Symbol* sig, Bytecodes::Code bc) argument
738 get_method_by_index_impl(constantPoolHandle cpool, int index, Bytecodes::Code bc, ciInstanceKlass* accessor) argument
843 get_method_by_index(constantPoolHandle cpool, int index, Bytecodes::Code bc, ciInstanceKlass* accessor) argument
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.hpp68 static int get_index_u1(JavaThread *thread, Bytecodes::Code bc) argument
69 { return bytecode(thread).get_index_u1(bc); }
70 static int get_index_u2(JavaThread *thread, Bytecodes::Code bc) argument
71 { return bytecode(thread).get_index_u2(bc); }
72 static int get_index_u2_cpcache(JavaThread *thread, Bytecodes::Code bc) argument
73 { return bytecode(thread).get_index_u2_cpcache(bc); }
74 static int get_index_u4(JavaThread *thread, Bytecodes::Code bc) argument
75 { return bytecode(thread).get_index_u4(bc); }
H A Dbytecode.cpp50 tty->print_cr("assert_same_format_as(%d) failed on bc=%d%s; %d != %d",
55 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) { argument
56 int have_fmt = (Bytecodes::flags(bc, is_wide)
69 tty->print_cr("assert_index_size %d: bc=%d%s %d != %d", size, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
74 void Bytecode::assert_offset_size(int size, Bytecodes::Code bc, bool is_wide) { argument
75 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits;
83 tty->print_cr("assert_offset_size %d: bc=%d%s %d != %d", size, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
88 void Bytecode::assert_constant_size(int size, int where, Bytecodes::Code bc, boo argument
106 assert_native_index(Bytecodes::Code bc, bool is_wide) argument
154 Bytecodes::Code bc = invoke_code(); local
[all...]
H A Dbytecode.hpp86 int get_index_u1(Bytecodes::Code bc) const {
87 assert_same_format_as(bc); assert_index_size(1, bc);
90 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { argument
91 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide);
93 if (can_use_native_byte_order(bc, is_wide))
97 int get_index_u1_cpcache(Bytecodes::Code bc) const {
98 assert_same_format_as(bc); assert_index_size(1, bc);
127 get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const argument
138 can_use_native_byte_order(Bytecodes::Code bc, bool is_wide = false) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecode.java50 public int getIndexU2(int bc, boolean isWide) { argument
51 if (can_use_native_byte_order(bc, isWide)) {
62 static boolean can_use_native_byte_order(int bc, boolean is_wide) { argument
63 return (VM.getVM().isBigEndian() || Bytecodes.native_byte_order(bc /*, is_wide*/));
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.hpp62 Bytecodes::Code bc() { function in class:SharkBlock
H A DsharkInliner.cpp108 Bytecodes::Code bc() { function in class:SharkInlinerHelper
250 switch (bc()) {
/openjdk7/hotspot/src/share/vm/runtime/
H A DcompilationPolicy.cpp361 InvocationCounter* bc = m->backedge_counter(); local
371 bc->print();
H A Drelocator.cpp199 bool Relocator::is_opcode_lookupswitch(Bytecodes::Code bc) { argument
200 switch (bc) {
213 Bytecodes::Code bc= code_at(bci); local
214 switch (bc) {
222 int pad = get_orig_switch_pad(bci, is_opcode_lookupswitch(bc));
227 switch (bc) {
308 Bytecodes::Code bc; local
311 switch (bc= code_at(bci)) {
340 int recPad = get_orig_switch_pad(bci, (bc != Bytecodes::_tableswitch));
348 _changes->push(new ChangeSwitchPad(bci, oldPad, (bc !
654 Bytecodes::Code bc = code_at(bci); local
[all...]
/openjdk7/jdk/test/java/lang/Class/getEnclosingClass/
H A DEnclosingClass.java217 public Class<?> bc = Nested.NestedInner.class; field in class:EnclosingClass
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.cpp822 InvocationCounter* bc = method->backedge_counter(); local
826 int bcval = bc->count();
827 if (bc->carry()) bcval += CompileThreshold;
H A DgenerateOopMap.cpp2330 Bytecodes::Code bc = itr->code(); local
2358 // bc : Current bytecode
2451 Bytecodes::Code bc = itr->code(); local
2452 switch(bc) {
2457 *index = bc - Bytecodes::_astore_0;
2467 Bytecodes::Code bc = itr->code(); local
2468 switch(bc) {
2473 *index = bc - Bytecodes::_aload_0;
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java40 protected int bc; // opcode of this instruction field in class:Instruction
46 protected Instruction(byte[] bytes, int pc, int bc, int w, int length) { argument
47 reset(bytes, pc, bc, w, length);
49 private void reset(byte[] bytes, int pc, int bc, int w, int length) { argument
52 this.bc = bc;
58 return bc;
85 return isNonstandard(bc);
105 int bc = getByte(bytes, pc);
108 int length = BC_LENGTH[w][bc];
247 Switch(byte[] bytes, int pc, int bc) argument
423 isNonstandard(int bc) argument
427 opLength(int bc) argument
432 opWideLength(int bc) argument
438 isLocalSlotOp(int bc) argument
442 isBranchOp(int bc) argument
446 isCPRefOp(int bc) argument
452 getCPRefOpTag(int bc) argument
458 isFieldOp(int bc) argument
462 isInvokeInitOp(int bc) argument
466 isSelfLinkerOp(int bc) argument
555 byteName(int bc) argument
600 def(String fmt, int bc) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateTable_sparc.cpp159 void TemplateTable::patch_bytecode(Bytecodes::Code bc, Register bc_reg, argument
166 switch (bc) {
184 __ set(bc, bc_reg);
191 __ set(bc, bc_reg);
206 Bytecodes::Code orig_bytecode = Bytecodes::java_code(bc);
1647 __ delayed()->add( O1_disp, Lbcp, Lbcp ); // add to bc addr
1728 __ add( O1_disp, Lbcp, Lbcp );// add to bc addr
3851 __ ldub(Lbcp, 1, G3_scratch);// get next bc
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.cpp565 Bytecodes::Code bc = op1->as_OpConvert()->bytecode(); local
566 switch (bc) {
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse.hpp298 void set_initial_state( Bytecodes::Code bc );
376 Bytecodes::Code bc() const { return _iter.cur_bc(); } function in class:Parse
/openjdk7/langtools/test/tools/javah/6572945/
H A DTestClass1.java39 static final byte bc = 0; field in class:TestClass1
212 static final byte bc = 0; field in class:TestClass1.Inner1
350 static final byte bc = 0; field in class:TestClass1.Inner2

Completed in 156 milliseconds

12