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::addAnalysisPasses]. *)
215 See [llvm::TargetMachine::setAsmVerbosity]. *)
llvm_target.ml 111 module TargetMachine = struct
  /external/llvm/lib/Target/
TargetMachine.cpp 1 //===-- TargetMachine.cpp - General Target Information ---------------------==//
14 #include "llvm/Target/TargetMachine.h"
37 // TargetMachine Class
40 TargetMachine::TargetMachine(const Target &T, StringRef DataLayoutString,
48 TargetMachine::~TargetMachine() {
58 // a) global state on the TargetMachine is terrible in general,
61 // and not on the TargetMachine (via TargetOptions) at all.
62 void TargetMachine::resetTargetOptions(const Function &F) 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.
68 class TargetMachine {
69 TargetMachine(const TargetMachine &) = delete;
70 void operator=(const TargetMachine &) = delete;
72 TargetMachine(const Target &T, StringRef DataLayoutString,
87 /// Triple string, CPU name, and target feature strings the TargetMachine
115 virtual ~TargetMachine();
153 /// This is the only time the DataLayout in the TargetMachine is used
    [all...]

Completed in 287 milliseconds