HomeSort by relevance Sort by last modified time
    Searched defs:Target (Results 251 - 275 of 533) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Frontend/
CompilerInstance.h 59 /// for example the preprocessor, the target information, and the AST
79 /// The target being compiled for.
80 IntrusiveRefCntPtr<TargetInfo> Target;
82 /// Auxiliary Target info.
212 /// - Clients should have initialized any LLVM target features that may be
356 /// @name Target Info
359 bool hasTarget() const { return Target != nullptr; }
362 assert(Target && "Compiler instance has no target!");
363 return *Target;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
MachineFunction.h 14 // target-specific information about the generated code.
93 /// hold private target-specific information for each MachineFunction. Objects
137 // - target-specific
143 // target-specific or non-pre-isel generic instructions (e.g., COPY).
227 const TargetMachine &Target;
235 // Used to keep track of target-specific per-machine function information for
236 // the target implementation.
341 /// unchanged the references to Fn, Target, MMI, and FunctionNumber.
345 /// \pre Fn, Target, MMI, and FunctionNumber are properly set.
391 /// getTarget - Return the target machine this machine code is compiled wit
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
TargetRegistry.h 1 //===- Support/TargetRegistry.h - Target Registration -----------*- C++ -*-===//
11 // the appropriate target specific classes (TargetMachine, AsmPrinter, etc.)
14 // Target specific class implementations should register themselves using the
94 /// Target - Wrapper for Target specific information.
102 class Target {
117 *(*)(const Target &T, const Triple &TT, StringRef CPU, StringRef Features,
125 using MCAsmBackendCtorTy = MCAsmBackend *(*)(const Target &T,
132 using MCDisassemblerCtorTy = MCDisassembler *(*)(const Target &T,
177 /// Next - The next registered target in the linked list, maintained by th
    [all...]
  /art/test/046-reflect/src/
Main.java 62 private void showStrings(Target instance)
65 Class<?> target = Target.class; local
69 field = target.getField("string1");
72 field = target.getField("string2");
75 field = target.getField("string3");
83 Class<?> target = otherpackage.Other.class; local
87 meth = target.getMethod("publicMethod");
91 meth = target.getMethod("packageMethod");
99 target = instance.getClass()
124 Class<Target> target = Target.class; local
    [all...]
  /build/soong/android/
module.go 58 Target() Target
176 Target() Target
205 Target struct {
252 CompileTarget Target `blueprint:"mutated"`
441 func (a *ModuleBase) SetTarget(target Target, primary bool) {
442 a.commonProperties.CompileTarget = target
446 func (a *ModuleBase) Target() Target
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_weakref.py 673 class Target(object):
678 w = Target()
    [all...]
  /external/clang/include/clang/Frontend/
ASTUnit.h 93 IntrusiveRefCntPtr<TargetInfo> Target;
    [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 186 : Target(S.Target), Has(S.Has) {
187 S.Target = nullptr;
190 if (Target)
191 Target->HasInstanceContext = Has;
196 explicit SavedInstanceContext(AccessTarget &Target)
197 : Target(&Target), Has(Target.HasInstanceContext) {}
198 AccessTarget *Target;
    [all...]
  /external/deqp/modules/glshared/
glsDrawTest.hpp 53 enum Target
181 static std::string targetToString (Target target);
  /external/devlib/devlib/
target.py 37 class Target(object):
235 raise ValueError('Connection class not specified on Target creation.')
253 raise TargetError('Hard reset not supported for this target.')
257 message = 'Cannot reboot target becuase it is disconnected. ' +\
262 # Wait a fixed delay before starting polling to give the target time to
265 self.logger.debug('Waiting for target to power down...')
300 self.logger.debug('Failed to run tar command on target! ' \
582 Extact the specified on-target file. The extraction method to be used
584 If ``dest`` is specified, it must be an existing directory on target;
689 msg = 'Module {} is not supported by the target'.format(mod.name
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 15 #include "llvm/Target/TargetMachine.h"
16 #include "llvm/Target/TargetOptions.h"
    [all...]
  /external/llvm/include/llvm/Support/
TargetRegistry.h 1 //===-- Support/TargetRegistry.h - Target Registration ----------*- C++ -*-===//
11 // the appropriate target specific classes (TargetMachine, AsmPrinter, etc.)
14 // Target specific class implementations should register themselves using the
79 /// Target - Wrapper for Target specific information.
87 class Target {
105 const Target &T, const Triple &TT, StringRef CPU, StringRef Features,
113 typedef MCAsmBackend *(*MCAsmBackendCtorTy)(const Target &T,
119 typedef MCDisassembler *(*MCDisassemblerCtorTy)(const Target &T,
159 /// Next - The next registered target in the linked list, maintained by th
    [all...]
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 82 // This assumes the address passed in matches the target address bitness
94 // This assumes the address passed in matches the target address bitness
132 // This assumes that the address passed in matches the target address
870 // Finally compares the Symbol value and the target symbol offset
    [all...]
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 46 #include "llvm/Target/TargetLoweringObjectFile.h"
159 // If the target flags on the operand changes the name of the symbol, do that
189 default: llvm_unreachable("Unknown target flag on GV operand");
    [all...]
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 10 // This tablegen backend emits an assembly printer for the current target.
39 CodeGenTarget Target;
256 Record *AsmWriter = Target.getAsmWriter();
263 "void " << Target.getName() << ClassName
548 Record *AsmWriter = Target.getAsmWriter();
550 const auto &Registers = Target.getRegBank().getRegisters();
551 const std::vector<Record*> &AltNameIndices = Target.getRegAltNameIndices();
560 "const char *" << Target.getName() << ClassName << "::";
745 Record *AsmWriter = Target.getAsmWriter();
774 std::make_pair(CodeGenInstAlias(R, Variant, Target), Priority))
    [all...]
SubtargetEmitter.cpp 70 std::string Target;
111 Records(R), SchedModels(TGT.getSchedModels()), Target(TGT.getName()) {}
133 OS << "namespace " << Target << " {\n";
152 OS << "} // end namespace " << Target << "\n";
171 << "extern const llvm::SubtargetFeatureKV " << Target
190 << "{ " << Target << "::" << Name << " }, ";
197 OS << " " << Target << "::" << ImpliesList[j]->getName();
229 << "extern const llvm::SubtargetFeatureKV " << Target
248 OS << " " << Target << "::" << FeatureList[j]->getName();
401 std::string StageTable = "\nextern const llvm::InstrStage " + Target
    [all...]
  /external/python/cpython2/Lib/test/
test_weakref.py 697 class Target(object):
702 w = Target()
781 # Issue #16602: when a weakref's target was part of a long
783 # of the weakref and make the target object visible from outside
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVEntry.h 411 : SPIRVEntryNoIdGeneric(TheModule, TheWordCount, OC), Target(TheTarget) {}
414 Target(SPIRVID_INVALID){}
416 SPIRVId getTargetId()const { return Target;}
418 void setTargetId(SPIRVId T) { Target = T;}
420 SPIRVId Target;
  /external/swiftshader/third_party/LLVM/utils/TableGen/
ARMDecoderEmitter.cpp 215 // Enums for the available target names.
412 // This provides an opportunity for target specific code emission.
418 // This provides an opportunity for target specific code emission after
735 // This provides an opportunity for target specific code emission.
758 // Run the target specific emit hook.
826 // This provides an opportunity for target specific code emission after
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceCfgNode.cpp 224 // and a branch target has a Phi involving the branch operand:
323 // Repoint all suitable branch instructions' target and return.
365 bool sameVarOrReg(TargetLowering *Target, const Variable *Var1,
385 assert(Target->getAliasesForRegister(RegNum1)[RegNum2] ==
386 Target->getAliasesForRegister(RegNum2)[RegNum1]);
387 return Target->getAliasesForRegister(RegNum1)[RegNum2];
392 void updatePreds(PhiDescList &Desc, TargetLowering *Target, Variable *Var) {
394 if (!Item.Processed && sameVarOrReg(Target, Var, Item.Dest)) {
432 // list is lowered by the target lowering layer. Since the assignment lowering
473 TargetLowering *Target = Func->getTarget()
    [all...]
IceInst.h 11 /// \brief Declares the Inst class and its target-independent subclasses.
39 /// low-level (target-specific) ICE instructions inherit from InstTarget.
74 // Anything >= Target is an InstTarget subclass. Note that the value-spaces
76 // shared values, an object specific to one target should never be passed
77 // to a different target.
78 Target,
81 static_assert(Target <= Target_Max, "Must not be above max.");
132 /// If the instruction is a branch-type instruction with OldNode as a target,
134 /// instances of OldNode as a target.
152 /// Returns true if the (target-specific) instruction represents a
    [all...]
IceTargetLowering.cpp 36 // We prevent target-specific implementation details from leaking outside their
37 // implementations by forbidding #include of target-specific header files
38 // anywhere outside their own files. To create target-specific objects
40 // following named constructors. For reference, each target Foo needs to
166 LLVM_ATTRIBUTE_NORETURN void badTargetFatalError(TargetArch Target) {
167 llvm::report_fatal_error("Unsupported target: " +
168 std::string(targetArchString(Target)));
257 TargetLowering::createLowering(TargetArch Target, Cfg *Func) {
258 switch (Target) {
260 badTargetFatalError(Target);
    [all...]
WasmTranslator.cpp     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
ASTUnit.h 90 IntrusiveRefCntPtr<TargetInfo> Target;
    [all...]

Completed in 1872 milliseconds

<<11121314151617181920>>