Home
last modified time | relevance | path

Searched refs:ShType (Results 1 – 20 of 20) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceELFSection.h49 ELFSection(const std::string &Name, Elf64_Word ShType, Elf64_Xword ShFlags, in ELFSection() argument
52 Header.sh_type = ShType; in ELFSection()
168 ELFSymbolTableSection(const std::string &Name, Elf64_Word ShType, in ELFSymbolTableSection() argument
171 : ELFSection(Name, ShType, ShFlags, ShAddralign, ShEntsize), in ELFSymbolTableSection()
224 ELFRelocationSection(const std::string &Name, Elf64_Word ShType, in ELFRelocationSection() argument
227 : ELFSection(Name, ShType, ShFlags, ShAddralign, ShEntsize), in ELFRelocationSection()
DIceELFObjectWriter.h97 void writeTargetRODataSection(const std::string &Name, Elf64_Word ShType,
128 T *createSection(const std::string &Name, Elf64_Word ShType,
DIceELFObjectWriter.cpp104 T *ELFObjectWriter::createSection(const std::string &Name, Elf64_Word ShType, in createSection() argument
109 new (Ctx.allocate<T>()) T(Name, ShType, ShFlags, ShAddralign, ShEntsize); in createSection()
119 const Elf64_Word ShType = ELF64 ? SHT_RELA : SHT_REL; in createRelocationSection() local
128 RelSectionName, ShType, ShFlags, ShAlign, ShEntSize); in createRelocationSection()
304 Elf64_Word ShType, in writeTargetRODataSection() argument
312 Name, ShType, ShFlags, ShAddralign, ShEntsize); in writeTargetRODataSection()
DIceTargetLoweringMIPS32.cpp5704 const llvm::ELF::Elf64_Word ShType = llvm::ELF::SHT_MIPS_ABIFLAGS; in emitTargetRODataSections() local
5709 Name, ShType, ShFlags, ShAddralign, ShEntsize, in emitTargetRODataSections()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineShifts.cpp552 Type *ShType = InnerShift->getType(); in foldShiftedShift() local
553 unsigned TypeWidth = ShType->getScalarSizeInBits(); in foldShiftedShift()
562 InnerShift->setOperand(1, ConstantInt::get(ShType, ShAmt)); in foldShiftedShift()
578 return Constant::getNullValue(ShType); in foldShiftedShift()
591 ConstantInt::get(ShType, Mask)); in foldShiftedShift()
DInstCombineCompares.cpp2042 Type *ShType = Shl->getType(); in foldICmpShlConstant() local
2051 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2056 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2065 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2071 return new ICmpInst(Pred, X, Constant::getNullValue(ShType)); in foldICmpShlConstant()
2081 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2086 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2095 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2102 ShType, in foldICmpShlConstant()
2105 Constant *LShrC = ConstantInt::get(ShType, C.lshr(*ShiftAmt)); in foldICmpShlConstant()
[all …]
/external/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineShifts.cpp529 Type *ShType = InnerShift->getType(); in foldShiftedShift() local
530 unsigned TypeWidth = ShType->getScalarSizeInBits(); in foldShiftedShift()
539 InnerShift->setOperand(1, ConstantInt::get(ShType, ShAmt)); in foldShiftedShift()
555 return Constant::getNullValue(ShType); in foldShiftedShift()
568 ConstantInt::get(ShType, Mask)); in foldShiftedShift()
DInstCombineCompares.cpp2084 Type *ShType = Shl->getType(); in foldICmpShlConstant() local
2093 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2098 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2107 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2113 return new ICmpInst(Pred, X, Constant::getNullValue(ShType)); in foldICmpShlConstant()
2123 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2128 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2137 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2144 ShType, in foldICmpShlConstant()
2147 Constant *LShrC = ConstantInt::get(ShType, C.lshr(*ShiftAmt)); in foldICmpShlConstant()
[all …]
/external/llvm-project/llvm/test/tools/llvm-readobj/ELF/
Ddependent-libraries.test32 ShType: [[TYPE=<none>]]
Drelr-relocs.test153 ShType: [[SHTYPE=<none>]]
Dmips-got.test38 ShType: [[DYNAMICTYPE=<none>]]
/external/llvm-project/llvm/lib/InterfaceStub/
DELFObjHandler.cpp300 uint32_t ShType) const { in fillSymTabShdr()
301 SymTab.Shdr.sh_type = ShType; in fillSymTabShdr()
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DELFYAML.h235 Optional<ELF_SHT> ShType; member
/external/llvm-project/llvm/lib/ObjectYAML/
DELFYAML.cpp1130 !Section.ShFlags && !Section.ShType && !Section.ShAddrAlign)); in commonSectionMapping()
1136 IO.mapOptional("ShType", Section.ShType); in commonSectionMapping()
DELFEmitter.cpp579 if (From->ShType) in overrideFields()
580 To.sh_type = *From->ShType; in overrideFields()
/external/llvm/lib/Target/AArch64/
DAArch64ISelDAGToDAG.cpp345 AArch64_AM::ShiftExtendType ShType = getShiftTypeForNode(N); in SelectShiftedRegister() local
346 if (ShType == AArch64_AM::InvalidShiftExtend) in SelectShiftedRegister()
348 if (!AllowROR && ShType == AArch64_AM::ROR) in SelectShiftedRegister()
354 unsigned ShVal = AArch64_AM::getShifterImm(ShType, Val); in SelectShiftedRegister()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64ISelDAGToDAG.cpp465 AArch64_AM::ShiftExtendType ShType = getShiftTypeForNode(N); in SelectShiftedRegister() local
466 if (ShType == AArch64_AM::InvalidShiftExtend) in SelectShiftedRegister()
468 if (!AllowROR && ShType == AArch64_AM::ROR) in SelectShiftedRegister()
474 unsigned ShVal = AArch64_AM::getShifterImm(ShType, Val); in SelectShiftedRegister()
DAArch64InstructionSelector.cpp4689 AArch64_AM::ShiftExtendType ShType = getShiftTypeForInst(*ShiftInst); in selectShiftedRegister() local
4690 if (ShType == AArch64_AM::InvalidShiftExtend) in selectShiftedRegister()
4708 unsigned ShiftVal = AArch64_AM::getShifterImm(ShType, Val); in selectShiftedRegister()
/external/llvm-project/llvm/lib/Target/AArch64/
DAArch64ISelDAGToDAG.cpp525 AArch64_AM::ShiftExtendType ShType = getShiftTypeForNode(N); in SelectShiftedRegister() local
526 if (ShType == AArch64_AM::InvalidShiftExtend) in SelectShiftedRegister()
528 if (!AllowROR && ShType == AArch64_AM::ROR) in SelectShiftedRegister()
534 unsigned ShVal = AArch64_AM::getShifterImm(ShType, Val); in SelectShiftedRegister()
/external/llvm-project/llvm/lib/Target/AArch64/GISel/
DAArch64InstructionSelector.cpp5650 AArch64_AM::ShiftExtendType ShType = getShiftTypeForInst(*ShiftInst); in selectShiftedRegister() local
5651 if (ShType == AArch64_AM::InvalidShiftExtend) in selectShiftedRegister()
5669 unsigned ShiftVal = AArch64_AM::getShifterImm(ShType, Val); in selectShiftedRegister()