| /freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | UninitializedValues.cpp | 329 classify(CO->getTrueExpr(), C); in classify() 330 classify(CO->getFalseExpr(), C); in classify() 347 classify(ME->getBase(), C); in classify() 356 classify(BO->getLHS(), C); in classify() 359 classify(BO->getRHS(), C); in classify() 387 classify(BO->getLHS(), Use); in VisitBinaryOperator() 389 classify(BO->getLHS(), Ignore); in VisitBinaryOperator() 396 classify(UO->getSubExpr(), Use); in VisitUnaryOperator() 401 classify(cast<Expr>(S), Use); in VisitOMPExecutableDirective() 422 classify(CE->getArg(0), Use); in VisitCallExpr() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | ByteCodeExprGen.h | 103 llvm::Optional<PrimType> classify(const Expr *E) const { in classify() function 104 return E->isGLValue() ? PT_Ptr : classify(E->getType()); in classify() 106 llvm::Optional<PrimType> classify(QualType Ty) const { in classify() function 107 return Ctx.classify(Ty); in classify() 117 if (auto T = classify(Ty)) { in classifyPrim() 202 return emitConst(*Ctx.classify(Ty), NumBits, WrappedValue, E); in emitConst()
|
| H A D | ByteCodeExprGen.cpp | 135 if (Optional<PrimType> T = classify(LitTy)) in VisitIntegerLiteral() 163 Optional<PrimType> LT = classify(LHS->getType()); in VisitBinaryOperator() 164 Optional<PrimType> RT = classify(RHS->getType()); in VisitBinaryOperator() 169 if (Optional<PrimType> T = classify(BO->getType())) { in VisitBinaryOperator() 222 if (Optional<PrimType> T = classify(E->getType())) { in visitBool() 260 if (Optional<PrimType> T = classify(LV->getType())) { in dereference() 524 if (Optional<PrimType> T = classify(Exp)) in visitExpr() 535 if (Optional<PrimType> T = classify(VD->getType())) { in visitDecl()
|
| H A D | Program.cpp | 168 if (auto T = Ctx.classify(Ty)) { in createGlobal() 277 if (llvm::Optional<PrimType> T = Ctx.classify(FT)) { in getOrCreateRecord() 311 if (llvm::Optional<PrimType> T = Ctx.classify(ElemTy)) { in createDescriptor() 337 if (llvm::Optional<PrimType> T = Ctx.classify(ElemTy)) { in createDescriptor() 359 PrimType ElemTy = *Ctx.classify(CT->getElementType()); in createDescriptor()
|
| H A D | Context.cpp | 62 llvm::Optional<PrimType> Context::classify(QualType T) { in classify() function in Context 104 return classify(AT->getValueType()); in classify()
|
| H A D | EvalEmitter.cpp | 126 if (llvm::Optional<PrimType> T = Ctx.classify(FieldTy)) { in emitRetValue() 148 if (llvm::Optional<PrimType> T = Ctx.classify(FieldTy)) { in emitRetValue() 180 if (llvm::Optional<PrimType> T = Ctx.classify(ElemTy)) { in emitRetValue()
|
| H A D | ByteCodeEmitter.cpp | 34 if (!Ty->isVoidType() && !Ctx.classify(Ty)) { in compileFunc() 43 if (llvm::Optional<PrimType> T = Ctx.classify(PD->getType())) { in compileFunc()
|
| H A D | ByteCodeStmtGen.cpp | 95 ReturnType = this->classify(F->getReturnType()); in visitFunc() 237 if (Optional<PrimType> T = this->classify(DT)) { in visitVarDecl()
|
| H A D | Context.h | 64 llvm::Optional<PrimType> classify(QualType T);
|
| H A D | InterpFrame.cpp | 125 if (llvm::Optional<PrimType> T = S.Ctx.classify(Ty)) { in describe()
|
| /freebsd-13.1/sys/contrib/openzfs/lib/libzfs/ |
| H A D | libzfs_diff.c | 192 if (di->classify) { in print_rename() 214 if (di->classify) { in print_link_change() 232 if (di->classify) { in print_file() 753 di.classify = (flags & ZFS_DIFF_CLASSIFY); in zfs_show_diffs()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVSchedule.td | 81 def WriteFClass16 : SchedWrite; // 16-bit floating point classify 82 def WriteFClass32 : SchedWrite; // 32-bit floating point classify 83 def WriteFClass64 : SchedWrite; // 64-bit floating point classify
|
| /freebsd-13.1/sys/contrib/openzfs/include/ |
| H A D | libzfs_impl.h | 235 boolean_t classify; member
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
| H A D | ObjectFileBreakpad.cpp | 155 llvm::Optional<Record::Kind> next_section = Record::classify(line); in CreateSections()
|
| H A D | BreakpadRecords.h | 28 static llvm::Optional<Kind> classify(llvm::StringRef Line);
|
| H A D | BreakpadRecords.cpp | 125 llvm::Optional<Record::Kind> Record::classify(llvm::StringRef Line) { in classify() function in Record
|
| /freebsd-13.1/usr.sbin/bsdconfig/share/ |
| H A D | device.subr | 250 f_dprintf "WARNING! Unable to classify %s as %s" \ 415 # First attempt to classify by device catalog (see MAIN) 463 # Attempt to get file(1) magic to potentially classify as 504 # Potentially re-classify as USB device 626 # First attempt to classify by device catalog (see MAIN) 673 # Unable to classify GEOM label
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.cpp | 210 assert(Record::classify(*It) == Record::Func); in ParseCompileUnitAtIndex() 728 assert(Record::classify(*It) == Record::Func); in ParseLineTableAndSupportFiles()
|
| /freebsd-13.1/sys/net/altq/ |
| H A D | altq_subr.c | 171 altq_attach(ifq, type, discipline, enqueue, dequeue, request, clfier, classify) in altq_attach() argument 179 void *(*classify)(void *, struct mbuf *, int); 193 ifq->altq_classify = classify;
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | TargetInfo.cpp | 1137 Class classify(QualType Ty) const; 1644 X86_32ABIInfo::Class X86_32ABIInfo::classify(QualType Ty) const { in classify() function in X86_32ABIInfo 1659 Class C = classify(Ty); in updateFreeRegs() 2263 void classify(QualType T, uint64_t OffsetBase, Class &Lo, Class &Hi, 2790 void X86_64ABIInfo::classify(QualType Ty, uint64_t OffsetBase, in classify() function in X86_64ABIInfo 3067 classify(I.getType(), Offset, FieldLo, FieldHi, isNamedArg); in classify() 3144 classify(i->getType(), Offset, FieldLo, FieldHi, isNamedArg); in classify() 3550 classify(RetTy, 0, Lo, Hi, /*isNamedArg*/ true); in classifyReturnType() 3681 classify(Ty, 0, Lo, Hi, isNamedArg); in classifyArgumentType() 4191 ABIArgInfo WinX86_64ABIInfo::classify(QualType Ty, unsigned &FreeSSERegs, in classify() function in WinX86_64ABIInfo [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IntrinsicsRISCV.td | 438 // For FP classify operations. 445 // For FP classify operations with mask.
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | TargetInstrPredicate.td | 276 // Used to classify machine instructions based on a machine instruction
|
| H A D | Target.td | 757 /// The target specific parser must be able to classify a parsed operand into a 838 // The target specific parser must be able to classify an parsed operand into 862 // The target specific parser must be able to classify an parsed operand into
|
| /freebsd-13.1/bin/sh/ |
| H A D | TOUR | 84 used to classify characters during lexical analysis. There are
|
| /freebsd-13.1/contrib/unbound/doc/ |
| H A D | Changelog | 7545 It could sometimes wrongly classify a domain as unsigned, which 10190 - process_response, classify response, delegpt_from_message.
|