mirror of
https://github.com/NixOS/nix.git
synced 2025-11-24 11:19:35 +01:00
libexpr: ExprCall use std::pmr::vector
This commit is contained in:
parent
2bbec7d573
commit
43fc6c314d
2 changed files with 6 additions and 6 deletions
|
|
@ -592,11 +592,11 @@ public:
|
||||||
struct ExprCall : Expr
|
struct ExprCall : Expr
|
||||||
{
|
{
|
||||||
Expr * fun;
|
Expr * fun;
|
||||||
std::vector<Expr *> args;
|
std::pmr::vector<Expr *> args;
|
||||||
PosIdx pos;
|
PosIdx pos;
|
||||||
std::optional<PosIdx> cursedOrEndPos; // used during parsing to warn about https://github.com/NixOS/nix/issues/11118
|
std::optional<PosIdx> cursedOrEndPos; // used during parsing to warn about https://github.com/NixOS/nix/issues/11118
|
||||||
|
|
||||||
ExprCall(const PosIdx & pos, Expr * fun, std::vector<Expr *> && args)
|
ExprCall(const PosIdx & pos, Expr * fun, std::pmr::vector<Expr *> && args)
|
||||||
: fun(fun)
|
: fun(fun)
|
||||||
, args(args)
|
, args(args)
|
||||||
, pos(pos)
|
, pos(pos)
|
||||||
|
|
@ -604,7 +604,7 @@ struct ExprCall : Expr
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
ExprCall(const PosIdx & pos, Expr * fun, std::vector<Expr *> && args, PosIdx && cursedOrEndPos)
|
ExprCall(const PosIdx & pos, Expr * fun, std::pmr::vector<Expr *> && args, PosIdx && cursedOrEndPos)
|
||||||
: fun(fun)
|
: fun(fun)
|
||||||
, args(args)
|
, args(args)
|
||||||
, pos(pos)
|
, pos(pos)
|
||||||
|
|
@ -836,7 +836,7 @@ public:
|
||||||
// we define some calls to add explicitly so that the argument can be passed in as initializer lists
|
// we define some calls to add explicitly so that the argument can be passed in as initializer lists
|
||||||
template<class C>
|
template<class C>
|
||||||
[[gnu::always_inline]]
|
[[gnu::always_inline]]
|
||||||
C * add(const PosIdx & pos, Expr * fun, std::vector<Expr *> && args)
|
C * add(const PosIdx & pos, Expr * fun, std::pmr::vector<Expr *> && args)
|
||||||
requires(std::same_as<C, ExprCall>)
|
requires(std::same_as<C, ExprCall>)
|
||||||
{
|
{
|
||||||
return alloc.new_object<C>(pos, fun, std::move(args));
|
return alloc.new_object<C>(pos, fun, std::move(args));
|
||||||
|
|
@ -844,7 +844,7 @@ public:
|
||||||
|
|
||||||
template<class C>
|
template<class C>
|
||||||
[[gnu::always_inline]]
|
[[gnu::always_inline]]
|
||||||
C * add(const PosIdx & pos, Expr * fun, std::vector<Expr *> && args, PosIdx && cursedOrEndPos)
|
C * add(const PosIdx & pos, Expr * fun, std::pmr::vector<Expr *> && args, PosIdx && cursedOrEndPos)
|
||||||
requires(std::same_as<C, ExprCall>)
|
requires(std::same_as<C, ExprCall>)
|
||||||
{
|
{
|
||||||
return alloc.new_object<C>(pos, fun, std::move(args), std::move(cursedOrEndPos));
|
return alloc.new_object<C>(pos, fun, std::move(args), std::move(cursedOrEndPos));
|
||||||
|
|
|
||||||
|
|
@ -129,7 +129,7 @@ static Expr * makeCall(Exprs & exprs, PosIdx pos, Expr * fn, Expr * arg) {
|
||||||
%type <Expr *> start expr expr_function expr_if expr_op
|
%type <Expr *> start expr expr_function expr_if expr_op
|
||||||
%type <Expr *> expr_select expr_simple expr_app
|
%type <Expr *> expr_select expr_simple expr_app
|
||||||
%type <Expr *> expr_pipe_from expr_pipe_into
|
%type <Expr *> expr_pipe_from expr_pipe_into
|
||||||
%type <std::vector<Expr *>> list
|
%type <std::pmr::vector<Expr *>> list
|
||||||
%type <ExprAttrs *> binds binds1
|
%type <ExprAttrs *> binds binds1
|
||||||
%type <FormalsBuilder> formals formal_set
|
%type <FormalsBuilder> formals formal_set
|
||||||
%type <Formal> formal
|
%type <Formal> formal
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue