| /freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/ |
| H A D | Constant.h | 633 static Constant *getFP(Type *ElementType, ArrayRef<uint16_t> Elts) { in getFP() function 634 auto *LLVMC = llvm::ConstantDataArray::getFP(ElementType->LLVMTy, Elts); in getFP() 637 static Constant *getFP(Type *ElementType, ArrayRef<uint32_t> Elts) { in getFP() function 638 auto *LLVMC = llvm::ConstantDataArray::getFP(ElementType->LLVMTy, Elts); in getFP() 641 static Constant *getFP(Type *ElementType, ArrayRef<uint64_t> Elts) { in getFP() function 642 auto *LLVMC = llvm::ConstantDataArray::getFP(ElementType->LLVMTy, Elts); in getFP() 725 static Constant *getFP(Type *ElementType, ArrayRef<uint16_t> Elts) { in getFP() function 726 auto *NewLLVMC = llvm::ConstantDataVector::getFP(ElementType->LLVMTy, Elts); in getFP() 729 static Constant *getFP(Type *ElementType, ArrayRef<uint32_t> Elts) { in getFP() function 730 auto *NewLLVMC = llvm::ConstantDataVector::getFP(ElementType->LLVMTy, Elts); in getFP() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Constants.h | 746 LLVM_ABI static Constant *getFP(Type *ElementType, ArrayRef<uint16_t> Elts); 747 LLVM_ABI static Constant *getFP(Type *ElementType, ArrayRef<uint32_t> Elts); 748 LLVM_ABI static Constant *getFP(Type *ElementType, ArrayRef<uint64_t> Elts); 818 LLVM_ABI static Constant *getFP(Type *ElementType, ArrayRef<uint16_t> Elts); 819 LLVM_ABI static Constant *getFP(Type *ElementType, ArrayRef<uint32_t> Elts); 820 LLVM_ABI static Constant *getFP(Type *ElementType, ArrayRef<uint64_t> Elts);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | MemoryTaggingSupport.h | 96 Value *getFP(IRBuilder<> &IRB);
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | FastISelEmitter.cpp | 102 static OpKind getFP() { in getFP() function in __anon3cd78fb00311::OperandsSignature::OpKind 207 Operands.push_back(OpKind::getFP()); in initialize() 247 Operands.push_back(OpKind::getFP()); in initialize()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Constants.cpp | 1261 return SequentialTy::getFP(V[0]->getType(), Elts); in getFPSequenceIfElementsMatch() 2949 Constant *ConstantDataArray::getFP(Type *ElementType, ArrayRef<uint16_t> Elts) { in getFP() function in ConstantDataArray 2956 Constant *ConstantDataArray::getFP(Type *ElementType, ArrayRef<uint32_t> Elts) { in getFP() function in ConstantDataArray 2962 Constant *ConstantDataArray::getFP(Type *ElementType, ArrayRef<uint64_t> Elts) { in getFP() function in ConstantDataArray 3023 Constant *ConstantDataVector::getFP(Type *ElementType, in getFP() function in ConstantDataVector 3031 Constant *ConstantDataVector::getFP(Type *ElementType, in getFP() function in ConstantDataVector 3038 Constant *ConstantDataVector::getFP(Type *ElementType, in getFP() function in ConstantDataVector 3072 return getFP(V->getType(), Elts); in getSplat() 3077 return getFP(V->getType(), Elts); in getSplat() 3082 return getFP(V->getType(), Elts); in getSplat() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86FixupVectorConstants.cpp | 226 return ConstantDataVector::getFP(SclTy, RawBits); in rebuildConstant() 235 return ConstantDataVector::getFP(SclTy, RawBits); in rebuildConstant() 245 return ConstantDataVector::getFP(SclTy, RawBits); in rebuildConstant()
|
| /freebsd/contrib/llvm-project/libunwind/src/ |
| H A D | CompactUnwinder.hpp | 617 uint64_t savedRegisterLoc = registers.getFP() - 8; in stepWithCompactEncodingFrame() 683 uint64_t fp = registers.getFP(); in stepWithCompactEncodingFrame()
|
| H A D | Registers.hpp | 1850 uint64_t getFP() const { return _registers.__fp; } in getFP() function in libunwind::Registers_arm64
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | MemoryTaggingSupport.cpp | 279 Value *getFP(IRBuilder<> &IRB) { in getFP() function
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64StackTagging.cpp | 485 Value *FP = memtag::getFP(IRB); in insertBaseTaggedPointer()
|
| /freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 3396 V = ConstantDataVector::getFP(EltTy, Elts); in parseConstants() 3398 V = ConstantDataArray::getFP(EltTy, Elts); in parseConstants() 3402 V = ConstantDataVector::getFP(EltTy, Elts); in parseConstants() 3404 V = ConstantDataArray::getFP(EltTy, Elts); in parseConstants() 3408 V = ConstantDataVector::getFP(EltTy, Elts); in parseConstants() 3410 V = ConstantDataArray::getFP(EltTy, Elts); in parseConstants() 3414 V = ConstantDataVector::getFP(EltTy, Elts); in parseConstants() 3416 V = ConstantDataArray::getFP(EltTy, Elts); in parseConstants()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | COFF.h | 1472 frame_type getFP() const { return static_cast<frame_type>(Attributes >> 14); } in getFP() function
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | HWAddressSanitizer.cpp | 1329 CachedFP = memtag::getFP(IRB); in getCachedFP()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | DumpOutputStyle.cpp | 1002 formatFrameType(FD.getFP())); in dumpOldFpo()
|