Searched refs:CE (Results 126 - 150 of 252) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCWinCOFFStreamer.cpp46 std::unique_ptr<MCCodeEmitter> CE,
48 : MCObjectStreamer(Context, std::move(MAB), std::move(OW), std::move(CE)),
44 MCWinCOFFStreamer(MCContext &Context, std::unique_ptr<MCAsmBackend> MAB, std::unique_ptr<MCCodeEmitter> CE, std::unique_ptr<MCObjectWriter> OW) argument
H A DMCMachOStreamer.cpp509 std::unique_ptr<MCCodeEmitter> &&CE,
513 new MCMachOStreamer(Context, std::move(MAB), std::move(OW), std::move(CE),
506 createMachOStreamer(MCContext &Context, std::unique_ptr<MCAsmBackend> &&MAB, std::unique_ptr<MCObjectWriter> &&OW, std::unique_ptr<MCCodeEmitter> &&CE, bool RelaxAll, bool DWARFMustBeAtTheEnd, bool LabelSections) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNullabilityChecker.cpp97 void checkPostStmt(const ExplicitCastExpr *CE, CheckerContext &C) const;
926 void NullabilityChecker::checkPostStmt(const ExplicitCastExpr *CE, argument
928 QualType OriginType = CE->getSubExpr()->getType();
929 QualType DestType = CE->getType();
946 auto RegionSVal = C.getSVal(CE).getAs<DefinedOrUnknownSVal>();
968 NullabilityState(DestNullability, CE));
H A DCallAndMessageChecker.cpp54 void checkPreStmt(const CallExpr *CE, CheckerContext &C) const;
314 void CallAndMessageChecker::checkPreStmt(const CallExpr *CE, argument
317 const Expr *Callee = CE->getCallee()->IgnoreParens();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DValue.cpp373 auto *CE = dyn_cast<ConstantExpr>(O);
374 if (!CE)
376 if (contains(Cache, CE, C))
390 auto *CE = dyn_cast<ConstantExpr>(Expr);
391 if (!CE)
395 return contains(Cache, CE, C);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp237 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
238 if (CE->use_empty()) {
239 CE->destroyConstant();
303 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
304 if (CE->getOpcode() == Instruction::GetElementPtr) {
307 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
308 Changed |= CleanupConstantGlobalUsers(CE, SubInit, DL, GetTLI);
309 } else if ((CE->getOpcode() == Instruction::BitCast &&
310 CE->getType()->isPointerTy()) ||
311 CE
326 ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>( local
[all...]
H A DHotColdSplitting.cpp307 CodeExtractor CE(Region, &DT, /* AggregateArgs */ false, /* BFI */ nullptr,
315 CE.findInputsOutputs(Inputs, Outputs, Sinks);
325 if (Function *OutF = CE.extractCodeRegion(CEAC)) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp103 if (const auto *CE = dyn_cast<CastExpr>(E)) {
104 if (CE->getCastKind() == CK_LValueToRValue) {
108 E = CE->getSubExpr();
150 if (const auto *CE = dyn_cast<ImplicitCastExpr>(E))
151 if (CE->getCastKind() == CK_LValueToRValue)
152 E = CE->getSubExpr();
646 if (auto CE = N->getLocationAs<CallEnter>())
647 if (CE->getCalleeContext() == OriginalSCtx)
1136 Optional<CallEnter> CE = N->getLocationAs<CallEnter>(); local
1137 if (!CE)
[all...]
H A DCoreEngine.cpp419 void CoreEngine::HandleCallEnter(const CallEnter &CE, ExplodedNode *Pred) { argument
420 NodeBuilderContext BuilderCtx(*this, CE.getEntry(), Pred);
421 SubEng.processCallEnter(BuilderCtx, CE, Pred);
H A DExplodedGraph.cpp339 if (auto CE = P.getAs<CallEnter>())
340 return CE->getCallExpr();
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp937 if (const auto *CE = dyn_cast<CastExpr>(Base)) {
938 if (CE->getCastKind() == CK_ArrayToPointerDecay &&
939 !isFlexibleArrayMemberExpr(CE->getSubExpr())) {
940 IndexedType = CE->getSubExpr()->getType();
1048 if (const CastExpr *CE = dyn_cast<CastExpr>(E)) {
1049 if (const auto *ECE = dyn_cast<ExplicitCastExpr>(CE))
1052 switch (CE->getCastKind()) {
1057 if (auto PtrTy = CE->getSubExpr()->getType()->getAs<PointerType>()) {
1063 Address Addr = EmitPointerWithAlignment(CE->getSubExpr(),
1069 if (isa<ExplicitCastExpr>(CE)) {
3373 const auto *CE = dyn_cast<CastExpr>(E); local
4485 const auto *CE = cast<ExplicitCastExpr>(E); local
[all...]
H A DCGExprScalar.cpp834 Value *VisitChooseExpr(ChooseExpr *CE);
848 Value *VisitAsTypeExpr(AsTypeExpr *CE);
1947 bool CodeGenFunction::ShouldNullCheckClassCastValue(const CastExpr *CE) { argument
1948 const Expr *E = CE->getSubExpr();
1950 if (CE->getCastKind() == CK_UncheckedDerivedToBase)
1958 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(CE)) {
1970 Value *ScalarExprEmitter::VisitCastExpr(CastExpr *CE) { argument
1971 Expr *E = CE->getSubExpr();
1972 QualType DestTy = CE->getType();
1973 CastKind Kind = CE
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp774 if (auto *CE = dyn_cast<MCConstantExpr>(getShiftedImmVal()))
775 return std::make_pair(CE->getValue(), Width);
778 if (auto *CE = dyn_cast<MCConstantExpr>(getImm())) {
779 int64_t Val = CE->getValue();
972 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); local
973 if (!CE) return false;
974 uint64_t Value = CE->getValue();
983 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); local
984 if (!CE) return false;
985 uint64_t Value = CE
1136 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm()); local
1774 const MCConstantExpr *CE = cast<MCConstantExpr>(getImm()); local
1783 const MCConstantExpr *CE = cast<MCConstantExpr>(getImm()); local
5586 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op.getImm()); local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp80 if (const auto *CE = dyn_cast<CastExpr>(E)) {
81 if (CE->getCastKind() != CK_IntegralCast)
83 E = CE->getSubExpr();
429 if (CallExpr *CE = dyn_cast<CallExpr>(S)) {
430 children = CE->getRawSubExprs();
707 // when constructing the CFG element for \p CE.
800 void appendConstructor(CFGBlock *B, CXXConstructExpr *CE) { argument
802 retrieveAndCleanupConstructionContext(CE)) {
803 B->appendConstructor(CE, CC, cfg->getBumpVectorContext());
808 B->appendStmt(CE, cf
811 appendCall(CFGBlock *B, CallExpr *CE) argument
1375 auto *CE = cast<CXXConstructExpr>(Child); local
[all...]
H A DLiveVariables.cpp281 CXXMemberCallExpr *CE = cast<CXXMemberCallExpr>(S); local
282 if (Expr *ImplicitObj = CE->getImplicitObjectArgument()) {
289 ObjCMessageExpr *CE = cast<ObjCMessageExpr>(S); local
290 if (CE->getReceiverKind() == ObjCMessageExpr::SuperInstance)
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexBody.cpp93 } else if (auto CE = dyn_cast<CallExpr>(Parent)) {
94 if (CE->getCallee()->IgnoreParenCasts() == E) {
107 } else if (auto CXXOp = dyn_cast<CXXOperatorCallExpr>(CE)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DGlobalMerge.cpp312 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U.getUser())) {
313 if (CE->use_empty())
315 UI = &*CE->use_begin();
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/
H A Dllvm-mca.cpp465 mca::CodeEmitter CE(*STI, *MAB, *MCE, Insts);
503 *STI, *MCII, CE, ShowEncoding, Insts, *IP));
530 *STI, *MCII, CE, ShowEncoding, Insts, *IP));
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h401 til::SExpr *translateCallExpr(const CallExpr *CE, CallingContext *Ctx,
417 til::SExpr *translateCastExpr(const CastExpr *CE, CallingContext *Ctx);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DASTSelection.cpp279 else if (const auto *CE = dyn_cast<CallExpr>(Parent)) {
281 CE->getCallee()->IgnoreImpCasts() == S)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/AsmParser/
H A DBPFAsmParser.cpp179 if (auto *CE = dyn_cast<MCConstantExpr>(Expr))
180 Inst.addOperand(MCOperand::createImm(CE->getValue()));
/freebsd-11-stable/sys/dev/fe/
H A Dif_fe_pccard.c91 { PCMCIA_CARD(XIRCOM, CE), MPP_ANYFUNC },
/freebsd-11-stable/libexec/getty/
H A Dgettytab.h157 #define CE gettyflags[9].value macro
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h201 GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.h41 MAP(CE, 78) \

Completed in 523 milliseconds

1234567891011