HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 951 - 975 of 1048) sorted by null

<<31323334353637383940>>

  /external/chromium_org/v8/src/
gdb-jit.cc 2 // Use of this source code is governed by a BSD-style license that can be
936 CodeDescription(const char* name, Code* code, Handle<Script> script,
940 code_(code),
1007 Code* code_;
1029 symtab->Add(ELFSymbol("V8 Code",
1087 w->WriteULEB128(1); // Abbreviation code.
2134 Code* code = reinterpret_cast<Code*>(e->key); local
2159 Code* code = Code::GetCodeFromTargetAddress( local
2174 Code* code = Code::GetCodeFromTargetAddress( local
2194 Code* code = Code::GetCodeFromTargetAddress( local
    [all...]
heap-snapshot-generator.cc 2 // Use of this source code is governed by a BSD-style license that can be
10 #include "src/code-stubs.h"
150 case kCode: return "/code/";
997 Code* code = Code::cast(Code::GetObjectFromEntryAddress(entry_address)); local
    [all...]
hydrogen-instructions.cc 2 // Use of this source code is governed by a BSD-style license that can be
952 (jsfun->code()->kind() == Code::FUNCTION ||
953 jsfun->code()->kind() == Code::OPTIMIZED_FUNCTION);
4124 uint32_t code = c_code->NumberValueAsInteger32() & 0xffff; local
    [all...]
jsregexp.h 2 // Use of this source code is governed by a BSD-style license that can be
208 static Code* IrregexpNativeCode(FixedArray* re, bool is_one_byte);
211 // would like to keep track of the amount of regexp code on the heap. This
213 // total regexp code compiled including code that has subsequently been freed
237 // Represents code units in the range from from_ to to_, both ends are
579 // Generates a goto to this node or actually generates the code at this point.
589 // Emits some quick code that checks whether the preloaded characters match.
616 // Collects information on the possible code units (mod 128) that can match if
618 // implementation. TODO(erikcorry): This should share more code wit
1659 Object* code; member in struct:v8::internal::RegExpEngine::CompilationResult
    [all...]
preparser.h 2 // Use of this source code is governed by a BSD-style license that can be
690 int code = ((op == Token::COMMA) && !left.is_parenthesized() && local
694 return PreParserExpression(kTypeBinaryOperation | code);
922 explicit PreParserStatement(Type code) : code_(code) {}
    [all...]
  /external/chromium_org/v8/src/heap/
mark-compact.cc 2 // Use of this source code is governed by a BSD-style license that can be
9 #include "src/code-stubs.h"
81 Code* code = rinfo->host(); local
83 if (!code->IsWeakObject(rinfo->target_cell())) {
322 Code::cast(object)->CodeIterateBody(&visitor);
480 Code* code = Code::cast(obj); local
481 if (!code->is_optimized_code() && !code->is_weak_stub()) continue
1038 Code* code = shared->code(); local
1080 Code* code = candidate->code(); local
1118 Code* code = local
1478 re->SetDataAt(JSRegExp::saved_code_index(is_one_byte), code); local
1725 Code* code = frame->unchecked_code(); local
2225 Code* code = it.frame()->LookupCode(); local
2695 Code* code = Code::cast(current); local
2723 Code* code = entries->code_at(i); local
3476 Code* code = invalidated_code_[i]; local
3498 Code* code = invalidated_code_[i]; local
    [all...]
heap.cc 2 // Use of this source code is governed by a BSD-style license that can be
272 // and does not count available bytes already in the old space or code
343 PrintPID("Code space, used: %6" V8_PTR_PREFIX
470 void Heap::ClearAllICsByKind(Code::Kind kind) {
474 Code* code = Code::cast(object); local
475 Code::Kind current_kind = code->kind();
476 if (current_kind == Code::FUNCTION |
2079 Code* code = Code::cast(Code::GetObjectFromEntryAddress(code_entry_slot)); local
3451 Code* code = Code::cast(result); local
    [all...]
  /external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc 2 // Use of this source code is governed by a BSD-style license that can be
9 #include "src/code-factory.h"
10 #include "src/code-stubs.h"
61 __ nop(); // Signals no inlined code.
82 // Generate code for a JS function. On entry to the function the receiver
103 Comment cmnt(masm_, "[ function compiled by full code generator");
135 // MANUAL indicates that the scope shouldn't actually generate code to set up
359 // the AST id from the unoptimized code in order to use it as a key into
360 // the deoptimization input data found in the optimized code.
404 // Add a label for checking the size of the code used for returning
2297 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op, mode).code(); local
2380 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op, mode).code(); local
4410 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), expr->binary_op(), local
    [all...]
lithium-codegen-ia32.cc 2 // Use of this source code is governed by a BSD-style license that can be
10 #include "src/code-factory.h"
11 #include "src/code-stubs.h"
55 // MANUAL indicates that the scope shouldn't actually generate code to set up
74 void LCodeGen::FinishCode(Handle<Code> code) {
76 code->set_stack_slots(GetStackSlotCount());
77 code->set_safepoint_table_offset(safepoints_.GetCodeOffset());
78 if (code->is_optimized_code()) RegisterWeakObjectsInOptimizedCode(code);
430 LDeferredCode* code = deferred_[i]; local
2030 Handle<Code> code = local
3478 Handle<Code> code = Handle<Code>::cast(ToHandle(target)); local
    [all...]
  /external/chromium_org/v8/src/mips/
full-codegen-mips.cc 2 // Use of this source code is governed by a BSD-style license that can be
17 #include "src/code-factory.h"
18 #include "src/code-stubs.h"
28 #include "src/mips/code-stubs-mips.h"
37 // A patch site is a location in the code which it is possible to patch. This
38 // class has a number of methods to emit the code which is patchable and the
39 // method EmitPatchInfo to record a marker back to the patchable code. This
42 // instruction of the patchable code.
44 // never be emitted by normal code.
58 // the inlined smi code
2368 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op, mode).code(); local
2443 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op, mode).code(); local
4466 Handle<Code> code = local
    [all...]
lithium-codegen-mips.cc 6 // * Redistributions of source code must retain the above copyright
31 #include "src/code-factory.h"
32 #include "src/code-stubs.h"
75 // NONE indicates that the scope shouldn't actually generate code to set up
84 void LCodeGen::FinishCode(Handle<Code> code) {
86 code->set_stack_slots(GetStackSlotCount());
87 code->set_safepoint_table_offset(safepoints_.GetCodeOffset());
88 if (code->is_optimized_code()) RegisterWeakObjectsInOptimizedCode(code);
284 LDeferredCode* code = deferred_[i]; local
2033 Handle<Code> code = local
3966 Handle<Code> code = Handle<Code>::cast(ToHandle(target)); local
    [all...]
  /external/chromium_org/v8/src/mips64/
full-codegen-mips64.cc 2 // Use of this source code is governed by a BSD-style license that can be
17 #include "src/code-factory.h"
18 #include "src/code-stubs.h"
28 #include "src/mips64/code-stubs-mips64.h"
37 // A patch site is a location in the code which it is possible to patch. This
38 // class has a number of methods to emit the code which is patchable and the
39 // method EmitPatchInfo to record a marker back to the patchable code. This
42 // instruction of the patchable code.
44 // never be emitted by normal code.
58 // the inlined smi code
2367 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op, mode).code(); local
2441 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op, mode).code(); local
4467 Handle<Code> code = local
    [all...]
lithium-codegen-mips64.cc 2 // Use of this source code is governed by a BSD-style license that can be
7 #include "src/code-factory.h"
8 #include "src/code-stubs.h"
50 // NONE indicates that the scope shouldn't actually generate code to set up
59 void LCodeGen::FinishCode(Handle<Code> code) {
61 code->set_stack_slots(GetStackSlotCount());
62 code->set_safepoint_table_offset(safepoints_.GetCodeOffset());
63 if (code->is_optimized_code()) RegisterWeakObjectsInOptimizedCode(code);
259 LDeferredCode* code = deferred_[i]; local
2001 Handle<Code> code = local
3998 Handle<Code> code = Handle<Code>::cast(ToHandle(target)); local
    [all...]
  /external/chromium_org/v8/src/x64/
full-codegen-x64.cc 2 // Use of this source code is governed by a BSD-style license that can be
9 #include "src/code-factory.h"
10 #include "src/code-stubs.h"
61 __ nop(); // Signals no inlined code.
82 // Generate code for a JS function. On entry to the function the receiver
103 Comment cmnt(masm_, "[ function compiled by full code generator");
135 // MANUAL indicates that the scope shouldn't actually generate code to set up
362 // the AST id from the unoptimized code in order to use it as a key into
363 // the deoptimization input data found in the optimized code.
407 // Add a label for checking the size of the code used for returning
2330 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op, mode).code(); local
2378 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op, mode).code(); local
4421 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), expr->binary_op(), local
    [all...]
  /external/chromium_org/v8/src/x87/
full-codegen-x87.cc 2 // Use of this source code is governed by a BSD-style license that can be
9 #include "src/code-factory.h"
10 #include "src/code-stubs.h"
61 __ nop(); // Signals no inlined code.
82 // Generate code for a JS function. On entry to the function the receiver
103 Comment cmnt(masm_, "[ function compiled by full code generator");
135 // MANUAL indicates that the scope shouldn't actually generate code to set up
356 // the AST id from the unoptimized code in order to use it as a key into
357 // the deoptimization input data found in the optimized code.
401 // Add a label for checking the size of the code used for returning
2287 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op, mode).code(); local
2370 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op, mode).code(); local
4399 Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), expr->binary_op(), local
    [all...]
  /external/kernel-headers/original/uapi/linux/
wireless.h 731 __u32 code; /* Rx : Unable to code/decode (WEP) */ member in struct:iw_discarded
    [all...]
  /external/libnl/include/
netlink-types.h 727 uint8_t code; member in struct:nfnl_ct_proto::__anon4053
  /external/lldb/source/Plugins/Instruction/ARM/
EmulateInstructionARM.cpp 332 // ARM pseudo code...
462 // ARM pseudo code...
594 // ARM pseudo code...
653 // ARM pseudo code...
718 // ARM pseudo code...
804 // ARM pseudo code...
12108 uint32_t code; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /development/ndk/platforms/android-3/include/linux/
input.h 23 __u16 code; member in struct:input_event
rtnetlink.h 313 __u8 code; member in struct:rta_session::__anon1466::__anon1468
  /external/bluetooth/bluedroid/btif/include/
uinput.h 583 uint16_t code; member in struct:uinput_event
  /external/chromium_org/third_party/sqlite/src/tool/
lemon.c 38 #define MAXRHS 5 /* Set low to exercise exception code */
174 char *destructor; /* Code which executes whenever this symbol is
197 int line; /* Line number at which code begins */
198 const char *code; /* The code executed when this rule is reduced */ member in struct:rule
294 char *include; /* Code to put at the start of the C file */
295 char *error; /* Code to execute when an error is seen */
296 char *overflow; /* Code to execute on a stack overflow */
297 char *failure; /* Code to execute on parser failure */
298 char *accept; /* Code to execute when the parser excepts *
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-codegen-arm.cc 2 // Use of this source code is governed by a BSD-style license that can be
10 #include "src/code-factory.h"
11 #include "src/code-stubs.h"
51 // NONE indicates that the scope shouldn't actually generate code to set up
60 void LCodeGen::FinishCode(Handle<Code> code) {
62 code->set_stack_slots(GetStackSlotCount());
63 code->set_safepoint_table_offset(safepoints_.GetCodeOffset());
64 if (code->is_optimized_code()) RegisterWeakObjectsInOptimizedCode(code);
269 LDeferredCode* code = deferred_[i]; local
2174 Handle<Code> code = local
4010 Handle<Code> code = Handle<Code>::cast(ToHandle(target)); local
    [all...]
  /external/chromium_org/v8/src/arm64/
lithium-codegen-arm64.cc 2 // Use of this source code is governed by a BSD-style license that can be
10 #include "src/code-factory.h"
11 #include "src/code-stubs.h"
45 // Emit code to branch if the given condition holds.
46 // The code generated here doesn't modify the flags and they must have
71 // Emit code to compare lhs and rhs and branch if the condition holds.
381 void LCodeGen::CallCode(Handle<Code> code,
384 CallCodeGeneric(code, mode, instr, RECORD_SIMPLE_SAFEPOINT);
388 void LCodeGen::CallCodeGeneric(Handle<Code> code
776 LDeferredCode* code = deferred_[i]; local
1786 Handle<Code> code = local
2080 Handle<Code> code = Handle<Code>::cast(ToHandle(target)); local
    [all...]

Completed in 1123 milliseconds

<<31323334353637383940>>