-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[LLVM-C] Add LLVMCreateTargetMachineWithABI #68406
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
@@ -0,0 +1,73 @@ | ||||
//===-- llvm/unittests/Target/TargetMachineOptionsTest.cpp ---------- | ||||
//-----===// | ||||
// | ||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||||
// See https://llvm.org/LICENSE.txt for license information. | ||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||||
// | ||||
//===----------------------------------------------------------------------===// | ||||
/// | ||||
/// \file | ||||
/// This file contains unit tests for the opaque structure describing options | ||||
/// for TargetMachine creation via the C API. | ||||
/// | ||||
//===----------------------------------------------------------------------===// | ||||
|
||||
#include "llvm-c/Core.h" | ||||
#include "llvm-c/TargetMachine.h" | ||||
#include "llvm/Config/llvm-config.h" | ||||
#include "gtest/gtest.h" | ||||
|
||||
namespace llvm { | ||||
|
||||
TEST(TargetMachineCTest, TargetMachineOptions) { | ||||
auto *Options = LLVMCreateTargetMachineOptions(); | ||||
|
||||
LLVMTargetMachineOptionsSetCPU(Options, "cortex-a53"); | ||||
LLVMTargetMachineOptionsSetFeatures(Options, "+neon"); | ||||
LLVMTargetMachineOptionsSetABI(Options, "aapcs"); | ||||
LLVMTargetMachineOptionsSetCodeGenOptLevel(Options, LLVMCodeGenLevelNone); | ||||
LLVMTargetMachineOptionsSetRelocMode(Options, LLVMRelocStatic); | ||||
LLVMTargetMachineOptionsSetCodeModel(Options, LLVMCodeModelKernel); | ||||
|
||||
LLVMDisposeTargetMachineOptions(Options); | ||||
} | ||||
|
||||
TEST(TargetMachineCTest, TargetMachineCreation) { | ||||
LLVMInitializeAllTargets(); | ||||
LLVMInitializeAllTargetInfos(); | ||||
LLVMInitializeAllTargetMCs(); | ||||
|
||||
// Get the default target to keep the test as generic as possible. This may | ||||
// not be a target for which we can generate code; in that case we give up. | ||||
|
||||
auto *Triple = LLVMGetDefaultTargetTriple(); | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm seeing checks in the other unittest that checks if this is empty and bails if so, perhaps we also need it here? I think it's possible to not have a default target triple. llvm-project/llvm/unittests/Passes/PassBuilderBindings/PassBuilderBindingsTest.cpp Line 20 in 4c43c1e
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point, done. |
||||
if (strlen(Triple) == 0) { | ||||
LLVMDisposeMessage(Triple); | ||||
GTEST_SKIP(); | ||||
} | ||||
|
||||
LLVMTargetRef Target = nullptr; | ||||
char *Error = nullptr; | ||||
if (LLVMGetTargetFromTriple(Triple, &Target, &Error)) | ||||
FAIL() << "Failed to create target from default triple (" << Triple | ||||
<< "): " << Error; | ||||
|
||||
ASSERT_NE(Target, nullptr); | ||||
|
||||
if (!LLVMTargetHasTargetMachine(Target)) | ||||
GTEST_SKIP() << "Default target doesn't support code generation"; | ||||
|
||||
// We don't know which target we're creating a machine for, so don't set any | ||||
// non-default options; they might cause fatal errors. | ||||
|
||||
auto *Options = LLVMCreateTargetMachineOptions(); | ||||
auto *TM = LLVMCreateTargetMachineWithOptions(Target, Triple, Options); | ||||
ASSERT_NE(TM, nullptr); | ||||
|
||||
LLVMDisposeMessage(Triple); | ||||
LLVMDisposeTargetMachineOptions(Options); | ||||
LLVMDisposeTargetMachine(TM); | ||||
} | ||||
|
||||
} // namespace llvm |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also needs license
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added.