Searched defs:code_start (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/shark/
H A DsharkEntry.hpp40 address code_start() const { function in class:SharkEntry
H A DsharkCompiler.cpp301 address code_start = entry->code_start(); local
306 JvmtiExport::post_dynamic_code_generated(name, code_start, code_limit);
312 code_start, code_limit, name, code_limit - code_start);
/openjdk7/hotspot/src/share/vm/code/
H A Dstubs.hpp202 address code_start() const { return _stub_buffer; } function in class:StubQueue
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp339 // all pointers other than code_start/end and those inside the sections
349 void initialize(address code_start, csize_t code_size) { argument
353 _total_start = code_start;
356 _insts.initialize(code_start, code_size);
394 CodeBuffer(address code_start, csize_t code_size) { argument
395 assert(code_start != NULL, "sanity");
397 initialize(code_start, code_size);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp751 address code_start, address code_end,
754 __ set(ExternalAddress(code_start), temp_reg);
755 __ set(pointer_delta(code_end, code_start, 1), temp2_reg);
813 Interpreter::code()->code_start(), Interpreter::code()->code_end(),
750 range_check(MacroAssembler* masm, Register pc_reg, Register temp_reg, Register temp2_reg, address code_start, address code_end, Label& L_ok) argument
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp704 address code_start, address code_end,
707 __ lea(temp_reg, ExternalAddress(code_start));
756 Interpreter::code()->code_start(), Interpreter::code()->code_end(),
703 range_check(MacroAssembler* masm, Register pc_reg, Register temp_reg, address code_start, address code_end, Label& L_ok) argument
H A DsharedRuntime_x86_64.cpp632 address code_start, address code_end,
635 __ lea(temp_reg, ExternalAddress(code_start));
689 Interpreter::code()->code_start(), Interpreter::code()->code_end(),
631 range_check(MacroAssembler* masm, Register pc_reg, Register temp_reg, address code_start, address code_end, Label& L_ok) argument
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1880 u1* code_start = 0; local
1961 code_start = cfs->get_u1_buffer();
1962 assert(code_start != NULL, "null code start");
2223 m->set_code(code_start);

Completed in 103 milliseconds