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

1 2

  /external/v8/src/
type-info.cc 72 Handle<Object> TypeFeedbackOracle::GetInfo(unsigned ast_id) {
73 int entry = dictionary_->FindEntry(ast_id);
491 void TypeFeedbackOracle::CollectReceiverTypes(unsigned ast_id,
495 Handle<Object> object = GetInfo(ast_id);
559 void TypeFeedbackOracle::CollectKeyedReceiverTypes(unsigned ast_id,
561 Handle<Object> object = GetInfo(ast_id);
582 byte TypeFeedbackOracle::ToBooleanTypes(unsigned ast_id) {
583 Handle<Object> object = GetInfo(ast_id);
643 unsigned ast_id = static_cast<unsigned>((*infos)[i].data()); local
653 SetInfo(ast_id, Smi::FromInt(target->check_type()))
696 unsigned ast_id = cache->AstId(i)->value(); local
    [all...]
type-info.h 265 void CollectKeyedReceiverTypes(unsigned ast_id,
285 byte ToBooleanTypes(unsigned ast_id);
297 void CollectReceiverTypes(unsigned ast_id,
302 void SetInfo(unsigned ast_id, Object* target);
315 Handle<Object> GetInfo(unsigned ast_id);
hydrogen.h 120 void SetJoinId(int ast_id);
127 void AddSimulate(int ast_id) { AddInstruction(CreateSimulate(ast_id)); }
170 HSimulate* CreateSimulate(int ast_id);
421 int ast_id() const { return ast_id_; } function in class:v8::internal::HEnvironment
589 virtual void ReturnInstruction(HInstruction* instr, int ast_id) = 0;
595 virtual void ReturnControl(HControlInstruction* instr, int ast_id) = 0;
630 virtual void ReturnInstruction(HInstruction* instr, int ast_id);
631 virtual void ReturnControl(HControlInstruction* instr, int ast_id);
643 virtual void ReturnInstruction(HInstruction* instr, int ast_id);
    [all...]
lithium.h 446 int ast_id,
456 ast_id_(ast_id),
470 int ast_id() const { return ast_id_; } function in class:v8::internal::LEnvironment
lithium.cc 153 stream->Add("[id=%d|", ast_id());
hydrogen.cc 136 HSimulate* HBasicBlock::CreateSimulate(int ast_id) {
139 ASSERT(ast_id == AstNode::kNoNumber ||
140 environment->closure()->shared()->VerifyBailoutId(ast_id));
145 HSimulate* instr = new(zone()) HSimulate(ast_id, pop_count);
200 void HBasicBlock::SetJoinId(int ast_id) {
210 ->VerifyBailoutId(ast_id));
211 simulate->set_ast_id(ast_id);
523 int id = block->predecessors()->first()->last_environment()->ast_id();
527 ASSERT(predecessor->last_environment()->ast_id() == id);
    [all...]
full-codegen.h 526 unsigned ast_id = kNoASTId);
606 unsigned ast_id; member in struct:v8::internal::FullCodeGenerator::TypeFeedbackCellEntry
full-codegen.cc 396 cache->SetAstId(i, Smi::FromInt(type_feedback_cells_[i].ast_id));
458 void FullCodeGenerator::RecordStackCheck(unsigned ast_id) {
462 BailoutEntry entry = { ast_id, static_cast<unsigned>(masm_->pc_offset()) };
    [all...]
frames.cc 853 int ast_id = it.Next(); local
893 ast_id,
    [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 287 static int LookupBailoutId(DeoptimizationInputData* data, unsigned ast_id) {
291 if (static_cast<unsigned>(data->AstId(i)->value()) == ast_id) {
308 unsigned ast_id = data->OsrAstId()->value(); local
311 ASSERT(bailout_id_ == ast_id);
313 int bailout_id = LookupBailoutId(data, ast_id);
332 ASSERT(node_id == ast_id);
355 ast_id,
    [all...]
lithium-ia32.cc 733 LInstruction* instr, int ast_id) {
737 pending_deoptimization_ast_id_ = ast_id;
761 instr, sim->ast_id());
1003 int ast_id = hydrogen_env->ast_id(); local
1004 ASSERT(ast_id != AstNode::kNoNumber ||
1010 ast_id,
    [all...]
macro-assembler-ia32.h 673 void CallStub(CodeStub* stub, unsigned ast_id = kNoASTId);
    [all...]
assembler-ia32.h 884 unsigned ast_id = kNoASTId);
    [all...]
  /external/v8/src/x64/
deoptimizer-x64.cc 173 static int LookupBailoutId(DeoptimizationInputData* data, unsigned ast_id) {
177 if (static_cast<unsigned>(data->AstId(i)->value()) == ast_id) {
194 unsigned ast_id = data->OsrAstId()->value(); local
197 ASSERT(bailout_id_ == ast_id);
199 int bailout_id = LookupBailoutId(data, ast_id);
218 ASSERT(node_id == ast_id);
241 ast_id,
    [all...]
assembler-x64-inl.h 68 unsigned ast_id) {
70 if (rmode == RelocInfo::CODE_TARGET && ast_id != kNoASTId) {
71 RecordRelocInfo(RelocInfo::CODE_TARGET_WITH_ID, ast_id);
lithium-x64.cc 731 LInstruction* instr, int ast_id) {
735 pending_deoptimization_ast_id_ = ast_id;
759 instr, sim->ast_id());
997 int ast_id = hydrogen_env->ast_id(); local
998 ASSERT(ast_id != AstNode::kNoNumber ||
1004 ast_id,
    [all...]
macro-assembler-x64.h     [all...]
  /external/v8/src/arm/
deoptimizer-arm.cc 199 static int LookupBailoutId(DeoptimizationInputData* data, unsigned ast_id) {
203 if (static_cast<unsigned>(data->AstId(i)->value()) == ast_id) {
220 unsigned ast_id = data->OsrAstId()->value(); local
222 int bailout_id = LookupBailoutId(data, ast_id);
241 ASSERT(node_id == ast_id);
264 ast_id,
    [all...]
lithium-arm.cc 736 LInstruction* instr, int ast_id) {
740 pending_deoptimization_ast_id_ = ast_id;
764 instr, sim->ast_id());
1002 int ast_id = hydrogen_env->ast_id(); local
1003 ASSERT(ast_id != AstNode::kNoNumber ||
1009 ast_id,
    [all...]
assembler-arm.h     [all...]
macro-assembler-arm.h 112 unsigned ast_id = kNoASTId,
116 unsigned ast_id = kNoASTId,
    [all...]
  /external/v8/src/mips/
deoptimizer-mips.cc 189 static int LookupBailoutId(DeoptimizationInputData* data, unsigned ast_id) {
193 if (static_cast<unsigned>(data->AstId(i)->value()) == ast_id) {
210 unsigned ast_id = data->OsrAstId()->value(); local
212 int bailout_id = LookupBailoutId(data, ast_id);
231 ASSERT(node_id == ast_id);
254 ast_id,
    [all...]
lithium-mips.cc 736 LInstruction* instr, int ast_id) {
740 pending_deoptimization_ast_id_ = ast_id;
764 instr, sim->ast_id());
1002 int ast_id = hydrogen_env->ast_id(); local
1003 ASSERT(ast_id != AstNode::kNoNumber ||
1009 ast_id,
    [all...]
assembler-mips.h 912 void SetRecordedAstId(unsigned ast_id) {
914 recorded_ast_id_ = ast_id;
    [all...]
macro-assembler-mips.h 185 unsigned ast_id = kNoASTId,
189 unsigned ast_id = kNoASTId,
    [all...]

Completed in 502 milliseconds

1 2