HomeSort by: relevance | last modified time | path
    Searched refs:ST (Results 1 - 25 of 441) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/GISel/
PPCLegalizerInfo.cpp 20 PPCLegalizerInfo::PPCLegalizerInfo(const PPCSubtarget &ST) { computeTables(); }
PPCLegalizerInfo.h 25 PPCLegalizerInfo(const PPCSubtarget &ST);
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVLegalizerInfo.cpp 21 RISCVLegalizerInfo::RISCVLegalizerInfo(const RISCVSubtarget &ST) {
RISCVLegalizerInfo.h 25 RISCVLegalizerInfo(const RISCVSubtarget &ST);
RISCVTargetTransformInfo.h 33 const RISCVSubtarget *ST;
36 const RISCVSubtarget *getST() const { return ST; }
41 : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl(F)),
42 TLI(ST->getTargetLowering()) {}
57 bool supportsScalableVectors() const { return ST->hasStdExtV(); }
63 return TypeSize::getFixed(ST->getXLen());
66 ST->hasStdExtV() ? ST->getMinRVVVectorSizeInBits() : 0);
69 ST->hasStdExtV() ? ST->getMinRVVVectorSizeInBits() : 0)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
ARCTargetTransformInfo.h 33 const ARCSubtarget *ST;
36 const ARCSubtarget *getST() const { return ST; }
41 : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl()),
42 TLI(ST->getTargetLowering()) {}
46 : BaseT(static_cast<const BaseT &>(Arg)), ST(Arg.ST), TLI(Arg.TLI) {}
48 : BaseT(std::move(static_cast<BaseT &>(Arg))), ST(std::move(Arg.ST)),
  /src/sys/external/bsd/gnu-efi/dist/apps/
t5.c 12 WaitForSingleEvent(ST->ConIn->WaitForKey, 0);
13 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, L"\n\n");
t7.c 17 WaitForSingleEvent(ST->ConIn->WaitForKey, 0);
19 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, L"\n\n");
21 efi_status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &efi_input_key);
  /src/sys/external/bsd/gnu-efi/dist/lib/
pause.c 14 WaitForSingleEvent(ST->ConIn->WaitForKey, 0);
15 Status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &Key);
console.c 30 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, Str);
43 ST->ConOut,
44 ST->ConIn,
  /src/sys/stand/efiboot/
console.c 44 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &key);
46 if (ST->ConIn->WaitForKey != NULL)
47 WaitForSingleEvent(ST->ConIn->WaitForKey, 0);
48 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &key);
61 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, buf);
70 if (ST->ConIn->WaitForKey == NULL) {
73 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &key)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/vms/
xm-vms.h 43 #define DELETE_IF_ORDINARY(NAME,ST,VERBOSE_FLAG) \
46 while (stat (NAME, &ST) >= 0 && S_ISREG (ST.st_mode)) \
  /src/external/gpl3/gcc.old/dist/gcc/config/vms/
xm-vms.h 43 #define DELETE_IF_ORDINARY(NAME,ST,VERBOSE_FLAG) \
46 while (stat (NAME, &ST) >= 0 && S_ISREG (ST.st_mode)) \
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreTargetTransformInfo.h 32 const XCoreSubtarget *ST;
35 const XCoreSubtarget *getST() const { return ST; }
40 : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl()),
41 TLI(ST->getTargetLowering()) {}
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 33 : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl(F)),
34 TLI(ST->getTargetLowering()) {}
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86MacroFusion.cpp 38 const X86Subtarget &ST = static_cast<const X86Subtarget &>(TSI);
41 if (!(ST.hasBranchFusion() || ST.hasMacroFusion()))
54 if (ST.hasBranchFusion()) {
60 if (ST.hasMacroFusion()) {
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeSourceFile.cpp 20 auto ST = Session.getPDBFile().getStringTable();
21 if (!ST) {
22 consumeError(ST.takeError());
25 auto FileName = ST->getStringTable().getString(Checksum.FileNameOffset);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsLegalizerInfo.cpp 66 MipsLegalizerInfo::MipsLegalizerInfo(const MipsSubtarget &ST) {
79 .legalIf([=, &ST](const LegalityQuery &Query) {
82 if (ST.hasMSA() && CheckTyN(0, Query, {v16s8, v8s16, v4s32, v2s64}))
103 .legalIf([=, &ST](const LegalityQuery &Query) {
106 {s32, p0, 16, ST.systemSupportsUnalignedAccess()},
109 {s64, p0, 64, ST.systemSupportsUnalignedAccess()}}))
111 if (ST.hasMSA() && CheckTy0Ty1MemSizeAlign(
122 .customIf([=, &ST](const LegalityQuery &Query) {
137 if (!ST.systemSupportsUnalignedAccess() &&
194 .legalIf([=, &ST](const LegalityQuery &Query)
    [all...]
MipsFrameLowering.h 31 static const MipsFrameLowering *create(const MipsSubtarget &ST);
53 const MipsFrameLowering *createMips16FrameLowering(const MipsSubtarget &ST);
54 const MipsFrameLowering *createMipsSEFrameLowering(const MipsSubtarget &ST);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIFixVGPRCopies.cpp 48 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
49 const SIRegisterInfo *TRI = ST.getRegisterInfo();
50 const SIInstrInfo *TII = ST.getInstrInfo();
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMMacroFusion.cpp 24 // Assume the 1st instr to be a wildcard if it is unspecified.
40 // Assume the 1st instr to be a wildcard if it is unspecified.
55 const ARMSubtarget &ST = static_cast<const ARMSubtarget&>(TSI);
57 if (ST.hasFuseAES() && isAESPair(FirstMI, SecondMI))
59 if (ST.hasFuseLiterals() && isLiteralsPair(FirstMI, SecondMI))
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblySelectionDAGInfo.cpp 25 auto &ST = DAG.getMachineFunction().getSubtarget<WebAssemblySubtarget>();
26 if (!ST.hasBulkMemory())
30 auto LenMVT = ST.hasAddr64() ? MVT::i64 : MVT::i32;
49 auto &ST = DAG.getMachineFunction().getSubtarget<WebAssemblySubtarget>();
50 if (!ST.hasBulkMemory())
54 auto LenMVT = ST.hasAddr64() ? MVT::i64 : MVT::i32;
  /src/sys/arch/ia64/include/
efilib.h 32 extern EFI_SYSTEM_TABLE *ST;
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSectionXCOFF.h 43 XCOFF::SymbolType ST, SectionKind K, MCSymbolXCOFF *QualName,
47 CsectProp(XCOFF::CsectProperties(SMC, ST)), QualName(QualName),
51 (ST == XCOFF::XTY_SD || ST == XCOFF::XTY_CM || ST == XCOFF::XTY_ER) &&
55 assert((ST == XCOFF::XTY_CM || ST == XCOFF::XTY_ER) &&
61 if (ST != XCOFF::XTY_ER)
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFTargetTransformInfo.h 29 const BPFSubtarget *ST;
32 const BPFSubtarget *getST() const { return ST; }
37 : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl(F)),
38 TLI(ST->getTargetLowering()) {}

Completed in 39 milliseconds

1 2 3 4 5 6 7 8 91011>>