Searched defs:ast_id (Results 1 - 25 of 28) sorted by relevance

12

/external/v8/src/arm/
H A Dmacro-assembler-arm.cc182 unsigned ast_id,
190 unsigned ast_id,
195 if (rmode == RelocInfo::CODE_TARGET && ast_id != kNoASTId) {
196 SetRecordedAstId(ast_id);
201 ASSERT_EQ(CallSize(code, rmode, ast_id, cond),
180 CallSize(Handle<Code> code, RelocInfo::Mode rmode, unsigned ast_id, Condition cond) argument
188 Call(Handle<Code> code, RelocInfo::Mode rmode, unsigned ast_id, Condition cond) argument
H A Ddeoptimizer-arm.cc199 static int LookupBailoutId(DeoptimizationInputData* data, unsigned ast_id) { argument
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,
H A Dassembler-arm.h1206 void SetRecordedAstId(unsigned ast_id) { argument
1208 recorded_ast_id_ = ast_id;
H A Dfull-codegen-arm.cc2200 unsigned ast_id) {
2202 __ Call(code, rmode, ast_id);
2198 CallIC(Handle<Code> code, RelocInfo::Mode rmode, unsigned ast_id) argument
H A Dlithium-arm.cc736 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,
2154 current_block_->last_environment()->set_ast_id(instr->ast_id());
2228 env->set_ast_id(instr->ast_id());
2242 if (pending_deoptimization_ast_id_ == instr->ast_id()) {
735 SetInstructionPendingDeoptimizationEnvironment( LInstruction* instr, int ast_id) argument
[all...]
/external/v8/src/x64/
H A Dassembler-x64-inl.h68 unsigned ast_id) {
70 if (rmode == RelocInfo::CODE_TARGET && ast_id != kNoASTId) {
71 RecordRelocInfo(RelocInfo::CODE_TARGET_WITH_ID, ast_id);
66 emit_code_target(Handle<Code> target, RelocInfo::Mode rmode, unsigned ast_id) argument
H A Ddeoptimizer-x64.cc173 static int LookupBailoutId(DeoptimizationInputData* data, unsigned ast_id) { argument
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,
H A Dassembler-x64.cc878 unsigned ast_id) {
883 emit_code_target(target, rmode, ast_id);
876 call(Handle<Code> target, RelocInfo::Mode rmode, unsigned ast_id) argument
H A Dlithium-x64.cc731 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,
2153 current_block_->last_environment()->set_ast_id(instr->ast_id());
2227 env->set_ast_id(instr->ast_id());
2241 if (pending_deoptimization_ast_id_ == instr->ast_id()) {
730 SetInstructionPendingDeoptimizationEnvironment( LInstruction* instr, int ast_id) argument
[all...]
/external/v8/src/mips/
H A Ddeoptimizer-mips.cc189 static int LookupBailoutId(DeoptimizationInputData* data, unsigned ast_id) { argument
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,
H A Dassembler-mips.h912 void SetRecordedAstId(unsigned ast_id) { argument
914 recorded_ast_id_ = ast_id;
H A Dfull-codegen-mips.cc2224 unsigned ast_id) {
2226 __ Call(code, rmode, ast_id);
2222 CallIC(Handle<Code> code, RelocInfo::Mode rmode, unsigned ast_id) argument
H A Dlithium-mips.cc736 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,
2159 current_block_->last_environment()->set_ast_id(instr->ast_id());
2233 env->set_ast_id(instr->ast_id());
2247 if (pending_deoptimization_ast_id_ == instr->ast_id()) {
735 SetInstructionPendingDeoptimizationEnvironment( LInstruction* instr, int ast_id) argument
[all...]
/external/v8/src/
H A Dtype-info.cc72 Handle<Object> TypeFeedbackOracle::GetInfo(unsigned ast_id) { argument
73 int entry = dictionary_->FindEntry(ast_id);
491 void TypeFeedbackOracle::CollectReceiverTypes(unsigned ast_id, argument
495 Handle<Object> object = GetInfo(ast_id);
559 void TypeFeedbackOracle::CollectKeyedReceiverTypes(unsigned ast_id, argument
561 Handle<Object> object = GetInfo(ast_id);
582 byte TypeFeedbackOracle::ToBooleanTypes(unsigned ast_id) { argument
583 Handle<Object> object = GetInfo(ast_id);
643 unsigned ast_id = static_cast<unsigned>((*infos)[i].data()); local
653 SetInfo(ast_id, Sm
696 unsigned ast_id = cache->AstId(i)->value(); local
708 SetInfo(unsigned ast_id, Object* target) argument
[all...]
H A Dfull-codegen.cc396 cache->SetAstId(i, Smi::FromInt(type_feedback_cells_[i].ast_id));
458 void FullCodeGenerator::RecordStackCheck(unsigned ast_id) { argument
462 BailoutEntry entry = { ast_id, static_cast<unsigned>(masm_->pc_offset()) };
H A Dfull-codegen.h526 unsigned ast_id = kNoASTId);
606 unsigned ast_id; member in struct:v8::internal::FullCodeGenerator::TypeFeedbackCellEntry
H A Dlithium.h446 int ast_id,
456 ast_id_(ast_id),
470 int ast_id() const { return ast_id_; } function in class:v8::internal::LEnvironment
444 LEnvironment(Handle<JSFunction> closure, FrameType frame_type, int ast_id, int parameter_count, int argument_count, int value_count, LEnvironment* outer) argument
H A Dframes.cc853 int ast_id = it.Next(); local
893 ast_id,
H A Dhydrogen-instructions.h1249 HSimulate(int ast_id, int pop_count)
1250 : ast_id_(ast_id),
1259 int ast_id() const { return ast_id_; }
3358 explicit HOsrEntry(int ast_id) : ast_id_(ast_id) { argument
3362 int ast_id() const { return ast_id_; } function in class:v8::HOsrEntry
H A Dhydrogen.h120 void SetJoinId(int ast_id);
127 void AddSimulate(int ast_id) { AddInstruction(CreateSimulate(ast_id)); } argument
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...]
/external/v8/src/ia32/
H A Ddeoptimizer-ia32.cc287 static int LookupBailoutId(DeoptimizationInputData* data, unsigned ast_id) { argument
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,
H A Dassembler-ia32.cc1443 unsigned ast_id) {
1448 emit(reinterpret_cast<intptr_t>(code.location()), rmode, ast_id); local
1441 call(Handle<Code> code, RelocInfo::Mode rmode, unsigned ast_id) argument
H A Dfull-codegen-ia32.cc2137 unsigned ast_id) {
2139 __ call(code, rmode, ast_id);
2135 CallIC(Handle<Code> code, RelocInfo::Mode rmode, unsigned ast_id) argument
H A Dlithium-ia32.cc733 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,
2255 current_block_->last_environment()->set_ast_id(instr->ast_id());
2333 env->set_ast_id(instr->ast_id());
2348 ASSERT(pending_deoptimization_ast_id_ == instr->ast_id());
732 SetInstructionPendingDeoptimizationEnvironment( LInstruction* instr, int ast_id) argument
[all...]
H A Dmacro-assembler-ia32.cc1649 void MacroAssembler::CallStub(CodeStub* stub, unsigned ast_id) { argument
1651 call(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id);

Completed in 599 milliseconds

12