/external/llvm/test/MC/Mips/ |
micromips-pc16-fixup.s | 1 # RUN: llvm-mc %s -triple=mips-unknown-linux -mcpu=mips32r2 -arch=mips -mattr=+micromips 2>&1 -filetype=obj | FileCheck %s 3 # CHECK-NOT: LLVM ERROR: out of range PC16 fixup
|
mips-pc16-fixup.s | 1 # RUN: llvm-mc %s -triple=mips-unknown-linux -mcpu=mips32r2 -arch=mips 2>&1 -filetype=obj | FileCheck %s 3 # CHECK-NOT: LLVM ERROR: out of range PC16 fixup
|
/external/llvm/test/MC/Sparc/ |
sparc-directive-xword.s | 1 ! RUN: not llvm-mc %s -arch=sparc -show-encoding 2>&1 | FileCheck %s --check-prefix=SPARC32 2 ! RUN: llvm-mc %s -arch=sparcv9 -show-encoding | FileCheck %s --check-prefix=SPARC64
|
/external/llvm/test/Object/ |
archive-extract-dir.test | 8 RUN: llvm-ar rc test.a foo 11 RUN: not llvm-ar x test.a foo 2>&1 | FileCheck %s
|
/external/llvm/test/Other/ |
2004-08-16-PackedGlobalConstant.ll | 1 ; RUN: llvm-as < %s | llvm-dis
|
2008-10-15-MissingSpace.ll | 1 ; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
/external/llvm/test/Transforms/InstCombine/ |
copysign.ll | 3 declare float @llvm.copysign.f32(float, float) #0 4 declare double @llvm.copysign.f64(double, double) #0 9 %x = call float @llvm.copysign.f32(float 1.0, float -2.0) #0 16 %x = call float @llvm.copysign.f32(float -2.0, float 1.0) #0 23 %x = call float @llvm.copysign.f32(float -2.0, float -1.0) #0 30 %x = call double @llvm.copysign.f64(double 1.0, double -2.0) #0 37 %x = call double @llvm.copysign.f64(double -1.0, double 2.0) #0 44 %x = call double @llvm.copysign.f64(double -1.0, double -2.0) #0
|
/external/llvm/test/Verifier/ |
2006-10-15-AddrLabel.ll | 1 ; RUN: not llvm-as < %s > /dev/null 2> %t 6 %foo = call i8* %llvm.stacksave()
|
/external/llvm/tools/llvm-as/ |
Android.mk | 4 llvm-as.cpp 8 LOCAL_MODULE := llvm-as
|
/external/llvm/tools/llvm-objdump/ |
llvm-objdump.h | 1 //===-- llvm-objdump.h ----------------------------------------------------===// 3 // The LLVM Compiler Infrastructure 13 #include "llvm/ADT/StringRef.h" 14 #include "llvm/Support/CommandLine.h" 15 #include "llvm/Support/DataTypes.h" 16 #include "llvm/Support/StringRefMemoryObject.h" 18 namespace llvm { namespace 37 } // end namespace llvm
|
/external/llvm/tools/lto/ |
LTODisassembler.cpp | 3 // The LLVM Compiler Infrastructure 15 #include "llvm-c/lto.h" 16 #include "llvm/Support/TargetSelect.h" 18 using namespace llvm; 22 llvm::InitializeAllTargetInfos(); 23 llvm::InitializeAllTargetMCs(); 24 llvm::InitializeAllAsmParsers(); 25 llvm::InitializeAllDisassemblers();
|
/external/llvm/utils/ |
lldbDataFormatters.py | 2 LLDB Formatters for LLVM data types. 8 debugger.HandleCommand('type category define -e llvm -l c++') 9 debugger.HandleCommand('type synthetic add -w llvm ' 11 '-x "^llvm::SmallVectorImpl<.+>$"') 12 debugger.HandleCommand('type synthetic add -w llvm ' 14 '-x "^llvm::SmallVector<.+,.+>$"') 16 # Pretty printer for llvm::SmallVector/llvm::SmallVectorImpl
|
/frameworks/compile/mclinker/tools/mcld/include/mcld/ |
PreferenceOptions.h | 11 #include <llvm/Support/CommandLine.h> 33 llvm::cl::opt<bool>& m_Trace; 34 llvm::cl::opt<int>& m_Verbose; 35 llvm::cl::opt<bool>& m_Version; 36 llvm::cl::opt<int>& m_MaxErrorNum; 37 llvm::cl::opt<int>& m_MaxWarnNum; 38 llvm::cl::opt<Color>& m_Color; 39 llvm::cl::opt<bool>& m_PrintMap;
|
/art/compiler/dex/portable/ |
mir_to_gbc.cc | 19 #include <llvm/ADT/DepthFirstIterator.h> 20 #include <llvm/Analysis/Verifier.h> 21 #include <llvm/Bitcode/ReaderWriter.h> 22 #include <llvm/IR/Instruction.h> 23 #include <llvm/IR/Instructions.h> 24 #include <llvm/IR/Metadata.h> 25 #include <llvm/IR/Type.h> 26 #include <llvm/Support/Casting.h> 27 #include <llvm/Support/InstIterator.h> 28 #include <llvm/Support/ToolOutputFile.h 45 namespace llvm { namespace in namespace:art [all...] |
/external/clang/lib/CodeGen/ |
CGDeclCXX.cpp | 1 //===--- CGDeclCXX.cpp - Emit LLVM Code for C++ declarations --------------===// 3 // The LLVM Compiler Infrastructure 18 #include "llvm/ADT/StringExtras.h" 19 #include "llvm/IR/Intrinsics.h" 20 #include "llvm/Support/Path.h" 26 llvm::Constant *DeclPtr) { 66 llvm::Constant *addr) { 88 llvm::Constant *function; 89 llvm::Constant *argument; 100 argument = llvm::ConstantExpr::getBitCast [all...] |
CodeGenAction.cpp | 1 //===--- CodeGenAction.cpp - LLVM Code Generation Frontend Action ---------===// 3 // The LLVM Compiler Infrastructure 22 #include "llvm/ADT/SmallString.h" 23 #include "llvm/Bitcode/ReaderWriter.h" 24 #include "llvm/IR/DebugInfo.h" 25 #include "llvm/IR/DiagnosticInfo.h" 26 #include "llvm/IR/DiagnosticPrinter.h" 27 #include "llvm/IR/LLVMContext.h" 28 #include "llvm/IR/Module.h" 29 #include "llvm/IRReader/IRReader.h [all...] |
CGCXXABI.cpp | 3 // The LLVM Compiler Infrastructure 66 llvm::Constant *CGCXXABI::GetBogusMemberPointer(QualType T) { 67 return llvm::Constant::getNullValue(CGM.getTypes().ConvertType(T)); 70 llvm::Type * 75 llvm::Value *CGCXXABI::EmitLoadOfMemberFunctionPointer( 76 CodeGenFunction &CGF, const Expr *E, llvm::Value *&This, 77 llvm::Value *MemPtr, const MemberPointerType *MPT) { 84 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType( 86 return llvm::Constant::getNullValue(FTy->getPointerTo()); 89 llvm::Value [all...] |
/external/clang/test/CodeGen/ |
annotations-field.c | 1 // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s 4 // CHECK: private unnamed_addr constant [8 x i8] c"v_ann_{{.}}\00", section "llvm.metadata" 5 // CHECK: private unnamed_addr constant [8 x i8] c"v_ann_{{.}}\00", section "llvm.metadata" 18 // CHECK-NEXT: call i8* @llvm.ptr.annotation.p0i8({{.*}}str{{.*}}str{{.*}}i32 8) 21 // CHECK-NEXT: call i8* @llvm.ptr.annotation.p0i8({{.*}}str{{.*}}str{{.*}}i32 8) 25 // CHECK-NEXT: call i8* @llvm.ptr.annotation.p0i8({{.*}}str{{.*}}str{{.*}}i32 8)
|
libcalls-ld.c | 0 // llvm-gcc -O1+ should run simplify libcalls, O0 shouldn't 3 // -fno-math-errno should emit an llvm intrinsic, -fmath-errno should not. 4 // RUN: %clang_cc1 %s -emit-llvm -fno-math-errno -o - | grep {call.*exp2\\..*f} 5 // RUN: %clang_cc1 %s -emit-llvm -fmath-errno -o - | grep {call.*exp2l} 6 // RUN: %clang_cc1 %s -emit-llvm -O1 -o - | grep {call.*ldexp} 7 // RUN: %clang_cc1 %s -emit-llvm -O3 -fno-builtin -o - | grep {call.*exp2l}
|
/external/lldb/scripts/ |
checkpoint-llvm.pl | 3 # This script should be pointed to a valid llvm.build folder that 4 # was created using the "build-llvm.pl" shell script. It will create 5 # a new llvm.zip file that can be checked into the respository 6 # at lldb/llvm.zip 79 my $llvm_source_dir = abs_path(shift @ARGV); # The llvm source that contains full llvm and clang sources 80 my $llvm_build_dir = abs_path(shift @ARGV); # The llvm build directory that contains headers and 84 printf("LLVM sources : '%s'\n", $llvm_source_dir); 85 printf("LLVM build : '%s'\n", $llvm_build_dir); 87 printf("LLVM zip file: '%s'\n", $llvm_zip_file) [all...] |
/external/llvm/include/llvm/TableGen/ |
TableGenBackend.h | 1 //===- llvm/TableGen/TableGenBackend.h - Backend utilities ------*- C++ -*-===// 3 // The LLVM Compiler Infrastructure 17 #include "llvm/ADT/StringRef.h" 19 namespace llvm { namespace 23 /// emitSourceFileHeader - Output an LLVM style file header to the specified 27 } // End llvm namespace
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
ARMException.cpp | 3 // The LLVM Compiler Infrastructure 15 #include "llvm/ADT/SmallString.h" 16 #include "llvm/ADT/StringExtras.h" 17 #include "llvm/ADT/Twine.h" 18 #include "llvm/CodeGen/AsmPrinter.h" 19 #include "llvm/CodeGen/MachineFrameInfo.h" 20 #include "llvm/CodeGen/MachineFunction.h" 21 #include "llvm/CodeGen/MachineModuleInfo.h" 22 #include "llvm/IR/DataLayout.h" 23 #include "llvm/IR/Mangler.h [all...] |
/external/llvm/lib/MC/ |
MCELFObjectTargetWriter.cpp | 3 // The LLVM Compiler Infrastructure 10 #include "llvm/ADT/STLExtras.h" 11 #include "llvm/MC/MCELFObjectWriter.h" 12 #include "llvm/MC/MCExpr.h" 13 #include "llvm/MC/MCValue.h" 15 using namespace llvm;
|
/external/llvm/lib/Target/AArch64/TargetInfo/ |
AArch64TargetInfo.cpp | 3 // The LLVM Compiler Infrastructure 10 #include "llvm/ADT/Triple.h" 11 #include "llvm/Support/TargetRegistry.h" 12 using namespace llvm; 14 namespace llvm { namespace 19 } // end namespace llvm
|
/external/llvm/lib/Target/NVPTX/TargetInfo/ |
NVPTXTargetInfo.cpp | 3 // The LLVM Compiler Infrastructure 11 #include "llvm/IR/Module.h" 12 #include "llvm/Support/TargetRegistry.h" 13 using namespace llvm; 15 Target llvm::TheNVPTXTarget32; 16 Target llvm::TheNVPTXTarget64;
|