Home
last modified time | relevance | path

Searched refs:Repr (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/clang/lib/AST/Interp/
H A DIntegral.h41 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;
/llvm-project-15.0.7/llvm/unittests/CodeGen/GlobalISel/
H A DGISelMITest.cpp14 std::string Repr; in operator <<() local
15 raw_string_ostream SS{Repr}; in operator <<()
23 std::string Repr; in operator <<() local
24 raw_string_ostream SS{Repr}; in operator <<()
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCVSXSwapRemoval.cpp645 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()
706 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs()
732 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs()
749 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs()
783 if (!SwapVector[Repr].WebRejected) { in markSwapsForRemoval()
799 if (!SwapVector[Repr].WebRejected) { in markSwapsForRemoval()
[all …]
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DFastISelEmitter.cpp90 char Repr; member in __anon7553c2e00311::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 DSearchableTableEmitter.cpp351 std::string Repr = primaryRepresentation( in emitLookupFunction() local
354 Repr = StringRef(Repr).upper(); in emitLookupFunction()
355 OS << LS << Repr; in emitLookupFunction()
/llvm-project-15.0.7/clang/test/InterfaceStubs/
H A Dunresolved-using-typename.cpp11 template<typename T> class C2 : public C1<T> { using typename C1<T>::Repr; };
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h263 PythonString Repr() const;
H A DPythonDataObjects.cpp181 PythonString PythonObject::Repr() const { in Repr() function in PythonObject
/llvm-project-15.0.7/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h518 const char *Repr; member
/llvm-project-15.0.7/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64InstPrinter.cpp1765 O << "#" << (Val ? Imm1Desc->Repr : Imm0Desc->Repr); in printExactFPImm()
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/GlobalISel/
H A Dirtranslator-extract-used-by-dbg.ll312 !284 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "Repr", scope: !46, file: !4, si…
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64RegisterInfo.td1093 class ZPRExtendRegisterOperand<bit SignExtend, bit IsLSL, string Repr,
1097 !cast<AsmOperandClass>("ZPR" # RegWidth # "AsmOpndExt" # Repr # Scale # Suffix);
H A DAArch64SystemOperands.td324 let SearchableFields = ["Enum", "Repr"];
329 string Repr = repr;
/llvm-project-15.0.7/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp1353 RealVal.convertFromString(Desc->Repr, APFloat::rmTowardZero); in isExactFPImm()