Home
last modified time | relevance | path

Searched refs:ZExt (Results 1 – 25 of 162) sorted by relevance

1234567

/external/llvm/lib/Target/X86/
DX86FixupSetCC.cpp134 MachineInstr *ZExt = nullptr; in runOnMachineFunction() local
137 ZExt = &Use; in runOnMachineFunction()
139 if (!ZExt) in runOnMachineFunction()
172 BuildMI(*ZExt->getParent(), ZExt, ZExt->getDebugLoc(), in runOnMachineFunction()
177 MRI->replaceRegWith(ZExt->getOperand(0).getReg(), InsertReg); in runOnMachineFunction()
178 ToErase.push_back(ZExt); in runOnMachineFunction()
/external/llvm/unittests/IR/
DAttributesTest.cpp25 AttributeSet::get(C, 1, Attribute::ZExt), in TEST()
47 AttributeSet::get(C, 2, Attribute::ZExt), in TEST()
/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetCallingConv.h23 static const uint64_t ZExt = 1ULL<<0; ///< Zero extended member
50 bool isZExt() const { return Flags & ZExt; } in isZExt()
/external/llvm/lib/Transforms/Instrumentation/
DDataFlowSanitizer.cpp627 F->addAttribute(AttributeSet::ReturnIndex, Attribute::ZExt); in runOnModule()
628 F->addAttribute(1, Attribute::ZExt); in runOnModule()
629 F->addAttribute(2, Attribute::ZExt); in runOnModule()
635 F->addAttribute(AttributeSet::ReturnIndex, Attribute::ZExt); in runOnModule()
636 F->addAttribute(1, Attribute::ZExt); in runOnModule()
637 F->addAttribute(2, Attribute::ZExt); in runOnModule()
644 F->addAttribute(AttributeSet::ReturnIndex, Attribute::ZExt); in runOnModule()
651 F->addAttribute(1, Attribute::ZExt); in runOnModule()
986 Call->addAttribute(AttributeSet::ReturnIndex, Attribute::ZExt); in combineShadows()
987 Call->addAttribute(1, Attribute::ZExt); in combineShadows()
[all …]
/external/llvm/include/llvm/Target/
DTargetCallingConv.h28 static const uint64_t ZExt = 1ULL<<0; ///< Zero extended member
70 bool isZExt() const { return Flags & ZExt; } in isZExt()
/external/swiftshader/third_party/LLVM/include/llvm/
DAttributes.h37 const Attributes ZExt = 1<<0; ///< Zero extended before/after call variable
103 ZExt | SExt,
/external/llvm/lib/Transforms/Utils/
DBypassSlowDivision.cpp127 Value *FastQuotientV = FastBuilder.CreateCast(Instruction::ZExt, in insertFastDiv()
130 Value *FastRemainderV = FastBuilder.CreateCast(Instruction::ZExt, in insertFastDiv()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DCallingConvLower.h35 ZExt, // The value is zero extended in the location. enumerator
127 return (HTP == AExt || HTP == SExt || HTP == ZExt); in isExtInLoc()
/external/llvm/lib/Target/Hexagon/
DHexagonBitTracker.h51 enum { SExt, ZExt }; enumerator
/external/llvm/lib/Transforms/Scalar/
DNaryReassociate.cpp340 } else if (ZExtInst *ZExt = dyn_cast<ZExtInst>(IndexToSplit)) { in tryReassociateGEPAtIndex() local
342 if (isKnownNonNegative(ZExt->getOperand(0), *DL, 0, AC, GEP, DT)) in tryReassociateGEPAtIndex()
343 IndexToSplit = ZExt->getOperand(0); in tryReassociateGEPAtIndex()
/external/llvm/lib/CodeGen/
DAnalysis.cpp552 if (CallerAttrs.contains(Attribute::ZExt)) { in returnTypeIsEligibleForTailCall()
553 if (!CalleeAttrs.contains(Attribute::ZExt)) in returnTypeIsEligibleForTailCall()
557 CallerAttrs.removeAttribute(Attribute::ZExt); in returnTypeIsEligibleForTailCall()
558 CalleeAttrs.removeAttribute(Attribute::ZExt); in returnTypeIsEligibleForTailCall()
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp687 else if (Attrs.hasAttribute(i+1, Attribute::ZExt)) in selectCall()
791 const ZExtInst *ZExt = cast<ZExtInst>(I); in selectZExt() local
793 const Value *Op = ZExt->getOperand(0); in selectZExt()
795 MVT::SimpleValueType To = getLegalType(getSimpleType(ZExt->getType())); in selectZExt()
800 updateValueMap(ZExt, Reg); in selectZExt()
1140 else if (FuncInfo.Fn->getAttributes().hasAttribute(0, Attribute::ZExt)) in selectRet()
1163 case Instruction::ZExt: return selectZExt(I); in fastSelectInstruction()
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
DBlackfinISelLowering.cpp201 else if (VA.getLocInfo() == CCValAssign::ZExt) in LowerFormalArguments()
262 case CCValAssign::ZExt: in LowerReturn()
319 case CCValAssign::ZExt: in LowerCall()
405 case CCValAssign::ZExt: in LowerCall()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DAnalysis.cpp258 if ((CallerRetAttr & Attribute::ZExt) || (CallerRetAttr & Attribute::SExt)) in isInTailCallPosition()
298 if ((CallerRetAttr & Attribute::ZExt) || (CallerRetAttr & Attribute::SExt)) in isInTailCallPosition()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DAttributes.cpp31 if (Attrs & Attribute::ZExt) in getAsString()
100 Incompatible |= SExt | ZExt; in typeIncompatible()
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86GenCallingConv.inc128 LocInfo = CCValAssign::ZExt;
302 LocInfo = CCValAssign::ZExt;
362 LocInfo = CCValAssign::ZExt;
401 LocInfo = CCValAssign::ZExt;
430 LocInfo = CCValAssign::ZExt;
492 LocInfo = CCValAssign::ZExt;
531 LocInfo = CCValAssign::ZExt;
628 LocInfo = CCValAssign::ZExt;
676 LocInfo = CCValAssign::ZExt;
/external/llvm/lib/Target/AArch64/
DAArch64CallLowering.cpp97 case CCValAssign::ZExt: in lowerFormalArguments()
DAArch64TargetTransformInfo.cpp107 case Instruction::ZExt: in getIntImmCost()
299 assert((Opcode == Instruction::SExt || Opcode == Instruction::ZExt) && in getExtractWithExtendCost()
340 case Instruction::ZExt: in getExtractWithExtendCost()
/external/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/
DAttributes.gen54 ZExt,
111 .Case("zeroext", Attribute::ZExt)
404 return llvm::Attribute::ZExt;
/external/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/
DAttributes.gen54 ZExt,
111 .Case("zeroext", Attribute::ZExt)
404 return llvm::Attribute::ZExt;
/external/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/IR/
DAttributes.gen54 ZExt,
111 .Case("zeroext", Attribute::ZExt)
404 return llvm::Attribute::ZExt;
/external/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/
DAttributes.gen54 ZExt,
111 .Case("zeroext", Attribute::ZExt)
404 return llvm::Attribute::ZExt;
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DAttributes.inc54 ZExt,
111 .Case("zeroext", Attribute::ZExt)
404 return llvm::Attribute::ZExt;
/external/llvm/include/llvm/CodeGen/
DCallingConvLower.h37 ZExt, // The value is zero extended in the location. enumerator
155 return (HTP == AExt || HTP == SExt || HTP == ZExt); in isExtInLoc()
DFastISel.h109 RetZExt = Call.paramHasAttr(0, Attribute::ZExt); in setCallee()
133 RetZExt = Call.paramHasAttr(0, Attribute::ZExt);

1234567