forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[X86] With large code model, put functions into .ltext with large sec…
…tion flag (llvm#73037) So that when mixing small and large text, large text stays out of the way of the rest of the binary. This is useful for mixing precompiled small code model object files and built-from-source large code model binaries so that the the text sections don't get merged.
- Loading branch information
Showing
7 changed files
with
64 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
; RUN: llc < %s -relocation-model=pic -filetype=obj -code-model=small -o %t | ||
; RUN: llvm-readelf -S %t | FileCheck %s --check-prefix=SMALL | ||
; RUN: llc < %s -relocation-model=pic -filetype=obj -code-model=medium -o %t | ||
; RUN: llvm-readelf -S %t | FileCheck %s --check-prefix=SMALL | ||
; RUN: llc < %s -relocation-model=pic -filetype=obj -code-model=large -o %t | ||
; RUN: llvm-readelf -S %t | FileCheck %s --check-prefix=LARGE | ||
|
||
; RUN: llc < %s -relocation-model=pic -filetype=obj -code-model=small -function-sections -o %t | ||
; RUN: llvm-readelf -S %t | FileCheck %s --check-prefix=SMALL-DS | ||
; RUN: llc < %s -relocation-model=pic -filetype=obj -code-model=medium -function-sections -o %t | ||
; RUN: llvm-readelf -S %t | FileCheck %s --check-prefix=SMALL-DS | ||
; RUN: llc < %s -relocation-model=pic -filetype=obj -code-model=large -function-sections -o %t | ||
; RUN: llvm-readelf -S %t | FileCheck %s --check-prefix=LARGE-DS | ||
|
||
; SMALL: .text {{.*}} AX {{.*}} | ||
; SMALL-DS: .text.func {{.*}} AX {{.*}} | ||
; LARGE: .ltext {{.*}} AXl {{.*}} | ||
; LARGE-DS: .ltext.func {{.*}} AXl {{.*}} | ||
|
||
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" | ||
target triple = "x86_64--linux" | ||
|
||
define void @func() { | ||
ret void | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters