Searched refs:Target (Results 176 - 200 of 729) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXMCExpr.h83 return E->getKind() == MCExpr::Target;
125 return E->getKind() == MCExpr::Target;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCInstrAnalysis.h29 friend class Target;
150 /// targets. Return true on success, and the address in Target.
153 uint64_t &Target) const;
H A DMCSymbol.h340 /// \param Target - Is the symbol a target-specific common-like symbol.
341 void setCommon(uint64_t Size, unsigned Align, bool Target = false) {
344 SymbolContents = Target ? SymContentsTargetCommon : SymContentsCommon;
364 /// \param Target - Is the symbol a target-specific common-like symbol.
366 bool declareCommon(uint64_t Size, unsigned Align, bool Target = false) {
370 isTargetCommon() != Target)
373 setCommon(Size, Align, Target);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFI386.h133 uint8_t *Target = Section.getAddressWithOffset(RE.Offset); variable
152 writeBytesUnaligned(Result, Target, 4);
167 writeBytesUnaligned(Result, Target, 4);
185 writeBytesUnaligned(Result, Target, 4);
195 writeBytesUnaligned(RE.SectionID, Target, 2);
204 writeBytesUnaligned(RE.Addend, Target, 4);
H A DRuntimeDyldCOFFThumb.h176 uint8_t *Target = Section.getAddressWithOffset(RE.Offset); variable
197 writeBytesUnaligned(Result, Target, 4);
212 writeBytesUnaligned(Result, Target, 4);
222 writeBytesUnaligned(RE.SectionID, Target, 2);
231 writeBytesUnaligned(RE.Addend, Target, 2);
256 EncodeImmediate(&Target[0],
258 EncodeImmediate(&Target[4], static_cast<uint32_t>(Result) >> 16);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFObjectWriter.cpp30 unsigned GetRelocTypeInner(const MCValue &Target, const MCFixup &Fixup,
38 unsigned getRelocType(MCContext &Ctx, const MCValue &Target,
72 unsigned ARMELFObjectWriter::getRelocType(MCContext &Ctx, const MCValue &Target, argument
75 return GetRelocTypeInner(Target, Fixup, IsPCRel, Ctx);
78 unsigned ARMELFObjectWriter::GetRelocTypeInner(const MCValue &Target, argument
82 MCSymbolRefExpr::VariantKind Modifier = Target.getAccessVariant();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp39 AArch64AsmBackend(const Target &T, const Triple &TT, bool IsLittleEndian)
80 const MCValue &Target, MutableArrayRef<char> Data,
100 const MCValue &Target) override;
166 static uint64_t adjustFixupValue(const MCFixup &Fixup, const MCValue &Target, argument
237 static_cast<AArch64MCExpr::VariantKind>(Target.getRefKind());
385 const MCValue &Target,
396 Value = adjustFixupValue(Fixup, Target, Value, Ctx, TheTriple, IsResolved);
427 static_cast<AArch64MCExpr::VariantKind>(Target.getRefKind());
475 const MCValue &Target) {
496 static_cast<AArch64MCExpr::VariantKind>(Target
384 applyFixup(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target, MutableArrayRef<char> Data, uint64_t Value, bool IsResolved, const MCSubtargetInfo *STI) const argument
473 shouldForceRelocation(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target) argument
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Daslparseop.c524 * PARAMETERS: Target - Assignment target
538 ACPI_PARSE_OBJECT *Target,
548 "\nTrCreateAssignmentOp Line [%u to %u] Source %s Target %s\n",
551 UtGetOpName (Target->Asl.ParseOpcode));
553 TrSetOpFlags (Target, OP_IS_TARGET);
616 SourceOp2->Asl.Next = Target;
617 Target->Asl.Parent = Source;
624 TrLinkOpChildren (Operator, 2, Source, Target);
628 Operator->Asl.LineNumber = Target->Asl.LineNumber;
629 Operator->Asl.LogicalLineNumber = Target
537 TrCreateAssignmentOp( ACPI_PARSE_OBJECT *Target, ACPI_PARSE_OBJECT *Source) argument
[all...]
H A Daslprimaries.y191 Target
215 Target
285 Target
298 Target
309 Target
492 Target
493 Target
597 Target
608 Target
650 Target
[all...]
H A Daslanalyze.c567 char Target[ACPI_NAME_SIZE]; local
599 ACPI_MOVE_32_TO_32 (Target, Name);
605 Target[1] = 'E';
609 Target[1] = 'L';
625 if (ACPI_COMPARE_NAME (Target, NextOp->Asl.NameSeg))
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp426 llvm::Triple Target(llvm::Triple::normalize(TargetTriple));
433 Target.setOSName("hurd");
436 if (Target.isOSBinFormatMachO()) {
439 tools::darwin::setTripleTypeForMachOArchName(Target, DarwinArchName);
440 return Target;
446 tools::darwin::setTripleTypeForMachOArchName(Target, ArchName);
455 llvm::Triple LE = Target.getLittleEndianArchVariant();
457 Target = std::move(LE);
459 llvm::Triple BE = Target.getBigEndianArchVariant();
461 Target
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp73 static bool isPlatformEnvironment(const TargetInfo &Target, StringRef Feature) { argument
74 StringRef Platform = Target.getPlatformName();
75 StringRef Env = Target.getTriple().getEnvironmentName();
78 if (Platform == Feature || Target.getTriple().getOSName() == Feature ||
91 SmallString<128> PlatformEnv = Target.getTriple().getOSAndEnvironmentName();
98 if (Target.getTriple().isOSDarwin() && PlatformEnv.endswith("simulator"))
107 const TargetInfo &Target) {
124 .Case("tls", Target.isTLSSupported())
126 .Default(Target.hasFeature(Feature) ||
127 isPlatformEnvironment(Target, Featur
106 hasFeature(StringRef Feature, const LangOptions &LangOpts, const TargetInfo &Target) argument
135 isAvailable(const LangOptions &LangOpts, const TargetInfo &Target, Requirement &Req, UnresolvedHeaderDirective &MissingHeader, Module *&ShadowingModule) const argument
276 addRequirement(StringRef Feature, bool RequiredState, const LangOptions &LangOpts, const TargetInfo &Target) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp193 MCValue &Target, uint64_t &Value,
207 if (!Expr->evaluateAsRelocatable(Target, &Layout, &Fixup)) {
211 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
224 return getBackend().evaluateTargetFixup(*this, Layout, Fixup, DF, Target,
233 if (Target.getSymB()) {
235 } else if (!Target.getSymA()) {
238 const MCSymbolRefExpr *A = Target.getSymA();
249 IsResolved = Target.isAbsolute();
252 Value = Target.getConstant();
254 if (const MCSymbolRefExpr *A = Target
191 evaluateFixup(const MCAsmLayout &Layout, const MCFixup &Fixup, const MCFragment *DF, MCValue &Target, uint64_t &Value, bool &WasForced) const argument
727 MCValue Target; local
855 MCValue Target; local
878 MCValue Target; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCELFObjectWriter.cpp28 unsigned getRelocType(MCContext &Ctx, const MCValue &Target,
41 static MCSymbolRefExpr::VariantKind getAccessVariant(const MCValue &Target, argument
45 if (Expr->getKind() != MCExpr::Target)
46 return Target.getAccessVariant();
73 unsigned PPCELFObjectWriter::getRelocType(MCContext &Ctx, const MCValue &Target, argument
76 MCSymbolRefExpr::VariantKind Modifier = getAccessVariant(Target, Fixup);
121 Target.print(errs());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DFastISel.h105 const Value *Target, ArgListTy &&ArgsList,
108 Callee = Target;
127 MCSymbol *Target, ArgListTy &&ArgsList,
132 Symbol = Target;
151 const Value *Target, ArgListTy &&ArgsList,
154 Callee = Target;
163 StringRef Target, ArgListTy &&ArgsList,
167 MCSymbol *Target, ArgListTy &&ArgsList,
170 Symbol = Target;
104 setCallee(Type *ResultTy, FunctionType *FuncTy, const Value *Target, ArgListTy &&ArgsList, ImmutableCallSite &Call) argument
126 setCallee(Type *ResultTy, FunctionType *FuncTy, MCSymbol *Target, ArgListTy &&ArgsList, ImmutableCallSite &Call, unsigned FixedArgs = ~0U) argument
150 setCallee(CallingConv::ID CC, Type *ResultTy, const Value *Target, ArgListTy &&ArgsList, unsigned FixedArgs = ~0U) argument
166 setCallee(CallingConv::ID CC, Type *ResultTy, MCSymbol *Target, ArgListTy &&ArgsList, unsigned FixedArgs = ~0U) argument
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp89 // This class is used to represent InstrMapping class defined in Target.td file.
184 const CodeGenTarget &Target; member in class:__anon2910::MapTableEmitter
201 MapTableEmitter(CodeGenTarget &Target, RecordKeeper &Records, Record *IMRec): argument
202 Target(Target), InstrMapDesc(IMRec) {
373 Target.getInstructionsByEnumValue();
374 StringRef Namespace = Target.getInstNamespace();
573 CodeGenTarget Target(Records);
574 StringRef NameSpace = Target.getInstNamespace();
593 MapTableEmitter IMap(Target, Record
[all...]
H A DGICombinerEmitter.cpp182 bool parseInstructionMatcher(const CodeGenTarget &Target, StringInit *ArgName,
186 bool parseWipMatchOpcodeMatcher(const CodeGenTarget &Target,
190 CombineRule(const CodeGenTarget &Target, GIMatchDagContext &Ctx, RuleID ID, argument
196 bool parseMatcher(const CodeGenTarget &Target);
400 const CodeGenTarget &Target, StringInit *ArgName, const Init &Arg,
406 Target.getInstruction(Matcher->getOperatorAsDef(TheDef.getLoc()));
454 bool CombineRule::parseWipMatchOpcodeMatcher(const CodeGenTarget &Target, argument
479 P->addOpcode(&Target.getInstruction(OpcodeDef));
490 bool CombineRule::parseMatcher(const CodeGenTarget &Target) { argument
510 if (parseInstructionMatcher(Target, Matcher
399 parseInstructionMatcher( const CodeGenTarget &Target, StringInit *ArgName, const Init &Arg, StringMap<std::vector<VarInfo>> &NamedEdgeDefs, StringMap<std::vector<VarInfo>> &NamedEdgeUses) argument
597 const CodeGenTarget &Target; member in class:__anon2928::GICombinerEmitter
626 GICombinerEmitter(RecordKeeper &RK, const CodeGenTarget &Target, StringRef Name, Record *Combiner) argument
[all...]
H A DInstrDocsEmitter.cpp60 CodeGenTarget &Target = CDP.getTargetInfo(); local
61 unsigned VariantCount = Target.getAsmParserVariantCount();
64 std::string Title = Target.getName();
69 for (const CodeGenInstruction *II : Target.getInstructionsByEnumValue()) {
83 Record *AsmVariant = Target.getAsmParserVariant(VarNum);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DDelayedDiagnostic.h66 Target(FoundDecl.getDecl()), NamingClass(NamingClass),
75 : Access(Access), IsMember(false), Target(BaseClass),
85 NamedDecl *getTargetDecl() const { return Target; }
90 assert(!IsMember); return cast<CXXRecordDecl>(Target);
121 NamedDecl *Target; member in class:clang::sema::AccessedEntity
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp30 AMDGPUAsmBackend(const Target &T) : MCAsmBackend(support::little) {}
35 const MCValue &Target, MutableArrayRef<char> Data,
134 const MCValue &Target,
206 ELFAMDGPUAsmBackend(const Target &T, const Triple &TT, uint8_t ABIVersion) :
234 MCAsmBackend *llvm::createAMDGPUAsmBackend(const Target &T,
133 applyFixup(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target, MutableArrayRef<char> Data, uint64_t Value, bool IsResolved, const MCSubtargetInfo *STI) const argument
H A DAMDGPUTargetStreamer.h1 //===-- AMDGPUTargetStreamer.h - AMDGPU Target Streamer --------*- C++ -*--===//
42 virtual void EmitDirectiveAMDGCNTarget(StringRef Target) = 0;
100 void EmitDirectiveAMDGCNTarget(StringRef Target) override;
147 void EmitDirectiveAMDGCNTarget(StringRef Target) override;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h1 //===-- llvm/Target/TargetMachine.h - Target Information --------*- C++ -*-===//
21 #include "llvm/Target/TargetOptions.h"
41 class Target;
67 TargetMachine(const Target &T, StringRef DataLayoutString,
71 /// The Target that this machine was created for.
72 const Target &TheTarget;
109 const Target &getTarget() const { return TheTarget; }
316 LLVMTargetMachine(const Target &T, StringRef DataLayoutString,
386 report_fatal_error("Target doe
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBFrame.cpp32 #include "lldb/Target/ExecutionContext.h"
33 #include "lldb/Target/Process.h"
34 #include "lldb/Target/RegisterContext.h"
35 #include "lldb/Target/StackFrame.h"
36 #include "lldb/Target/StackFrameRecognizer.h"
37 #include "lldb/Target/StackID.h"
38 #include "lldb/Target/Target.h"
39 #include "lldb/Target/Thread.h"
102 Target *targe
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguageRuntime.h20 #include "lldb/Target/ExecutionContextScope.h"
45 CreateFromStructuredData(Target &target,
115 CreateExceptionBreakpoint(Target &target, lldb::LanguageType language,
134 Target &GetTargetRef() { return m_process->GetTarget(); }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/
H A DMSP430AsmBackend.cpp41 const MCValue &Target, MutableArrayRef<char> Data,
134 const MCValue &Target,
172 MCAsmBackend *llvm::createMSP430MCAsmBackend(const Target &T,
133 applyFixup(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target, MutableArrayRef<char> Data, uint64_t Value, bool IsResolved, const MCSubtargetInfo *STI) const argument

Completed in 207 milliseconds

1234567891011>>