Searched defs:fp (Results 26 - 50 of 85) sorted by relevance

1234

/openjdk7/jdk/test/java/rmi/activation/log/
H A DLogTest.java190 protected boolean checkSpansBoundary(long fp) { argument
192 crashPoint > 0 ? spansBoundary : super.checkSpansBoundary(fp);
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DLinuxNativeDispatcher.java55 * int getmntent(FILE *fp, struct mnttab *mp, int len);
57 static native int getmntent(long fp, UnixMountEntry entry) argument
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_proc.c247 static char * fgets_no_cr(char * buf, int n, FILE *fp) argument
249 char * rslt = fgets(buf, n, fp);
265 FILE *fp = NULL; local
268 fp = fopen(fname, "r");
269 if (fp == NULL) {
274 while(fgets_no_cr(buf, 256, fp)){
294 fclose(fp);
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileLog.cpp37 CompileLog::CompileLog(const char* file, FILE* fp, intx thread_id) argument
40 initialize(new(ResourceObj::C_HEAP, mtCompiler) fileStream(fp));
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.cpp210 const char* fp = format; local
211 switch (*fp) {
217 ++fp; // skip 'b'
221 ++fp; // skip 'w'
222 guarantee(*fp == 'b', "wide format must start with 'wb'");
223 ++fp; // skip 'b'
230 char fc = *fp++;
261 if (*fp == fc) {
264 while (*++fp == fc) this_size++;
273 this_size < has_size && *fp
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dframe_sparc.hpp168 // (i.e. return the sp from the frame where old_sp is the fp).
178 intptr_t* fp() const { return (intptr_t*) ((intptr_t)(sp()[FP->sp_offset_in_saved_window()]) + STACK_BIAS ); } function
182 intptr_t* fp_addr_at(int index) const { return &fp()[index]; }
H A Dframe_sparc.cpp180 address _FP = (address) fp();
196 // an fp must be within the stack and above (but not equal) sp
200 // We know sp/unextended_sp are safe only fp is questionable here
226 // an entry frame must have a valid fp.
264 // Do we have a valid fp?
265 address sender_fp = (address) sender.fp();
267 // an fp must be within the stack and above (but not equal) current frame's _FP
332 // Must be native-compiled frame. Since sender will try and use fp to find
429 return fp();
470 assert(!entry_frame_is_first(), "next Java fp mus
616 interpreter_frame_equals_unpacked_fp(intptr_t* fp) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.inline.hpp41 inline frame::frame(intptr_t* sp, intptr_t* fp, address pc) { argument
44 _fp = fp;
59 inline frame::frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc) { argument
62 _fp = fp;
78 inline frame::frame(intptr_t* sp, intptr_t* fp) { argument
81 _fp = fp;
112 && fp() == other.fp()
H A Dframe_x86.cpp56 address fp = (address)_fp; local
80 // an fp must be within the stack and above (but not equal) sp
81 // second evaluation on fp+ is added to handle situation where fp is -1
82 bool fp_safe = (fp < thread->stack_base() && (fp > sp) && (((fp + (return_addr_offset * sizeof(void*))) < thread->stack_base())));
84 // We know sp/unextended_sp are safe only fp is questionable here
116 // an entry frame must have a valid fp.
122 bool jcw_safe = (jcw < thread->stack_base()) && ( jcw > fp);
526 interpreter_frame_equals_unpacked_fp(intptr_t* fp) argument
[all...]
/openjdk7/jdk/src/share/back/
H A Dlog_messages.c113 standard_logging_format(FILE *fp, argument
130 print_message(fp, "", "", format,
209 FILE *fp = NULL; local
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvThreadState.cpp60 JvmtiFramePops::set(JvmtiFramePop& fp) { argument
61 if (_pops->find(fp.frame_number()) < 0) {
62 _pops->append(fp.frame_number());
68 JvmtiFramePops::clear(JvmtiFramePop& fp) { argument
71 _pops->remove(fp.frame_number());
76 JvmtiFramePops::clear_to(JvmtiFramePop& fp) { argument
81 if (pop.above_on_stack(fp)) {
113 JvmtiFramePop fp = JvmtiFramePop(_pops->at(i)); local
115 fp.print();
253 JvmtiFramePop fp(cur_frame_numbe
[all...]
H A DjvmtiEnvThreadState.hpp87 void set(JvmtiFramePop& fp);
88 void clear(JvmtiFramePop& fp);
89 int clear_to(JvmtiFramePop& fp);
95 bool contains(JvmtiFramePop& fp) { return _pops->contains(fp.frame_number()); } argument
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkStack.cpp90 Value *fp = slot_addr(offset++); local
98 builder()->CreateStore(CreateLoadFramePointer(), fp); local
100 builder()->CreatePtrToInt(fp, SharkType::intptr_type()));
151 Value *fp = CreateLoadFramePointer(); local
153 fp,
160 fp, PointerType::getUnqual(SharkType::intptr_type()))));
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DLinuxNativeDispatcher.c156 FILE* fp = NULL; local
161 fp = setmntent(path, mode);
162 } while (fp == NULL && errno == EINTR);
163 if (fp == NULL) {
166 return ptr_to_jlong(fp);
177 FILE* fp = jlong_to_ptr(value); local
185 m = getmntent_r(fp, &ent, (char*)&buf, buflen);
227 FILE* fp = jlong_to_ptr(stream); local
229 endmntent(fp);
/openjdk7/jdk/src/solaris/native/sun/tools/attach/
H A DLinuxVirtualMachine.c96 FILE* fp; local
107 fp = fopen(fn, "r");
108 if (fp == NULL) {
117 statlen = fread(stat, 1, 2047, fp);
119 fclose(fp);
/openjdk7/jdk/src/share/demo/jvmti/compiledMethodLoad/
H A DcompiledMethodLoad.c53 static FILE *fp; variable
60 jvmtiEnv* jvmti, FILE* fp) {
63 fprintf(fp, "Dummy record detected containing message: %s\n",
70 print_stack_frames(PCStackInfo* record, jvmtiEnv *jvmti, FILE* fp) { argument
98 fprintf(fp, "%s::%s %s %s @%d\n", class_signature, method_name,
138 jvmtiEnv *jvmti, FILE* fp) {
146 fprintf(fp, "PcDescriptor(pc=0x%lx):\n", (jint)(pcrecord.pc));
147 print_stack_frames(&pcrecord, jvmti, fp);
155 FILE* fp)
158 fprintf(fp, "\nPrintin
59 print_dummy_record(jvmtiCompiledMethodLoadDummyRecord* record, jvmtiEnv* jvmti, FILE* fp) argument
137 print_inline_info_record(jvmtiCompiledMethodLoadInlineRecord* record, jvmtiEnv *jvmti, FILE* fp) argument
154 print_records(jvmtiCompiledMethodLoadRecordHeader* list, jvmtiEnv *jvmti, FILE* fp) argument
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DMessageFormat.java1218 * and <code>fp</code> is non-null and identifies
1227 FieldPosition fp, List characterIterators) {
1317 if (i == 0 && fp != null && Field.ARGUMENT.equals(
1318 fp.getFieldAttribute())) {
1319 fp.setBeginIndex(last);
1320 fp.setEndIndex(result.length());
1226 subformat(Object[] arguments, StringBuffer result, FieldPosition fp, List characterIterators) argument
/openjdk7/hotspot/src/share/vm/opto/
H A DbuildOopMap.cpp423 Node *fp = NodeSentinel; local
425 fp = root->in(1)->in(TypeFunc::FramePtr);
486 if (is_cisc_alternate && def == fp) {
496 } else if (base != fp || offset == Type::OffsetBot) {
497 // Do nothing: the fp operand is either not from a memory use
498 // (base == NULL) OR the fp is used in a non-memory context
/openjdk7/hotspot/src/cpu/zero/vm/
H A DstubGenerator_zero.cpp258 intptr_t *fp = stack->sp(); local
259 assert(fp - stack->sp() == next_frame_off, "should be");
262 assert(fp - stack->sp() == frame_type_off, "should be");
265 assert(fp - stack->sp() == call_wrapper_off, "should be");
270 return (EntryFrame *) fp;
H A DcppInterpreter_zero.cpp695 intptr_t *fp = stack->sp(); local
696 assert(fp - stack->sp() == next_frame_off, "should be");
699 assert(fp - stack->sp() == frame_type_off, "should be");
703 assert(fp - stack->sp() == istate_off, "should be");
735 return (InterpreterFrame *) fp;
896 intptr_t *fp = stack->sp(); local
897 assert(fp - stack->sp() == next_frame_off, "should be");
900 assert(fp - stack->sp() == frame_type_off, "should be");
904 assert(fp - stack->sp() == istate_off, "should be");
909 return (InterpreterFrame *) fp;
[all...]
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.cpp164 intptr_t* fp; local
165 ExtendedPC epc = fetch_frame_from_context(ucVoid, &sp, &fp);
166 return frame(sp, fp, epc.pc());
187 intptr_t* fp = _get_previous_fp(); local
189 (intptr_t*)fp,
/openjdk7/hotspot/src/share/vm/adlc/
H A Dforms.cpp113 void NameList::output(FILE *fp) { argument
114 fprintf(fp, "\n");
125 fprintf( fp, " %s,\n", name);
127 fprintf(fp, "\n");
163 void NameAndList::output(FILE *fp) { argument
164 fprintf(fp, "\n");
167 fprintf(fp, "Name == %s", (_name ? _name : "") );
171 fprintf(fp, " (");
173 fprintf(fp, " %s,\n", name);
175 fprintf(fp, ")");
365 output(FILE *fp) argument
[all...]
/openjdk7/jdk/src/solaris/native/java/util/
H A DTimeZone_md.c226 FILE *fp; local
238 if ((fp = fopen(ETC_TIMEZONE_FILE, "r")) != NULL) {
241 if (fgets(line, sizeof(line), fp) != NULL) {
250 (void) fclose(fp);
360 FILE *fp; local
364 if ((fp = fopen(fname, fmode)) != NULL) {
365 return fp;
458 FILE *fp; local
463 if ((fp = fileopen(SYS_INIT_FILE, "r")) != NULL) {
467 while (filegets(line, sizeof(line), fp) !
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/log/
H A DReliableLog.java820 protected boolean checkSpansBoundary(long fp) { argument
821 return fp % 512 > 508;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DParagraphView.java757 private float findEdgeSpan(View v, int axis, int fp, int p0, int p1) { argument
764 boolean startEdge = mid > fp;
767 v.createFragment(fp, mid) : v.createFragment(mid, fp);
775 return findEdgeSpan(f, axis, fp, p0, p1);

Completed in 136 milliseconds

1234