1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[X86] Introduce cldemote instruction

Hint to hardware to move the cache line containing the
address to a more distant level of the cache without
writing back to memory.

Reviewers: craig.topper, zvi

Reviewed By: craig.topper

Differential Revision: https://reviews.llvm.org/D45256

llvm-svn: 329992
This commit is contained in:
Gabor Buella 2018-04-13 07:35:08 +00:00
parent c50e50418b
commit 59f04da446
11 changed files with 68 additions and 0 deletions

View File

@ -6394,3 +6394,11 @@ let TargetPrefix = "x86" in {
def int_x86_wbnoinvd : GCCBuiltin<"__builtin_ia32_wbnoinvd">,
Intrinsic<[], [], []>;
}
//===----------------------------------------------------------------------===//
// Cache-line demote
let TargetPrefix = "x86" in {
def int_x86_cldemote : GCCBuiltin<"__builtin_ia32_cldemote">,
Intrinsic<[], [llvm_ptr_ty], []>;
}

View File

@ -1257,6 +1257,7 @@ bool sys::getHostCPUFeatures(StringMap<bool> &Features) {
Features["avx512bitalg"] = HasLeaf7 && ((ECX >> 12) & 1) && HasAVX512Save;
Features["avx512vpopcntdq"] = HasLeaf7 && ((ECX >> 14) & 1) && HasAVX512Save;
Features["rdpid"] = HasLeaf7 && ((ECX >> 22) & 1);
Features["cldemote"] = HasLeaf7 && ((ECX >> 25) & 1);
Features["ibt"] = HasLeaf7 && ((EDX >> 20) & 1);

View File

@ -230,6 +230,8 @@ def FeatureMWAITX : SubtargetFeature<"mwaitx", "HasMWAITX", "true",
"Enable MONITORX/MWAITX timer functionality">;
def FeatureCLZERO : SubtargetFeature<"clzero", "HasCLZERO", "true",
"Enable Cache Line Zero">;
def FeatureCLDEMOTE : SubtargetFeature<"cldemote", "HasCLDEMOTE", "true",
"Enable Cache Demote">;
def FeatureMPX : SubtargetFeature<"mpx", "HasMPX", "true",
"Support MPX instructions">;
def FeatureLEAForSP : SubtargetFeature<"lea-sp", "UseLeaForSP", "true",

View File

@ -881,6 +881,7 @@ def HasPREFETCHWT1 : Predicate<"Subtarget->hasPREFETCHWT1()">;
def HasLAHFSAHF : Predicate<"Subtarget->hasLAHFSAHF()">;
def HasMWAITX : Predicate<"Subtarget->hasMWAITX()">;
def HasCLZERO : Predicate<"Subtarget->hasCLZERO()">;
def HasCLDEMOTE : Predicate<"Subtarget->hasCLDEMOTE()">;
def FPStackf32 : Predicate<"!Subtarget->hasSSE1()">;
def FPStackf64 : Predicate<"!Subtarget->hasSSE2()">;
def HasMPX : Predicate<"Subtarget->hasMPX()">;
@ -2705,6 +2706,9 @@ let Predicates = [HasCLWB], SchedRW = [WriteLoad] in
def CLWB : I<0xAE, MRM6m, (outs), (ins i8mem:$src), "clwb\t$src",
[(int_x86_clwb addr:$src)]>, PD;
def CLDEMOTE : I<0x1C, MRM0m, (outs), (ins i8mem:$src), "cldemote\t$src",
[(int_x86_cldemote addr:$src)]>, TB, Requires<[HasCLDEMOTE]>;
//===----------------------------------------------------------------------===//
// Subsystems.
//===----------------------------------------------------------------------===//

View File

@ -318,6 +318,7 @@ void X86Subtarget::initializeEnvironment() {
HasLAHFSAHF = false;
HasMWAITX = false;
HasCLZERO = false;
HasCLDEMOTE = false;
HasMPX = false;
HasSHSTK = false;
HasIBT = false;

View File

@ -205,6 +205,9 @@ protected:
/// Processor has Cache Line Zero instruction
bool HasCLZERO;
/// Processor has Cache Line Demote instruction
bool HasCLDEMOTE;
/// Processor has Prefetch with intent to Write instruction
bool HasPREFETCHWT1;
@ -577,6 +580,7 @@ public:
bool hasLAHFSAHF() const { return HasLAHFSAHF; }
bool hasMWAITX() const { return HasMWAITX; }
bool hasCLZERO() const { return HasCLZERO; }
bool hasCLDEMOTE() const { return HasCLDEMOTE; }
bool isSHLDSlow() const { return IsSHLDSlow; }
bool isPMULLDSlow() const { return IsPMULLDSlow; }
bool isUnalignedMem16Slow() const { return IsUAMem16Slow; }

View File

@ -0,0 +1,21 @@
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-linux -mattr=+cldemote | FileCheck %s --check-prefix=X64
; RUN: llc < %s -mtriple=i386-pc-linux -mattr=+cldemote | FileCheck %s --check-prefix=X32
define void @test_cldemote(i8* %p) {
; X64-LABEL: test_cldemote:
; X64: # %bb.0: # %entry
; X64-NEXT: cldemote (%rdi)
; X64-NEXT: retq
;
; X32-LABEL: test_cldemote:
; X32: # %bb.0: # %entry
; X32-NEXT: movl {{[0-9]+}}(%esp), %eax
; X32-NEXT: cldemote (%eax)
; X32-NEXT: retl
entry:
tail call void @llvm.x86.cldemote(i8* %p)
ret void
}
declare void @llvm.x86.cldemote(i8*)

View File

@ -823,3 +823,9 @@
# CHECK: wbnoinvd
0xf3 0x0f 0x09
# CHECK: cldemote 4(%eax)
0x0f 0x1c 0x40 0x04
# CHECK: cldemote -559038737(%ebx,%ecx,8)
0x0f,0x1c,0x84,0xcb,0xef,0xbe,0xad,0xde

View File

@ -519,3 +519,9 @@
# CHECK: wbnoinvd
0xf3 0x0f 0x09
# CHECK: cldemote 4(%rax)
0x0f 0x1c 0x40 0x04
# CHECK: cldemote -559038737(%rbx,%rcx,8)
0x0f,0x1c,0x84,0xcb,0xef,0xbe,0xad,0xde

View File

@ -10745,3 +10745,10 @@ btcl $4, (%eax)
// CHECK: encoding: [0xf0,0x01,0x37]
lock add %esi, (%edi)
// CHECK: cldemote 4(%eax)
// CHECK: encoding: [0x0f,0x1c,0x40,0x04]
cldemote 4(%eax)
// CHECK: cldemote 3735928559(%ebx,%ecx,8)
// CHECK: encoding: [0x0f,0x1c,0x84,0xcb,0xef,0xbe,0xad,0xde]
cldemote 0xdeadbeef(%ebx,%ecx,8)

View File

@ -1563,6 +1563,14 @@ ptwriteq %rax
// CHECK: encoding: [0xf3,0x0f,0x09]
wbnoinvd
// CHECK: cldemote 4(%rax)
// CHECK: encoding: [0x0f,0x1c,0x40,0x04]
cldemote 4(%rax)
// CHECK: cldemote 3735928559(%rbx,%rcx,8)
// CHECK: encoding: [0x0f,0x1c,0x84,0xcb,0xef,0xbe,0xad,0xde]
cldemote 0xdeadbeef(%rbx,%rcx,8)
// __asm __volatile(
// "pushf \n\t"
// "popf \n\t"