Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugProgramInstruction.h418 DIExpression *NewExpr);
439 void setExpression(DIExpression *NewExpr) { Expression = NewExpr; } in setExpression() argument
505 void setAddressExpression(DIExpression *NewExpr) { in setAddressExpression() argument
506 AddressExpression = NewExpr; in setAddressExpression()
H A DIntrinsicInst.h322 DIExpression *NewExpr);
328 void setExpression(DIExpression *NewExpr) { in setExpression() argument
329 setArgOperand(2, MetadataAsValue::get(NewExpr->getContext(), NewExpr)); in setExpression()
507 void setAddressExpression(DIExpression *NewExpr) { in setAddressExpression() argument
509 MetadataAsValue::get(NewExpr->getContext(), NewExpr)); in setAddressExpression()
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumNodes.def79 NODE(NewExpr)
H A DItaniumDemangle.h2075 class NewExpr : public Node {
2083 NewExpr(NodeArray ExprList_, Node *Type_, NodeArray InitList_, bool IsGlobal_, in NewExpr() function
5001 return make<NewExpr>(ExprList, Ty, Inits, Global, in parseExpr()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugProgramInstruction.cpp341 DIExpression *NewExpr) { in addVariableLocationOps() argument
342 assert(NewExpr->hasAllLocationOps(getNumVariableLocationOps() + in addVariableLocationOps()
347 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.cpp270 const DIExpression *NewExpr = in addLocationAttribute() local
272 if (NewExpr != Expr) { in addLocationAttribute()
273 Expr = NewExpr; in addLocationAttribute()
913 const DIExpression *NewExpr = in applyConcreteDbgVariableAttributes() local
915 if (NewExpr != Expr) { in applyConcreteDbgVariableAttributes()
916 Expr = NewExpr; in applyConcreteDbgVariableAttributes()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp1552 ExprResult NewExpr = in makeNewAndDeleteExpr() local
1554 NewExpr = S.ActOnFinishFullExpr(NewExpr.get(), /*DiscardedValue*/ false); in makeNewAndDeleteExpr()
1555 if (NewExpr.isInvalid()) in makeNewAndDeleteExpr()
1609 this->Allocate = NewExpr.get(); in makeNewAndDeleteExpr()
H A DTreeTransform.h6285 ExprResult NewExpr = getDerived().TransformExpr(CondExpr); in TransformFunctionProtoType() local
6286 if (NewExpr.isInvalid()) in TransformFunctionProtoType()
6289 SemaRef.ActOnEffectExpression(NewExpr.get(), PrevEC.Effect.name()); in TransformFunctionProtoType()
6304 NewEC.Cond = EffectConditionExpr(NewExpr.get()); in TransformFunctionProtoType()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterp.cpp737 const Expr *NewExpr) { in CheckNewDeleteForms() argument
756 S.Note(NewExpr->getExprLoc(), diag::note_constexpr_dynamic_alloc_here) in CheckNewDeleteForms()
757 << NewExpr->getSourceRange(); in CheckNewDeleteForms()
H A DInterp.h134 const Expr *NewExpr);
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp1944 Init *NewExpr = Expr->resolveReferences(SR); in resolveReferences() local
1946 if (Start == NewStart && List == NewList && Expr == NewExpr) in resolveReferences()
1949 return get(NewStart, NewList, A, B, NewExpr, getType()) in resolveReferences()
2010 Init *NewExpr = Expr->resolveReferences(R); in resolveReferences() local
2011 if (Expr != NewExpr) in resolveReferences()
2012 return get(CheckType, NewExpr)->Fold(); in resolveReferences()
2085 Init *NewExpr = Expr->resolveReferences(R); in resolveReferences() local
2086 if (Expr != NewExpr || R.isFinal()) in resolveReferences()
2087 return get(CheckType, NewExpr)->Fold(R.getCurrentRecord(), R.isFinal()); in resolveReferences()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp403 HexagonMCExpr *NewExpr = HexagonMCExpr::create( in addSignedImmOperands() local
406 NewExpr->setSignMismatch(); in addSignedImmOperands()
407 NewExpr->setMustExtend(Expr->mustExtend()); in addSignedImmOperands()
408 NewExpr->setMustNotExtend(Expr->mustNotExtend()); in addSignedImmOperands()
409 Inst.addOperand(MCOperand::createExpr(NewExpr)); in addSignedImmOperands()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp6741 SmallVectorImpl<uint64_t> &NewExpr) { in UpdateDbgValueInst() argument
6743 unsigned NumLLVMArgs = numLLVMArgOps(NewExpr); in UpdateDbgValueInst()
6746 updateDVIWithLocation(*DbgVal, NewLocationOps[0], NewExpr); in UpdateDbgValueInst()
6747 } else if (NumLLVMArgs == 1 && NewExpr[0] == dwarf::DW_OP_LLVM_arg) { in UpdateDbgValueInst()
6750 assert(NewExpr[1] == 0 && in UpdateDbgValueInst()
6752 llvm::SmallVector<uint64_t, 6> ShortenedOps(llvm::drop_begin(NewExpr, 2)); in UpdateDbgValueInst()
6756 updateDVIWithLocations(*DbgVal, NewLocationOps, NewExpr); in UpdateDbgValueInst()
6886 SmallVector<uint64_t, 3> NewExpr; in SalvageDVI() local
6894 B->appendToVectors(NewExpr, NewLocationOps); in SalvageDVI()
6899 Op.appendToVector(NewExpr); in SalvageDVI()
[all …]
H A DDeadStoreElimination.cpp500 if (auto NewExpr = DIExpression::createFragmentExpression( in shortenAssignment() local
502 Assign->setExpression(*NewExpr); in shortenAssignment()
H A DSROA.cpp5373 DIExpression *NewExpr = DIExpression::get(AI.getContext(), PostOffsetOps); in splitAlloca() local
5376 NewExpr = DIExpression::prepend(NewExpr, /*flags=*/0, OffsetInBytes); in splitAlloca()
5393 insertNewDbgInst(DIB, DbgVariable, Fragment.Alloca, NewExpr, &AI, in splitAlloca()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1322 auto *NewExpr = DIExpression::prependOpcodes(Expr, Ops); in lowerDbgValue() local
1325 Var, NewExpr); in lowerDbgValue()
1368 auto *NewExpr = DIExpression::prependOpcodes(Expr, Ops); in lowerDbgDeclare() local
1371 Var, NewExpr); in lowerDbgDeclare()
H A DSelectionDAGBuilder.cpp1578 DIExpression *NewExpr = in handleKillDebugValue() local
1580 handleDebugValue(Poison, Var, NewExpr, DbgLoc, Order, in handleKillDebugValue()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DVarLocBasedImpl.cpp2198 DIExpression *NewExpr = in recordEntryValue() local
2200 VarLoc EntryValLocAsBackup = VarLoc::CreateEntryBackupLoc(MI, NewExpr); in recordEntryValue()
H A DInstrRefBasedImpl.cpp683 DIExpression *NewExpr = in recoverAsEntryValue() local
688 VarID, &*emitMOLoc(MO, Var, {NewExpr, Prop.Indirect, false}))); in recoverAsEntryValue()