hotspot/src/os_cpu/linux_x86/vm/threadLS_linux_x86.cpp
author sundar
Mon, 15 Apr 2013 20:12:50 +0530
changeset 17224 e3481336d8f7
parent 14583 d70ee55535f4
child 31377 229b4eb67c2b
permissions -rw-r--r--
8012240: Array.prototype.map.call({length: -1, get 0(){throw 0}}, function(){}).length does not throw error Reviewed-by: lagergren, jlaskey
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 10021
diff changeset
    26
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "runtime/threadLocalStorage.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Map stack pointer (%esp) to thread pointer for faster TLS access
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// Here we use a flat table for better performance. Getting current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// is down to one memory access (read _sp_map[%esp>>12]) in generated code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// and two in runtime code (-fPIC code needs an extra load for _sp_map).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// This code assumes stack page is not shared by different threads. It works
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// in 32-bit VM when page size is 4K (or a multiple of 4K, if that matters).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// Notice that _sp_map is allocated in the bss segment, which is ZFOD
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// (zero-fill-on-demand). While it reserves 4M address space upfront,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// actual memory pages are committed on demand.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// If an application creates and destroys a lot of threads, usually the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// stack space freed by a thread will soon get reused by new thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// (this is especially true in NPTL or LinuxThreads in fixed-stack mode).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// No memory page in _sp_map is wasted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// However, it's still possible that we might end up populating &
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// committing a large fraction of the 4M table over time, but the actual
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// amount of live data in the table could be quite small. The max wastage
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// is less than 4M bytes. If it becomes an issue, we could use madvise()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// with MADV_DONTNEED to reclaim unused (i.e. all-zero) pages in _sp_map.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// MADV_DONTNEED on Linux keeps the virtual memory mapping, but zaps the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// physical memory page (i.e. similar to MADV_FREE on Solaris).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
10021
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    55
#if !defined(AMD64) && !defined(MINIMIZE_RAM_USAGE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
Thread* ThreadLocalStorage::_sp_map[1UL << (SP_BITLENGTH - PAGE_SHIFT)];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
void ThreadLocalStorage::generate_code_for_get_thread() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    // nothing we can do here for user-level thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
void ThreadLocalStorage::pd_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  assert(align_size_down(os::vm_page_size(), PAGE_SIZE) == os::vm_page_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
         "page size must be multiple of PAGE_SIZE");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
void ThreadLocalStorage::pd_set_thread(Thread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  os::thread_local_storage_at_put(ThreadLocalStorage::thread_index(), thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  address stack_top = os::current_stack_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  size_t stack_size = os::current_stack_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  for (address p = stack_top - stack_size; p < stack_top; p += PAGE_SIZE) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    // pd_set_thread() is called with non-NULL value when a new thread is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    // created/attached, or with NULL value when a thread is about to exit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    // If both "thread" and the corresponding _sp_map[] entry are non-NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    // they should have the same value. Otherwise it might indicate that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    // stack page is shared by multiple threads. However, a more likely cause
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    // for this assertion to fail is that an attached thread exited without
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    // detaching itself from VM, which is a program error and could cause VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    // to crash.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    assert(thread == NULL || _sp_map[(uintptr_t)p >> PAGE_SHIFT] == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
           thread == _sp_map[(uintptr_t)p >> PAGE_SHIFT],
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
           "thread exited without detaching from VM??");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    _sp_map[(uintptr_t)p >> PAGE_SHIFT] = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
10021
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    86
}
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    87
#else
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    88
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    89
void ThreadLocalStorage::generate_code_for_get_thread() {
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    90
    // nothing we can do here for user-level thread
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
}
10021
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    92
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    93
void ThreadLocalStorage::pd_init() {
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    94
}
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    95
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    96
void ThreadLocalStorage::pd_set_thread(Thread* thread) {
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    97
  os::thread_local_storage_at_put(ThreadLocalStorage::thread_index(), thread);
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    98
}
7a7afd351444 7061197: ThreadLocalStorage sp map table should be optional
jcoomes
parents: 7397
diff changeset
    99
#endif // !AMD64 && !MINIMIZE_RAM_USAGE