2013-10-23 08:10:20 +00:00
|
|
|
/*===-- targets.c - tool for testing libLLVM and llvm-c API ---------------===*\
|
|
|
|
|* *|
|
2019-01-19 08:50:56 +00:00
|
|
|
|* 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 *|
|
2013-10-23 08:10:20 +00:00
|
|
|
|* *|
|
|
|
|
|*===----------------------------------------------------------------------===*|
|
|
|
|
|* *|
|
|
|
|
|* This file implements the --targets command in llvm-c-test. *|
|
|
|
|
|* *|
|
|
|
|
\*===----------------------------------------------------------------------===*/
|
|
|
|
|
|
|
|
#include "llvm-c/TargetMachine.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2016-02-05 13:31:14 +00:00
|
|
|
int llvm_targets_list(void) {
|
2013-10-23 17:56:37 +00:00
|
|
|
LLVMTargetRef t;
|
2013-10-23 08:10:20 +00:00
|
|
|
LLVMInitializeAllTargetInfos();
|
|
|
|
LLVMInitializeAllTargets();
|
|
|
|
|
2013-10-23 17:56:37 +00:00
|
|
|
for (t = LLVMGetFirstTarget(); t; t = LLVMGetNextTarget(t)) {
|
2013-10-23 08:10:20 +00:00
|
|
|
printf("%s", LLVMGetTargetName(t));
|
|
|
|
if (LLVMTargetHasJIT(t))
|
|
|
|
printf(" (+jit)");
|
|
|
|
printf("\n - %s\n", LLVMGetTargetDescription(t));
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|