-
Notifications
You must be signed in to change notification settings - Fork 135
std::arch SIMD intrinsics #171
Copy link
Copy link
Open
Labels
A-core-archArea: Necessary for full core::arch supportArea: Necessary for full core::arch supportoptimize-speedThe speed of the generated executableThe speed of the generated executable
Metadata
Metadata
Assignees
Labels
A-core-archArea: Necessary for full core::arch supportArea: Necessary for full core::arch supportoptimize-speedThe speed of the generated executableThe speed of the generated executable
Type
Fields
Give feedbackNo fields configured for issues without a type.
Currently the SIMD intrinsics are implemented in
stdsimdusinglink_llvm_intrinsicsto directly call the llvm intrinsics via their C ABI, and using a handful of "generic" simd intrinsics.Is there a way to directly call Cretonne intrinsics?
Is there a
cfg()macro available to detect whether the codegen backend is LLVM or Cranelift ?