/openjdk7/hotspot/src/cpu/zero/vm/ |
H A D | jniFastGetField_zero.cpp | 33 address JNI_FastGetField::generate_fast_get_boolean_field() { 34 return (address) -1; 37 address JNI_FastGetField::generate_fast_get_byte_field() { 38 return (address) -1; 41 address JNI_FastGetField::generate_fast_get_char_field() { 42 return (address) -1; 45 address JNI_FastGetField::generate_fast_get_short_field() { 46 return (address) -1; 49 address JNI_FastGetField::generate_fast_get_int_field() { 50 return (address) [all...] |
H A D | interpreterGenerator_zero.hpp | 34 address generate_normal_entry(bool synchronized); 35 address generate_native_entry(bool synchronized); 36 address generate_abstract_entry(); 37 address generate_math_entry(AbstractInterpreter::MethodKind kind); 38 address generate_empty_entry(); 39 address generate_accessor_entry(); 40 address generate_Reference_get_entry();
|
H A D | nativeInst_zero.hpp | 61 inline NativeInstruction* nativeInstruction_at(address address) { argument 71 address instruction_address() const { 75 address next_instruction_address() const { 79 address return_address() const { 83 address destination() const { 87 void set_destination_mt_safe(address dest) { 99 static bool is_call_before(address return_address) { 104 inline NativeCall* nativeCall_before(address return_address) { 108 inline NativeCall* nativeCall_at(address addres argument 127 nativeMovConstReg_at(address address) argument 146 nativeMovRegMem_at(address address) argument 173 nativeJump_at(address address) argument 192 nativeGeneralJump_at(address address) argument [all...] |
H A D | cppInterpreterGenerator_zero.hpp | 35 static address generate_entry_impl(MacroAssembler* masm, address entry_point) { 39 return (address) entry; 43 address generate_entry(address entry_point) {
|
H A D | icBuffer_zero.cpp | 42 void InlineCacheBuffer::assemble_ic_buffer_code(address code_begin, 44 address entry_point) { 49 address InlineCacheBuffer::ic_buffer_entry_point(address code_begin) { 54 oop InlineCacheBuffer::ic_buffer_cached_oop(address code_begin) {
|
H A D | stubRoutines_zero.hpp | 34 static address call_stub_return_pc() { 35 return (address) -1; 38 static bool returns_to_call_stub(address return_pc) {
|
/openjdk7/jdk/src/share/classes/java/util/zip/ |
H A D | ZStreamRef.java | 34 private long address; field in class:ZStreamRef 35 ZStreamRef (long address) { argument 36 this.address = address; 39 long address() { method in class:ZStreamRef 40 return address; 44 address = 0;
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | stubRoutines_x86_64.hpp | 32 static bool returns_to_call_stub(address return_pc) { return return_pc == _call_stub_return_address; } 43 static address _get_previous_fp_entry; 44 static address _get_previous_sp_entry; 45 static address _verify_mxcsr_entry; 47 static address _f2i_fixup; 48 static address _f2l_fixup; 49 static address _d2i_fixup; 50 static address _d2l_fixup; 52 static address _float_sign_mask; 53 static address _float_sign_fli [all...] |
H A D | stubRoutines_x86_32.hpp | 42 static address _verify_mxcsr_entry; 43 static address _verify_fpu_cntrl_wrd_entry; 45 static address _key_shuffle_mask_addr; 48 static address verify_mxcsr_entry() { return _verify_mxcsr_entry; } 49 static address verify_fpu_cntrl_wrd_entry() { return _verify_fpu_cntrl_wrd_entry; } 50 static address key_shuffle_mask_addr() { return _key_shuffle_mask_addr; } 54 static bool returns_to_call_stub(address return_pc) { return return_pc == _call_stub_return_address; }
|
H A D | interpreterGenerator_x86.hpp | 35 address generate_normal_entry(bool synchronized); 36 address generate_native_entry(bool synchronized); 37 address generate_abstract_entry(void); 38 address generate_math_entry(AbstractInterpreter::MethodKind kind); 39 address generate_empty_entry(void); 40 address generate_accessor_entry(void); 41 address generate_Reference_get_entry();
|
H A D | stubRoutines_x86_64.cpp | 45 address StubRoutines::x86::_get_previous_fp_entry = NULL; 46 address StubRoutines::x86::_get_previous_sp_entry = NULL; 48 address StubRoutines::x86::_verify_mxcsr_entry = NULL; 50 address StubRoutines::x86::_f2i_fixup = NULL; 51 address StubRoutines::x86::_f2l_fixup = NULL; 52 address StubRoutines::x86::_d2i_fixup = NULL; 53 address StubRoutines::x86::_d2l_fixup = NULL; 54 address StubRoutines::x86::_float_sign_mask = NULL; 55 address StubRoutines::x86::_float_sign_flip = NULL; 56 address StubRoutine [all...] |
H A D | stubRoutines_x86_32.cpp | 45 address StubRoutines::x86::_verify_mxcsr_entry = NULL; 46 address StubRoutines::x86::_verify_fpu_cntrl_wrd_entry = NULL; 47 address StubRoutines::x86::_key_shuffle_mask_addr = NULL;
|
/openjdk7/hotspot/src/share/vm/prims/ |
H A D | jniFastGetField.hpp | 61 static address speculative_load_pclist []; 62 static address slowcase_entry_pclist []; 65 static address generate_fast_get_int_field0(BasicType type); 66 static address generate_fast_get_float_field0(BasicType type); 80 static address generate_fast_get_boolean_field(); 81 static address generate_fast_get_byte_field(); 82 static address generate_fast_get_char_field(); 83 static address generate_fast_get_short_field(); 84 static address generate_fast_get_int_field(); 85 static address generate_fast_get_long_fiel [all...] |
H A D | forte.hpp | 32 static void register_stub(const char* name, address start, address end);
|
H A D | jniFastGetField.cpp | 28 address JNI_FastGetField::speculative_load_pclist [LIST_CAPACITY]; 29 address JNI_FastGetField::slowcase_entry_pclist [LIST_CAPACITY]; 32 address JNI_FastGetField::find_slowcase_pc(address pc) { 38 return (address)-1;
|
/openjdk7/hotspot/src/share/vm/interpreter/ |
H A D | templateInterpreterGenerator.hpp | 37 address _unimplemented_bytecode; 38 address _illegal_bytecode_sequence; 42 address generate_result_handler_for(BasicType type); 43 address generate_slow_signature_handler(); 44 address generate_error_exit(const char* msg); 45 address generate_StackOverflowError_handler(); 46 address generate_exception_handler(const char* name, const char* message) { 49 address generate_klass_exception_handler(const char* name) { 52 address generate_exception_handler_common(const char* name, const char* message, bool pass_oop); 53 address generate_ClassCastException_handle [all...] |
H A D | cppInterpreter.hpp | 46 static address _tosca_to_stack[number_of_result_handlers]; // converts tosca to C++ interpreter stack result 48 static address _stack_to_stack[number_of_result_handlers]; // pass result between C++ interpreter calls 50 static address _stack_to_native_abi[number_of_result_handlers]; // converts C++ interpreter results to native abi 62 static bool contains(address pc); 71 static address native_result_to_tosca() { return (address)_native_abi_to_tosca; } // aka result handler 72 static address tosca_result_to_stack() { return (address)_tosca_to_stack; } 73 static address stack_result_to_stack() { return (address)_stack_to_stac [all...] |
H A D | templateInterpreter.hpp | 42 address _entry[number_of_states]; 47 EntryPoint(address bentry, address centry, address sentry, address aentry, address ientry, address lentry, address fentry, address dentry, address ventr [all...] |
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | stubRoutines.hpp | 87 // 2. add a private instance variable holding the entry point address 123 static address _verify_oop_subroutine_entry; 125 static address _call_stub_return_address; // the return PC, when returning to a call stub 126 static address _call_stub_entry; 127 static address _forward_exception_entry; 128 static address _catch_exception_entry; 129 static address _throw_AbstractMethodError_entry; 130 static address _throw_IncompatibleClassChangeError_entry; 131 static address _throw_NullPointerException_at_call_entry; 132 static address _throw_StackOverflowError_entr [all...] |
H A D | extendedPC.hpp | 33 address _pc; 36 address pc() const { return _pc; } 37 ExtendedPC(address pc) { _pc = pc; }
|
/openjdk7/langtools/test/tools/javac/diags/examples/ |
H A D | AnnotationMustBeNameValue.java | 28 String address() default "here"; 31 @Anno(name == "fred", address = "there")
|
/openjdk7/hotspot/src/cpu/sparc/vm/ |
H A D | interpreterGenerator_sparc.hpp | 32 address generate_normal_entry(bool synchronized); 33 address generate_native_entry(bool synchronized); 34 address generate_abstract_entry(void); 35 address generate_math_entry(AbstractInterpreter::MethodKind kind); 36 address generate_empty_entry(void); 37 address generate_accessor_entry(void); 38 address generate_Reference_get_entry(void);
|
/openjdk7/jdk/src/share/classes/java/net/ |
H A D | Inet4Address.java | 33 * This class represents an Internet Protocol version 4 (IPv4) address. 43 * Textual representation of IPv4 address used as input to methods 55 * address. 57 * <p> When a three part address is specified, the last part is 59 * bytes of the network address. This makes the three part address 63 * <p> When a two part address is supplied, the last part is 65 * bytes of the network address. This makes the two part address 70 * the network address withou 123 Inet4Address(String hostName, int address) argument [all...] |
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/ |
H A D | NMethod.java | 31 private long address; field in class:NMethod 36 address = a; 46 return address; 49 public void setAddress(long address) { argument 50 this.address = address;
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/ |
H A D | DummySymbolFinder.java | 28 public String getSymbolFor(long address) { argument 29 return "0x" + Long.toHexString(address);
|