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 323 BailoutId ast_id = frame->is_interpreted() local
326 DCHECK(!ast_id.IsNone());
333 PrintF(" at AST id %d]\n", ast_id.ToInt());
335 maybe_result = Compiler::GetOptimizedCodeForOSR(function, ast_id, frame);
346 DCHECK(BailoutId(data->OsrAstId()->value()) == ast_id);
349 ast_id.ToInt(), data->OsrPcOffset()->value());
380 PrintF(" at AST id %d]\n", ast_id.ToInt());
  /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));
544 TypeFeedbackId ast_id = local
555 SetInfo(ast_id, target);
565 void TypeFeedbackOracle::SetInfo(TypeFeedbackId ast_id, Object* target) {
566 DCHECK(dictionary_->FindEntry(IdToKey(ast_id)) ==
572 dictionary_, IdToKey(ast_id), handle(target, isolate())));
objects.cc 14260 int ast_id = iterator.Next(); local
    [all...]
  /external/v8/src/full-codegen/
full-codegen.h 841 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 138 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_; } function in class:v8::internal::final
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...]
hydrogen-instructions.h 1564 BailoutId ast_id() const { return ast_id_; } function in class:final
4570 BailoutId ast_id() const { return ast_id_; } function in class:final::final
    [all...]
  /external/v8/src/ppc/
macro-assembler-ppc.cc 142 TypeFeedbackId ast_id, Condition cond) {
149 TypeFeedbackId ast_id, Condition cond) {
156 int expected_size = CallSize(code, rmode, ast_id, cond);
161 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) {
162 SetRecordedAstId(ast_id);
2144 Call(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id, cond); local
    [all...]

Completed in 840 milliseconds