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

1 2 3 4

  /external/chromium_org/v8/src/
type-info.h 247 bool StoreIsUninitialized(TypeFeedbackId ast_id);
248 bool StoreIsMonomorphicNormal(TypeFeedbackId ast_id);
249 bool StoreIsKeyedPolymorphic(TypeFeedbackId ast_id);
261 KeyedAccessStoreMode GetStoreMode(TypeFeedbackId ast_id);
273 void CollectKeyedReceiverTypes(TypeFeedbackId ast_id,
275 void CollectPolymorphicStoreReceiverTypes(TypeFeedbackId ast_id,
319 void CollectReceiverTypes(TypeFeedbackId ast_id,
324 void SetInfo(TypeFeedbackId ast_id, Object* target);
337 Handle<Object> GetInfo(TypeFeedbackId ast_id);
340 Handle<Cell> GetInfoCell(TypeFeedbackId ast_id);
    [all...]
type-info.cc 71 static uint32_t IdToKey(TypeFeedbackId ast_id) {
72 return static_cast<uint32_t>(ast_id.ToInt());
76 Handle<Object> TypeFeedbackOracle::GetInfo(TypeFeedbackId ast_id) {
77 int entry = dictionary_->FindEntry(IdToKey(ast_id));
92 TypeFeedbackId ast_id) {
93 int entry = dictionary_->FindEntry(IdToKey(ast_id));
141 bool TypeFeedbackOracle::StoreIsUninitialized(TypeFeedbackId ast_id) {
142 Handle<Object> map_or_code = GetInfo(ast_id);
150 bool TypeFeedbackOracle::StoreIsMonomorphicNormal(TypeFeedbackId ast_id) {
151 Handle<Object> map_or_code = GetInfo(ast_id);
615 TypeFeedbackId ast_id = local
670 TypeFeedbackId ast_id = cache->AstId(i); local
    [all...]
hydrogen.h 133 void SetJoinId(BailoutId ast_id);
146 HSimulate* AddNewSimulate(BailoutId ast_id,
148 HSimulate* instr = CreateSimulate(ast_id, removable);
194 HSimulate* CreateSimulate(BailoutId ast_id, RemovableSimulate removable);
553 BailoutId ast_id() const { return ast_id_; } function in class:v8::internal::HEnvironment
756 virtual void ReturnInstruction(HInstruction* instr, BailoutId ast_id) = 0;
762 virtual void ReturnControl(HControlInstruction* instr, BailoutId ast_id) = 0;
769 BailoutId ast_id) = 0;
804 virtual void ReturnInstruction(HInstruction* instr, BailoutId ast_id);
805 virtual void ReturnControl(HControlInstruction* instr, BailoutId ast_id);
    [all...]
lithium.h 517 BailoutId ast_id,
529 ast_id_(ast_id),
546 BailoutId ast_id() const { return ast_id_; } function in class:v8::internal::LEnvironment
hydrogen.cc 142 ASSERT(!last_environment()->ast_id().IsNone());
161 HSimulate* HBasicBlock::CreateSimulate(BailoutId ast_id,
165 ASSERT(ast_id.IsNone() ||
166 ast_id == BailoutId::StubEntry() ||
167 environment->closure()->shared()->VerifyBailoutId(ast_id));
173 new(zone()) HSimulate(ast_id, pop_count, zone(), removable);
251 void HBasicBlock::SetJoinId(BailoutId ast_id) {
261 ->VerifyBailoutId(ast_id)));
262 simulate->set_ast_id(ast_id);
263 predecessor->last_environment()->set_ast_id(ast_id);
    [all...]
full-codegen.h 161 BailoutId ast_id() { function in class:v8::internal::FullCodeGenerator::BackEdgeTableIterator
713 TypeFeedbackId ast_id; member in struct:v8::internal::FullCodeGenerator::TypeFeedbackCellEntry
    [all...]