HomeSort by: relevance | last modified time | path
    Searched defs:Scratch (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
OptimizedStructLayout.h 68 /// Private scratch space for the algorithm. The implementation
70 void *Scratch;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
BenchmarkRunner.h 47 // Scratch space to run instructions that touch memory.
87 const std::unique_ptr<ScratchSpace> Scratch;
BenchmarkRunner.cpp 34 : State(State), Mode(Mode), Scratch(std::make_unique<ScratchSpace>()) {}
43 BenchmarkRunner::ScratchSpace *Scratch)
45 Scratch(Scratch) {}
73 char *const ScratchPtr = Scratch->ptr();
94 Scratch->clear();
131 BenchmarkRunner::ScratchSpace *const Scratch;
215 Scratch.get());
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 495 llvm::SmallString<128> &Scratch) {
502 Scratch.clear();
503 llvm::raw_svector_ostream OS(Scratch);
512 llvm::SmallString<128> &Scratch) {
516 Scratch.clear();
517 return ("(anonymous " + Node.getKindName() + ")").toStringRef(Scratch);
521 llvm::SmallString<128> &Scratch) {
574 llvm::SmallString<128> Scratch;
575 StringRef NodeName = getNodeName(Node, Scratch);
583 llvm::SmallString<128> Scratch;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsExpandPseudo.cpp 109 Register Scratch = I->getOperand(7).getReg();
145 BuildMI(loop1MBB, DL, TII->get(LL), Scratch).addReg(Ptr).addImm(0);
147 .addReg(Scratch)
157 BuildMI(loop2MBB, DL, TII->get(Mips::AND), Scratch)
158 .addReg(Scratch, RegState::Kill)
160 BuildMI(loop2MBB, DL, TII->get(Mips::OR), Scratch)
161 .addReg(Scratch, RegState::Kill)
163 BuildMI(loop2MBB, DL, TII->get(SC), Scratch)
164 .addReg(Scratch, RegState::Kill)
168 .addReg(Scratch, RegState::Kill
    [all...]
MipsISelLowering.cpp 1548 Register Scratch = RegInfo.createVirtualRegister(RegInfo.getRegClass(OldVal));
1552 // The scratch registers here with the EarlyClobber | Define | Implicit
1563 // The Dead flag is needed as the value in scratch isn't used by any other
1598 .addReg(Scratch, RegState::Define | RegState::EarlyClobber |
1668 Register Scratch = RegInfo.createVirtualRegister(RC);
1799 // The purposes of the flags on the scratch registers is explained in
1800 // emitAtomicBinary. In summary, we need a scratch register which is going to
1811 .addReg(Scratch, RegState::EarlyClobber | RegState::Define |
1829 // define a scratch register for the pseudo instruction's expansion. The
1857 Register Scratch = MRI.createVirtualRegister(RC)
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/lib/
print.c 71 CHAR16 Scratch[PRINT_ITEM_BUFFER_LEN];
1125 Item.Scratch[0] = '%';
1126 Item.Scratch[1] = 0;
1127 Item.Item.pw = Item.Scratch;
1183 Item.Scratch[0] = (CHAR16) va_arg(ps->args, UINTN);
1184 Item.Scratch[1] = 0;
1185 Item.Item.pw = Item.Scratch;
1200 Item.Scratch,
1203 Item.Item.pw = Item.Scratch;
1209 GuidToString (Item.Scratch, va_arg(ps->args, EFI_GUID *))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
AArch64LegalizerInfo.cpp 1130 auto Scratch = MRI.createVirtualRegister(&AArch64::GPR64RegClass);
1131 CAS = MIRBuilder.buildInstr(AArch64::CMP_SWAP_128, {DstLo, DstHi, Scratch},
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
MergeICmps.cpp 563 SmallString<16> Scratch;
584 Scratch.clear();
587 Scratch.reserve(size + Comparisons.size() - 1);
589 Scratch.append(str.begin(), str.end());
599 return StringRef(Scratch);

Completed in 31 milliseconds