Home
last modified time | relevance | path

Searched refs:NewExpr (Results 1 – 22 of 22) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugProgramInstruction.h432 DIExpression *NewExpr);
458 void setExpression(DIExpression *NewExpr) { Expression = NewExpr; } in setExpression() argument
524 void setAddressExpression(DIExpression *NewExpr) { in setAddressExpression() argument
525 AddressExpression = NewExpr; in setAddressExpression()
H A DIntrinsicInst.h324 DIExpression *NewExpr);
330 void setExpression(DIExpression *NewExpr) { in setExpression() argument
331 setArgOperand(2, MetadataAsValue::get(NewExpr->getContext(), NewExpr)); in setExpression()
517 void setAddressExpression(DIExpression *NewExpr) { in setAddressExpression() argument
519 MetadataAsValue::get(NewExpr->getContext(), NewExpr)); in setAddressExpression()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterp.cpp1026 const Expr *NewExpr) { in CheckNewDeleteForms() argument
1036 S.Note(NewExpr->getExprLoc(), diag::note_constexpr_dynamic_alloc_here) in CheckNewDeleteForms()
1037 << NewExpr->getSourceRange(); in CheckNewDeleteForms()
1808 const auto *NewExpr = cast<CXXNewExpr>(E); in CheckNewTypeMismatch() local
1814 NewExpr->getAllocatedType(), in CheckNewTypeMismatch()
1818 AllocType = NewExpr->getAllocatedType(); in CheckNewTypeMismatch()
1847 if (const auto *NewExpr = dyn_cast<CXXNewExpr>(E)) { in InvalidNewDeleteExpr() local
1848 const FunctionDecl *OperatorNew = NewExpr->getOperatorNew(); in InvalidNewDeleteExpr()
1850 if (NewExpr->getNumPlacementArgs() > 0) { in InvalidNewDeleteExpr()
1864 NewExpr->getNumPlacementArgs() == 1 && in InvalidNewDeleteExpr()
H A DInterp.h129 const Expr *NewExpr);
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumNodes.def79 NODE(NewExpr)
H A DItaniumDemangle.h2119 class NewExpr : public Node {
2127 NewExpr(NodeArray ExprList_, Node *Type_, NodeArray InitList_, bool IsGlobal_, in NewExpr() function
5244 return make<NewExpr>(ExprList, Ty, Inits, Global, in parseExpr()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUMCExpr.cpp697 const MCExpr *NewExpr = tryFoldHelper(Expr, KBM, Ctx); in foldAMDGPUMCExpr() local
699 return Expr != NewExpr ? NewExpr : Expr; in foldAMDGPUMCExpr()
H A DAMDGPUTargetStreamer.cpp383 const MCExpr *NewExpr = foldAMDGPUMCExpr(Value, getContext()); in EmitAmdhsaKernelDescriptor() local
384 printAMDGPUMCExpr(NewExpr, OS, MAI); in EmitAmdhsaKernelDescriptor()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugProgramInstruction.cpp342 DIExpression *NewExpr) { in addVariableLocationOps() argument
343 assert(NewExpr->hasAllLocationOps(getNumVariableLocationOps() + in addVariableLocationOps()
348 setExpression(NewExpr); in addVariableLocationOps()
H A DIntrinsicInst.cpp182 DIExpression *NewExpr) { in addVariableLocationOps() argument
183 assert(NewExpr->hasAllLocationOps(getNumVariableLocationOps() + in addVariableLocationOps()
188 setArgOperand(2, MetadataAsValue::get(getContext(), NewExpr)); in addVariableLocationOps()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp293 const DIExpression *NewExpr = in addLocationAttribute() local
295 if (NewExpr != Expr) { in addLocationAttribute()
296 Expr = NewExpr; in addLocationAttribute()
950 const DIExpression *NewExpr = in applyConcreteDbgVariableAttributes() local
952 if (NewExpr != Expr) { in applyConcreteDbgVariableAttributes()
953 Expr = NewExpr; in applyConcreteDbgVariableAttributes()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp1637 ExprResult NewExpr = in makeNewAndDeleteExpr() local
1639 NewExpr = S.ActOnFinishFullExpr(NewExpr.get(), /*DiscardedValue*/ false); in makeNewAndDeleteExpr()
1640 if (NewExpr.isInvalid()) in makeNewAndDeleteExpr()
1694 this->Allocate = NewExpr.get(); in makeNewAndDeleteExpr()
H A DTreeTransform.h6512 ExprResult NewExpr = getDerived().TransformExpr(CondExpr); in TransformFunctionProtoType() local
6513 if (NewExpr.isInvalid()) in TransformFunctionProtoType()
6516 SemaRef.ActOnEffectExpression(NewExpr.get(), PrevEC.Effect.name()); in TransformFunctionProtoType()
6531 NewEC.Cond = EffectConditionExpr(NewExpr.get()); in TransformFunctionProtoType()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp2051 const Init *NewExpr = Expr->resolveReferences(SR); in resolveReferences() local
2053 if (Start == NewStart && List == NewList && Expr == NewExpr) in resolveReferences()
2056 return get(NewStart, NewList, A, B, NewExpr, getType()) in resolveReferences()
2119 const Init *NewExpr = Expr->resolveReferences(R); in resolveReferences() local
2120 if (Expr != NewExpr) in resolveReferences()
2121 return get(CheckType, NewExpr)->Fold(); in resolveReferences()
2194 const Init *NewExpr = Expr->resolveReferences(R); in resolveReferences() local
2195 if (Expr != NewExpr || R.isFinal()) in resolveReferences()
2196 return get(CheckType, NewExpr)->Fold(R.getCurrentRecord(), R.isFinal()); in resolveReferences()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp405 HexagonMCExpr *NewExpr = HexagonMCExpr::create( in addSignedImmOperands() local
408 NewExpr->setSignMismatch(); in addSignedImmOperands()
409 NewExpr->setMustExtend(Expr->mustExtend()); in addSignedImmOperands()
410 NewExpr->setMustNotExtend(Expr->mustNotExtend()); in addSignedImmOperands()
411 Inst.addOperand(MCOperand::createExpr(NewExpr)); in addSignedImmOperands()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp6704 SmallVectorImpl<uint64_t> &NewExpr) { in UpdateDbgValueInst() argument
6706 unsigned NumLLVMArgs = numLLVMArgOps(NewExpr); in UpdateDbgValueInst()
6709 updateDVIWithLocation(*DbgVal, NewLocationOps[0], NewExpr); in UpdateDbgValueInst()
6710 } else if (NumLLVMArgs == 1 && NewExpr[0] == dwarf::DW_OP_LLVM_arg) { in UpdateDbgValueInst()
6713 assert(NewExpr[1] == 0 && in UpdateDbgValueInst()
6715 llvm::SmallVector<uint64_t, 6> ShortenedOps(llvm::drop_begin(NewExpr, 2)); in UpdateDbgValueInst()
6719 updateDVIWithLocations(*DbgVal, NewLocationOps, NewExpr); in UpdateDbgValueInst()
6851 SmallVector<uint64_t, 3> NewExpr; in SalvageDVI() local
6859 B->appendToVectors(NewExpr, NewLocationOps); in SalvageDVI()
6864 Op.appendToVector(NewExpr); in SalvageDVI()
[all …]
H A DDeadStoreElimination.cpp521 if (auto NewExpr = DIExpression::createFragmentExpression( in shortenAssignment() local
523 Assign->setExpression(*NewExpr); in shortenAssignment()
H A DSROA.cpp5518 DIExpression *NewExpr = DIExpression::get(AI.getContext(), PostOffsetOps); in splitAlloca() local
5521 NewExpr = DIExpression::prepend(NewExpr, /*flags=*/0, OffsetInBytes); in splitAlloca()
5538 insertNewDbgInst(DIB, DbgVariable, Fragment.Alloca, NewExpr, &AI, in splitAlloca()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1314 auto *NewExpr = DIExpression::prependOpcodes(Expr, Ops); in lowerDbgValue() local
1317 Var, NewExpr); in lowerDbgValue()
1360 auto *NewExpr = DIExpression::prependOpcodes(Expr, Ops); in lowerDbgDeclare() local
1363 Var, NewExpr); in lowerDbgDeclare()
H A DSelectionDAGBuilder.cpp1568 DIExpression *NewExpr = in handleKillDebugValue() local
1570 handleDebugValue(Poison, Var, NewExpr, DbgLoc, Order, in handleKillDebugValue()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DVarLocBasedImpl.cpp2202 DIExpression *NewExpr = in recordEntryValue() local
2204 VarLoc EntryValLocAsBackup = VarLoc::CreateEntryBackupLoc(MI, NewExpr); in recordEntryValue()
H A DInstrRefBasedImpl.cpp699 DIExpression *NewExpr = in recoverAsEntryValue() local
704 VarID, &*emitMOLoc(MO, Var, {NewExpr, Prop.Indirect, false}))); in recoverAsEntryValue()