Searched refs:Context (Results 1 - 25 of 528) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DValueTypes.cpp23 LLVMContext &Context = LLVMTy->getContext(); local
24 return getIntegerVT(Context, getSizeInBits());
28 LLVMContext &Context = LLVMTy->getContext(); local
29 EVT IntTy = getIntegerVT(Context, getVectorElementType().getSizeInBits());
30 return getVectorVT(Context, IntTy, getVectorNumElements());
33 EVT EVT::getExtendedIntegerVT(LLVMContext &Context, unsigned BitWidth) { argument
35 VT.LLVMTy = IntegerType::get(Context, BitWidth);
40 EVT EVT::getExtendedVectorVT(LLVMContext &Context, EVT VT, argument
43 ResultVT.LLVMTy = VectorType::get(VT.getTypeForEVT(Context), NumElements);
199 Type *EVT::getTypeForEVT(LLVMContext &Context) cons
[all...]
H A DMDBuilder.cpp21 return MDString::get(Context, Str);
33 createConstant(ConstantFP::get(Type::getFloatTy(Context), Accuracy));
34 return MDNode::get(Context, Op);
48 Type *Int32Ty = Type::getInt32Ty(Context);
52 return MDNode::get(Context, Vals);
56 return MDNode::get(Context, None);
60 Type *Int64Ty = Type::getInt64Ty(Context);
61 return MDNode::get(Context,
69 Type *Ty = IntegerType::get(Context, Lo.getBitWidth());
79 return MDNode::get(Context, {createConstan
[all...]
/freebsd-11.0-release/contrib/llvm/lib/MC/
H A DMCNullStreamer.cpp22 MCNullStreamer(MCContext &Context) : MCStreamer(Context) {} argument
41 MCStreamer *llvm::createNullStreamer(MCContext &Context) { argument
42 return new MCNullStreamer(Context);
H A DMCWinEH.cpp31 MCContext &Context) {
38 return Context.getAssociativeCOFFSection(
52 return Context.getCOFFSection((SecName + Twine('$') + CodeSecName).str(),
64 MCContext &Context) {
66 cast<MCSectionCOFF>(Context.getObjectFileInfo()->getPDataSection());
67 return getUnwindInfoSection(".pdata", PData, Function, Context);
71 MCContext &Context) {
73 cast<MCSectionCOFF>(Context.getObjectFileInfo()->getXDataSection());
74 return getUnwindInfoSection(".xdata", XData, Function, Context);
28 getUnwindInfoSection(StringRef SecName, MCSectionCOFF *UnwindSec, const MCSymbol *Function, MCContext &Context) argument
63 getPDataSection(const MCSymbol *Function, MCContext &Context) argument
70 getXDataSection(const MCSymbol *Function, MCContext &Context) argument
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DTypeBuilder.h59 /// static StructType *get(LLVMContext &Context) {
63 /// TypeBuilder<types::i<32>, xcompile>::get(Context),
64 /// TypeBuilder<types::i<32>*, xcompile>::get(Context),
65 /// TypeBuilder<types::i<8>*[], xcompile>::get(Context),
114 static PointerType *get(LLVMContext &Context) { argument
115 return PointerType::getUnqual(TypeBuilder<T,cross>::get(Context));
125 static ArrayType *get(LLVMContext &Context) { argument
126 return ArrayType::get(TypeBuilder<T, cross>::get(Context), N);
132 static ArrayType *get(LLVMContext &Context) { argument
133 return ArrayType::get(TypeBuilder<T, cross>::get(Context),
257 get(LLVMContext &Context) argument
263 get(LLVMContext &Context) argument
274 get(LLVMContext &Context) argument
286 get(LLVMContext &Context) argument
301 get(LLVMContext &Context) argument
317 get(LLVMContext &Context) argument
332 get(LLVMContext &Context) argument
339 get(LLVMContext &Context) argument
349 get(LLVMContext &Context) argument
361 get(LLVMContext &Context) argument
376 get(LLVMContext &Context) argument
392 get(LLVMContext &Context) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUELFStreamer.cpp20 MCELFStreamer *llvm::createAMDGPUELFStreamer(MCContext &Context, argument
25 return new AMDGPUELFStreamer(Context, MAB, OS, Emitter);
H A DAMDGPUELFStreamer.h28 AMDGPUELFStreamer(MCContext &Context, MCAsmBackend &MAB, raw_pwrite_stream &OS, argument
30 : MCELFStreamer(Context, MAB, OS, Emitter) { }
35 MCELFStreamer *createAMDGPUELFStreamer(MCContext &Context, MCAsmBackend &MAB,
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Index/
H A DCommentToXML.h37 const ASTContext &Context);
41 const ASTContext &Context);
45 const ASTContext &Context);
/freebsd-11.0-release/contrib/llvm/include/llvm/IRReader/
H A DIRReader.h33 getLazyIRFileModule(StringRef Filename, SMDiagnostic &Err, LLVMContext &Context,
40 LLVMContext &Context);
46 LLVMContext &Context);
/freebsd-11.0-release/contrib/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.h21 MCELFStreamer *createAArch64ELFStreamer(MCContext &Context, MCAsmBackend &TAB,
H A DAArch64MCAsmInfo.cpp59 MCContext &Context = Streamer.getContext(); local
61 MCSymbolRefExpr::create(Sym, MCSymbolRefExpr::VK_GOT, Context);
62 MCSymbol *PCSym = Context.createTempSymbol();
64 const MCExpr *PC = MCSymbolRefExpr::create(PCSym, Context);
65 return MCBinaryExpr::createSub(Res, PC, Context);
/freebsd-11.0-release/usr.sbin/ppp/
H A Dchap_ms.c157 SHA_CTX Context; local
167 SHA1_Init(&Context);
169 SHA1_Update(&Context, PeerChallenge, 16);
170 SHA1_Update(&Context, AuthenticatorChallenge, 16);
171 SHA1_Update(&Context, Name, strlen(Name));
173 SHA1_Final(Digest, &Context);
219 SHA_CTX Context; local
251 SHA1_Init(&Context);
252 SHA1_Update(&Context, PasswordHashHash, 16);
253 SHA1_Update(&Context, NTRespons
281 SHA_CTX Context; local
300 SHA_CTX Context; local
353 SHA_CTX Context; local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/llvm-readobj/
H A DWin64EHDumper.h33 struct Context { struct in class:llvm::Win64EH::Dumper
38 Context(const object::COFFObjectFile &COFF, SymbolResolver Resolver, function in struct:llvm::Win64EH::Dumper::Context
44 void printRuntimeFunctionEntry(const Context &Ctx,
49 void printUnwindInfo(const Context &Ctx, const object::coff_section *Section,
51 void printRuntimeFunction(const Context &Ctx,
58 void printData(const Context &Ctx);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DInheritViz.cpp35 ASTContext& Context; member in class:__anon3675::InheritanceHierarchyWriter
41 InheritanceHierarchyWriter(ASTContext& Context, raw_ostream& Out) argument
42 : Context(Context), Out(Out) { }
64 QualType CanonType = Context.getCanonicalType(Type);
97 QualType CanonBaseType = Context.getCanonicalType(Base.getType());
127 QualType CanonType = Context.getCanonicalType(Type);
137 void CXXRecordDecl::viewInheritance(ASTContext& Context) const {
138 QualType Self = Context.getTypeDeclType(this);
152 InheritanceHierarchyWriter Writer(Context,
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DEvaluatedExprVisitor.h32 const ASTContext &Context; member in class:clang::EvaluatedExprVisitorBase
37 explicit EvaluatedExprVisitorBase(const ASTContext &Context) : Context(Context) { } argument
85 if (!CE->isUnevaluatedBuiltinCall(Context))
114 explicit EvaluatedExprVisitor(const ASTContext &Context) : argument
115 EvaluatedExprVisitorBase<make_ptr, ImplClass>(Context) { }
123 explicit ConstEvaluatedExprVisitor(const ASTContext &Context) : argument
124 EvaluatedExprVisitorBase<make_const_ptr, ImplClass>(Context) { }
/freebsd-11.0-release/contrib/llvm/lib/Target/Mips/
H A DMipsOptionRecord.h39 MipsRegInfoRecord(MipsELFStreamer *S, MCContext &Context) argument
40 : Streamer(S), Context(Context) {
45 const MCRegisterInfo *TRI = Context.getRegisterInfo();
63 MCContext &Context; member in class:llvm::MipsRegInfoRecord
/freebsd-11.0-release/contrib/llvm/include/llvm/AsmParser/
H A DParser.h35 /// \param Context Context in which to allocate globals info.
40 LLVMContext &Context,
51 /// \param Context Context in which to allocate globals info.
56 LLVMContext &Context,
66 LLVMContext &Context,
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchFinder.h76 MatchResult(const BoundNodes &Nodes, clang::ASTContext *Context);
85 clang::ASTContext * const Context; member in class:clang::ast_matchers::MatchFinder::MatchResult::clang
183 template <typename T> void match(const T &Node, ASTContext &Context) { argument
184 match(clang::ast_type_traits::DynTypedNode::create(Node), Context); local
187 ASTContext &Context);
191 void matchAST(ASTContext &Context);
236 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context);
241 ASTContext &Context);
252 /// Node, Context));
277 ASTContext &Context) {
276 match(MatcherT Matcher, const ast_type_traits::DynTypedNode &Node, ASTContext &Context) argument
287 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCELFStreamer.h25 HexagonMCELFStreamer(MCContext &Context, MCAsmBackend &TAB, argument
27 : MCELFStreamer(Context, TAB, OS, Emitter),
40 MCStreamer *createHexagonELFStreamer(MCContext &Context, MCAsmBackend &MAB,
/freebsd-11.0-release/contrib/llvm/lib/AsmParser/
H A DParser.cpp36 LLVMContext &Context,
39 make_unique<Module>(F.getBufferIdentifier(), Context);
49 LLVMContext &Context,
59 return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context, Slots);
64 LLVMContext &Context,
67 return parseAssembly(F, Err, Context, Slots);
34 parseAssembly(MemoryBufferRef F, SMDiagnostic &Err, LLVMContext &Context, SlotMapping *Slots) argument
47 parseAssemblyFile(StringRef Filename, SMDiagnostic &Err, LLVMContext &Context, SlotMapping *Slots) argument
62 parseAssemblyString(StringRef AsmString, SMDiagnostic &Err, LLVMContext &Context, SlotMapping *Slots) argument
/freebsd-11.0-release/sys/contrib/dev/acpica/components/events/
H A Devsci.c59 void *Context);
103 SciHandler->Context);
117 * PARAMETERS: Context - Calling Context
128 void *Context)
130 ACPI_GPE_XRUPT_INFO *GpeXruptList = Context;
167 * PARAMETERS: Context - Calling Context
177 void *Context)
179 ACPI_GPE_XRUPT_INFO *GpeXruptList = Context;
127 AcpiEvSciXruptHandler( void *Context) argument
176 AcpiEvGpeXruptHandler( void *Context) argument
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/MIRParser/
H A DMIRParser.h63 /// \param Context - Context which will be used for the parsed LLVM IR module.
66 LLVMContext &Context);
75 /// \param Context - Context which will be used for the parsed LLVM IR module.
77 createMIRParser(std::unique_ptr<MemoryBuffer> Contents, LLVMContext &Context);
/freebsd-11.0-release/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFCompileUnit.h19 DWARFCompileUnit(DWARFContext &Context, const DWARFSection &Section, argument
24 : DWARFUnit(Context, Section, DA, RS, SS, SOS, AOS, LS, LE, UnitSection,
/freebsd-11.0-release/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFastISel.cpp47 LLVMContext *Context; member in class:__anon3038::final
57 Context = &FuncInfo.Fn->getContext();
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSema.cpp52 PrintingPolicy Sema::getPrintingPolicy(const ASTContext &Context, argument
54 PrintingPolicy Policy = Context.getPrintingPolicy();
55 Policy.Bool = Context.getLangOpts().Bool;
58 BoolMacro = PP.getMacroInfo(&Context.Idents.get("bool"))) {
70 PushDeclContext(S, Context.getTranslationUnitDecl());
78 LangOpts(pp.getLangOpts()), PP(pp), Context(ctxt), Consumer(consumer),
117 NSAPIObj.reset(new NSAPI(Context));
123 Diags.SetArgToStringFn(&FormatASTNodeDiagnosticArgument, &Context);
134 DeclarationName DN = &Context.Idents.get(Name);
136 PushOnScopeChains(Context
[all...]

Completed in 196 milliseconds

1234567891011>>