HomeSort by relevance Sort by last modified time
    Searched refs:ast_id (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/v8/src/runtime/
runtime-compiler.cc 241 BailoutId ast_id = caller_code->TranslatePcOffsetToAstId(pc_offset); local
242 DCHECK(!ast_id.IsNone());
259 if (dispatcher->IsQueuedForOSR(function, ast_id)) {
263 PrintF(" at AST id %d]\n", ast_id.ToInt());
268 job = dispatcher->FindReadyOSRCandidate(function, ast_id);
275 PrintF(" at AST id %d]\n", ast_id.ToInt());
282 PrintF(" at AST id %d]\n", ast_id.ToInt());
285 function, caller_code, mode, ast_id,
303 DCHECK(BailoutId(data->OsrAstId()->value()) == ast_id);
306 ast_id.ToInt(), data->OsrPcOffset()->value())
    [all...]
  /external/v8/src/
type-info.cc 32 static uint32_t IdToKey(TypeFeedbackId ast_id) {
33 return static_cast<uint32_t>(ast_id.ToInt());
37 Handle<Object> TypeFeedbackOracle::GetInfo(TypeFeedbackId ast_id) {
38 int entry = dictionary_->FindEntry(IdToKey(ast_id));
449 TypeFeedbackId ast_id = local
461 SetInfo(ast_id, target);
471 void TypeFeedbackOracle::SetInfo(TypeFeedbackId ast_id, Object* target) {
472 DCHECK(dictionary_->FindEntry(IdToKey(ast_id)) ==
478 dictionary_, IdToKey(ast_id), handle(target, isolate())));
frames.cc 954 BailoutId const ast_id = BailoutId(it.Next()); local
    [all...]
  /external/v8/src/crankshaft/
hydrogen-removable-simulates.cc 31 !current_simulate->ast_id().IsNone()) {
74 } else if (current_simulate->ast_id().IsNone()) {
lithium.cc 193 stream->Add("[id=%d|", ast_id().ToInt());
528 BailoutId ast_id = hydrogen_env->ast_id(); local
529 DCHECK(!ast_id.IsNone() ||
540 ast_id,
hydrogen.h 111 void SetJoinId(BailoutId ast_id);
115 HSimulate* AddNewSimulate(BailoutId ast_id, SourcePosition position,
117 HSimulate* instr = CreateSimulate(ast_id, removable);
166 HSimulate* CreateSimulate(BailoutId ast_id, RemovableSimulate removable);
544 BailoutId ast_id() const { return ast_id_; } function in class:v8::internal::final
746 virtual void ReturnInstruction(HInstruction* instr, BailoutId ast_id) = 0;
752 virtual void ReturnControl(HControlInstruction* instr, BailoutId ast_id) = 0;
759 BailoutId ast_id) = 0;
794 void ReturnInstruction(HInstruction* instr, BailoutId ast_id) override;
795 void ReturnControl(HControlInstruction* instr, BailoutId ast_id) override
    [all...]
lithium.h 403 BailoutId ast_id,
415 ast_id_(ast_id),
433 BailoutId ast_id() const { return ast_id_; } function in class:v8::internal::final
lithium-codegen.cc 215 translation->BeginJSFrame(environment->ast_id(), shared_id, height);
323 data->SetAstId(i, env->ast_id());
hydrogen.cc 142 DCHECK(!last_environment()->ast_id().IsNone());
167 HSimulate* HBasicBlock::CreateSimulate(BailoutId ast_id,
171 DCHECK(ast_id.IsNone() ||
172 ast_id == BailoutId::StubEntry() ||
173 environment->closure()->shared()->VerifyBailoutId(ast_id));
179 new(zone()) HSimulate(ast_id, pop_count, zone(), removable);
263 void HBasicBlock::SetJoinId(BailoutId ast_id) {
273 ->VerifyBailoutId(ast_id)));
274 simulate->set_ast_id(ast_id);
275 predecessor->last_environment()->set_ast_id(ast_id);
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.h 229 void PrepareFrameState(Node* node, BailoutId ast_id,
521 Node* Checkpoint(BailoutId ast_id, OutputFrameStateCombine combine =
  /external/v8/src/x64/
assembler-x64-inl.h 59 TypeFeedbackId ast_id) {
62 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) {
63 RecordRelocInfo(RelocInfo::CODE_TARGET_WITH_ID, ast_id.ToInt());
  /external/v8/src/arm/
macro-assembler-arm.h 101 TypeFeedbackId ast_id = TypeFeedbackId::None(),
118 TypeFeedbackId ast_id = TypeFeedbackId::None(),
122 TypeFeedbackId ast_id = TypeFeedbackId::None(),
    [all...]
macro-assembler-arm.cc 87 CodeStub* stub, TypeFeedbackId ast_id, Condition cond) {
88 return CallSize(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id, cond);
152 TypeFeedbackId ast_id,
161 TypeFeedbackId ast_id,
167 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) {
168 SetRecordedAstId(ast_id);
    [all...]
assembler-arm.h     [all...]
  /external/v8/src/arm64/
macro-assembler-arm64.h     [all...]
macro-assembler-arm64.cc     [all...]
assembler-arm64.h     [all...]
  /external/v8/src/mips/
macro-assembler-mips.h 190 TypeFeedbackId ast_id = TypeFeedbackId::None(),
194 TypeFeedbackId ast_id = TypeFeedbackId::None(),
    [all...]
assembler-mips.h     [all...]
  /external/v8/src/ppc/
macro-assembler-ppc.h 138 TypeFeedbackId ast_id = TypeFeedbackId::None(),
141 TypeFeedbackId ast_id = TypeFeedbackId::None(),
    [all...]
macro-assembler-ppc.cc 151 TypeFeedbackId ast_id, Condition cond) {
158 TypeFeedbackId ast_id, Condition cond) {
165 int expected_size = CallSize(code, rmode, ast_id, cond);
170 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) {
171 SetRecordedAstId(ast_id);
    [all...]
assembler-ppc.h     [all...]
  /external/v8/src/mips64/
macro-assembler-mips64.h 218 TypeFeedbackId ast_id = TypeFeedbackId::None(),
222 TypeFeedbackId ast_id = TypeFeedbackId::None(),
    [all...]
assembler-mips64.h     [all...]
  /external/v8/src/full-codegen/
full-codegen.cc 234 void FullCodeGenerator::RecordBackEdge(BailoutId ast_id) {
240 { ast_id, static_cast<unsigned>(masm_->pc_offset()), depth };
    [all...]

Completed in 472 milliseconds

1 2 3