/external/llvm/test/Linker/ |
2003-08-28-TypeResolvesGlobal3.ll | 1 ; RUN: llvm-as < %s > %t.out1.bc 2 ; RUN: echo "%M = type i32" | llvm-as > %t.out2.bc 3 ; RUN: llvm-link %t.out2.bc %t.out1.bc
|
2005-02-12-ConstantGlobals.ll | 4 ; RUN: echo "@X = global i32 7" | llvm-as > %t.2.bc 5 ; RUN: llvm-as < %s > %t.1.bc 6 ; RUN: llvm-link %t.1.bc %t.2.bc -S | FileCheck %s
|
2005-12-06-AppendingZeroLengthArrays.ll | 2 ; RUN: llvm-as > %t.out2.bc 3 ; RUN: llvm-as < %s > %t.out1.bc 4 ; RUN: llvm-link %t.out1.bc %t.out2.bc -S | FileCheck %s
|
AppendingLinkage2.ll | 4 ; RUN: llvm-as > %t.2.bc 5 ; RUN: llvm-as < %s > %t.1.bc 6 ; RUN: llvm-link %t.1.bc %t.2.bc -S | FileCheck %s
|
ConstantGlobals1.ll | 4 ; RUN: llvm-as > %t.2.bc 5 ; RUN: llvm-as < %s > %t.1.bc 6 ; RUN: llvm-link %t.1.bc %t.2.bc -S | FileCheck %s
|
ConstantGlobals2.ll | 4 ; RUN: llvm-as > %t.2.bc 5 ; RUN: llvm-as < %s > %t.1.bc 6 ; RUN: llvm-link %t.1.bc %t.2.bc -S | FileCheck %s
|
ConstantGlobals3.ll | 4 ; RUN: llvm-as > %t.2.bc 5 ; RUN: llvm-as < %s > %t.1.bc 6 ; RUN: llvm-link %t.1.bc %t.2.bc -S | FileCheck %s
|
link-messages.ll | 3 ; RUN: llvm-as %s -o %t.one.bc 4 ; RUN: llvm-as %s -o %t.two.bc 5 ; RUN: not llvm-link %t.one.bc %t.two.bc -o %t.bc 2>&1 | FileCheck %s
|
module-flags-3-a.ll | 1 ; RUN: llvm-link %s %p/module-flags-3-b.ll -S -o - | sort | FileCheck %s 9 ; CHECK: !llvm.module.flags = !{!0, !1, !2} 14 !llvm.module.flags = !{ !0, !1 }
|
/external/llvm/test/MC/ARM/ |
dwarf-cfi-initial-state.s | 1 # RUN: llvm-mc < %s -triple=armv7-linux-gnueabi -filetype=obj -o - \ 2 # RUN: | llvm-dwarfdump - | FileCheck %s 13 # When llvm-dwarfdump prints the full info for the DW_CFA_def_cfa
|
/external/llvm/test/MC/Disassembler/AArch64/ |
arm64-basic-a64-undefined.txt | 4 # RUN: echo "0x00 0x08 0x20 0xf8" | llvm-mc -triple arm64 -disassemble 2>&1 | FileCheck %s 5 # RUN: echo "0x00 0x88 0x20 0xf8" | llvm-mc -triple arm64 -disassemble 2>&1 | FileCheck %s 9 # RUN: echo "0x00 0x10 0xa0 0x0b" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s 10 # RUN: echo "0x00 0x10 0x60 0x0b" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s 11 # RUN: echo "0x00 0x14 0x20 0x0b" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s 14 # RUN: echo "0x00 0x00 0xc0 0x72" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s 17 # RUN: echo "0x00 0x00 0xc0 0xeb" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s 18 # RUN: echo "0x00 0x80 0x80 0x6b" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s 21 # RUN: echo "0x00 0x80 0x00 0x53" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s 24 # RUN: echo "0x00 0x40 0x00 0x2e" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck % [all...] |
/external/llvm/test/MC/ELF/ |
x86_64-reloc-sizetest.s | 1 // RUN: llvm-mc -triple x86_64-linux-gnu -filetype=obj %s | llvm-readobj -r | FileCheck %s 4 // Original bug http://llvm.org/bugs/show_bug.cgi?id=10568
|
/external/llvm/test/MC/Mips/ |
elf_eflags_nan2008.s | 1 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips32 %s -o - | \ 2 # RUN: llvm-readobj -h | \ 4 # RUN: llvm-mc -triple mipsel-unknown-linux -mcpu=mips32 %s -o -| \
|
/external/llvm/test/Object/ |
extract.ll | 3 ; This test just makes sure that llvm-ar can extract bytecode members 11 ; RUN: llvm-ar p %p/Inputs/GNU.a very_long_bytecode_file_name.bc | \ 13 ; RUN: llvm-ar x %p/Inputs/GNU.a very_long_bytecode_file_name.bc 18 ; RUN: llvm-ar p %p/Inputs/MacOSX.a very_long_bytecode_file_name.bc | \ 20 ; RUN: llvm-ar x %p/Inputs/MacOSX.a very_long_bytecode_file_name.bc 25 ; RUN: llvm-ar p %p/Inputs/SVR4.a very_long_bytecode_file_name.bc | \ 27 ; RUN: llvm-ar x %p/Inputs/SVR4.a very_long_bytecode_file_name.bc 32 ; RUN: llvm-ar p %p/Inputs/xpg4.a very_long_bytecode_file_name.bc |\ 34 ; RUN: llvm-ar x %p/Inputs/xpg4.a very_long_bytecode_file_name.bc 42 ; RUN: llvm-ar xo %p/Inputs/GNU.a very_long_bytecode_file_name.b [all...] |
/external/llvm/test/Other/ |
llvm-nm-without-aliases.ll | 1 ; RUN: llvm-as < %s > %t 2 ; RUN: llvm-nm -without-aliases - < %t | FileCheck %s 3 ; RUN: llvm-nm - < %t | FileCheck --check-prefix=WITH %s
|
/external/llvm/test/Transforms/GlobalOpt/ |
invariant-nodatalayout.ll | 4 declare {}* @llvm.invariant.start(i64 %size, i8* nocapture %ptr) 11 call {}* @llvm.invariant.start(i64 4, i8* %ptr) 15 @llvm.global_ctors = appending constant
|
/external/llvm/test/Transforms/Inline/ |
lifetime-no-datalayout.ll | 11 ; Size in llvm.lifetime.X should be -1 (unknown). 15 ; CHECK: llvm.lifetime.start(i64 -1 17 ; CHECK: llvm.lifetime.end(i64 -1
|
/external/llvm/test/Transforms/InstCombine/ |
pow-3.ll | 5 declare double @llvm.pow.f64(double %Val, double %Power) 9 %retval = call double @llvm.pow.f64(double %x, double 0.5) 10 ; CHECK-NEXT: call double @llvm.pow.f64(double %x, double 5.000000e-01)
|
x86-crc32-demanded.ll | 9 ; CHECK: tail call i64 @llvm.x86.sse42.crc32.64.64 12 %0 = tail call i64 @llvm.x86.sse42.crc32.64.64(i64 0, i64 4) nounwind 17 declare i64 @llvm.x86.sse42.crc32.64.64(i64, i64) nounwind readnone
|
/external/llvm/test/Verifier/ |
2008-08-22-MemCpyAlignment.ll | 1 ; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s 7 tail call void @llvm.memcpy.p0i8.p0i8.i64( i8* %a, i8* %src, i64 %len, i32 %align, i1 false) nounwind 11 declare void @llvm.memcpy.p0i8.p0i8.i64( i8* %a, i8* %src, i64 %len, i32, i1)
|
/external/llvm/unittests/IR/ |
VerifierTest.cpp | 1 //===- llvm/unittest/IR/VerifierTest.cpp - Verifier unit tests ------------===// 3 // The LLVM Compiler Infrastructure 10 #include "llvm/IR/Verifier.h" 11 #include "llvm/IR/Constants.h" 12 #include "llvm/IR/DerivedTypes.h" 13 #include "llvm/IR/Function.h" 14 #include "llvm/IR/GlobalAlias.h" 15 #include "llvm/IR/GlobalVariable.h" 16 #include "llvm/IR/Instructions.h" 17 #include "llvm/IR/LLVMContext.h 21 namespace llvm { namespace [all...] |
/frameworks/compile/mclinker/tools/mcld/lib/ |
SymbolOptions.cpp | 15 llvm::cl::list<std::string> ArgForceUndefined("u", 16 llvm::cl::ZeroOrMore, 17 llvm::cl::desc("Force symbol to be undefined in the output file"), 18 llvm::cl::value_desc("symbol")); 20 llvm::cl::alias ArgForceUndefinedAlias("undefined", 21 llvm::cl::ZeroOrMore, 22 llvm::cl::desc("alias for -u"), 23 llvm::cl::aliasopt(ArgForceUndefined)); 25 llvm::cl::opt<std::string> ArgVersionScript("version-script", 26 llvm::cl::desc("Version script.") [all...] |
/frameworks/compile/slang/ |
llvm-rs-as.cpp | 1 //===--- llvm-as.cpp - The low-level LLVM assembler -----------------------===// 3 // The LLVM Compiler Infrastructure 11 // llvm-as --help - Output information about command line switches 12 // llvm-as [options] - Read LLVM asm from stdin, write bitcode to stdout 13 // llvm-as [options] x.ll - Read LLVM asm from the x.ll file, write bitcode 18 #include "llvm/IR/LLVMContext.h" 19 #include "llvm/IR/Verifier.h [all...] |
/external/llvm/test/CodeGen/Mips/msa/ |
spill.ll | 76 %r1 = call <16 x i8> @llvm.mips.addv.b(<16 x i8> %0, <16 x i8> %1) 77 %r2 = call <16 x i8> @llvm.mips.addv.b(<16 x i8> %r1, <16 x i8> %2) 78 %r3 = call <16 x i8> @llvm.mips.addv.b(<16 x i8> %r2, <16 x i8> %3) 79 %r4 = call <16 x i8> @llvm.mips.addv.b(<16 x i8> %r3, <16 x i8> %4) 80 %r5 = call <16 x i8> @llvm.mips.addv.b(<16 x i8> %r4, <16 x i8> %5) 81 %r6 = call <16 x i8> @llvm.mips.addv.b(<16 x i8> %r5, <16 x i8> %6) 82 %r7 = call <16 x i8> @llvm.mips.addv.b(<16 x i8> %r6, <16 x i8> %7) 83 %r8 = call <16 x i8> @llvm.mips.addv.b(<16 x i8> %r7, <16 x i8> %8) 84 %r9 = call <16 x i8> @llvm.mips.addv.b(<16 x i8> %r8, <16 x i8> %9) 85 %r10 = call <16 x i8> @llvm.mips.addv.b(<16 x i8> %r9, <16 x i8> %10 [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonAsmPrinter.cpp | 3 // The LLVM Compiler Infrastructure 11 // of machine-dependent LLVM code to Hexagon assembly language. This printer is 23 #include "llvm/ADT/SmallString.h" 24 #include "llvm/ADT/SmallVector.h" 25 #include "llvm/ADT/StringExtras.h" 26 #include "llvm/Analysis/ConstantFolding.h" 27 #include "llvm/CodeGen/AsmPrinter.h" 28 #include "llvm/CodeGen/MachineFunctionPass.h" 29 #include "llvm/CodeGen/MachineInstr.h" 30 #include "llvm/CodeGen/MachineInstrBuilder.h [all...] |