| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | UninitializedValues.cpp | 298 void classify(const Expr *E, Class C); 340 void ClassifyRefs::classify(const Expr *E, Class C) { in classify() function in ClassifyRefs 344 classify(CO->getTrueExpr(), C); in classify() 345 classify(CO->getFalseExpr(), C); in classify() 350 classify(BCO->getFalseExpr(), C); in classify() 355 classify(OVE->getSourceExpr(), C); in classify() 362 classify(ME->getBase(), C); in classify() 371 classify(BO->getLHS(), C); in classify() 374 classify(BO->getRHS(), C); in classify() 402 classify(BO->getLHS(), Use); in VisitBinaryOperator() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | InterpBuiltin.cpp | 25 O += align(primSize(*S.getContext().classify(E))); in callArgSize() 77 std::optional<PrimType> T = S.getContext().classify(QT); in pushInteger() 440 PrimType FPClassArgT = *S.getContext().classify(Call->getArg(1)->getType()); in interp__builtin_isfpclass() 446 static_cast<int32_t>((F.classify() & FPClassArg).getZExtValue()); in interp__builtin_isfpclass() 504 PrimType ArgT = *S.getContext().classify(Call->getArg(0)->getType()); in interp__builtin_popcount() 513 PrimType ArgT = *S.getContext().classify(Call->getArg(0)->getType()); in interp__builtin_parity() 522 PrimType ArgT = *S.getContext().classify(Call->getArg(0)->getType()); in interp__builtin_clrsb() 532 PrimType ArgT = *S.getContext().classify(Call->getArg(0)->getType()); in interp__builtin_bitreverse() 563 PrimType ArgT = *S.getContext().classify(Call->getArg(0)->getType()); in interp__builtin_expect() 578 PrimType AmountT = *S.getContext().classify(Call->getArg(1)->getType()); in interp__builtin_rotate() [all …]
|
| H A D | Compiler.cpp | 186 std::optional<PrimType> SubExprT = classify(SubExpr->getType()); in VisitCastExpr() 293 std::optional<PrimType> FromT = classify(SubExpr->getType()); in VisitCastExpr() 310 std::optional<PrimType> ToT = classify(CE->getType()); in VisitCastExpr() 336 if (std::optional<PrimType> T = classify(PointeeType)) in VisitCastExpr() 391 if (std::optional<PrimType> T = classify(PtrType->getPointeeType())) in VisitCastExpr() 432 std::optional<PrimType> FromT = classify(SubExprTy); in VisitCastExpr() 433 std::optional<PrimType> ToT = classify(CE->getType()); in VisitCastExpr() 460 std::optional<PrimType> FromT = classify(SubExpr->getType()); in VisitCastExpr() 461 std::optional<PrimType> ToT = classify(CE->getType()); in VisitCastExpr() 593 assert(!classify(CE->getType())); in VisitCastExpr() [all …]
|
| H A D | Context.h | 74 std::optional<PrimType> classify(QualType T) const; 77 std::optional<PrimType> classify(const Expr *E) const { in classify() function 85 return classify(E->getType()); in classify()
|
| H A D | Program.cpp | 157 if (std::optional<PrimType> T = Ctx.classify(QT)) in getOrCreateDummy() 222 if (std::optional<PrimType> T = Ctx.classify(Ty)) in createGlobal() 344 if (std::optional<PrimType> T = Ctx.classify(FT)) { in getOrCreateRecord() 381 if (std::optional<PrimType> T = Ctx.classify(ElemTy)) { in createDescriptor() 409 if (std::optional<PrimType> T = Ctx.classify(ElemTy)) { in createDescriptor() 432 PrimType ElemTy = *Ctx.classify(CT->getElementType()); in createDescriptor() 439 PrimType ElemTy = *Ctx.classify(VT->getElementType()); in createDescriptor()
|
| H A D | Pointer.cpp | 401 if (std::optional<PrimType> T = Ctx.classify(Ty)) { in toRValue() 418 if (std::optional<PrimType> T = Ctx.classify(FieldTy)) { in toRValue() 441 if (std::optional<PrimType> T = Ctx.classify(FieldTy)) { in toRValue() 479 if (std::optional<PrimType> T = Ctx.classify(ElemTy)) { in toRValue() 493 std::optional<PrimType> ElemT = Ctx.classify(ElemTy); in toRValue() 513 PrimType ElemT = *Ctx.classify(ElemTy); in toRValue() 540 if (std::optional<PrimType> T = Ctx.classify(ResultType)) { in toRValue()
|
| H A D | Compiler.h | 237 std::optional<PrimType> classify(const Expr *E) const { in classify() function 238 return Ctx.classify(E); in classify() 240 std::optional<PrimType> classify(QualType Ty) const { in classify() function 241 return Ctx.classify(Ty); in classify() 246 if (auto T = classify(Ty)) { in classifyPrim() 253 if (auto T = classify(E)) in classifyPrim() 342 return *this->classify(ElemType); in classifyComplexElementType()
|
| H A D | Context.cpp | 127 std::optional<PrimType> Context::classify(QualType T) const { in classify() function in Context 184 return classify(AT->getValueType()); in classify() 187 return classify(DT->getUnderlyingType()); in classify()
|
| H A D | Floating.h | 101 llvm::FPClassTest classify() const { return F.classify(); } in classify() function
|
| H A D | ByteCodeEmitter.cpp | 80 if (!Ty->isVoidType() && !Ctx.classify(Ty)) { in compileFunc() 136 std::optional<PrimType> T = Ctx.classify(PD->getType()); in compileFunc()
|
| H A D | InterpFrame.cpp | 184 PrimType PrimTy = S.Ctx.classify(Ty).value_or(PT_Ptr); in describe()
|
| H A D | EvalEmitter.cpp | 287 if (std::optional<PrimType> T = Ctx.classify(E->getType())) { in updateGlobalTemporaries()
|
| H A D | Interp.cpp | 194 PrimType Ty = S.getContext().classify(Arg).value_or(PT_Ptr); in popArg() 822 Offset += align(primSize(S.Ctx.classify(Arg).value_or(PT_Ptr))); in CheckNonNullArgs()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.cpp | 207 assert(Record::classify(*It) == Record::Func); in ParseCompileUnitAtIndex() 210 while (It != End && Record::classify(*It) == Record::Inline) in ParseCompileUnitAtIndex() 246 assert(Record::classify(*It) == Record::Func); in GetOrCreateFunction() 313 while (It != End && Record::classify(*It) == Record::Inline) { in ParseBlocksRecursive() 858 assert(Record::classify(*It) == Record::Func); in ParseLineTableAndSupportFiles() 861 if (Record::classify(*It) == Record::Inline) in ParseLineTableAndSupportFiles()
|
| /freebsd/contrib/arm-optimized-routines/math/test/rtest/ |
| H A D | intern.h | 61 classify, /* classify double: dbl -> int */ enumerator
|
| H A D | dotest.c | 627 {"isfinite", (funcptr)test_isfinite, classify, {NULL}, cases_uniform, 0, 0x7fffffff}, 629 {"isinf", (funcptr)test_isinf, classify, {NULL}, cases_uniform, 0, 0x7fffffff}, 631 {"isnan", (funcptr)test_isnan, classify, {NULL}, cases_uniform, 0, 0x7fffffff}, 633 {"isnormal", (funcptr)test_isnormal, classify, {NULL}, cases_uniform, 0, 0x7fffffff}, 635 {"signbit", (funcptr)test_signbit, classify, {NULL}, cases_uniform, 0, 0x7fffffff}, 637 {"fpclassify", (funcptr)test_fpclassify, classify, {NULL}, cases_uniform, 0, 0x7fffffff}, 1572 case classify: in vet_for_decline() 1697 case classify: in docase() 1869 case classify: in docase() 2123 case classify: in docase()
|
| H A D | main.c | 58 case classify: in isdouble()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | X86.cpp | 149 Class classify(QualType Ty) const; 631 X86_32ABIInfo::Class X86_32ABIInfo::classify(QualType Ty) const { in classify() function in X86_32ABIInfo 646 Class C = classify(Ty); in updateFreeRegs() 1273 void classify(QualType T, uint64_t OffsetBase, Class &Lo, Class &Hi, 1405 ABIArgInfo classify(QualType Ty, unsigned &FreeSSERegs, bool IsReturnType, 1792 void X86_64ABIInfo::classify(QualType Ty, uint64_t OffsetBase, Class &Lo, in classify() function in X86_64ABIInfo 1843 classify(ET->getDecl()->getIntegerType(), OffsetBase, Lo, Hi, isNamedArg); in classify() 2023 classify(AT->getElementType(), Offset, FieldLo, FieldHi, isNamedArg); in classify() 2076 classify(I.getType(), Offset, FieldLo, FieldHi, isNamedArg); in classify() 2156 classify(i->getType(), Offset, FieldLo, FieldHi, isNamedArg); in classify() [all …]
|
| /freebsd/sys/contrib/openzfs/lib/libzfs/ |
| H A D | libzfs_diff.c | 210 if (di->classify) in print_rename() 233 if (di->classify) in print_link_change() 253 if (di->classify) in print_file() 772 di.classify = (flags & ZFS_DIFF_CLASSIFY); in zfs_show_diffs()
|
| H A D | libzfs_impl.h | 218 boolean_t classify; member
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVSchedule.td | 88 def WriteFClass16 : SchedWrite; // 16-bit floating point classify 89 def WriteFClass32 : SchedWrite; // 32-bit floating point classify 90 def WriteFClass64 : SchedWrite; // 64-bit floating point classify
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
| H A D | ObjectFileBreakpad.cpp | 152 std::optional<Record::Kind> next_section = Record::classify(line); in CreateSections()
|
| H A D | BreakpadRecords.h | 40 static std::optional<Kind> classify(llvm::StringRef Line);
|
| /freebsd/usr.sbin/bsdconfig/share/ |
| H A D | device.subr | 248 f_dprintf "WARNING! Unable to classify %s as %s" \ 413 # First attempt to classify by device catalog (see MAIN) 453 # Attempt to get file(1) magic to potentially classify as 494 # Potentially re-classify as USB device 616 # First attempt to classify by device catalog (see MAIN) 663 # Unable to classify GEOM label
|
| /freebsd/crypto/openssl/doc/designs/ddd/ |
| H A D | README.md | 61 patterns were determined and used to determine categories into which to classify
|