HomeSort by relevance Sort by last modified time
    Searched defs:TargetMachine (Results 1 - 4 of 4) sorted by null

  /external/llvm/bindings/ocaml/target/
llvm_target.mli 183 module TargetMachine : sig
192 (** Returns the Target used in a TargetMachine *)
196 [llvm::TargetMachine::getTriple]. *)
200 [llvm::TargetMachine::getCPU]. *)
204 [llvm::TargetMachine::getFeatureString]. *)
211 See [llvm::TargetMachine::setAsmVerbosity]. *)
llvm_target.ml 112 module TargetMachine = struct
  /external/llvm/lib/Target/
TargetMachine.cpp 1 //===-- TargetMachine.cpp - General Target Information ---------------------==//
14 #include "llvm/Target/TargetMachine.h"
32 // TargetMachine Class
35 TargetMachine::TargetMachine(const Target &T,
44 TargetMachine::~TargetMachine() {
50 void TargetMachine::resetTargetOptions(const MachineFunction *MF) const {
76 Reloc::Model TargetMachine::getRelocationModel() const {
84 CodeModel::Model TargetMachine::getCodeModel() const
    [all...]
  /external/llvm/include/llvm/Target/
TargetMachine.h 1 //===-- llvm/Target/TargetMachine.h - Target Information --------*- C++ -*-===//
10 // This file defines the TargetMachine and LLVMTargetMachine classes.
59 /// TargetMachine - Primary interface to the complete machine description for
63 class TargetMachine {
64 TargetMachine(const TargetMachine &) LLVM_DELETED_FUNCTION;
65 void operator=(const TargetMachine &) LLVM_DELETED_FUNCTION;
67 TargetMachine(const Target &T, StringRef TargetTriple,
74 /// feature strings the TargetMachine instance is created with.
90 virtual ~TargetMachine();
    [all...]

Completed in 381 milliseconds