HomeSort by relevance Sort by last modified time
    Searched defs:ast_id (Results 1 - 8 of 8) sorted by null

  /external/v8/src/runtime/
runtime-compiler.cc 226 BailoutId ast_id = caller_code->TranslatePcOffsetToAstId(pc_offset); local
227 DCHECK(!ast_id.IsNone());
234 PrintF(" at AST id %d]\n", ast_id.ToInt());
236 maybe_result = Compiler::GetOptimizedCodeForOSR(function, ast_id, frame);
250 DCHECK(BailoutId(data->OsrAstId()->value()) == ast_id);
253 ast_id.ToInt(), data->OsrPcOffset()->value());
276 PrintF(" at AST id %d]\n", ast_id.ToInt());
  /external/v8/src/profiler/
profiler-listener.cc 245 it.Next(); // Skip ast_id
293 BailoutId ast_id = BailoutId(it.Next()); local
298 int source_position = Deoptimizer::ComputeSourcePosition(shared, ast_id);
  /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));
443 TypeFeedbackId ast_id = local
454 SetInfo(ast_id, target);
464 void TypeFeedbackOracle::SetInfo(TypeFeedbackId ast_id, Object* target) {
465 DCHECK(dictionary_->FindEntry(IdToKey(ast_id)) ==
471 dictionary_, IdToKey(ast_id), handle(target, isolate())));
objects.cc 14038 int ast_id = iterator.Next(); local
    [all...]
  /external/v8/src/full-codegen/
full-codegen.h 1002 BailoutId ast_id(uint32_t index) { function in class:v8::internal::BackEdgeTable
    [all...]
  /external/v8/src/crankshaft/
lithium.h 404 BailoutId ast_id,
416 ast_id_(ast_id),
434 BailoutId ast_id() const { return ast_id_; } function in class:v8::internal::final
hydrogen.h 136 void SetJoinId(BailoutId ast_id);
140 HSimulate* AddNewSimulate(BailoutId ast_id, SourcePosition position,
142 HSimulate* instr = CreateSimulate(ast_id, removable);
191 HSimulate* CreateSimulate(BailoutId ast_id, RemovableSimulate removable);
569 BailoutId ast_id() const { return ast_id_; } function in class:v8::internal::final
781 virtual void ReturnInstruction(HInstruction* instr, BailoutId ast_id) = 0;
787 virtual void ReturnControl(HControlInstruction* instr, BailoutId ast_id) = 0;
794 BailoutId ast_id) = 0;
829 void ReturnInstruction(HInstruction* instr, BailoutId ast_id) override;
830 void ReturnControl(HControlInstruction* instr, BailoutId ast_id) override
    [all...]
hydrogen-instructions.h 1715 BailoutId ast_id() const { return ast_id_; } function in class:final
4752 BailoutId ast_id() const { return ast_id_; } function in class:final::final
    [all...]

Completed in 105 milliseconds