Lines Matching refs:HPushArguments
2091 class HPushArguments FINAL : public HInstruction {
2093 static HPushArguments* New(Zone* zone, HValue* context) { in New()
2094 return new(zone) HPushArguments(zone); in New()
2096 static HPushArguments* New(Zone* zone, HValue* context, HValue* arg1) { in New()
2097 HPushArguments* instr = new(zone) HPushArguments(zone); in New()
2101 static HPushArguments* New(Zone* zone, HValue* context, HValue* arg1, in New()
2103 HPushArguments* instr = new(zone) HPushArguments(zone); in New()
2108 static HPushArguments* New(Zone* zone, HValue* context, HValue* arg1, in New()
2110 HPushArguments* instr = new(zone) HPushArguments(zone); in New()
2116 static HPushArguments* New(Zone* zone, HValue* context, HValue* arg1, in New()
2118 HPushArguments* instr = new(zone) HPushArguments(zone); in New()
2150 explicit HPushArguments(Zone* zone) in HPushArguments() function