Home
last modified time | relevance | path

Searched refs:ast_id (Results 1 – 25 of 56) sorted by relevance

123

/external/v8/src/runtime/
Druntime-compiler.cc332 BailoutId ast_id = frame->is_interpreted() in RUNTIME_FUNCTION() local
335 DCHECK(!ast_id.IsNone()); in RUNTIME_FUNCTION()
342 PrintF(" at AST id %d]\n", ast_id.ToInt()); in RUNTIME_FUNCTION()
344 maybe_result = Compiler::GetOptimizedCodeForOSR(function, ast_id, frame); in RUNTIME_FUNCTION()
355 DCHECK(BailoutId(data->OsrAstId()->value()) == ast_id); in RUNTIME_FUNCTION()
358 ast_id.ToInt(), data->OsrPcOffset()->value()); in RUNTIME_FUNCTION()
389 PrintF(" at AST id %d]\n", ast_id.ToInt()); in RUNTIME_FUNCTION()
/external/v8/src/
Dtype-info.cc31 static uint32_t IdToKey(TypeFeedbackId ast_id) { in IdToKey() argument
32 return static_cast<uint32_t>(ast_id.ToInt()); in IdToKey()
36 Handle<Object> TypeFeedbackOracle::GetInfo(TypeFeedbackId ast_id) { in GetInfo() argument
37 int entry = dictionary_->FindEntry(IdToKey(ast_id)); in GetInfo()
562 TypeFeedbackId ast_id = in ProcessRelocInfos() local
573 SetInfo(ast_id, target); in ProcessRelocInfos()
583 void TypeFeedbackOracle::SetInfo(TypeFeedbackId ast_id, Object* target) { in SetInfo() argument
584 DCHECK(dictionary_->FindEntry(IdToKey(ast_id)) == in SetInfo()
590 dictionary_, IdToKey(ast_id), handle(target, isolate()))); in SetInfo()
/external/v8/src/crankshaft/
Dhydrogen.h137 void SetJoinId(BailoutId ast_id);
141 HSimulate* AddNewSimulate(BailoutId ast_id, SourcePosition position,
143 HSimulate* instr = CreateSimulate(ast_id, removable);
192 HSimulate* CreateSimulate(BailoutId ast_id, RemovableSimulate removable);
562 BailoutId ast_id() const { return ast_id_; } in ast_id() function
774 virtual void ReturnInstruction(HInstruction* instr, BailoutId ast_id) = 0;
780 virtual void ReturnControl(HControlInstruction* instr, BailoutId ast_id) = 0;
787 BailoutId ast_id) = 0;
822 void ReturnInstruction(HInstruction* instr, BailoutId ast_id) override;
823 void ReturnControl(HControlInstruction* instr, BailoutId ast_id) override;
[all …]
Dlithium.cc199 stream->Add("[id=%d|", ast_id().ToInt()); in PrintTo()
572 BailoutId ast_id = hydrogen_env->ast_id(); in CreateEnvironment() local
573 DCHECK(!ast_id.IsNone() || in CreateEnvironment()
588 ast_id, 0, 0, 0, outer, hydrogen_env->entry(), zone()); in CreateEnvironment()
603 ast_id, in CreateEnvironment()
Dhydrogen-removable-simulates.cc31 !current_simulate->ast_id().IsNone()) { in Process()
74 } else if (current_simulate->ast_id().IsNone()) { in Process()
Dhydrogen.cc320 DCHECK(!last_environment()->ast_id().IsNone()); in AddInstruction()
345 HSimulate* HBasicBlock::CreateSimulate(BailoutId ast_id, in CreateSimulate() argument
349 DCHECK(ast_id.IsNone() || in CreateSimulate()
350 ast_id == BailoutId::StubEntry() || in CreateSimulate()
351 environment->closure()->shared()->VerifyBailoutId(ast_id)); in CreateSimulate()
357 new(zone()) HSimulate(ast_id, pop_count, zone(), removable); in CreateSimulate()
441 void HBasicBlock::SetJoinId(BailoutId ast_id) { in SetJoinId() argument
451 ->VerifyBailoutId(ast_id))); in SetJoinId()
452 simulate->set_ast_id(ast_id); in SetJoinId()
453 predecessor->last_environment()->set_ast_id(ast_id); in SetJoinId()
[all …]
Dlithium.h404 BailoutId ast_id, in LEnvironment() argument
416 ast_id_(ast_id), in LEnvironment()
434 BailoutId ast_id() const { return ast_id_; } in ast_id() function
Dlithium-codegen.cc227 translation->BeginJSFrame(environment->ast_id(), shared_id, height); in WriteTranslationFrame()
372 data->SetAstId(i, env->ast_id()); in PopulateDeoptimizationData()
/external/v8/src/s390/
Dassembler-s390-inl.h363 TypeFeedbackId ast_id) { in emit_code_target() argument
365 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) { in emit_code_target()
366 SetRecordedAstId(ast_id); in emit_code_target()
Dassembler-s390.h626 TypeFeedbackId ast_id = TypeFeedbackId::None());
1242 void SetRecordedAstId(TypeFeedbackId ast_id) { recorded_ast_id_ = ast_id; } in SetRecordedAstId() argument
1361 TypeFeedbackId ast_id = TypeFeedbackId::None());
Dmacro-assembler-s390.h189 TypeFeedbackId ast_id = TypeFeedbackId::None(),
192 TypeFeedbackId ast_id = TypeFeedbackId::None(),
1229 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None(),
/external/v8/src/x64/
Dassembler-x64-inl.h60 TypeFeedbackId ast_id) { in emit_code_target() argument
63 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) { in emit_code_target()
64 RecordRelocInfo(RelocInfo::CODE_TARGET_WITH_ID, ast_id.ToInt()); in emit_code_target()
Dmacro-assembler-x64.h1052 TypeFeedbackId ast_id = TypeFeedbackId::None());
1445 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None());
/external/v8/src/compiler/
Dast-graph-builder.h241 void PrepareFrameState(Node* node, BailoutId ast_id,
248 void PrepareEagerCheckpoint(BailoutId ast_id);
542 Node* Checkpoint(BailoutId ast_id, OutputFrameStateCombine combine =
Dast-graph-builder.cc844 Node* AstGraphBuilder::Environment::Checkpoint(BailoutId ast_id, in Checkpoint() argument
857 ast_id, combine, builder()->frame_state_function_info()); in Checkpoint()
4014 void AstGraphBuilder::PrepareFrameState(Node* node, BailoutId ast_id, in PrepareFrameState() argument
4017 DCHECK(ast_id.IsNone() || info()->shared_info()->VerifyBailoutId(ast_id)); in PrepareFrameState()
4022 Node* state = environment()->Checkpoint(ast_id, combine, has_exception); in PrepareFrameState()
4027 void AstGraphBuilder::PrepareEagerCheckpoint(BailoutId ast_id) { in PrepareEagerCheckpoint() argument
4033 if (ast_id != BailoutId::None()) { in PrepareEagerCheckpoint()
4034 DCHECK(info()->shared_info()->VerifyBailoutId(ast_id)); in PrepareEagerCheckpoint()
4038 Node* state = environment()->Checkpoint(ast_id); in PrepareEagerCheckpoint()
/external/v8/src/arm/
Dmacro-assembler-arm.h102 TypeFeedbackId ast_id = TypeFeedbackId::None(),
114 TypeFeedbackId ast_id = TypeFeedbackId::None(), Condition cond = al,
118 TypeFeedbackId ast_id = TypeFeedbackId::None(),
1099 TypeFeedbackId ast_id = TypeFeedbackId::None(),
Dmacro-assembler-arm.cc87 CodeStub* stub, TypeFeedbackId ast_id, Condition cond) { in CallStubSize() argument
88 return CallSize(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id, cond); in CallStubSize()
135 TypeFeedbackId ast_id, in CallSize() argument
144 TypeFeedbackId ast_id, in Call() argument
150 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) { in Call()
151 SetRecordedAstId(ast_id); in Call()
2503 TypeFeedbackId ast_id, in CallStub() argument
2506 Call(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id, cond); in CallStub()
/external/v8/src/full-codegen/
Dfull-codegen.cc226 void FullCodeGenerator::CallIC(Handle<Code> code, TypeFeedbackId ast_id) { in CallIC() argument
228 __ Call(code, RelocInfo::CODE_TARGET, ast_id); in CallIC()
312 void FullCodeGenerator::RecordBackEdge(BailoutId ast_id) { in RecordBackEdge() argument
318 { ast_id, static_cast<unsigned>(masm_->pc_offset()), depth }; in RecordBackEdge()
/external/v8/src/arm64/
Dmacro-assembler-arm64.cc1723 void MacroAssembler::CallStub(CodeStub* stub, TypeFeedbackId ast_id) { in CallStub() argument
1725 Call(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id); in CallStub()
1994 TypeFeedbackId ast_id) { in Call() argument
2000 if ((rmode == RelocInfo::CODE_TARGET) && (!ast_id.IsNone())) { in Call()
2001 SetRecordedAstId(ast_id); in Call()
2010 AssertSizeOfCodeGeneratedSince(&start_call, CallSize(code, rmode, ast_id)); in Call()
2043 TypeFeedbackId ast_id) { in CallSize() argument
2045 USE(ast_id); in CallSize()
Dmacro-assembler-arm64.h1135 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None());
1197 TypeFeedbackId ast_id = TypeFeedbackId::None());
1206 TypeFeedbackId ast_id = TypeFeedbackId::None());
/external/v8/src/ppc/
Dmacro-assembler-ppc.h135 TypeFeedbackId ast_id = TypeFeedbackId::None(),
138 TypeFeedbackId ast_id = TypeFeedbackId::None(),
986 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None(),
Dmacro-assembler-ppc.cc142 TypeFeedbackId ast_id, Condition cond) { in CallSize() argument
149 TypeFeedbackId ast_id, Condition cond) { in Call() argument
156 int expected_size = CallSize(code, rmode, ast_id, cond); in Call()
161 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) { in Call()
162 SetRecordedAstId(ast_id); in Call()
2334 void MacroAssembler::CallStub(CodeStub* stub, TypeFeedbackId ast_id, in CallStub() argument
2337 Call(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id, cond); in CallStub()
/external/v8/src/mips/
Dmacro-assembler-mips.h191 TypeFeedbackId ast_id = TypeFeedbackId::None(),
195 TypeFeedbackId ast_id = TypeFeedbackId::None(),
1349 TypeFeedbackId ast_id = TypeFeedbackId::None(),
Dassembler-mips.h1040 void SetRecordedAstId(TypeFeedbackId ast_id) { in SetRecordedAstId() argument
1042 recorded_ast_id_ = ast_id; in SetRecordedAstId()
/external/v8/src/mips64/
Dmacro-assembler-mips64.h219 TypeFeedbackId ast_id = TypeFeedbackId::None(),
223 TypeFeedbackId ast_id = TypeFeedbackId::None(),
1463 TypeFeedbackId ast_id = TypeFeedbackId::None(),

123