Searched refs:ME (Results 1 - 25 of 113) sorted by last modified time

12345

/external/valgrind/main/VEX/priv/
H A Dhost_ppc_defs.c3299 UInt f3, UInt MB, UInt ME, UInt Rc )
3307 vassert(ME < 0x20);
3310 (f3<<11) | (MB<<6) | (ME<<1) | (Rc));
3298 mkFormM( UChar* p, UInt opc1, UInt r1, UInt r2, UInt f3, UInt MB, UInt ME, UInt Rc ) argument
/external/qemu/disas/
H A Dppc.c657 /* The ME field in an M form instruction. */
658 #define ME LS + 1
662 /* The MB and ME fields in an M form instruction expressed a single
666 #define MBE ME + 1
670 /* The MB or ME field in an MD or MDS form instruction. The high
1246 /* The MB and ME fields in an M form instruction expressed as a single
1334 /* The MB or ME field in an MD or MDS form instruction. The high bit
1687 /* An M form instruction with the ME field specified. */
1690 /* An M_MASK with the MB and ME fields fixed. */
1693 /* An M_MASK with the SH and ME field
654 #define ME macro
[all...]
/external/qemu/distrib/ext4_utils/src/
H A Dtest_ext4fixup5 ME=`basename $0`
9 echo "$ME: Usage: $ME <iterations> <maxcount> <filesystem_image>" >&2
21 echo "$ME: Filesystem image $NEW_FS_IMAGE does not exist" >&2
35 echo "$ME: ext4fixup failed!\n"
63 echo "$ME: test failed with parameters $PHASE, $LOC, $COUNT"
/external/openssl/ssl/
H A Dd1_pkt.c1015 FIX ME
/external/llvm/tools/bugpoint/
H A DCrashDebugger.cpp398 for (Module::iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI)
531 ME = BD.getProgram()->end(); MI != ME; ++MI)
/external/llvm/lib/Analysis/IPA/
H A DFindUsedTypes.cpp69 for (Module::iterator MI = m.begin(), ME = m.end(); MI != ME; ++MI) {
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp5943 if (const SCEVMulExpr *ME = dyn_cast<SCEVMulExpr>(AE->getOperand(0)))
5944 if (AE->getNumOperands() == 2 && ME->getNumOperands() == 2 &&
5945 ME->getOperand(0)->isAllOnesValue()) {
5947 LHS = ME->getOperand(1);
/external/llvm/lib/CodeGen/
H A DErlangGC.cpp65 for (MachineBasicBlock::iterator MI = BBI->begin(), ME = BBI->end();
66 MI != ME; ++MI)
H A DGCStrategy.cpp374 ME = BBI->end(); MI != ME; ++MI)
H A DLiveIntervalAnalysis.cpp210 for (MachineBasicBlock::iterator MI = MBB->begin(), ME = MBB->end();
211 MI != ME; ++MI)
H A DMachineBasicBlock.cpp612 ME = Succ->instr_end(); MI != ME && MI->isPHI(); ++MI)
H A DMachineScheduler.cpp807 for (MachineBasicBlock::iterator MI = begin(), ME = end(); MI != ME; ++MI) {
H A DRegisterScavenging.cpp294 MachineBasicBlock::iterator ME = MBB->getFirstTerminator(); local
295 assert(StartMI != ME && "MI already at terminator");
300 for (++MI; InstrLimit > 0 && MI != ME; ++MI, --InstrLimit) {
343 if (MI == ME) RestorePointMI = ME;
/external/llvm/lib/IR/
H A DDebugInfo.cpp1508 for (Module::iterator MI = M.begin(), ME = M.end(); MI != ME; ++MI)
/external/llvm/lib/Target/ARM/
H A DA15SDOptimizer.cpp692 for (MachineBasicBlock::iterator MI = MFI->begin(), ME = MFI->end();
693 MI != ME;) {
/external/llvm/lib/Target/Hexagon/
H A DHexagonMCInstLower.cpp30 const MCExpr *ME; local
32 ME = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None, MC);
35 ME = MCBinaryExpr::CreateAdd(ME, MCConstantExpr::Create(MO.getOffset(), MC),
38 return (MCOperand::CreateExpr(ME));
/external/llvm/lib/Target/Mips/InstPrinter/
H A DMipsInstPrinter.cpp134 } else if (const MipsMCExpr *ME = dyn_cast<MipsMCExpr>(Expr)) {
135 ME->print(OS);
/external/llvm/lib/Target/PowerPC/InstPrinter/
H A DPPCInstPrinter.cpp45 unsigned char ME = MI->getOperand(4).getImm(); local
47 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
50 if (SH <= 31 && MB == (32-SH) && ME == 31) {
77 unsigned char ME = MI->getOperand(3).getImm(); local
79 if (63-SH == ME) {
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp101 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
107 unsigned &SH, unsigned &MB, unsigned &ME);
346 bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) { argument
354 ME = countLeadingZeros((Val - 1) ^ Val);
360 ME = countLeadingZeros(Val) - 1;
372 unsigned &MB, unsigned &ME) {
407 return isRunOfOnes(Mask, MB, ME);
454 unsigned MB, ME; local
455 if (isRunOfOnes(InsertMask, MB, ME)) {
483 getI32Imm(ME) };
370 isRotateAndMask(SDNode *N, unsigned Mask, bool isShiftMask, unsigned &SH, unsigned &MB, unsigned &ME) argument
1147 unsigned Imm, Imm2, SH, MB, ME; local
1199 unsigned MB, ME; local
1220 unsigned Imm, SH, MB, ME; local
1232 unsigned Imm, SH, MB, ME; local
[all...]
H A DPPCInstrInfo.cpp243 // M = mask(MB,ME)
246 // M = mask((ME+1)&31, (MB-1)&31)
271 unsigned ME = MI->getOperand(5).getImm(); local
281 .addImm((ME+1) & 31)
297 MI->getOperand(4).setImm((ME+1) & 31);
H A DPPCJITInfo.cpp39 #define BUILD_RLDICR(RD,RS,SH,ME) \
41 (((ME) & 63) << 6) | (1 << 2) | ((((SH) >> 5) & 1) << 1))
/external/llvm/lib/Target/R600/
H A DR600ControlFlowFinalizer.cpp485 for (MachineFunction::iterator MB = MF.begin(), ME = MF.end(); MB != ME;
/external/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp1557 for (MachineBasicBlock::iterator MI = MBBI->begin(), ME = MBBI->end();
1558 MI != ME; ++MI) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp310 static bool isRunOfOnes(ConstantInt *Val, uint32_t &MB, uint32_t &ME) { argument
318 ME = V.getActiveBits();
354 uint32_t MB = 0, ME = 0; local
355 if (isRunOfOnes(Mask, MB, ME)) { // begin/end bit of run, inclusive
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp730 ME = Other.top_down_ptr_end(); MI != ME; ++MI) {
739 ME = top_down_ptr_end(); MI != ME; ++MI)
774 ME = Other.bottom_up_ptr_end(); MI != ME; ++MI) {
783 ME = bottom_up_ptr_end(); MI != ME; ++MI)
1831 ME = MyStates.bottom_up_ptr_end(); MI != ME;
[all...]

Completed in 442 milliseconds

12345