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

1 2 3

  /external/v8/src/arm/
codegen-arm.h 23 Label* call_runtime);
codegen-arm.cc 324 Label* call_runtime) {
364 __ b(ne, call_runtime);
396 __ b(ne, call_runtime);
  /external/v8/src/arm64/
codegen-arm64.h 23 Label* call_runtime);
codegen-arm64.cc 100 Label* call_runtime) {
140 __ JumpIfNotRoot(result, Heap::kempty_stringRootIndex, call_runtime);
168 // TestAndBranchIfAnySet can emit Tbnz. Do not use it because call_runtime
171 __ B(ne, call_runtime);
  /external/v8/src/mips/
codegen-mips.h 24 Label* call_runtime);
  /external/v8/src/mips64/
codegen-mips64.h 24 Label* call_runtime);
  /external/v8/src/ppc/
codegen-ppc.h 20 Register result, Label* call_runtime);
codegen-ppc.cc 79 Label* call_runtime) {
120 __ bne(call_runtime);
151 __ bne(call_runtime, cr0);
  /external/v8/src/s390/
codegen-s390.h 22 Register result, Label* call_runtime);
codegen-s390.cc 72 Label* call_runtime) {
115 __ bne(call_runtime);
148 __ bne(call_runtime /*, cr0*/);
  /external/v8/src/ia32/
codegen-ia32.h 24 Label* call_runtime);
codegen-ia32.cc 493 Label* call_runtime) {
534 __ j(not_equal, call_runtime);
558 __ j(not_zero, call_runtime);
  /external/v8/src/x87/
codegen-x87.h 24 Label* call_runtime);
codegen-x87.cc 220 Label* call_runtime) {
261 __ j(not_equal, call_runtime);
285 __ j(not_zero, call_runtime);
  /external/v8/src/builtins/
builtins-object.h 17 Label* call_runtime,
builtins-constructor.h 29 CodeAssemblerLabel* call_runtime,
43 Node* EmitFastCloneShallowObject(CodeAssemblerLabel* call_runtime,
51 CodeAssemblerLabel* call_runtime);
builtins-constructor.cc 187 Label call_runtime(this);
189 Node* result = EmitFastNewObject(context, target, new_target, &call_runtime);
192 Bind(&call_runtime);
200 Label call_runtime(this), end(this);
202 Node* result = EmitFastNewObject(context, target, new_target, &call_runtime);
206 Bind(&call_runtime);
216 CodeAssemblerLabel* call_runtime) {
223 Goto(call_runtime);
230 GotoIf(TaggedIsSmi(initial_map), call_runtime); local
231 GotoIf(DoesntHaveInstanceType(initial_map, MAP_TYPE), call_runtime); local
237 GotoIf(WordNotEqual(target, new_target_constructor), call_runtime); local
430 GotoIf(IsUndefined(boilerplate), &call_runtime); local
514 GotoIf(IsUndefined(allocation_site), call_runtime); local
671 GotoIf(IsUndefined(allocation_site), call_runtime); local
686 GotoIfNot(WordEqual(instance_size, size_in_words), call_runtime); local
    [all...]
builtins-object.cc 22 Node* object, Node* context, Label* call_runtime,
27 CheckEnumCache(object, &use_cache, call_runtime);
48 Label call_runtime(this), return_true(this), return_false(this);
64 &call_runtime);
68 &return_true, &return_false, &call_runtime);
72 GotoIf(IntPtrLessThan(var_index.value(), IntPtrConstant(0)), &call_runtime); local
74 &return_true, &return_false, &call_runtime);
82 Bind(&call_runtime);
318 Label call_runtime(this, Label::kDeferred), prototype_valid(this),
323 BranchIfJSReceiver(prototype, &prototype_valid, &call_runtime);
330 GotoIf(TaggedIsSmi(properties), &call_runtime); local
334 GotoIf(IsSpecialReceiverMap(properties_map), &call_runtime); local
341 GotoIf(IsSetWord32<Map::DictionaryMap>(bit_field3), &call_runtime); local
343 &call_runtime, &no_properties); local
379 GotoIf(WordEqual(weak_cell, UndefinedConstant()), &call_runtime); local
    [all...]
builtins-array.cc 1707 GotoIfNot(TaggedIsSmi(len), &call_runtime); local
1714 Branch(TaggedIsSmi(start_from), &init_k, &call_runtime); local
    [all...]
builtins-string.cc 1048 GotoIfNot(TaggedIsSmi(position.value()), &call_runtime); local
1055 GotoIf(TaggedIsSmi(receiver), &call_runtime); local
1057 GotoIf(TaggedIsSmi(needle), &call_runtime); local
1060 GotoIfNot(IsStringInstanceType(instance_type), &call_runtime); local
1063 GotoIfNot(IsStringInstanceType(needle_instance_type), &call_runtime); local
    [all...]
  /external/v8/src/x64/
codegen-x64.h 23 Label* call_runtime);
codegen-x64.cc 70 Label* call_runtime) {
110 __ j(not_equal, call_runtime);
134 __ j(not_zero, call_runtime);
  /external/v8/src/compiler/
memory-optimizer.cc 195 auto call_runtime = __ MakeDeferredLabel<1>(); local
215 __ GotoUnless(check, &call_runtime);
218 __ Bind(&call_runtime);
252 auto call_runtime = __ MakeDeferredLabel<1>(); local
267 __ GotoUnless(check, &call_runtime);
274 __ Bind(&call_runtime);
  /external/v8/src/
code-stubs.cc     [all...]
  /external/v8/src/interpreter/
interpreter.cc 2806 &fast_shallow_clone, &call_runtime); local
2894 &call_runtime); local
    [all...]

Completed in 154 milliseconds

1 2 3