GCC has supported a generic constraint "s" for a long time (since at
least 1992), which references a symbol or label with an optional
constant offset. "i" is a superset that also supports a constant
integer.
GCC's RISC-V port also supports a machine-specific constraint "S",
which cannot be used with a preemptible symbol. (We don't bother to
check preemptibility.) In PIC code, an external symbol is preemptible by
default, making "S" less useful if you want to create an artificial
reference for linker garbage collection, or define sections to hold
symbol addresses:
```
void fun();
// error: impossible constraint in ‘asm’ for riscv64-linux-gnu-gcc -fpie/-fpic
void foo() { asm(".reloc ., BFD_RELOC_NONE, %0" :: "S"(fun)); }
// good even if -fpie/-fpic
void foo() { asm(".reloc ., BFD_RELOC_NONE, %0" :: "s"(fun)); }
```
This patch adds support for "s". Modify https://reviews.llvm.org/D105254
("S") to handle multi-depth GEPs (https://reviews.llvm.org/D61560).
61 lines
2.1 KiB
C
61 lines
2.1 KiB
C
// RUN: %clang_cc1 -triple riscv32 -O2 -emit-llvm %s -o - \
|
|
// RUN: | FileCheck %s
|
|
// RUN: %clang_cc1 -triple riscv64 -O2 -emit-llvm %s -o - \
|
|
// RUN: | FileCheck %s
|
|
|
|
// Test RISC-V specific inline assembly constraints.
|
|
|
|
void test_I(void) {
|
|
// CHECK-LABEL: define{{.*}} void @test_I()
|
|
// CHECK: call void asm sideeffect "", "I"(i32 2047)
|
|
asm volatile ("" :: "I"(2047));
|
|
// CHECK: call void asm sideeffect "", "I"(i32 -2048)
|
|
asm volatile ("" :: "I"(-2048));
|
|
}
|
|
|
|
void test_J(void) {
|
|
// CHECK-LABEL: define{{.*}} void @test_J()
|
|
// CHECK: call void asm sideeffect "", "J"(i32 0)
|
|
asm volatile ("" :: "J"(0));
|
|
}
|
|
|
|
void test_K(void) {
|
|
// CHECK-LABEL: define{{.*}} void @test_K()
|
|
// CHECK: call void asm sideeffect "", "K"(i32 31)
|
|
asm volatile ("" :: "K"(31));
|
|
// CHECK: call void asm sideeffect "", "K"(i32 0)
|
|
asm volatile ("" :: "K"(0));
|
|
}
|
|
|
|
float f;
|
|
double d;
|
|
void test_f(void) {
|
|
// CHECK-LABEL: define{{.*}} void @test_f()
|
|
// CHECK: [[FLT_ARG:%[a-zA-Z_0-9]+]] = load float, ptr @f
|
|
// CHECK: call void asm sideeffect "", "f"(float [[FLT_ARG]])
|
|
asm volatile ("" :: "f"(f));
|
|
// CHECK: [[FLT_ARG:%[a-zA-Z_0-9]+]] = load double, ptr @d
|
|
// CHECK: call void asm sideeffect "", "f"(double [[FLT_ARG]])
|
|
asm volatile ("" :: "f"(d));
|
|
}
|
|
|
|
void test_A(int *p) {
|
|
// CHECK-LABEL: define{{.*}} void @test_A(ptr noundef %p)
|
|
// CHECK: call void asm sideeffect "", "*A"(ptr elementtype(i32) %p)
|
|
asm volatile("" :: "A"(*p));
|
|
}
|
|
|
|
extern int var, arr[2][2];
|
|
struct Pair { int a, b; } pair;
|
|
|
|
// CHECK-LABEL: test_s(
|
|
// CHECK: call void asm sideeffect "// $0 $1 $2", "s,s,s"(ptr nonnull @var, ptr nonnull getelementptr inbounds ([2 x [2 x i32]], ptr @arr, {{.*}}), ptr nonnull @test_s)
|
|
// CHECK: call void asm sideeffect "// $0", "s"(ptr nonnull getelementptr inbounds (%struct.Pair, ptr @pair, {{.*}}))
|
|
// CHECK: call void asm sideeffect "// $0 $1 $2", "S,S,S"(ptr nonnull @var, ptr nonnull getelementptr inbounds ([2 x [2 x i32]], ptr @arr, {{.*}}), ptr nonnull @test_s)
|
|
void test_s(void) {
|
|
asm("// %0 %1 %2" :: "s"(&var), "s"(&arr[1][1]), "s"(test_s));
|
|
asm("// %0" :: "s"(&pair.b));
|
|
|
|
asm("// %0 %1 %2" :: "S"(&var), "S"(&arr[1][1]), "S"(test_s));
|
|
}
|