HomeSort by relevance Sort by last modified time
    Searched refs:llvm (Results 276 - 300 of 2675) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Target/XCore/
XCore.h 3 // The LLVM Compiler Infrastructure
10 // This file contains the entry points for global functions defined in the LLVM
19 #include "llvm/Target/TargetMachine.h"
21 namespace llvm { namespace
29 } // end namespace llvm;
XCoreSelectionDAGInfo.h 3 // The LLVM Compiler Infrastructure
17 #include "llvm/Target/TargetSelectionDAGInfo.h"
19 namespace llvm { namespace
  /external/llvm/tools/llvm-ar/
Makefile 1 ##===- tools/llvm-ar/Makefile ------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-ar
  /external/llvm/tools/llvm-as/
Makefile 1 ##===- tools/llvm-as/Makefile ------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-as
  /external/llvm/tools/llvm-bcanalyzer/
Makefile 1 ##===- tools/llvm-bcanalyzer/Makefile ----------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-bcanalyzer
  /external/llvm/tools/llvm-cov/
Makefile 1 ##===- tools/llvm-cov/Makefile -----------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-cov
  /external/llvm/tools/llvm-diff/
Makefile 1 ##===- tools/llvm-diff/Makefile ----------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-diff
  /external/llvm/tools/llvm-dis/
Makefile 1 ##===- tools/llvm-dis/Makefile ------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-dis
  /external/llvm/tools/llvm-dwarfdump/
Makefile 1 ##===- tools/llvm-dwarfdump/Makefile -----------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-dwarfdump
  /external/llvm/tools/llvm-extract/
Makefile 1 ##===- tools/llvm-extract/Makefile -------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-extract
  /external/llvm/tools/llvm-ld/
Makefile 1 ##===- tools/llvm-ld/Makefile ------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-ld
  /external/llvm/tools/llvm-link/
Makefile 1 ##===- tools/llvm-link/Makefile ----------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-link
  /external/llvm/tools/llvm-nm/
Makefile 1 ##===- tools/llvm-nm/Makefile ------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-nm
  /external/llvm/tools/llvm-prof/
Makefile 1 ##===- tools/llvm-prof/Makefile ----------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-prof
  /external/llvm/tools/llvm-ranlib/
Makefile 1 ##===- tools/llvm-ranlib/Makefile --------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-ranlib
  /external/llvm/tools/llvm-size/
Makefile 1 ##===- tools/llvm-size/Makefile ----------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
11 TOOLNAME := llvm-size
  /external/llvm/utils/TableGen/
EDEmitter.h 3 // The LLVM Compiler Infrastructure
19 #include "llvm/TableGen/TableGenBackend.h"
21 namespace llvm { namespace
32 } // End llvm namespace
  /frameworks/compile/slang/
slang_rs_backend.h 24 namespace llvm { namespace
50 llvm::NamedMDNode *mExportVarMetadata;
51 llvm::NamedMDNode *mExportFuncMetadata;
52 llvm::NamedMDNode *mExportForEachMetadata;
53 llvm::NamedMDNode *mExportTypeMetadata;
54 llvm::NamedMDNode *mExportElementMetadata;
55 llvm::NamedMDNode *mRSObjectSlotsMetadata;
70 virtual void HandleTranslationUnitPost(llvm::Module *M);
78 llvm::raw_ostream *OS,
  /external/clang/lib/CodeGen/
CGException.cpp 1 //===--- CGException.cpp - Emit LLVM Code for C++ exceptions --------------===//
3 // The LLVM Compiler Infrastructure
16 #include "llvm/Intrinsics.h"
17 #include "llvm/IntrinsicInst.h"
18 #include "llvm/Support/CallSite.h"
29 static llvm::Constant *getAllocateExceptionFn(CodeGenFunction &CGF) {
32 llvm::FunctionType *FTy =
33 llvm::FunctionType::get(CGF.Int8PtrTy, CGF.SizeTy, /*IsVarArgs=*/false);
38 static llvm::Constant *getFreeExceptionFn(CodeGenFunction &CGF) {
41 llvm::FunctionType *FTy
    [all...]
CodeGenFunction.h 1 //===-- CodeGenFunction.h - Per-Function state for LLVM CodeGen -*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
10 // This is the internal per-function state used for llvm translation.
24 #include "llvm/ADT/ArrayRef.h"
25 #include "llvm/ADT/DenseMap.h"
26 #include "llvm/ADT/SmallVector.h"
27 #include "llvm/Support/ValueHandle.h"
28 #include "llvm/Support/Debug.h"
34 namespace llvm { namespace
91 llvm::BasicBlock *OptimisticBranchBlock
    [all...]
CGCXXABI.cpp 3 // The LLVM Compiler Infrastructure
32 static llvm::Constant *GetBogusMemberPointer(CodeGenModule &CGM,
34 return llvm::Constant::getNullValue(CGM.getTypes().ConvertType(T));
37 llvm::Type *
42 llvm::Value *CGCXXABI::EmitLoadOfMemberFunctionPointer(CodeGenFunction &CGF,
43 llvm::Value *&This,
44 llvm::Value *MemPtr,
52 llvm::FunctionType *FTy =
55 return llvm::Constant::getNullValue(FTy->getPointerTo());
58 llvm::Value *CGCXXABI::EmitMemberDataPointerAddress(CodeGenFunction &CGF
    [all...]
  /external/mesa3d/src/glsl/
ir_to_llvm.cpp 30 * Translates the IR to LLVM
38 #include "llvm/ADT/ArrayRef.h"
39 #include "llvm/DerivedTypes.h"
40 #include "llvm/LLVMContext.h"
41 #include "llvm/Module.h"
42 #include "llvm/Analysis/Verifier.h"
43 #include "llvm/Support/IRBuilder.h"
44 //#include "llvm/Intrinsics.h"
67 // Helper function to convert array to llvm::ArrayRef
69 static inline llvm::ArrayRef<T> pack(T const (&array)[N])
    [all...]
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 3 // The LLVM Compiler Infrastructure
16 #include "llvm/Support/MemoryBuffer.h"
17 #include "llvm/Support/FileSystem.h"
18 #include "llvm/Support/Signals.h"
19 #include "llvm/Support/system_error.h"
24 static llvm::cl::opt<bool>
26 llvm::cl::desc("Just check for issues that need to be handled manually"));
28 //static llvm::cl::opt<bool>
30 //llvm::cl::desc("Test the result of transformations by parsing it in ARC mode"));
32 static llvm::cl::opt<bool
    [all...]
  /external/clang/include/clang/ARCMigrate/
FileRemapper.h 3 // The LLVM Compiler Infrastructure
13 #include "clang/Basic/LLVM.h"
14 #include "llvm/ADT/OwningPtr.h"
15 #include "llvm/ADT/PointerUnion.h"
16 #include "llvm/ADT/DenseMap.h"
17 #include "llvm/ADT/StringRef.h"
19 namespace llvm { namespace
33 llvm::OwningPtr<FileManager> FileMgr;
35 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
CFGReachabilityAnalysis.h 3 // The LLVM Compiler Infrastructure
19 #include "llvm/ADT/BitVector.h"
20 #include "llvm/ADT/DenseMap.h"
33 typedef llvm::BitVector ReachableSet;
34 typedef llvm::DenseMap<unsigned, ReachableSet> ReachableMap;

Completed in 246 milliseconds

<<11121314151617181920>>