hotspot/src/os_cpu/windows_x86/vm/assembler_windows_x86.cpp
author dholmes
Fri, 04 Dec 2015 04:06:37 -0500
changeset 34633 2a6c7c7b30a7
parent 14837 a75c3082d106
child 36301 cb578d8c6cba
permissions -rw-r--r--
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables Summary: Used compiled-based TLS when available. Additional contributions by Thomas Stufe (AIX) and Andrew Haley (Aarch64) Reviewed-by: stuefe, bdelsart, dcubed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 14837
diff changeset
     2
 * Copyright (c) 1999, 2015, 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: 1066
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1066
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: 1066
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"
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 7397
diff changeset
    26
#include "asm/macroAssembler.hpp"
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 7397
diff changeset
    27
#include "asm/macroAssembler.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "runtime/os.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
void MacroAssembler::int3() {
14837
a75c3082d106 8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents: 14626
diff changeset
    31
  emit_int8((unsigned char)0xCC);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 823
diff changeset
    34
#ifndef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//  The current scheme to accelerate access to the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//  pointer is to store the current thread in the os_exception_wrapper
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//  and reference the current thread from stubs and compiled code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//  via the FS register.  FS[0] contains a pointer to the structured
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//  exception block which is actually a stack address.  The first time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//  we call the os exception wrapper, we calculate and store the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//  offset from this exception block and use that offset here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//  The last mechanism we used was problematic in that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//  the offset we had hard coded in the VM kept changing as Microsoft
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
//  evolved the OS.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// Warning: This mechanism assumes that we only attempt to get the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//          thread when we are nested below a call wrapper.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// movl reg, fs:[0]                        Get exeception pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// movl reg, [reg + thread_ptr_offset]     Load thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
void MacroAssembler::get_thread(Register thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // can't use ExternalAddress because it can't take NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  AddressLiteral null(0, relocInfo::none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  prefix(FS_segment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  movptr(thread, null);
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 14837
diff changeset
    59
  assert(os::win32::get_thread_ptr_offset() != 0,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
         "Thread Pointer Offset has not been initialized");
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 14837
diff changeset
    61
  movl(thread, Address(thread, os::win32::get_thread_ptr_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
}
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 823
diff changeset
    63
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 14837
diff changeset
    64
// #else - use shared x86 implementation in cpu/x86/vm/macroAssembler_x86.cpp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 823
diff changeset
    65
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 823
diff changeset
    66
#endif