Searched defs:Target (Results 1 - 25 of 250) sorted by last modified time

12345678910

/external/vogar/src/vogar/
H A DTarget.java32 public abstract class Target { class
/external/v8/src/parsing/
H A Dparser.h200 typedef ParserTarget Target; typedef in struct:v8::internal::ParserTypes
1175 // Target is a support class to facilitate manipulation of the
H A Dpreparser.h856 typedef PreParserTarget Target; typedef in struct:v8::internal::ParserTypes
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTPFXParser.cpp1719 // --- Target Name
2565 // Target requires 2 components
2666 const SPVRTTargetPair& Target = Effect.Targets[uiTargets]; local
2667 if(Target.TargetName == Pass.SemanticName)
2678 if( (Target.BufferType.find_first_of("DEPTH") != CPVRTString::npos && !(Pass.uiFormatFlags & PVRPFXTEX_DEPTH))
2679 || (Target.BufferType.find_first_of("COLOR") != CPVRTString::npos && !(Pass.uiFormatFlags & PVRPFXTEX_COLOUR)) )
2681 *pReturnError = PVRTStringFromFormattedStr("Surface type mismatch in [EFFECT]. \"%s\" has different type than \"%s\"\n", Target.TargetName.c_str(), Pass.SemanticName.c_str());
/external/swiftshader/third_party/subzero/src/
H A DIceAssemblerARM32.h91 explicit TargetInfo(const TargetLowering *Target) argument
92 : HasFramePointer(Target->hasFramePointer()),
93 FrameOrStackReg(Target->getFrameOrStackReg()) {}
199 void bl(const ConstantRelocatable *Target);
201 void blx(const Operand *Target);
H A DIceAssemblerMIPS32.cpp647 void AssemblerMIPS32::jal(const ConstantRelocatable *Target) { argument
649 emitFixup(createMIPS32Fixup(RelocOp::RO_Jal, Target));
H A DIceCfg.h166 TargetLowering *getTarget() const { return Target.get(); }
335 std::unique_ptr<TargetLowering> Target; member in class:Ice::Cfg
H A DIceCfgNode.cpp365 bool sameVarOrReg(TargetLowering *Target, const Variable *Var1, argument
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) { argument
394 if (!Item.Processed && sameVarOrReg(Target, Var, Item.Dest)) {
473 TargetLowering *Target = Func->getTarget();
488 if (sameVarOrReg(Target, Dest, Src)) {
509 assert((&Item == &Item2) || !sameVarOrReg(Target, Dest, Item2.Dest));
510 if (sameVarOrReg(Target, Des
605 TargetLowering *Target = Func->getTarget(); local
614 TargetLowering *Target = Func->getTarget(); local
638 TargetLowering *Target = Func->getTarget(); local
954 TargetLowering *Target = Func->getTarget(); local
[all...]
H A DIceInst.cpp121 assert(Kind >= Target);
331 InstBr::InstBr(Cfg *Func, CfgNode *Target) argument
332 : InstHighLevel(Func, Inst::Br, 0, nullptr), TargetFalse(Target),
414 Operand *InstPhi::getOperandForTarget(CfgNode *Target) const {
416 if (Labels[I] == Target)
425 void InstPhi::clearOperandForTarget(CfgNode *Target) { argument
427 if (getLabel(I) == Target) {
429 Srcs[I] = Target->getCfg()->getContext()->getConstantZero(Ty);
439 void InstPhi::livenessPhiOperand(LivenessBV &Live, CfgNode *Target, argument
444 if (Labels[I] == Target) {
[all...]
H A DIceInst.h74 // Anything >= Target is an InstTarget subclass. Note that the value-spaces
78 Target, enumerator in enum:Ice::Inst::InstKind
81 static_assert(Target <= Target_Max, "Must not be above max.");
381 static InstBr *create(Cfg *Func, CfgNode *Target) { argument
382 return new (Func->allocate<InstBr>()) InstBr(Func, Target);
406 InstBr(Cfg *Func, CfgNode *Target);
670 Operand *getOperandForTarget(CfgNode *Target) const;
671 void clearOperandForTarget(CfgNode *Target);
674 void livenessPhiOperand(LivenessBV &Live, CfgNode *Target,
1063 void addTarget(SizeT TargetIndex, CfgNode *Target) { argument
[all...]
H A DIceInstARM32.cpp1074 InstARM32Label::InstARM32Label(Cfg *Func, TargetARM32 *Target) argument
1076 Number(Target->makeNextLabelNumber()) {
H A DIceInstARM32.h380 k__Start = Inst::Target,
1053 static InstARM32Label *create(Cfg *Func, TargetARM32 *Target) { argument
1054 return new (Func->allocate<InstARM32Label>()) InstARM32Label(Func, Target);
1065 InstARM32Label(Cfg *Func, TargetARM32 *Target);
1088 static InstARM32Br *create(Cfg *Func, CfgNode *Target) { argument
1092 InstARM32Br(Func, NoCondTarget, Target, NoLabel, CondARM32::AL);
1097 static InstARM32Br *create(Cfg *Func, CfgNode *Target, argument
1103 InstARM32Br(Func, Target, NoUncondTarget, NoLabel, Predicate);
H A DIceInstMIPS32.cpp253 InstMIPS32Label::InstMIPS32Label(Cfg *Func, TargetMIPS32 *Target) argument
255 Number(Target->makeNextLabelNumber()) {
H A DIceInstMIPS32.h187 k__Start = Inst::Target,
775 static InstMIPS32Label *create(Cfg *Func, TargetMIPS32 *Target) { argument
777 InstMIPS32Label(Func, Target);
789 InstMIPS32Label(Cfg *Func, TargetMIPS32 *Target);
804 static InstMIPS32Br *create(Cfg *Func, CfgNode *Target) { argument
808 InstMIPS32Br(Func, NoCondTarget, Target, NoLabel, CondMIPS32::AL);
811 static InstMIPS32Br *create(Cfg *Func, CfgNode *Target, argument
815 InstMIPS32Br(Func, NoCondTarget, Target, Label, CondMIPS32::AL);
H A DIceInstX8632.cpp103 const Ice::X8632::TargetX8632 *Target) {
106 if (RegNum == Target->getFrameReg()) {
107 Disp += Target->getFrameFixedAllocaOffset();
108 } else if (RegNum != Target->getStackReg()) {
136 const auto *Target = local
142 Disp += getRematerializableOffset(getBase(), Target);
169 CR->emitWithoutPrefix(Target, UseNonsfi ? "@GOTOFF" : "");
199 const auto *Target = local
202 Disp += getRematerializableOffset(getBase(), Target);
264 const auto *Target local
102 getRematerializableOffset(Variable *Var, const Ice::X8632::TargetX8632 *Target) argument
312 const ::Ice::TargetLowering *Target = Func->getTarget(); local
324 const ::Ice::TargetLowering *Target = Func->getTarget(); local
[all...]
H A DIceInstX8664.cpp93 const ::Ice::X8664::TargetX8664 *Target) {
96 if (RegNum == Target->getFrameReg()) {
97 Disp += Target->getFrameFixedAllocaOffset();
98 } else if (RegNum != Target->getStackReg()) {
108 const auto *Target = local
112 const bool NeedSandboxing = Target->needSandboxing();
115 Disp += getRematerializableOffset(getBase(), Target);
138 CR->emitWithoutPrefix(Target, UseNonsfi ? "@GOTOFF" : "");
195 const auto *Target = local
198 Disp += getRematerializableOffset(getBase(), Target);
92 getRematerializableOffset(Variable *Var, const ::Ice::X8664::TargetX8664 *Target) argument
252 const auto *Target = local
319 const ::Ice::TargetLowering *Target = Func->getTarget(); local
331 const ::Ice::TargetLowering *Target = Func->getTarget(); local
[all...]
H A DIceInstX86Base.h29 #error "You must define the X86 Target namespace."
75 k__Start = Inst::Target,
349 static InstX86Label *create(Cfg *Func, TargetLowering *Target) { argument
350 return new (Func->allocate<InstX86Label>()) InstX86Label(Func, Target);
362 InstX86Label(Cfg *Func, TargetLowering *Target);
388 static InstX86Br *create(Cfg *Func, CfgNode *Target, Mode Kind) { argument
392 InstX86Br(Func, NoCondTarget, Target, NoLabel, Cond::Br_None, Kind);
397 static InstX86Br *create(Cfg *Func, CfgNode *Target, BrCond Condition, argument
403 InstX86Br(Func, Target, NoUncondTarget, NoLabel, Condition, Kind);
460 static InstX86Jmp *create(Cfg *Func, Operand *Target) { argument
1938 auto *Target = InstX86Base::getTarget(Func); local
[all...]
H A DIceInstX86BaseImpl.h95 TargetLowering *Target)
97 LabelNumber(Target->makeNextLabelNumber()) {
170 InstImpl<TraitsType>::InstX86Jmp::InstX86Jmp(Cfg *Func, Operand *Target) argument
172 this->addSource(Target);
433 auto *Target = static_cast<TargetLowering *>(Func->getTarget()); local
434 Target->emitWithoutPrefix(Target->createGetIPForRegister(Dest));
589 Operand *Target = getJmpTarget(); local
590 if (const auto *Var = llvm::dyn_cast<Variable>(Target)) {
600 } else if (const auto *Mem = llvm::dyn_cast<X86OperandMem>(Target)) {
94 InstX86Label(Cfg *Func, TargetLowering *Target) argument
634 auto *Target = InstX86Base::getTarget(Func); local
651 auto *Target = InstX86Base::getTarget(Func); local
708 auto *Target = InstX86Base::getTarget(Func); local
733 auto *Target = InstX86Base::getTarget(Func); local
806 auto *Target = InstX86Base::getTarget(Func); local
878 auto *Target = InstX86Base::getTarget(Func); local
905 auto *Target = InstX86Base::getTarget(Func); local
934 auto *Target = InstX86Base::getTarget(Func); local
961 auto *Target = InstX86Base::getTarget(Func); local
989 auto *Target = InstX86Base::getTarget(Func); local
1507 auto *Target = InstX86Base::getTarget(Func); local
[all...]
H A DIceOperand.cpp588 template <> void ConstantInteger32::emit(TargetLowering *Target) const {
589 Target->emit(this);
592 template <> void ConstantInteger64::emit(TargetLowering *Target) const {
593 Target->emit(this);
596 template <> void ConstantFloat::emit(TargetLowering *Target) const {
597 Target->emit(this);
600 template <> void ConstantDouble::emit(TargetLowering *Target) const {
601 Target->emit(this);
604 void ConstantRelocatable::emit(TargetLowering *Target) const {
605 Target
608 emitWithoutPrefix(const TargetLowering *Target, const char *Suffix) const argument
[all...]
H A DIcePhiLoweringImpl.h33 void prelowerPhis32Bit(TargetT *Target, CfgNode *Node, Cfg *Func) { argument
41 auto *DestLo = llvm::cast<Variable>(Target->loOperand(Dest));
42 auto *DestHi = llvm::cast<Variable>(Target->hiOperand(Dest));
48 Src = Target->legalizeUndef(Src);
49 PhiLo->addArgument(Target->loOperand(Src), Label);
50 PhiHi->addArgument(Target->hiOperand(Src), Label);
56 Target->shouldSplitToVariableVecOn32(DestTy)) {
64 Src = Target->legalizeUndef(Src);
H A DIceRegAlloc.h117 TargetLowering *const Target; member in class:Ice::LinearScan
H A DIceSwitchLowering.h43 CaseCluster(uint64_t Value, CfgNode *Target) argument
44 : Kind(Range), Low(Value), High(Value), Target(Target) {}
54 return Target;
73 CfgNode *Target; /// Target for a range. member in union:Ice::CaseCluster::__anon20696
H A DIceTargetLowering.cpp166 LLVM_ATTRIBUTE_NORETURN void badTargetFatalError(TargetArch Target) { argument
168 std::string(targetArchString(Target)));
257 TargetLowering::createLowering(TargetArch Target, Cfg *Func) { argument
258 switch (Target) {
260 badTargetFatalError(Target);
270 const TargetArch Target = getFlags().getTargetArch(); local
272 switch (Target) {
274 badTargetFatalError(Target);
290 const TargetArch Target = getFlags().getTargetArch(); local
291 switch (Target) {
303 const TargetArch Target = getFlags().getTargetArch(); local
331 AutoBundle(TargetLowering *Target, InstBundleLock::Option Option) argument
986 TargetArch Target = getFlags().getTargetArch(); local
1116 TargetArch Target = getFlags().getTargetArch(); local
[all...]
H A DIceTargetLowering.h53 #define UnimplementedLoweringError(Target, Instr) \
56 (Target)->addFakeDefUses(Instr); \
180 static std::unique_ptr<TargetLowering> createLowering(TargetArch Target,
202 Func->setError("Target doesn't specify Om1 lowering steps.");
205 Func->setError("Target doesn't specify O0 lowering steps.");
208 Func->setError("Target doesn't specify O1 lowering steps.");
211 Func->setError("Target doesn't specify O2 lowering steps.");
214 /// Generates calls to intrinsics for operations the Target can't handle.
384 explicit AutoBundle(TargetLowering *Target, InstBundleLock::Option Option =
389 TargetLowering *const Target; member in class:Ice::TargetLowering::AutoBundle
[all...]
H A DIceTargetLoweringARM32.cpp842 // MinNeededOutArgsBytes should be updated if the Target ever creates a
1033 // Target lowering. This requires liveness analysis for some parts of the
1771 Variable *ScratchReg = Target->makeReg(IceType_i32, ScratchRegNum);
1774 Target->legalize(Target->Ctx->getConstantInt32(-Offset),
1776 Target->_sub(ScratchReg, Base, OffsetVal);
1779 Target->legalize(Target->Ctx->getConstantInt32(Offset),
1781 Target->_add(ScratchReg, Base, OffsetVal);
1784 if (ScratchRegNum == Target
2450 legalizeToReg(TargetARM32 *Target, Operand *Src) argument
2454 legalizeToRegOrFlex(TargetARM32 *Target, Operand *Src) argument
[all...]

Completed in 287 milliseconds

12345678910