Searched refs:Repr (Results 1 – 11 of 11) sorted by relevance
/freebsd-src/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Integral.h | 35 template <unsigned Bits, bool Signed> struct Repr; 36 template <> struct Repr<8, false> { using Type = uint8_t; }; 37 template <> struct Repr<16, false> { using Type = uint16_t; }; 38 template <> struct Repr<32, false> { using Type = uint32_t; }; 39 template <> struct Repr<64, false> { using Type = uint64_t; }; 40 template <> struct Repr<8, true> { using Type = int8_t; }; 41 template <> struct Repr<16, true> { using Type = int16_t; }; 42 template <> struct Repr<32, true> { using Type = int32_t; }; 43 template <> struct Repr<64, true> { using Type = int64_t; }; 55 using ReprT = typename Repr<Bit [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCVSXSwapRemoval.cpp | 645 int Repr = EC->getLeaderValue(SwapVector[EntryIdx].VSEId); in recordUnoptimizableWebs() local 648 if (SwapVector[Repr].WebRejected) in recordUnoptimizableWebs() 658 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 663 Repr)); in recordUnoptimizableWebs() 685 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 688 "Web %d rejected for load not feeding swap\n", Repr)); in recordUnoptimizableWebs() 706 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 709 "Web %d rejected for load/swap feeding a store\n", Repr)); in recordUnoptimizableWebs() 732 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 735 "Web %d rejected for store not fed by swap\n", Repr)); in recordUnoptimizableWebs() [all …]
|
/freebsd-src/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | FastISelEmitter.cpp | 92 char Repr; 95 OpKind() : Repr(OK_Invalid) {} 97 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; } in OpKind() 98 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; } 102 K.Repr = OK_Reg; in getReg() 107 K.Repr = OK_FP; in getImm() 112 "Too many integer predicates for the 'Repr' char"); in isImm() 114 K.Repr 94 char Repr; global() member in __anon325e80020311::OperandsSignature::OpKind [all...] |
H A D | SearchableTableEmitter.cpp | 367 std::string Repr = primaryRepresentation( in emitLookupFunction() 370 Repr = StringRef(Repr).upper(); in emitLookupFunction() 371 OS << LS << Repr; in emitLookupFunction() 354 std::string Repr = primaryRepresentation( emitLookupFunction() local
|
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | PythonDataObjects.h | 278 PythonString Repr() const;
|
H A D | PythonDataObjects.cpp | 184 PythonString PythonObject::Repr() const { in Repr() function in PythonObject
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/ |
H A D | AArch64BaseInfo.h | 558 const char *Repr; member
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64InstPrinter.cpp | 2105 << "#" << (Val ? Imm1Desc->Repr : Imm0Desc->Repr); in printExactFPImm()
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64RegisterInfo.td | 1534 class ZPRExtendRegisterOperand<bit SignExtend, bit IsLSL, string Repr, 1538 !cast<AsmOperandClass>("ZPR" # RegWidth # "AsmOpndExt" # Repr # Scale # Suffix);
|
H A D | AArch64SystemOperands.td | 388 let SearchableFields = ["Enum", "Repr"]; 393 string Repr = repr;
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
H A D | AArch64AsmParser.cpp | 1511 RealVal.convertFromString(Desc->Repr, APFloat::rmTowardZero);
|