forked from llvm-mirror/llvm
-
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.
Add
.pushsection',
.popsection', and `.previous' directives to Darw…
…in ASM. There are situations where inline ASM may want to change the section -- for instance, to create a variable in the .data section. However, it cannot do this without (potentially) restoring to the wrong section. E.g.: asm volatile (".section __DATA, __data\n\t" ".globl _fnord\n\t" "_fnord: .quad 1f\n\t" ".text\n\t" "1:" :::); This may be wrong if this is inlined into a function that has a "section" attribute. The user should use `.pushsection' and `.popsection' here instead. The addition of `.previous' is added for completeness. <rdar://problem/12048387> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161477 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
3 changed files
with
68 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// RUN: llvm-mc -triple i386-apple-darwin9 %s -o - | FileCheck %s | ||
|
||
.text | ||
// CHECK: .section __TEXT,__text | ||
|
||
.data | ||
// CHECK: .section __DATA,__data | ||
|
||
.previous | ||
// CHECK: .section __TEXT,__text | ||
|
||
.previous | ||
// CHECK: .section __DATA,__data |
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,16 @@ | ||
// RUN: llvm-mc -triple i386-apple-darwin9 %s -o - | FileCheck %s | ||
|
||
.text | ||
// CHECK: .section __TEXT,__text | ||
|
||
.pushsection __DATA, __data | ||
// CHECK: .section __DATA,__data | ||
|
||
.pushsection __TEXT, initcode | ||
// CHECK: .section __TEXT,initcode | ||
|
||
.popsection | ||
// CHECK: .section __DATA,__data | ||
|
||
.popsection | ||
// CHECK: .section __TEXT,__text |