1/*
2 * Copyright (C) 2021 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17// Typically GCC outputs functions like these into any object file that needs a PIC base register,
18// and one of the copies for each register is used. Clang doesn't use these functions, but
19// SETUP_GOT_NOSAVE in asm_support_x86.S calls this one.
20
21    .section .text.__x86.get_pc_thunk.bx,"axG",@progbits,__x86.get_pc_thunk.bx,comdat
22    .globl __x86.get_pc_thunk.bx
23    .hidden __x86.get_pc_thunk.bx
24    .p2align 4
25    .type __x86.get_pc_thunk.bx,@function
26__x86.get_pc_thunk.bx:
27    .cfi_startproc
28    movl (%esp), %ebx
29    ret
30    .cfi_endproc
31