/external/llvm/test/CodeGen/Mips/ |
analyzebranch.ll | 3 ; RUN: llc -march=mips -mcpu=mips32r6 < %s | FileCheck %s -check-prefix=ALL -check-prefix=GPR -check-prefix=32-GPR 7 ; RUN: llc -march=mips64 -mcpu=mips64r6 < %s | FileCheck %s -check-prefix=ALL -check-prefix=GPR -check-prefix=64-GPR 16 ; 32-GPR: mtc1 $zero, $[[Z:f[0-9]]] 17 ; 32-GPR: mthc1 $zero, $[[Z:f[0-9]]] 18 ; 64-GPR: dmtc1 $zero, $[[Z:f[0-9]]] 19 ; GPR: cmp.lt.d $[[FGRCC:f[0-9]+]], $[[Z]], $f12 20 ; GPR: mfc1 $[[GPRCC:[0-9]+]], $[[FGRCC]] 21 ; GPR-NOT: not $[[GPRCC]], $[[GPRCC] [all...] |
fpbr.ll | 3 ; RUN: llc < %s -march=mipsel -mcpu=mips32r6 | FileCheck %s -check-prefix=ALL -check-prefix=GPR -check-prefix=32-GPR 6 ; RUN: llc < %s -march=mips64el -mcpu=mips64r6 | FileCheck %s -check-prefix=ALL -check-prefix=GPR -check-prefix=64-GPR 16 ; 32-GPR: cmp.eq.s $[[FGRCC:f[0-9]+]], $f12, $f14 17 ; 64-GPR: cmp.eq.s $[[FGRCC:f[0-9]+]], $f12, $f13 18 ; GPR: mfc1 $[[GPRCC:[0-9]+]], $[[FGRCC:f[0-9]+]] 20 ; GPR: not $[[GPRCC]], $[[GPRCC]] 21 ; GPR: bnez $[[GPRCC]], $BB0_2 50 ; 32-GPR: cmp.ule.s $[[FGRCC:f[0-9]+]], $f14, $f1 [all...] |
mips64muldiv.ll | 4 ; RUN: llc -march=mips64el -mcpu=mips64r6 < %s | FileCheck %s -check-prefix=ALL -check-prefix=GPR 9 ; GPR - Targets with register based mul/div (i.e. MIPS32r6) 16 ; GPR: dmul $2, ${{[45]}}, ${{[45]}} 33 ; GPR: dmuh $[[T1:[0-9]+]], $4, $[[T0]] 46 ; GPR: ddivu $2, $4, $5 56 ; GPR: ddiv $2, $4, $5 66 ; GPR: dmodu $2, $4, $5 76 ; GPR: dmod $2, $4, $5
|
/external/llvm/test/CodeGen/R600/ |
128bit-kernel-args.ll | 5 ; R600-CHECK-DAG: MOV {{[* ]*}}T[[GPR:[0-9]]].X, KC0[3].Y 6 ; R600-CHECK-DAG: MOV {{[* ]*}}T[[GPR]].Y, KC0[3].Z 7 ; R600-CHECK-DAG: MOV {{[* ]*}}T[[GPR]].Z, KC0[3].W 8 ; R600-CHECK-DAG: MOV {{[* ]*}}T[[GPR]].W, KC0[4].X 18 ; R600-CHECK-DAG: MOV {{[* ]*}}T[[GPR:[0-9]]].X, KC0[3].Y 19 ; R600-CHECK-DAG: MOV {{[* ]*}}T[[GPR]].Y, KC0[3].Z 20 ; R600-CHECK-DAG: MOV {{[* ]*}}T[[GPR]].Z, KC0[3].W 21 ; R600-CHECK-DAG: MOV {{[* ]*}}T[[GPR]].W, KC0[4].X
|
vertex-fetch-encoding.ll | 5 ; NI-CHECK: VTX_READ_32 T[[GPR:[0-9]]].X, T[[GPR]].X, 0 ; encoding: [0x40,0x01,0x0[[GPR]],0x10,0x0[[GPR]],0xf0,0x5f,0x13,0x00,0x00,0x08,0x00 7 ; CM-CHECK: VTX_READ_32 T[[GPR:[0-9]]].X, T[[GPR]].X, 0 ; encoding: [0x40,0x01,0x0[[GPR]],0x00,0x0[[GPR]],0xf0,0x5f,0x13,0x00,0x00,0x00,0x00
|
literals.ll | 39 ; CHECK: MOV {{\** *}}T[[GPR:[0-9]]].X, 0.0 40 ; CHECK-NEXT: MOV {{\** *}}T[[GPR]].Y, 0.0 41 ; CHECK-NEXT: MOV {{\** *}}T[[GPR]].Z, 0.0 42 ; CHECK-NEXT: MOV {{\** *}}T[[GPR]].W, 0.0 51 ; CHECK: DOT4 T[[GPR:[0-9]]].X, 1.0 52 ; CHECK-NEXT: DOT4 T[[GPR]].Y (MASKED), 1.0 53 ; CHECK-NEXT: DOT4 T[[GPR]].Z (MASKED), 1.0 54 ; CHECK-NEXT: DOT4 * T[[GPR]].W (MASKED), 1.0
|
/external/llvm/lib/Target/ARM/ |
ARMInstrInfo.td | 352 def sext_16_node : PatLeaf<(i32 GPR:$a), [{ 550 let MIOperandInfo = (ops GPR, i32imm); 561 let MIOperandInfo = (ops GPR, GPR, i32imm); 572 let MIOperandInfo = (ops GPR, i32imm); [all...] |
/external/lldb/source/Plugins/Process/Utility/ |
RegisterContextMach_arm.cpp | 36 RegisterContextMach_arm::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) 39 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count); 64 RegisterContextMach_arm::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) 66 return ::thread_set_state(tid, flavor, (thread_state_t)&gpr, GPRWordCount);
|
RegisterContextMach_i386.cpp | 34 RegisterContextMach_i386::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) 37 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count); 55 RegisterContextMach_i386::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) 57 return ::thread_set_state(tid, flavor, (thread_state_t)&gpr, GPRWordCount);
|
RegisterContextMach_x86_64.cpp | 34 RegisterContextMach_x86_64::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) 37 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count); 55 RegisterContextMach_x86_64::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) 57 return ::thread_set_state(tid, flavor, (thread_state_t)&gpr, GPRWordCount);
|
RegisterContextMach_arm.h | 32 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr); 44 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
|
RegisterContextMach_i386.h | 31 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr); 40 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
|
RegisterContextMach_x86_64.h | 31 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr); 40 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
|
/external/lldb/source/Plugins/Process/MacOSX-Kernel/ |
RegisterContextKDP_arm.cpp | 34 RegisterContextKDP_arm::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) 40 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, GPRRegSet, &gpr, sizeof(gpr), error)) 98 RegisterContextKDP_arm::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) 104 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestWriteRegisters (tid, GPRRegSet, &gpr, sizeof(gpr), error))
|
RegisterContextKDP_i386.cpp | 34 RegisterContextKDP_i386::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) 40 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, GPRRegSet, &gpr, sizeof(gpr), error)) 82 RegisterContextKDP_i386::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) 88 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestWriteRegisters (tid, GPRRegSet, &gpr, sizeof(gpr), error))
|
RegisterContextKDP_x86_64.cpp | 34 RegisterContextKDP_x86_64::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) 40 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, GPRRegSet, &gpr, sizeof(gpr), error)) 82 RegisterContextKDP_x86_64::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) 88 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestWriteRegisters (tid, GPRRegSet, &gpr, sizeof(gpr), error))
|
RegisterContextKDP_arm.h | 35 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr); 47 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
|
RegisterContextKDP_i386.h | 33 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr); 42 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
|
RegisterContextKDP_x86_64.h | 34 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr); 43 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
|
/external/valgrind/main/none/tests/mips64/ |
arithmetic_instruction.c | 28 /* If either GPR rt or GPR rs does not contain sign-extended 36 /* If GPR rs does not contain a sign-extended 32-bit 46 /* If GPR rs does not contain a sign-extended 32-bit 56 /* If either GPR rt or GPR rs does not contain sign-extended 64 /* If GPR rs does not contain a sign-extended 32-bit 71 /* If GPR rs does not contain a sign-extended 32-bit 134 /* If the divisor in GPR rt is zero, the arithmetic result value 145 /* If the divisor in GPR rt is zero, the arithmetic result valu [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZMachineFunctionInfo.h | 32 // Get and set the first call-saved GPR that should be saved and restored 37 // Get and set the last call-saved GPR that should be saved and restored 45 void setVarArgsFirstGPR(unsigned GPR) { VarArgsFirstGPR = GPR; }
|
/external/compiler-rt/lib/builtins/arm/ |
eqsf2vfp.S | 22 vmov s14, r0 // move from GPR 0 to float register 23 vmov s15, r1 // move from GPR 1 to float register
|
gesf2vfp.S | 22 vmov s14, r0 // move from GPR 0 to float register 23 vmov s15, r1 // move from GPR 1 to float register
|
gtsf2vfp.S | 22 vmov s14, r0 // move from GPR 0 to float register 23 vmov s15, r1 // move from GPR 1 to float register
|
lesf2vfp.S | 22 vmov s14, r0 // move from GPR 0 to float register 23 vmov s15, r1 // move from GPR 1 to float register
|