Searched refs:Repr (Results 1 – 11 of 11) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Integral.h | 41 template <unsigned Bits, bool Signed> struct Repr; 42 template <> struct Repr<8, false> { using Type = uint8_t; }; 43 template <> struct Repr<16, false> { using Type = uint16_t; }; 44 template <> struct Repr<32, false> { using Type = uint32_t; }; 45 template <> struct Repr<64, false> { using Type = uint64_t; }; 46 template <> struct Repr<8, true> { using Type = int8_t; }; 47 template <> struct Repr<16, true> { using Type = int16_t; }; 48 template <> struct Repr<32, true> { using Type = int32_t; }; 49 template <> struct Repr<64, true> { using Type = int64_t; }; 61 using T = typename Repr<Bits, Signed>::Type;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCVSXSwapRemoval.cpp | 643 int Repr = EC->getLeaderValue(SwapVector[EntryIdx].VSEId); in recordUnoptimizableWebs() local 646 if (SwapVector[Repr].WebRejected) in recordUnoptimizableWebs() 656 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 661 Repr)); in recordUnoptimizableWebs() 683 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 704 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 730 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 747 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 781 if (!SwapVector[Repr].WebRejected) { in markSwapsForRemoval() 797 if (!SwapVector[Repr].WebRejected) { in markSwapsForRemoval() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | FastISelEmitter.cpp | 90 char Repr; member in __anon22b6ca640311::OperandsSignature::OpKind 93 OpKind() : Repr(OK_Invalid) {} in OpKind() 95 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; } in operator <() 96 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; } in operator ==() 98 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; } in getReg() 99 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; } in getFP() 103 OpKind K; K.Repr = OK_Imm+V; return K; in getImm() 106 bool isReg() const { return Repr == OK_Reg; } in isReg() 107 bool isFP() const { return Repr == OK_FP; } in isFP() 108 bool isImm() const { return Repr >= OK_Imm; } in isImm() [all …]
|
| H A D | SearchableTableEmitter.cpp | 353 std::string Repr = primaryRepresentation( in emitLookupFunction() local 356 Repr = StringRef(Repr).upper(); in emitLookupFunction() 357 OS << LS << Repr; in emitLookupFunction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/ |
| H A D | AArch64BaseInfo.h | 461 const char *Repr; member
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | PythonDataObjects.h | 285 PythonString Repr() const;
|
| H A D | PythonDataObjects.cpp | 178 PythonString PythonObject::Repr() const { in Repr() function in PythonObject
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64InstPrinter.cpp | 1740 O << "#" << (Val ? Imm1Desc->Repr : Imm0Desc->Repr); in printExactFPImm()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64RegisterInfo.td | 1101 class ZPRExtendRegisterOperand<bit SignExtend, bit IsLSL, string Repr, 1105 !cast<AsmOperandClass>("ZPR" # RegWidth # "AsmOpndExt" # Repr # Scale # Suffix);
|
| H A D | AArch64SystemOperands.td | 324 let SearchableFields = ["Enum", "Repr"]; 329 string Repr = repr;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
| H A D | AArch64AsmParser.cpp | 1355 RealVal.convertFromString(Desc->Repr, APFloat::rmTowardZero); in isExactFPImm()
|