Searched refs:RootConstant (Results 1 – 3 of 3) sorted by relevance
/third_party/node/deps/v8/src/maglev/ |
D | maglev-graph-builder.cc | 93 AddNewNode<RootConstant>({}, RootIndex::kUndefinedValue); in MaglevGraphBuilder() 249 SetAccumulator(AddNewNode<RootConstant>({}, RootIndex::kUndefinedValue)); in VisitLdaUndefined() 252 SetAccumulator(AddNewNode<RootConstant>({}, RootIndex::kNullValue)); in VisitLdaNull() 255 SetAccumulator(AddNewNode<RootConstant>({}, RootIndex::kTheHoleValue)); in VisitLdaTheHole() 258 SetAccumulator(AddNewNode<RootConstant>({}, RootIndex::kTrueValue)); in VisitLdaTrue() 261 SetAccumulator(AddNewNode<RootConstant>({}, RootIndex::kFalseValue)); in VisitLdaFalse() 605 RootConstant* undefined_constant; in MAGLEV_UNIMPLEMENTED_BYTECODE() 609 AddNewNode<RootConstant>({}, RootIndex::kUndefinedValue); in MAGLEV_UNIMPLEMENTED_BYTECODE() 635 RootConstant* undefined_constant; in BuildCallFromRegisters() 638 AddNewNode<RootConstant>({}, RootIndex::kUndefinedValue); in BuildCallFromRegisters()
|
D | maglev-ir.h | 77 V(RootConstant) \ 1092 class RootConstant : public FixedInputValueNodeT<0, RootConstant> { 1093 using Base = FixedInputValueNodeT<0, RootConstant>; 1096 explicit RootConstant(uint32_t bitfield, RootIndex index) in RootConstant() function
|
D | maglev-ir.cc | 455 void RootConstant::AllocateVreg(MaglevVregAllocationState* vreg_state, in AllocateVreg() 459 void RootConstant::GenerateCode(MaglevCodeGenState* code_gen_state, in GenerateCode() 466 void RootConstant::PrintParams(std::ostream& os, in PrintParams()
|