package rune
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=93abc49d075a1754442ccf495645bc4fdc83e4c66391ec8aca8fa15d2b4f44d2
sha512=5eb958c51f30ae46abded4c96f48d1825f79c7ce03f975f9a6237cdfed0d62c0b4a0774296694def391573d849d1f869919c49008acffca95946b818ad325f6f
doc/llvm_target/Llvm_target/TargetMachine/index.html
Module Llvm_target.TargetMachineSource
val create :
triple:string ->
?cpu:string ->
?features:string ->
?level:CodeGenOptLevel.t ->
?reloc_mode:RelocMode.t ->
?code_model:CodeModel.t ->
Target.t ->
tCreates a new target machine. See llvm::Target::createTargetMachine.
Returns the triple used while creating this target machine. See llvm::TargetMachine::getTriple.
Returns the CPU used while creating this target machine. See llvm::TargetMachine::getCPU.
Returns the data layout of this target machine.
Returns the feature string used while creating this target machine. See llvm::TargetMachine::getFeatureString.
Sets the assembly verbosity of this target machine. See llvm::TargetMachine::setAsmVerbosity.
Enable fast-path instruction selection. See llvm::TargetMachine::setFastISel.
Enable global instruction selection. See llvm::TargetMachine::setGlobalISel.
Set abort behaviour when global instruction selection fails to lower/select an instruction. See llvm::TargetMachine::setGlobalISelAbort.
Enable the MachineOutliner pass. See llvm::TargetMachine::setMachineOutliner.
Emits assembly or object data for the given module to the given file or raise Error.
Emits assembly or object data for the given module to a fresh memory buffer or raise Error.