Searched refs:Sig (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasmTraits.h26 wasm::WasmSignature Sig; local
27 Sig.State = wasm::WasmSignature::Empty;
28 return Sig;
31 wasm::WasmSignature Sig; local
32 Sig.State = wasm::WasmSignature::Tombstone;
33 return Sig;
35 static unsigned getHashValue(const wasm::WasmSignature &Sig) { argument
36 uintptr_t H = hash_value(Sig.State);
37 for (auto Ret : Sig.Returns)
39 for (auto Param : Sig
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DIntrinsicEmitter.cpp251 std::vector<unsigned char> &Sig) {
256 case 1: return Sig.push_back(IIT_I1);
257 case 8: return Sig.push_back(IIT_I8);
258 case 16: return Sig.push_back(IIT_I16);
259 case 32: return Sig.push_back(IIT_I32);
260 case 64: return Sig.push_back(IIT_I64);
261 case 128: return Sig.push_back(IIT_I128);
267 case MVT::f16: return Sig.push_back(IIT_F16);
268 case MVT::f32: return Sig.push_back(IIT_F32);
269 case MVT::f64: return Sig
250 EncodeFixedValueType(MVT::SimpleValueType VT, std::vector<unsigned char> &Sig) argument
285 EncodeFixedType(Record *R, std::vector<unsigned char> &ArgCodes, unsigned &NextArgCode, std::vector<unsigned char> &Sig, ArrayRef<unsigned char> Mapping) argument
[all...]
/freebsd-12-stable/sys/contrib/dev/acpica/compiler/
H A Daslmain.c178 int Sig);
364 * PARAMETERS: Sig - Signal that invoked this handler
376 int Sig)
381 signal (Sig, SIG_IGN);
385 switch (Sig)
394 printf (ASL_PREFIX "Unknown interrupt signal (%d)\n", Sig);
375 AslSignalHandler( int Sig) argument
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DInfoStream.cpp57 PdbRaw_FeatureSig Sig; local
58 if (auto EC = Reader.readEnum(Sig))
64 switch (uint32_t(Sig)) {
81 FeatureSignatures.push_back(Sig);
H A DInfoStreamBuilder.cpp34 void InfoStreamBuilder::addFeature(PdbRaw_FeatureSig Sig) { argument
35 Features.push_back(Sig);
H A DPDBFileBuilder.cpp352 Optional<uint32_t> Sig = Info->getSignature(); local
353 H->Signature = Sig.hasValue() ? *Sig : time(nullptr);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMachineFunctionInfo.cpp77 auto Sig = std::make_unique<wasm::WasmSignature>(); local
78 valTypesFromMVTs(Results, Sig->Returns);
79 valTypesFromMVTs(Params, Sig->Params);
80 return Sig;
H A DWebAssemblyAsmPrinter.h41 void addSignature(std::unique_ptr<wasm::WasmSignature> &&Sig) { argument
42 Signatures.push_back(std::move(Sig));
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp332 std::string Sig; local
333 raw_string_ostream OS(Sig);
339 Sig = OS.str();
340 Sig.erase(remove_if(Sig, isspace), Sig.end());
343 std::replace(Sig.begin(), Sig.end(), ',', '.');
344 return Sig;
459 std::string Sig local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolTypeFunctionSig.cpp30 const PDBSymbolTypeFunctionSig &Sig)
32 Enumerator(Sig.findAllChildren<PDBSymbolTypeFunctionArg>()) {}
29 FunctionArgEnumerator(const IPDBSession &PDBSession, const PDBSymbolTypeFunctionSig &Sig) argument
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.cpp84 InlineeLinesSignature Sig = InlineeLinesSignature::Normal; local
86 Sig = InlineeLinesSignature::ExtraFiles;
88 if (auto EC = Writer.writeEnum(Sig))
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolWasm.h99 void setSignature(wasm::WasmSignature *Sig) { Signature = Sig; } argument
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DInfoStreamBuilder.h37 void addFeature(PdbRaw_FeatureSig Sig);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyInstPrinter.h62 std::string signatureToString(const wasm::WasmSignature *Sig);
H A DWebAssemblyInstPrinter.cpp333 std::string WebAssembly::signatureToString(const wasm::WasmSignature *Sig) { argument
335 S += typeListToString(Sig->Params);
337 S += typeListToString(Sig->Returns);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp80 WasmSignature Sig; local
81 Sig.State = WasmSignature::Empty;
82 return Sig;
85 WasmSignature Sig; local
86 Sig.State = WasmSignature::Tombstone;
87 return Sig;
89 static unsigned getHashValue(const WasmSignature &Sig) { argument
90 uintptr_t Value = Sig.State;
91 for (wasm::ValType Ret : Sig.Returns)
93 for (wasm::ValType Param : Sig
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp327 for (const WasmYAML::Signature &Sig : Section.Signatures) {
328 if (Sig.Index != ExpectedIndex) {
329 reportError("unexpected type index: " + Twine(Sig.Index));
333 writeUint8(OS, Sig.Form);
334 encodeULEB128(Sig.ParamTypes.size(), OS);
335 for (auto ParamType : Sig.ParamTypes)
337 encodeULEB128(Sig.ReturnTypes.size(), OS);
338 for (auto ReturnType : Sig.ReturnTypes)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp476 const FunctionSignatureNode *Sig = local
478 Sig->outputPre(OS, OF_NoCallingConvention);
491 const FunctionSignatureNode *Sig = local
493 outputCallingConvention(OS, Sig->CallConvention);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp407 ImportedModuleFileInfo(off_t Size, time_t ModTime, ASTFileSignature Sig) argument
408 : StoredSize(Size), StoredModTime(ModTime), StoredSignature(Sig) {}
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp226 void addSignature(std::unique_ptr<wasm::WasmSignature> &&Sig) { argument
227 Signatures.push_back(std::move(Sig));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp871 wasm::WasmSignature Sig; local
878 Sig.Params.reserve(ParamCount);
881 Sig.Params.push_back(wasm::ValType(ParamType));
886 Sig.Returns.push_back(wasm::ValType(ReturnType));
888 Signatures.push_back(std::move(Sig));
/freebsd-12-stable/usr.sbin/pppctl/
H A Dpppctl.c98 Timeout(int Sig) argument
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h4119 void setSignatureAsWritten(TypeSourceInfo *Sig) { SignatureAsWritten = Sig; }
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DTargetInfo.cpp1150 unsigned Sig = (0xeb << 0) | // jmp rel8 variable
1154 return llvm::ConstantInt::get(CGM.Int32Ty, Sig);
2342 unsigned Sig = (0xeb << 0) | // jmp rel8 variable
2346 return llvm::ConstantInt::get(CGM.Int32Ty, Sig);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp14248 TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope); local
14249 QualType T = Sig->getType();
14253 if (DiagnoseUnexpandedParameterPack(CaretLoc, Sig, UPPC_Block)) {
14259 Sig = Context.getTrivialTypeSourceInfo(T);
14271 if ((ExplicitSignature = Sig->getTypeLoc()
14283 Sig = Context.CreateTypeSourceInfo(Result.getType(), Size);
14284 Sig->getTypeLoc().initializeFullCopy(Result, Size);
14290 CurBlock->TheDecl->setSignatureAsWritten(Sig);

Completed in 380 milliseconds

12