HomeSort by relevance Sort by last modified time
    Searched refs:TargetInfo (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/llvm/lib/Target/CBackend/
Makefile 12 DIRS = TargetInfo
  /external/llvm/lib/Target/CppBackend/
Makefile 12 DIRS = TargetInfo
  /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"
25 // TargetInfo Constructor.
26 TargetInfo::TargetInfo(const std::string &T) : Triple(T) {
79 // Out of line virtual dtor for TargetInfo.
80 TargetInfo::~TargetInfo() {}
84 const char *TargetInfo::getTypeName(IntType T)
    [all...]
Android.mk 31 TargetInfo.cpp \
Targets.cpp 10 // This file implements construction of a TargetInfo object from a
15 #include "clang/Basic/TargetInfo.h"
328 this->WIntType = TargetInfo::UnsignedInt;
410 this->IntMaxType = TargetInfo::SignedLongLong;
411 this->UIntMaxType = TargetInfo::UnsignedLongLong;
412 this->Int64Type = TargetInfo::SignedLongLong;
413 this->SizeType = TargetInfo::UnsignedInt;
534 class PPCTargetInfo : public TargetInfo {
537 static const TargetInfo::GCCRegAlias GCCRegAliases[];
539 PPCTargetInfo(const std::string& triple) : TargetInfo(triple) {
    [all...]
  /external/llvm/lib/Target/Alpha/
Makefile 19 DIRS = TargetInfo MCTargetDesc
  /external/llvm/lib/Target/Blackfin/
Makefile 20 DIRS = TargetInfo MCTargetDesc
  /external/llvm/lib/Target/CellSPU/
Makefile 18 DIRS = TargetInfo MCTargetDesc
  /external/llvm/lib/Target/MSP430/
Makefile 20 DIRS = InstPrinter TargetInfo MCTargetDesc
  /external/llvm/lib/Target/Mips/
Makefile 20 DIRS = InstPrinter TargetInfo MCTargetDesc
  /external/llvm/lib/Target/PTX/
Makefile 22 DIRS = TargetInfo MCTargetDesc
  /external/llvm/lib/Target/PowerPC/
Makefile 21 DIRS = InstPrinter TargetInfo MCTargetDesc
  /external/llvm/lib/Target/Sparc/
Makefile 19 DIRS = TargetInfo MCTargetDesc
  /external/llvm/lib/Target/SystemZ/
Makefile 19 DIRS = TargetInfo MCTargetDesc
  /external/llvm/lib/Target/XCore/
Makefile 20 DIRS = TargetInfo MCTargetDesc
  /external/llvm/lib/Target/MBlaze/
Makefile 21 DIRS = InstPrinter AsmParser Disassembler TargetInfo MCTargetDesc
  /external/llvm/lib/Target/X86/
Makefile 22 DIRS = InstPrinter AsmParser Disassembler TargetInfo MCTargetDesc Utils
  /external/llvm/lib/Target/ARM/
Makefile 23 DIRS = InstPrinter AsmParser Disassembler TargetInfo MCTargetDesc
  /external/llvm/include/llvm/Target/
TargetSelect.h 23 #define LLVM_TARGET(TargetName) void LLVMInitialize##TargetName##TargetInfo();
70 #define LLVM_TARGET(TargetName) LLVMInitialize##TargetName##TargetInfo();
  /external/clang/include/clang/Lex/
LiteralSupport.h 29 class TargetInfo;
145 const TargetInfo &Target;
158 const TargetInfo &target, Diagnostic *diags = 0)
  /external/llvm/
Android.mk 32 lib/Target/ARM/TargetInfo \
38 lib/Target/X86/TargetInfo \
  /external/clang/include/clang/Basic/
Builtins.h 29 class TargetInfo;
68 Context(const TargetInfo &Target);
  /external/llvm/include/llvm-c/
Target.h 36 void LLVMInitialize##TargetName##TargetInfo(void);
58 #define LLVM_TARGET(TargetName) LLVMInitialize##TargetName##TargetInfo();
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 17 #include "clang/Basic/TargetInfo.h"
183 /// DefineTypeSize - An overloaded helper that uses TargetInfo to determine
185 static void DefineTypeSize(llvm::StringRef MacroName, TargetInfo::IntType Ty,
186 const TargetInfo &TI, MacroBuilder &Builder) {
191 static void DefineType(const llvm::Twine &MacroName, TargetInfo::IntType Ty,
193 Builder.defineMacro(MacroName, TargetInfo::getTypeName(Ty));
196 static void DefineTypeWidth(llvm::StringRef MacroName, TargetInfo::IntType Ty,
197 const TargetInfo &TI, MacroBuilder &Builder) {
202 const TargetInfo &TI, MacroBuilder &Builder) {
207 static void DefineExactWidthIntType(TargetInfo::IntType Ty,
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInstance.h 40 class TargetInfo;
68 llvm::IntrusiveRefCntPtr<TargetInfo> Target;
275 TargetInfo &getTarget() const {
281 void setTarget(TargetInfo *Value);
512 const TargetInfo &,

Completed in 464 milliseconds

1 2 3