• Home
  • Raw
  • Download

Lines Matching refs:ast_id

136 HSimulate* HBasicBlock::CreateSimulate(int ast_id) {  in CreateSimulate()  argument
139 ASSERT(ast_id == AstNode::kNoNumber || in CreateSimulate()
140 environment->closure()->shared()->VerifyBailoutId(ast_id)); in CreateSimulate()
145 HSimulate* instr = new(zone()) HSimulate(ast_id, pop_count); in CreateSimulate()
200 void HBasicBlock::SetJoinId(int ast_id) { in SetJoinId() argument
210 ->VerifyBailoutId(ast_id)); in SetJoinId()
211 simulate->set_ast_id(ast_id); in SetJoinId()
523 int id = block->predecessors()->first()->last_environment()->ast_id(); in Verify()
527 ASSERT(predecessor->last_environment()->ast_id() == id); in Verify()
2268 void EffectContext::ReturnInstruction(HInstruction* instr, int ast_id) { in ReturnInstruction() argument
2271 if (instr->HasObservableSideEffects()) owner()->AddSimulate(ast_id); in ReturnInstruction()
2275 void EffectContext::ReturnControl(HControlInstruction* instr, int ast_id) { in ReturnControl() argument
2282 HBasicBlock* join = owner()->CreateJoin(empty_true, empty_false, ast_id); in ReturnControl()
2287 void ValueContext::ReturnInstruction(HInstruction* instr, int ast_id) { in ReturnInstruction() argument
2294 if (instr->HasObservableSideEffects()) owner()->AddSimulate(ast_id); in ReturnInstruction()
2298 void ValueContext::ReturnControl(HControlInstruction* instr, int ast_id) { in ReturnControl() argument
2313 owner()->CreateJoin(materialize_true, materialize_false, ast_id); in ReturnControl()
2318 void TestContext::ReturnInstruction(HInstruction* instr, int ast_id) { in ReturnInstruction() argument
2326 builder->AddSimulate(ast_id); in ReturnInstruction()
2333 void TestContext::ReturnControl(HControlInstruction* instr, int ast_id) { in ReturnControl() argument
2601 void HGraphBuilder::AddSimulate(int ast_id) { in AddSimulate() argument
2603 current_block()->AddSimulate(ast_id); in AddSimulate()
4170 int ast_id) { in HandleGlobalVariableAssignment() argument
4180 if (instr->HasObservableSideEffects()) AddSimulate(ast_id); in HandleGlobalVariableAssignment()
4194 if (instr->HasObservableSideEffects()) AddSimulate(ast_id); in HandleGlobalVariableAssignment()
4700 int ast_id, in HandlePolymorphicElementAccess() argument
4881 join->SetJoinId(ast_id); in HandlePolymorphicElementAccess()
4891 int ast_id, in HandleKeyedElementAccess() argument
4909 obj, key, val, expr, ast_id, position, is_store, has_side_effects); in HandleKeyedElementAccess()
5180 int ast_id, in TryInline() argument
5444 if_true->SetJoinId(ast_id); in TryInline()
5449 if_false->SetJoinId(ast_id); in TryInline()
5457 function_return()->SetJoinId(ast_id); in TryInline()
7629 ast_id_(other->ast_id()) { in HEnvironment()