Home
last modified time | relevance | path

Searched refs:PCS (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/compiler-rt/test/fuzzer/
H A Dfuzzer-printcovpcs.test3 RUN: not %run %t-SimpleTest -print_pcs=1 -seed=1 2>&1 | FileCheck %s --check-prefix=PCS
4 PCS-NOT: NEW_PC
5 PCS:INITED
6 PCS:NEW_PC: {{0x[a-f0-9]+}}
7 PCS:NEW_PC: {{0x[a-f0-9]+}}
8 PCS:NEW
9 PCS:BINGO
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Ddarwinpcs-tail.ll1 ; With Darwin PCS, non-virtual thunks generated are generated with musttail
3 ; In general Darwin PCS should be tail optimized
H A Daddsub.ll5 ; when the PCS is implemented so we don't have to worry about the
/llvm-project-15.0.7/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h370 explicit Block(unsigned PCS) : PrevCodeSize(PCS) {} in Block()
H A DBitstreamWriter.h63 Block(unsigned PCS, size_t SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {} in Block()
/llvm-project-15.0.7/clang/docs/
H A DCrossCompilation.rst101 define the specific behaviour of your code (PCS, extensions),
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dbuild-attributes.ll164 … < %s -mtriple=arm-none-linux-gnueabi -mattr=+strict-align | FileCheck %s --check-prefix=PCS-R9-USE
165 …rm-none-linux-gnueabi -mattr=+reserve-r9,+strict-align | FileCheck %s --check-prefix=PCS-R9-RESERVE
1698 ; PCS-R9-USE: .eabi_attribute 14, 0
1699 ; PCS-R9-RESERVE: .eabi_attribute 14, 3
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64CallingConvention.td385 // AArch64 PCS for vector functions (VPCS)
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaDeclAttr.cpp4954 PcsAttr::PCSType PCS; in handleCallConvAttr() local
4957 PCS = PcsAttr::AAPCS; in handleCallConvAttr()
4960 PCS = PcsAttr::AAPCS_VFP; in handleCallConvAttr()
4966 D->addAttr(::new (S.Context) PcsAttr(S.Context, AL, PCS)); in handleCallConvAttr()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGCall.cpp227 if (PcsAttr *PCS = D->getAttr<PcsAttr>()) in getCallingConventionForDecl() local
228 return (PCS->getPCS() == PcsAttr::AAPCS ? CC_AAPCS : CC_AAPCS_VFP); in getCallingConventionForDecl()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DAttr.td2335 let Args = [EnumArgument<"PCS", "PCSType",
H A DDiagnosticSemaKinds.td3569 def err_invalid_pcs : Error<"invalid PCS type">;