Home
last modified time | relevance | path

Searched refs:HasXSAVE (Results 1 – 5 of 5) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/Target/X86/
H A DX86InstrSystem.td539 // NOTE: No HasXSAVE predicate so that these can be used with _xgetbv/_xsetbv
554 [(int_x86_xsave addr:$dst, EDX, EAX)]>, PS, Requires<[HasXSAVE]>;
557 [(int_x86_xsave64 addr:$dst, EDX, EAX)]>, PS, Requires<[HasXSAVE, In64BitMode]>;
560 [(int_x86_xrstor addr:$dst, EDX, EAX)]>, PS, Requires<[HasXSAVE]>;
563 [(int_x86_xrstor64 addr:$dst, EDX, EAX)]>, PS, Requires<[HasXSAVE, In64BitMode]>;
581 [(int_x86_xsaves64 addr:$dst, EDX, EAX)]>, PS, Requires<[HasXSAVE, In64BitMode]>;
H A DX86.td54 def FeatureXSAVE : SubtargetFeature<"xsave", "HasXSAVE", "true",
H A DX86InstrInfo.td931 def HasXSAVE : Predicate<"Subtarget->hasXSAVE()">;
/openbsd/gnu/llvm/clang/lib/Basic/Targets/
H A DX86.cpp277 HasXSAVE = true; in handleTargetFeatures()
747 if (HasXSAVE) in getTargetDefines()
1116 .Case("xsave", HasXSAVE) in hasFeature()
H A DX86.h117 bool HasXSAVE = false; variable