Searched defs:MB (Results 26 - 50 of 73) sorted by relevance

123

/external/llvm/lib/Target/Hexagon/
H A DHexagonRegisterInfo.cpp166 MachineBasicBlock &MB = *MI.getParent(); local
167 MachineFunction &MF = *MB.getParent();
200 BuildMI(MB, II, DL, HII.get(Hexagon::A2_addi), TmpR)
H A DRDFLiveness.cpp569 MachineBasicBlock *MB = BA.Addr->getCode(); local
570 auto &LON = PhiLON[MB];
H A DHexagonEarlyIfConv.cpp96 PrintMB(const MachineBasicBlock *B) : MB(B) {}
97 const MachineBasicBlock *MB; member in struct:__anon14328::PrintMB
100 if (!P.MB)
102 return OS << '#' << P.MB->getNumber();
/external/llvm/lib/Target/PowerPC/InstPrinter/
H A DPPCInstPrinter.cpp61 unsigned char MB = MI->getOperand(3).getImm(); local
64 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
67 if (SH <= 31 && MB == (32-SH) && ME == 31) {
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp110 // M = mask(MB,ME)
113 // M = mask((ME+1)&31, (MB-1)&31)
134 unsigned MB = MI->getOperand(4).getImm(); local
146 .addImm((MB-1) & 31);
158 MI->getOperand(5).setImm((MB-1) & 31);
H A DPPCISelDAGToDAG.cpp82 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
88 unsigned &SH, unsigned &MB, unsigned &ME);
310 bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) { argument
313 MB = CountLeadingZeros_32(Val);
323 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
333 unsigned &MB, unsigned &ME) {
368 return isRunOfOnes(Mask, MB, ME);
415 unsigned MB, ME; local
416 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
436 SDValue Ops[] = { Op0, Op1, getI32Imm(SH), getI32Imm(MB),
331 isRotateAndMask(SDNode *N, unsigned Mask, bool isShiftMask, unsigned &SH, unsigned &MB, unsigned &ME) argument
930 unsigned Imm, Imm2, SH, MB, ME; local
959 unsigned MB, ME; local
980 unsigned Imm, SH, MB, ME; local
992 unsigned Imm, SH, MB, ME; local
[all...]
/external/clang/lib/Rewrite/
H A DRewriter.cpp230 StringRef MB = SourceMgr->getBufferData(FID); local
231 I->second.Initialize(MB.begin(), MB.end());
246 StringRef MB = SourceMgr->getBufferData(FID); local
257 while (isWhitespaceExceptNL(MB[i]))
259 indentSpace = MB.substr(lineOffs, i-lineOffs);
323 StringRef MB = SourceMgr->getBufferData(FID); local
324 return ReplaceText(start, origLength, MB.substr(newOffs, newLength));
347 StringRef MB = SourceMgr->getBufferData(FID); local
364 while (isWhitespaceExceptNL(MB[
[all...]
/external/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp159 ErrorOr<std::unique_ptr<MemoryBuffer>> MB = local
161 if (!MB)
163 return !zlib::isAvailable() || CRCHash == zlib::crc32(MB.get()->getBuffer());
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp178 MemoryBufferRef MB = CompiledObjBuffer->getMemBufferRef(); local
179 ObjCache->notifyObjectCompiled(M, MB);
/external/lz4/programs/
H A Dlz4cli.c67 #define MB *(1U<<20) macro
386 case 'l': legacy_format = 1; blockSize = 8 MB; break;
H A Dbench.c74 #define MB *(1 <<20) macro
77 static const size_t maxMemory = (sizeof(size_t)==4) ? (2 GB - 64 MB) : (size_t)(1ULL << ((sizeof(size_t)*8)-31));
275 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s\r",
311 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s ,%6.1f MB/s\r",
347 DISPLAY("-%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s (param=%d)\n", cLevel, (int)cSize, ratio, cSpeed, dSpeed, displayName, g_additionalParam);
349 DISPLAY("-%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s\n", cLevel, (int)cSize, ratio, cSpeed, dSpeed, displayName);
364 size_t step = 64 MB;
[all...]
/external/swiftshader/third_party/LLVM/utils/FileCheck/
H A DFileCheck.cpp459 static MemoryBuffer *CanonicalizeInputFile(MemoryBuffer *MB) { argument
461 NewFile.reserve(MB->getBufferSize());
463 for (const char *Ptr = MB->getBufferStart(), *End = MB->getBufferEnd();
485 MemoryBuffer::getMemBufferCopy(NewFile.str(), MB->getBufferIdentifier());
487 delete MB;
/external/capstone/arch/PowerPC/
H A DPPCInstPrinter.c89 unsigned char MB = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 3)); local
93 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
99 if (SH <= 31 && MB == (32-SH) && ME == 31) {
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRemoteTargetServer.h149 sys::MemoryBlock MB = sys::Memory::allocateMappedMemory( local
154 Addr = MB.base();
155 assert(Allocs.find(MB.base()) == Allocs.end() && "Duplicate alloc");
156 Allocs[MB.base()] = std::move(MB);
/external/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp339 // M = mask(MB,ME)
342 // M = mask((ME+1)&31, (MB-1)&31)
368 unsigned MB = MI.getOperand(4).getImm(); local
373 if (MB == 0 && ME == 31)
385 .addImm((MB - 1) & 31);
401 MI.getOperand(5).setImm((MB - 1) & 31);
892 // then mask with 0x1 (MB = ME = 31).
1573 // 32-bit rotate and mask instructions are zero extending only if MB <= ME
/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp184 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, &Err); local
185 if (!MB.base())
188 PreallocSlab = MB;
199 sys::MemoryBlock MB((void *)OldSlabOffset, Size);
201 FunctionMemory.push_back(MB);
203 DataMemory.push_back(MB);
228 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, &Err); local
229 if (!MB.base())
231 FunctionMemory.push_back(MB);
232 return (uint8_t*)MB
248 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, &Err); local
[all...]
/external/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp683 std::unique_ptr<llvm::MemoryBuffer> MB = local
685 RemappedFiles.push_back(std::make_pair(UF.Filename, MB.release()));
H A DIndexing.cpp502 std::unique_ptr<llvm::MemoryBuffer> MB = local
504 CInvok->getPreprocessorOpts().addRemappedFile(UF.Filename, MB.get());
505 BufOwner->push_back(std::move(MB));
/external/llvm/utils/FileCheck/
H A DFileCheck.cpp665 CanonicalizeInputFile(std::unique_ptr<MemoryBuffer> MB, argument
668 NewFile.reserve(MB->getBufferSize());
670 for (const char *Ptr = MB->getBufferStart(), *End = MB->getBufferEnd();
692 MemoryBuffer::getMemBufferCopy(NewFile.str(), MB->getBufferIdentifier()));
/external/lz4/tests/
H A Dframetest.c66 #define MB *(1U<<20) macro
70 #define COMPRESSIBLE_NOISE_LENGTH (2 MB)
381 DISPLAYLEVEL(3, "Using 1 MB block : \n");
394 DISPLAYLEVEL(3, "Using 4 MB block : \n");
563 size_t const srcDataLength = 9 MB; /* needs to be > 2x4MB to test large blocks */
H A Dfullbench.c63 #define MB *(1 <<20) macro
67 #define MAX_MEM (1920 MB)
68 #define DEFAULT_CHUNKSIZE (4 MB)
135 size_t step = 64 MB;
352 DISPLAY("Not enough memory for '%s' full size; testing %i MB only...\n", inFileName, (int)(benchedSize>>20));
479 PROGRESS("%1i- %-28.28s :%9i ->%9i (%5.2f%%),%7.1f MB/s\r", loopNb, compressorName, (int)benchedSize, (int)cSize, ratio, (double)benchedSize / bestTime / 1000000);
483 DISPLAY("%2i-%-28.28s :%9i ->%9i (%5.2f%%),%7.1f MB/s\n", cAlgNb, compressorName, (int)benchedSize, (int)cSize, ratio, (double)benchedSize / bestTime / 1000000);
485 DISPLAY("%2i-%-28.28s :%9i ->%9i (%5.1f%%),%7.1f MB/s\n", cAlgNb, compressorName, (int)benchedSize, (int)cSize, ratio, (double)benchedSize / bestTime / 100000);
571 PROGRESS("%1i- %-29.29s :%10i -> %7.1f MB/s\r", loopNb, dName, (int)benchedSize, (double)benchedSize / bestTime / 1000000);
578 DISPLAY("%2i-%-29.29s :%10i -> %7.1f MB/
[all...]
H A Dfuzzer.c71 #define MB *(1U<<20) macro
154 #define BLOCKSIZE_I134 (32 MB)
935 while (totalMessageSize < 9 MB) {
/external/cblas/testing/
H A Dc_cblat3.f463 $ MA, MB, MS, N, NA, NARGS, NB, NC, NS local in subroutine:CCHK1
538 MB = N
541 MB = K
545 LDB = MB
555 CALL CMAKE( 'ge', ' ', ' ', MB, NB, B, NMAX, BB,
H A Dc_dblat3.f450 $ MA, MB, MS, N, NA, NARGS, NB, NC, NS local in subroutine:DCHK1
525 MB = N
528 MB = K
532 LDB = MB
542 CALL DMAKE( 'GE', ' ', ' ', MB, NB, B, NMAX, BB,
H A Dc_sblat3.f450 $ MA, MB, MS, N, NA, NARGS, NB, NC, NS local in subroutine:SCHK1
525 MB = N
528 MB = K
532 LDB = MB
542 CALL SMAKE( 'GE', ' ', ' ', MB, NB, B, NMAX, BB,

Completed in 556 milliseconds

123