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

  /external/clang/lib/Basic/
TargetInfo.cpp 1 //===--- TargetInfo.cpp - Information about Target machine ----------------===//
10 // This file implements the TargetInfo and TargetInfoImpl interfaces.
15 #include "clang/Basic/TargetInfo.h"
26 // TargetInfo Constructor.
27 TargetInfo::TargetInfo(const std::string &T) : Triple(T) {
88 // Out of line virtual dtor for TargetInfo.
89 TargetInfo::~TargetInfo() {}
93 const char *TargetInfo::getTypeName(IntType T)
    [all...]
  /frameworks/compile/slang/
slang_backend.cpp 29 #include "clang/Basic/TargetInfo.h"
117 const llvm::Target* TargetInfo =
119 if (TargetInfo == NULL) {
166 TargetInfo->createTargetMachine(Triple, mTargetOpts.CPU, FeaturesStr,
  /external/clang/include/clang/Basic/
TargetInfo.h 1 //===--- TargetInfo.h - Expose information about the target -----*- C++ -*-===//
10 // This file defines the TargetInfo interface.
60 /// TargetInfo - This class exposes information about the current target.
62 class TargetInfo : public llvm::RefCountedBase<TargetInfo> {
66 // values are specified by the TargetInfo constructor.
95 // TargetInfo Constructor. Default initializes all fields.
96 TargetInfo(const std::string &T);
104 static TargetInfo* CreateTargetInfo(DiagnosticsEngine &Diags,
107 virtual ~TargetInfo();
    [all...]

Completed in 159 milliseconds