Home | History | Annotate | Download | only in src

Lines Matching full:kind

537 #define CALL_LOGGER_TAG(kind, type) \
538 (kind == Code::CALL_IC ? Logger::type : Logger::KEYED_##type)
541 Code::Kind kind,
563 Code::ComputeMonomorphicFlags(kind, CONSTANT_FUNCTION, extra_state,
568 CallStubCompiler compiler(isolate_, argc, kind, extra_state, cache_holder);
574 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_IC_TAG), *code, *name));
582 Code::Kind kind,
601 Code::ComputeMonomorphicFlags(kind, FIELD, extra_state,
606 CallStubCompiler compiler(isolate_, argc, kind, extra_state, cache_holder);
612 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_IC_TAG), *code, *name));
620 Code::Kind kind,
638 Code::ComputeMonomorphicFlags(kind, INTERCEPTOR, extra_state,
643 CallStubCompiler compiler(isolate(), argc, kind, extra_state, cache_holder);
649 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_IC_TAG), *code, *name));
657 Code::Kind kind,
668 Code::ComputeMonomorphicFlags(kind, NORMAL, extra_state,
673 CallStubCompiler compiler(isolate(), argc, kind, extra_state, cache_holder);
678 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_IC_TAG), *code, *name));
696 Code::Kind kind) {
701 Code::ComputeFlags(kind, UNINITIALIZED, extra_state, NORMAL, argc);
717 Code::Kind kind) {
722 Code::ComputeFlags(kind, UNINITIALIZED, extra_state, NORMAL, argc);
748 Code::Kind kind,
751 Code::ComputeFlags(kind, PREMONOMORPHIC, extra_state, NORMAL, argc);
765 Code::Kind kind,
768 Code::ComputeFlags(kind, MONOMORPHIC, extra_state, NORMAL, argc);
781 Handle<Code> StubCache::ComputeCallArguments(int argc, Code::Kind kind) {
782 ASSERT(kind == Code::KEYED_CALL_IC);
784 Code::ComputeFlags(kind, MEGAMORPHIC, Code::kNoExtraICState,
800 Code::Kind kind,
803 Code::ComputeFlags(kind, MEGAMORPHIC, extra_state,
818 Code::Kind kind,
823 Code::ComputeFlags(kind, MONOMORPHIC_PROTOTYPE_FAILURE, extra_state,
839 Code::Kind kind) {
843 Code::ComputeFlags(kind, DEBUG_BREAK, Code::kNoExtraICState,
858 Code::Kind kind) {
862 Code::ComputeFlags(kind, DEBUG_PREPARE_STEP_IN, Code::kNoExtraICState,
1142 Code::Kind kind = Code::ExtractKindFromFlags(flags);
1144 if (kind == Code::CALL_IC) {
1152 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_INITIALIZE_TAG),
1163 Code::Kind kind = Code::ExtractKindFromFlags(flags);
1165 if (kind == Code::CALL_IC) {
1173 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_PRE_MONOMORPHIC_TAG),
1182 Code::Kind kind = Code::ExtractKindFromFlags(flags);
1183 if (kind == Code::CALL_IC) {
1194 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_NORMAL_TAG),
1203 Code::Kind kind = Code::ExtractKindFromFlags(flags);
1205 if (kind == Code::CALL_IC) {
1213 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_MEGAMORPHIC_TAG),
1235 Code::Kind kind = Code::ExtractKindFromFlags(flags);
1237 if (kind == Code::CALL_IC) {
1245 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_MISS_TAG),
1268 Code::Kind kind = Code::ExtractKindFromFlags(flags);
1269 if (kind == Code::CALL_IC) {
1278 CALL_LOGGER_TAG(kind, CALL_DEBUG_PREPARE_STEP_IN_TAG),
1376 Code::Kind kind,
1381 kind_(kind),