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.cc323 BailoutId ast_id = frame->is_interpreted() in RUNTIME_FUNCTION() local
326 DCHECK(!ast_id.IsNone()); in RUNTIME_FUNCTION()
333 PrintF(" at AST id %d]\n", ast_id.ToInt()); in RUNTIME_FUNCTION()
335 maybe_result = Compiler::GetOptimizedCodeForOSR(function, ast_id, frame); in RUNTIME_FUNCTION()
346 DCHECK(BailoutId(data->OsrAstId()->value()) == ast_id); in RUNTIME_FUNCTION()
349 ast_id.ToInt(), data->OsrPcOffset()->value()); in RUNTIME_FUNCTION()
380 PrintF(" at AST id %d]\n", ast_id.ToInt()); in RUNTIME_FUNCTION()
/external/v8/src/
Dtype-info.cc32 static uint32_t IdToKey(TypeFeedbackId ast_id) { in IdToKey() argument
33 return static_cast<uint32_t>(ast_id.ToInt()); in IdToKey()
37 Handle<Object> TypeFeedbackOracle::GetInfo(TypeFeedbackId ast_id) { in GetInfo() argument
38 int entry = dictionary_->FindEntry(IdToKey(ast_id)); in GetInfo()
544 TypeFeedbackId ast_id = in ProcessRelocInfos() local
555 SetInfo(ast_id, target); in ProcessRelocInfos()
565 void TypeFeedbackOracle::SetInfo(TypeFeedbackId ast_id, Object* target) { in SetInfo() argument
566 DCHECK(dictionary_->FindEntry(IdToKey(ast_id)) == in SetInfo()
572 dictionary_, IdToKey(ast_id), handle(target, isolate()))); in SetInfo()
/external/v8/src/crankshaft/
Dhydrogen.h138 void SetJoinId(BailoutId ast_id);
142 HSimulate* AddNewSimulate(BailoutId ast_id, SourcePosition position,
144 HSimulate* instr = CreateSimulate(ast_id, removable);
193 HSimulate* CreateSimulate(BailoutId ast_id, RemovableSimulate removable);
557 BailoutId ast_id() const { return ast_id_; } in ast_id() function
769 virtual void ReturnInstruction(HInstruction* instr, BailoutId ast_id) = 0;
775 virtual void ReturnControl(HControlInstruction* instr, BailoutId ast_id) = 0;
782 BailoutId ast_id) = 0;
817 void ReturnInstruction(HInstruction* instr, BailoutId ast_id) override;
818 void ReturnControl(HControlInstruction* instr, BailoutId ast_id) override;
[all …]
Dlithium.cc200 stream->Add("[id=%d|", ast_id().ToInt()); in PrintTo()
573 BailoutId ast_id = hydrogen_env->ast_id(); in CreateEnvironment() local
574 DCHECK(!ast_id.IsNone() || in CreateEnvironment()
589 ast_id, 0, 0, 0, outer, hydrogen_env->entry(), zone()); in CreateEnvironment()
604 ast_id, in CreateEnvironment()
Dhydrogen-removable-simulates.cc32 !current_simulate->ast_id().IsNone()) { in Process()
75 } else if (current_simulate->ast_id().IsNone()) { in Process()
Dhydrogen.cc319 DCHECK(!last_environment()->ast_id().IsNone()); in AddInstruction()
344 HSimulate* HBasicBlock::CreateSimulate(BailoutId ast_id, in CreateSimulate() argument
348 DCHECK(ast_id.IsNone() || in CreateSimulate()
349 ast_id == BailoutId::StubEntry() || in CreateSimulate()
350 environment->closure()->shared()->VerifyBailoutId(ast_id)); in CreateSimulate()
356 new(zone()) HSimulate(ast_id, pop_count, zone(), removable); in CreateSimulate()
440 void HBasicBlock::SetJoinId(BailoutId ast_id) { in SetJoinId() argument
450 ->VerifyBailoutId(ast_id))); in SetJoinId()
451 simulate->set_ast_id(ast_id); in SetJoinId()
452 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.cc229 translation->BeginJSFrame(environment->ast_id(), shared_id, height); in WriteTranslationFrame()
375 data->SetAstId(i, env->ast_id()); in PopulateDeoptimizationData()
/external/v8/src/s390/
Dassembler-s390-inl.h376 TypeFeedbackId ast_id) { in emit_code_target() argument
378 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) { in emit_code_target()
379 SetRecordedAstId(ast_id); in emit_code_target()
Dassembler-s390.h841 TypeFeedbackId ast_id = TypeFeedbackId::None());
1264 void SetRecordedAstId(TypeFeedbackId ast_id) { recorded_ast_id_ = ast_id; } in SetRecordedAstId() argument
1383 TypeFeedbackId ast_id = TypeFeedbackId::None());
Dmacro-assembler-s390.h189 TypeFeedbackId ast_id = TypeFeedbackId::None(),
192 TypeFeedbackId ast_id = TypeFeedbackId::None(),
1216 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None(),
/external/v8/src/compiler/
Dast-graph-builder.h227 void PrepareFrameState(Node* node, BailoutId ast_id,
234 void PrepareEagerCheckpoint(BailoutId ast_id);
481 Node* Checkpoint(BailoutId ast_id, OutputFrameStateCombine combine =
Dast-graph-builder.cc682 Node* AstGraphBuilder::Environment::Checkpoint(BailoutId ast_id, in Checkpoint() argument
695 ast_id, combine, builder()->frame_state_function_info()); in Checkpoint()
2846 void AstGraphBuilder::PrepareFrameState(Node* node, BailoutId ast_id, in PrepareFrameState() argument
2849 DCHECK(ast_id.IsNone() || info()->shared_info()->VerifyBailoutId(ast_id)); in PrepareFrameState()
2854 Node* state = environment()->Checkpoint(ast_id, combine, has_exception); in PrepareFrameState()
2859 void AstGraphBuilder::PrepareEagerCheckpoint(BailoutId ast_id) { in PrepareEagerCheckpoint() argument
2865 if (ast_id != BailoutId::None()) { in PrepareEagerCheckpoint()
2866 DCHECK(info()->shared_info()->VerifyBailoutId(ast_id)); in PrepareEagerCheckpoint()
2870 Node* state = environment()->Checkpoint(ast_id); in PrepareEagerCheckpoint()
/external/v8/src/x64/
Dassembler-x64-inl.h59 TypeFeedbackId ast_id) { in emit_code_target() argument
62 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) { in emit_code_target()
63 RecordRelocInfo(RelocInfo::CODE_TARGET_WITH_ID, ast_id.ToInt()); in emit_code_target()
Dmacro-assembler-x64.h1056 TypeFeedbackId ast_id = TypeFeedbackId::None());
1378 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None());
/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(),
1043 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()
2417 TypeFeedbackId ast_id, in CallStub() argument
2420 Call(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id, cond); in CallStub()
/external/v8/src/full-codegen/
Dfull-codegen.cc202 void FullCodeGenerator::CallIC(Handle<Code> code, TypeFeedbackId ast_id) { in CallIC() argument
204 __ Call(code, RelocInfo::CODE_TARGET, ast_id); in CallIC()
301 void FullCodeGenerator::RecordBackEdge(BailoutId ast_id) { in RecordBackEdge() argument
307 { 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()
1977 TypeFeedbackId ast_id) { in Call() argument
1983 if ((rmode == RelocInfo::CODE_TARGET) && (!ast_id.IsNone())) { in Call()
1984 SetRecordedAstId(ast_id); in Call()
1993 AssertSizeOfCodeGeneratedSince(&start_call, CallSize(code, rmode, ast_id)); in Call()
2026 TypeFeedbackId ast_id) { in CallSize() argument
2028 USE(ast_id); in CallSize()
Dmacro-assembler-arm64.h1117 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None());
1179 TypeFeedbackId ast_id = TypeFeedbackId::None());
1188 TypeFeedbackId ast_id = TypeFeedbackId::None());
/external/v8/src/ppc/
Dmacro-assembler-ppc.h135 TypeFeedbackId ast_id = TypeFeedbackId::None(),
138 TypeFeedbackId ast_id = TypeFeedbackId::None(),
932 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()
2141 void MacroAssembler::CallStub(CodeStub* stub, TypeFeedbackId ast_id, in CallStub() argument
2144 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(),
1307 TypeFeedbackId ast_id = TypeFeedbackId::None(),
Dassembler-mips.h1041 void SetRecordedAstId(TypeFeedbackId ast_id) { in SetRecordedAstId() argument
1043 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(),
1415 TypeFeedbackId ast_id = TypeFeedbackId::None(),

123