| /freebsd/contrib/llvm-project/clang/lib/APINotes/ |
| H A D | APINotesReader.cpp | 775 llvm::SmallVectorImpl<uint64_t> &Scratch); 777 llvm::SmallVectorImpl<uint64_t> &Scratch); 779 llvm::SmallVectorImpl<uint64_t> &Scratch); 781 llvm::SmallVectorImpl<uint64_t> &Scratch); 783 llvm::SmallVectorImpl<uint64_t> &Scratch); 785 llvm::SmallVectorImpl<uint64_t> &Scratch); 787 llvm::SmallVectorImpl<uint64_t> &Scratch); 789 llvm::SmallVectorImpl<uint64_t> &Scratch); 791 llvm::SmallVectorImpl<uint64_t> &Scratch); 793 llvm::SmallVectorImpl<uint64_t> &Scratch); [all …]
|
| H A D | APINotesWriter.cpp | 33 llvm::SmallVector<uint64_t, 64> Scratch; member in clang::api_notes::APINotesWriter::Implementation 276 Metadata.emit(Scratch, VERSION_MAJOR, VERSION_MINOR); in writeControlBlock() 279 ModuleName.emit(Scratch, this->ModuleName); in writeControlBlock() 283 SourceFile.emit(Scratch, this->SourceFile->getSize(), in writeControlBlock() 343 IdentifierData.emit(Scratch, Offset, HashTableBlob); in writeIdentifierBlock() 623 ContextID.emit(Scratch, Offset, HashTableBlob); in writeContextBlock() 642 ContextInfo.emit(Scratch, Offset, HashTableBlob); in writeContextBlock() 734 ObjCPropertyData.emit(Scratch, Offset, HashTableBlob); in writeObjCPropertyBlock() 848 ObjCMethodData.emit(Scratch, Offset, HashTableBlob); in writeObjCMethodBlock() 875 CXXMethodData.emit(Scratch, Offset, HashTableBlob); in writeCXXMethodBlock() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsExpandPseudo.cpp | 108 Register Scratch = I->getOperand(7).getReg(); in expandAtomicCmpSwapSubword() local 144 BuildMI(loop1MBB, DL, TII->get(LL), Scratch).addReg(Ptr).addImm(0); in expandAtomicCmpSwapSubword() 146 .addReg(Scratch) in expandAtomicCmpSwapSubword() 156 BuildMI(loop2MBB, DL, TII->get(Mips::AND), Scratch) in expandAtomicCmpSwapSubword() 157 .addReg(Scratch, RegState::Kill) in expandAtomicCmpSwapSubword() 159 BuildMI(loop2MBB, DL, TII->get(Mips::OR), Scratch) in expandAtomicCmpSwapSubword() 160 .addReg(Scratch, RegState::Kill) in expandAtomicCmpSwapSubword() 162 BuildMI(loop2MBB, DL, TII->get(SC), Scratch) in expandAtomicCmpSwapSubword() 163 .addReg(Scratch, RegState::Kill) in expandAtomicCmpSwapSubword() 167 .addReg(Scratch, RegState::Kill) in expandAtomicCmpSwapSubword() [all …]
|
| H A D | MipsISelLowering.cpp | 1675 Register Scratch = RegInfo.createVirtualRegister(RegInfo.getRegClass(OldVal)); in emitAtomicBinary() local 1725 .addReg(Scratch, RegState::Define | RegState::EarlyClobber | in emitAtomicBinary() 1795 Register Scratch = RegInfo.createVirtualRegister(RC); in emitAtomicBinaryPartword() local 1938 .addReg(Scratch, RegState::EarlyClobber | RegState::Define | in emitAtomicBinaryPartword() 1984 Register Scratch = MRI.createVirtualRegister(RC); in emitAtomicCmpSwap() local 2009 .addReg(Scratch, RegState::EarlyClobber | RegState::Define | in emitAtomicCmpSwap() 2061 Register Scratch = RegInfo.createVirtualRegister(RC); in emitAtomicCmpSwapPartword() local 2131 .addReg(Scratch, RegState::EarlyClobber | RegState::Define | in emitAtomicCmpSwapPartword()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | OptimizedStructLayout.cpp | 96 I->Scratch = reinterpret_cast<void*>(UniqueNumber++); in performOptimizedStructLayout() 117 auto lhsNumber = reinterpret_cast<uintptr_t>(lhs->Scratch); in performOptimizedStructLayout() 118 auto rhsNumber = reinterpret_cast<uintptr_t>(rhs->Scratch); in performOptimizedStructLayout() 251 return static_cast<Field *>(Cur->Scratch); in performOptimizedStructLayout() 262 LastInQueue->Scratch = I; in performOptimizedStructLayout() 266 LastInQueue->Scratch = nullptr; in performOptimizedStructLayout() 301 Last->Scratch = Cur->Scratch; in performOptimizedStructLayout() 306 if (!Cur->Scratch) in performOptimizedStructLayout()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCExpandAtomicPseudoInsts.cpp | 149 Register Scratch = MI.getOperand(1).getReg(); in expandAtomicRMW128() local 150 Register ScratchHi = TRI->getSubReg(Scratch, PPC::sub_gp8_x0); in expandAtomicRMW128() 151 Register ScratchLo = TRI->getSubReg(Scratch, PPC::sub_gp8_x1); in expandAtomicRMW128() 201 BuildMI(CurrentMBB, DL, SC).addReg(Scratch).addReg(RA).addReg(RB); in expandAtomicRMW128() 225 Register Scratch = MI.getOperand(1).getReg(); in expandAtomicCmpSwap128() local 226 Register ScratchHi = TRI->getSubReg(Scratch, PPC::sub_gp8_x0); in expandAtomicCmpSwap128() 227 Register ScratchLo = TRI->getSubReg(Scratch, PPC::sub_gp8_x1); in expandAtomicCmpSwap128() 277 BuildMI(CurrentMBB, DL, SC).addReg(Scratch).addReg(RA).addReg(RB); in expandAtomicCmpSwap128()
|
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 495 llvm::SmallString<128> &Scratch) { in getNodeName() argument 502 Scratch.clear(); in getNodeName() 503 llvm::raw_svector_ostream OS(Scratch); in getNodeName() 512 llvm::SmallString<128> &Scratch) { in getNodeName() argument 516 Scratch.clear(); in getNodeName() 517 return ("(anonymous " + Node.getKindName() + ")").toStringRef(Scratch); in getNodeName() 521 llvm::SmallString<128> &Scratch) { in getNodeName() argument 583 llvm::SmallString<128> Scratch; in matchesNodeUnqualified() local 584 StringRef NodeName = getNodeName(Node, Scratch); in matchesNodeUnqualified() 592 llvm::SmallString<128> Scratch; in matchesNodeFullFast() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRRegisterInfo.td | 117 // Scratch registers. 132 // Scratch registers. 145 // Scratch registers. 170 // Scratch registers. 180 // Scratch registers. 189 // Scratch registers.
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/M68k/MCTargetDesc/ |
| H A D | M68kMCCodeEmitter.cpp | 44 APInt &Inst, APInt &Scratch, 250 APInt Scratch(64, 0U); // One APInt word is enough. in encodeInstruction() local 251 getBinaryCodeForInstr(MI, Fixups, EncodedInst, Scratch, STI); in encodeInstruction()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | OptimizedStructLayout.h | 71 void *Scratch; member
|
| /freebsd/sys/contrib/edk2/Include/Protocol/ |
| H A D | Decompress.h | 102 IN OUT VOID *Scratch,
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | MergeICmps.cpp | 565 SmallString<16> Scratch; member in __anonde3b773f0111::__anonde3b773f0711::MergedBlockName 586 Scratch.clear(); in makeName() 589 Scratch.reserve(size + Comparisons.size() - 1); in makeName() 591 Scratch.append(str.begin(), str.end()); in makeName() 601 return Scratch.str(); in makeName()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
| H A D | AMDGPUMCCodeEmitter.cpp | 96 APInt &Inst, APInt &Scratch, 377 APInt Encoding, Scratch; in encodeInstruction() local 378 getBinaryCodeForInstr(MI, Fixups, Encoding, Scratch, STI); in encodeInstruction()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Basic/ |
| H A D | DirectiveEmitter.cpp | 1235 SmallString<128> Scratch; in generateFlangClausesParser() local 1243 .Default(("Parser<" + FlangClass + ">{}").toStringRef(Scratch)); in generateFlangClausesParser()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64AsmPrinter.cpp | 175 Register Scratch, 2076 const MachineOperand *AUTAddrDisc, Register Scratch, in emitPtrauthAuthResign() argument 2121 AUTDisc, AUTAddrDisc->getReg(), Scratch, AUTAddrDisc->isKill()); in emitPtrauthAuthResign() 2145 emitPtrauthCheckAuthenticatedValue(AUTVal, Scratch, AUTKey, in emitPtrauthAuthResign() 2159 emitPtrauthDiscriminator(PACDisc, PACAddrDisc, Scratch); in emitPtrauthAuthResign()
|
| /freebsd/sys/crypto/openssl/powerpc64/ |
| H A D | aes-gcm-ppc.S | 107 # Scratch: v23 - v29
|
| /freebsd/sys/crypto/openssl/powerpc64le/ |
| H A D | aes-gcm-ppc.S | 107 # Scratch: v23 - v29
|
| /freebsd/sys/crypto/openssl/powerpc/ |
| H A D | aes-gcm-ppc.S | 107 # Scratch: v23 - v29
|
| /freebsd/sys/dev/aic7xxx/ |
| H A D | aic7xxx.reg | 583 * Single byte window into the Scratch Ram area starting at the address 1252 /* ---------------------- Scratch RAM Offsets ------------------------- */
|
| /freebsd/stand/i386/btx/btx/ |
| H A D | btx.S | 23 .set MEM_BUF,0x1800 # Scratch buffer
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64LegalizerInfo.cpp | 2235 auto Scratch = MRI.createVirtualRegister(&AArch64::GPR64RegClass); in legalizeAtomicCmpxchg128() local 2236 CAS = MIRBuilder.buildInstr(Opcode, {DstLo, DstHi, Scratch}, in legalizeAtomicCmpxchg128()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 2071 APValue Scratch; in EvaluateIgnoredValue() local 2072 if (!Evaluate(Scratch, Info, E)) in EvaluateIgnoredValue() 16903 EvalResult Scratch; in EvaluateAsBooleanCondition() local 16904 return EvaluateAsRValue(Scratch, Ctx, InConstantContext) && in EvaluateAsBooleanCondition() 16905 HandleConversionToBool(Scratch.Val, Result); in EvaluateAsBooleanCondition() 17792 APValue Scratch; in isCXX11ConstantExpr() local 17794 ::EvaluateAsRValue(Info, this, Result ? *Result : Scratch) && in isCXX11ConstantExpr() 17923 APValue Scratch; in isPotentialConstantExpr() local 17927 Info.setEvaluatingDecl(This.getLValueBase(), Scratch); in isPotentialConstantExpr() 17928 HandleConstructorCall(&VIE, This, Args, CD, Info, Scratch); in isPotentialConstantExpr() [all …]
|
| /freebsd/contrib/bc/ |
| H A D | README.md | 446 * [Linux from Scratch][34].
|
| H A D | NEWS.md | 143 environments and Linux from Scratch. 1180 This release contains a fix for the test suite made for Linux from Scratch: now
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPU.td | 313 …"Scratch instructions with a VGPR offset and a negative immediate offset that is not a multiple of… 1280 "Flat Scratch register is a readonly SPI initialized architected register"
|