/external/llvm/test/CodeGen/MSP430/ |
lit.local.cfg | 1 if not 'MSP430' in config.root.targets:
|
DbgValueOtherTargets.test | 1 RUN: llc -O0 -march=msp430 -asm-verbose < %S/../Inputs/DbgValueOtherTargets.ll | FileCheck %S/../Inputs/DbgValueOtherTargets.ll
|
2009-05-19-DoubleSplit.ll | 1 ; RUN: llc < %s -march=msp430
|
2009-05-17-Shift.ll | 1 ; RUN: llc < %s -march=msp430 | grep rra | count 1
|
2009-12-21-FrameAddr.ll | 4 target triple = "msp430-unknown-linux-gnu"
|
asm-clobbers.ll | 4 target triple = "msp430---elf"
|
/external/llvm/lib/Target/MSP430/ |
MSP430RegisterInfo.cpp | 1 //===-- MSP430RegisterInfo.cpp - MSP430 Register Information --------------===// 10 // This file contains the MSP430 implementation of the TargetRegisterInfo class. 15 #include "MSP430.h" 29 #define DEBUG_TYPE "msp430-reg-info" 36 : MSP430GenRegisterInfo(MSP430::PC) {} 43 MSP430::FP, MSP430::R5, MSP430::R6, MSP430::R7, 44 MSP430::R8, MSP430::R9, MSP430::R10, MSP430::R11 [all...] |
MSP430FrameLowering.cpp | 1 //===-- MSP430FrameLowering.cpp - MSP430 Frame Information ----------------===// 10 // This file contains the MSP430 implementation of TargetFrameLowering class. 68 BuildMI(MBB, MBBI, DL, TII.get(MSP430::PUSH16r)) 69 .addReg(MSP430::FP, RegState::Kill); 72 BuildMI(MBB, MBBI, DL, TII.get(MSP430::MOV16rr), MSP430::FP) 73 .addReg(MSP430::SP); 78 I->addLiveIn(MSP430::FP); 84 while (MBBI != MBB.end() && (MBBI->getOpcode() == MSP430::PUSH16r)) 100 BuildMI(MBB, MBBI, DL, TII.get(MSP430::SUB16ri), MSP430::SP [all...] |
MSP430InstrInfo.cpp | 1 //===-- MSP430InstrInfo.cpp - MSP430 Instruction Information --------------===// 10 // This file contains the MSP430 implementation of the TargetInstrInfo class. 15 #include "MSP430.h" 34 : MSP430GenInstrInfo(MSP430::ADJCALLSTACKDOWN, MSP430::ADJCALLSTACKUP), 52 if (RC == &MSP430::GR16RegClass) 53 BuildMI(MBB, MI, DL, get(MSP430::MOV16mr)) 56 else if (RC == &MSP430::GR8RegClass) 57 BuildMI(MBB, MI, DL, get(MSP430::MOV8mr)) 79 if (RC == &MSP430::GR16RegClass [all...] |
LLVMBuild.txt | 1 ;===- ./lib/Target/MSP430/LLVMBuild.txt ------------------------*- Conf -*--===; 23 name = MSP430 30 parent = MSP430 32 add_to_library_groups = MSP430
|
MSP430.h | 1 //==-- MSP430.h - Top-level interface for MSP430 representation --*- C++ -*-==// 11 // the LLVM MSP430 backend. 22 // MSP430 specific condition code.
|
MSP430Subtarget.cpp | 1 //===-- MSP430Subtarget.cpp - MSP430 Subtarget Information ----------------===// 10 // This file implements the MSP430 specific subclass of TargetSubtargetInfo. 15 #include "MSP430.h" 20 #define DEBUG_TYPE "msp430-subtarget"
|
/toolchain/binutils/binutils-2.25/opcodes/ |
msp430-decode.opc | 28 #include "opcode/msp430-decode.h" 34 MSP430_Opcode_Decoded *msp430; 51 if (ld->op_ptr == ld->msp430->n_bytes) 56 ld->op [(ld->msp430->n_bytes++)^1] = b; 58 while (ld->msp430->n_bytes & 1); 63 #define ID(x) msp430->id = x 65 #define OP(n, t, r, a) (msp430->op[n].type = t, \ 66 msp430->op[n].reg = r, \ 67 msp430->op[n].addend = a) 70 (msp430->op[n].type = t, [all...] |
msp430-decode.c | 1 #line 1 "msp430-decode.opc" 29 #include "opcode/msp430-decode.h" 35 MSP430_Opcode_Decoded *msp430; member in struct:__anon76359 52 if (ld->op_ptr == ld->msp430->n_bytes) 57 ld->op [(ld->msp430->n_bytes++)^1] = b; 59 while (ld->msp430->n_bytes & 1); 64 #define ID(x) msp430->id = x 66 #define OP(n, t, r, a) (msp430->op[n].type = t, \ 67 msp430->op[n].reg = r, \ 68 msp430->op[n].addend = a 167 MSP430_Opcode_Decoded *msp430 = ld->msp430; local 194 MSP430_Opcode_Decoded *msp430 = ld->msp430; local 273 MSP430_Opcode_Decoded *msp430 = ld->msp430; local [all...] |
/toolchain/binutils/binutils-2.25/ld/emulparams/ |
msp430X.sh | 1 . ${srcdir}/emulparams/msp430.sh
|
msp430.sh | 8 OUTPUT_FORMAT="elf32-msp430"
|
/external/llvm/lib/Target/MSP430/TargetInfo/ |
MSP430TargetInfo.cpp | 1 //===-- MSP430TargetInfo.cpp - MSP430 Target Implementation ---------------===// 10 #include "MSP430.h" 18 RegisterTarget<Triple::msp430> 19 X(TheMSP430Target, "msp430", "MSP430 [experimental]");
|
/external/clang/test/Misc/ |
ast-dump-msp430-attr.c | 1 // RUN: %clang_cc1 -triple msp430-unknown-unknown -ast-dump -ast-dump-filter Test %s | FileCheck --strict-whitespace %s
|
/external/clang/test/Sema/ |
attr-msp430.c | 1 // RUN: %clang_cc1 -triple msp430-unknown-unknown -fsyntax-only -verify %s
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/ |
sleb128-4.d | 3 #skip: msp430*-*-*
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/msp430/ |
msp430.exp | 18 # msp430 tests 21 if [expr [istarget "msp430-*-*"]] then {
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
init-fini-arrays.d | 4 #xfail: cr16-*-* crx-*-* msp430-*-* 5 # msp430 puts the init_array and fini_array inside the .rodata section.
|
/external/llvm/lib/Target/MSP430/MCTargetDesc/ |
MSP430MCTargetDesc.h | 1 //===-- MSP430MCTargetDesc.h - MSP430 Target Descriptions -------*- C++ -*-===// 10 // This file provides MSP430 specific target descriptions. 26 // Defines symbolic names for MSP430 registers. 31 // Defines symbolic names for the MSP430 instructions.
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/ |
struct.d | 6 # some toolchains, eg msp430-elf will add _crt0_movedata.
|
/external/clang/test/Preprocessor/ |
stdint.c | 430 // RUN: %clang_cc1 -E -ffreestanding -triple=msp430-none-none %s | FileCheck -check-prefix MSP430 %s 432 // MSP430:typedef long int int32_t; 433 // MSP430:typedef long unsigned int uint32_t; 434 // MSP430:typedef int32_t int_least32_t; 435 // MSP430:typedef uint32_t uint_least32_t; 436 // MSP430:typedef int32_t int_fast32_t; 437 // MSP430:typedef uint32_t uint_fast32_t; 439 // MSP430:typedef short int16_t; 440 // MSP430:typedef unsigned short uint16_t [all...] |