Displaying 4 results from an estimated 4 matches for "initializealldisassembl".
2013 Feb 18
1
[LLVMdev] [llvm-c] Proposal: Make LLVMInitializeNativeTarget and co. non-inline
...in their current header and defined in lib/IR/Core.cpp.
The list of functions affected by this is:
void llvm::InitializeAllTargetInfos ()
void llvm::InitializeAllTargets ()
void llvm::InitializeAllTargetMCs ()
void llvm::InitializeAllAsmPrinters ()
void llvm::InitializeAllAsmParsers ()
void llvm::InitializeAllDisassemblers ()
bool llvm::InitializeNativeTarget ()
bool llvm::InitializeNativeTargetAsmPrinter ()
bool llvm::InitializeNativeTargetAsmParser ()
bool llvm::InitializeNativeTargetDisassembler ()
2016 Nov 11
2
initialization-order-fiasco in MCTargetDesc/X86MCAsmInfo.cpp
Mehdi, Teresa,
Not sure if this is caused by one of your recent commits, or by someone
else's,
please excuse me if that's unrelated to your work...
http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-fast/builds/542/steps/check-llvm%20asan/logs/stdio
==26383==ERROR: AddressSanitizer: initialization-order-fiasco on
address 0x000002ef41d8 at pc 0x0000009d1aa5 bp 0x7ffd0cd72b50 sp
2016 May 21
1
Using an MCStreamer Directly to produce an object file?
...a MCStreamer object directly to make some
output file, and object ".o" would be just fine to start with.
I seem to be able to create an aarch64 target without too much issue:
llvm::InitializeAllTargetInfos();
llvm::InitializeAllTargetMCs();
llvm::InitializeAllAsmParsers();
llvm::InitializeAllDisassemblers();
std::string Error;
std::string TripleName("aarch64-unknown-linux-gnu");
Triple TheTriple(Triple::normalize(TripleName));
const Target *TheTarget = TargetRegistry::lookupTarget(TripleName,
Error);
if (!TheTarget) {
std::cerr << "llvm_insts_to_binary(): "...
2016 May 23
0
Using an MCStreamer Directly to produce an object file?