Lines Matching refs:where

245   void update(TickPosition where) {
246 switch(where) {
284 void update(TickPosition where) { ticks.update(where);}
396 interpretedNode(Method* method, TickPosition where) : ProfilerNode() {
399 update(where);
436 compiledNode(Method* method, TickPosition where) : ProfilerNode() {
439 update(where);
474 stubNode(Method* method, const char* name, TickPosition where) : ProfilerNode() {
478 update(where);
517 adapterNode(TickPosition where) : ProfilerNode() {
518 update(where);
544 runtimeStubNode(const CodeBlob* stub, const char* name, TickPosition where) : ProfilerNode(), _stub(NULL), _symbol(name) {
547 update(where);
590 unknown_compiledNode(const CodeBlob* cb, TickPosition where) : ProfilerNode() {
595 update(where);
625 vmNode(const TickPosition where) : ProfilerNode() {
627 update(where);
630 vmNode(const char* name, const TickPosition where) : ProfilerNode() {
632 update(where);
680 void ThreadProfiler::interpreted_update(Method* method, TickPosition where) {
683 table[index] = new (this) interpretedNode(method, where);
688 node->update(where);
693 prev->set_next(new (this) interpretedNode(method, where));
697 void ThreadProfiler::compiled_update(Method* method, TickPosition where) {
700 table[index] = new (this) compiledNode(method, where);
705 node->update(where);
710 prev->set_next(new (this) compiledNode(method, where));
714 void ThreadProfiler::stub_update(Method* method, const char* name, TickPosition where) {
717 table[index] = new (this) stubNode(method, name, where);
722 node->update(where);
727 prev->set_next(new (this) stubNode(method, name, where));
731 void ThreadProfiler::adapter_update(TickPosition where) {
734 table[index] = new (this) adapterNode(where);
739 node->update(where);
744 prev->set_next(new (this) adapterNode(where));
748 void ThreadProfiler::runtime_stub_update(const CodeBlob* stub, const char* name, TickPosition where) {
751 table[index] = new (this) runtimeStubNode(stub, name, where);
756 node->update(where);
761 prev->set_next(new (this) runtimeStubNode(stub, name, where));
766 void ThreadProfiler::unknown_compiled_update(const CodeBlob* cb, TickPosition where) {
769 table[index] = new (this) unknown_compiledNode(cb, where);
774 node->update(where);
779 prev->set_next(new (this) unknown_compiledNode(cb, where));
783 void ThreadProfiler::vm_update(TickPosition where) {
784 vm_update(NULL, where);
787 void ThreadProfiler::vm_update(const char* name, TickPosition where) {
792 table[index] = new (this) vmNode(name, where);
797 node->update(where);
802 prev->set_next(new (this) vmNode(name, where));
919 // This is the place where we check to see if a user thread is
962 void ThreadProfiler::record_interpreted_tick(JavaThread* thread, frame fr, TickPosition where, int* ticks) {
979 interpreted_update(method, where);
988 void ThreadProfiler::record_compiled_tick(JavaThread* thread, frame fr, TickPosition where) {
990 TickPosition localwhere = where;
1253 // This is where we would assign thread_profiler