HomeSort by relevance Sort by last modified time
    Searched refs:Code (Results 501 - 525 of 727) sorted by null

<<21222324252627282930

  /external/v8/src/x64/
debug-x64.cc 6 // * Redistributions of source code must retain the above copyright
47 // Patch the JS frame exit code with a debug break call. See
59 // Restore the JS frame exit code.
66 // A debug break in the frame exit code is identified by the JS frame exit code
163 // If this call did not replace a call but patched other code then there will
242 // Register state for CallFunctionStub (from code-stubs-x64.cc).
251 // Register state for CallFunctionStub (from code-stubs-x64.cc).
261 // Register state for CallConstructStub (from code-stubs-x64.cc).
273 // Register state for CallConstructStub (from code-stubs-x64.cc)
    [all...]
assembler-x64.h 8 // - Redistributions of source code must retain the above copyright notice,
31 // The original source code covered by the above license above has been
71 // compatible with int, which has caused code-generation bugs.
83 // code generated for some assembly instructions (because they boil down
84 // to a few constants). If this is a problem, we could change the code
87 // and best performance in optimized code.
102 return kAllocationIndexByRegisterCode[reg.code()];
128 static Register from_code(int code) {
129 Register r = { code };
136 int code() const function in struct:v8::internal::Register
    [all...]
full-codegen-x64.cc 6 // * Redistributions of source code must retain the above copyright
32 #include "code-stubs.h"
82 __ nop(); // Signals no inlined code.
108 // Generate code for a JS function. On entry to the function the receiver
126 Comment cmnt(masm_, "[ function compiled by full code generator");
144 Handle<Code> compile_stub(
174 // MANUAL indicates that the scope shouldn't actually generate code to set up
334 // the AST id from the unoptimized code in order to use it as a key into
335 // the deoptimization input data found in the optimized code.
343 __ testl(rax, Immediate(Min(loop_depth(), Code::kMaxLoopNestingMarker)))
    [all...]
  /external/zlib/src/
deflate.h 20 the crc code when it is not needed. For shared libraries, gzip encoding
31 /* number of length codes, not counting the special END_BLOCK code */
37 /* number of Literal or Length codes, including the END_BLOCK code */
64 /* Data structure describing a single value and its code string. */
68 ush code; /* bit string */ member in union:ct_data_s::__anon30822
77 #define Code fc.code
85 int max_code; /* largest code with non zero frequency */
232 * example a binary file with poorly compressible code followed by
242 /* Buffer for distances. To simplify the code, d_buf and l_buf hav
    [all...]
  /external/v8/src/
serialize.cc 6 // * Redistributions of source code must retain the above copyright
118 entry.code = EncodeExternal(type, id);
120 ASSERT_NE(0, entry.code);
134 // NOTE: This function was originally 100k of code. It has since been
136 // very easily cause code bloat. Please be careful in the future when adding
531 ExternalReferenceTable::instance(isolate_)->code(index) : 0;
568 Put(external_references->code(i), external_references->address(i));
756 // away to almost nothing in the generated code. It might be nicer to do this
845 Code* new_code_object = reinterpret_cast<Code*>(new_object);
    [all...]
gdb-jit.cc 6 // * Redistributions of source code must retain the above copyright
932 Code* code,
938 code_(code),
1008 Code* code_;
1029 symtab->Add(ELFSymbol("V8 Code",
1085 w->WriteULEB128(1); // Abbreviation code.
    [all...]
  /art/compiler/dex/
mir_graph.cc 28 const Instruction::Code opcodes[MAX_PATTERN_LEN];
130 /* Split an existing block from the specified code offset into two */
202 * Given a code offset, find out the block that starts with it. If the offset
244 /* Identify code range in try blocks and set up the empty catch blocks */
361 * Total size is (4+size*2) 16-bit code units.
377 * Total size is (2+size*4) 16-bit code units.
496 static_cast<Instruction::Code>(kMirOpCheck);
567 /* Identify code range in try blocks and set up the empty catch blocks */
584 Instruction::Code opcode = insn->dalvikInsn.opcode;
702 LOG(INFO) << "-C- " << Instruction::Name(static_cast<Instruction::Code>(i)
    [all...]
ssa_transformation.cc 568 phi->dalvikInsn.opcode = static_cast<Instruction::Code>(kMirOpPhi);
588 if (mir->dalvikInsn.opcode != static_cast<Instruction::Code>(kMirOpPhi))
  /external/chromium_org/v8/src/ia32/
assembler-ia32.h 8 // - Redistributions of source code must retain the above copyright notice,
31 // The original source code covered by the above license above has been
49 // compatible with int, which has caused code-generation bugs.
61 // code generated for some assembly instructions (because they boil down
62 // to a few constants). If this is a problem, we could change the code
65 // and best performance in optimized code.
80 static Register from_code(int code) {
81 ASSERT(code >= 0);
82 ASSERT(code < kNumRegisters);
83 Register r = { code };
    [all...]
regexp-macro-assembler-ia32.cc 6 // * Redistributions of source code must retain the above copyright
62 * - direct_call (if 1, direct call from JavaScript code, if 0
90 * code, by calling the code entry as cast to a function with the signature:
118 __ jmp(&entry_label_); // We'll write the entry code later.
159 // Pop Code* offset from backtrack stack, add Code* and jump to location.
535 // The emitted code for generic character classes is good enough.
643 // Finalize code - write the entry point code now we know how man
925 Handle<Code> code = member in namespace:v8::internal
    [all...]
full-codegen-ia32.cc 6 // * Redistributions of source code must retain the above copyright
32 #include "code-stubs.h"
83 __ nop(); // Signals no inlined code.
104 // Generate code for a JS function. On entry to the function the receiver
125 Comment cmnt(masm_, "[ function compiled by full code generator");
156 // MANUAL indicates that the scope shouldn't actually generate code to set up
354 // the AST id from the unoptimized code in order to use it as a key into
355 // the deoptimization input data found in the optimized code.
406 // Add a label for checking the size of the code used for returning.
413 // patch with the code required by the debugger
    [all...]
codegen-ia32.cc 6 // * Redistributions of source code must retain the above copyright
150 // consistency since code by fullcodegen's calls into runtime in that case.
263 // Generated code is put into a fixed, unmovable buffer, and not into
638 // TODO(jkummerow): It would be nice to register this code creation event
647 // Code generators
    [all...]
  /external/chromium_org/v8/src/x64/
assembler-x64.h 8 // - Redistributions of source code must retain the above copyright notice,
31 // The original source code covered by the above license above has been
71 // compatible with int, which has caused code-generation bugs.
83 // code generated for some assembly instructions (because they boil down
84 // to a few constants). If this is a problem, we could change the code
87 // and best performance in optimized code.
105 return kAllocationIndexByRegisterCode[reg.code()];
131 static Register from_code(int code) {
132 Register r = { code };
139 int code() const function in struct:v8::internal::Register
    [all...]
full-codegen-x64.cc 6 // * Redistributions of source code must retain the above copyright
32 #include "code-stubs.h"
83 __ nop(); // Signals no inlined code.
104 // Generate code for a JS function. On entry to the function the receiver
124 Comment cmnt(masm_, "[ function compiled by full code generator");
151 // MANUAL indicates that the scope shouldn't actually generate code to set up
348 // the AST id from the unoptimized code in order to use it as a key into
349 // the deoptimization input data found in the optimized code.
399 // Add a label for checking the size of the code used for returning.
406 // patch with the code required by the debugger
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 6 // * Redistributions of source code must retain the above copyright
32 #include "code-stubs.h"
83 __ nop(); // Signals no inlined code.
111 // Generate code for a JS function. On entry to the function the receiver
131 Comment cmnt(masm_, "[ function compiled by full code generator");
160 // MANUAL indicates that the scope shouldn't actually generate code to set up
371 // the AST id from the unoptimized code in order to use it as a key into
372 // the deoptimization input data found in the optimized code.
380 __ test(eax, Immediate(Min(loop_depth(), Code::kMaxLoopNestingMarker)));
432 // Add a label for checking the size of the code used for returning
    [all...]
regexp-macro-assembler-ia32.cc 6 // * Redistributions of source code must retain the above copyright
60 * - direct_call (if 1, direct call from JavaScript code, if 0
86 * code, by calling the code entry as cast to a function with the signature:
112 __ jmp(&entry_label_); // We'll write the entry code later.
153 // Pop Code* offset from backtrack stack, add Code* and jump to location.
669 // Finalize code - write the entry point code now we know how many
672 // Entry code
885 Handle<Code> code = local
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 6 // * Redistributions of source code must retain the above copyright
32 #include "code-stubs.h"
42 #include "arm/code-stubs-arm.h"
51 // A patch site is a location in the code which it is possible to patch. This
52 // class has a number of methods to emit the code which is patchable and the
53 // method EmitPatchInfo to record a marker back to the patchable code. This
56 // the patchable code.
70 // the inlined smi code.
83 // the inlined smi code.
102 __ nop(); // Signals no inlined code
    [all...]
builtins-arm.cc 6 // * Redistributions of source code must retain the above copyright
171 // Fill the FixedArray with the hole value. Inline the code if short.
300 // If the Array cannot be constructed in native code the runtime is called. This
309 // entering the generic code. In both cases argc in r0 needs to be preserved.
310 // Both registers are preserved by this code so no need to differentiate between
491 // Run the native code for the InternalArray function called as a normal
495 // Jump to the generic array code if the specialized code cannot handle the
499 Handle<Code> array_code =
525 // Run the native code for the Array function called as a normal function
970 Handle<Code> code = local
    [all...]
  /external/v8/src/mips/
full-codegen-mips.cc 6 // * Redistributions of source code must retain the above copyright
40 #include "code-stubs.h"
50 #include "mips/code-stubs-mips.h"
59 // A patch site is a location in the code which it is possible to patch. This
60 // class has a number of methods to emit the code which is patchable and the
61 // method EmitPatchInfo to record a marker back to the patchable code. This
64 // instruction of the patchable code.
66 // never be emitted by normal code.
80 // the inlined smi code.
91 // the inlined smi code
    [all...]
builtins-mips.cc 6 // * Redistributions of source code must retain the above copyright
176 // Fill the FixedArray with the hole value. Inline the code if short.
310 // If the Array cannot be constructed in native code the runtime is called. This
319 // entering the generic code. In both cases argc in a0 needs to be preserved.
320 // Both registers are preserved by this code so no need to differentiate between
502 // Run the native code for the InternalArray function called as a normal
506 // Jump to the generic array code if the specialized code cannot handle the
510 Handle<Code> array_code =
538 // Run the native code for the Array function called as a normal function
1002 Handle<Code> code = local
    [all...]
  /external/chromium_org/v8/src/arm/
full-codegen-arm.cc 6 // * Redistributions of source code must retain the above copyright
32 #include "code-stubs.h"
42 #include "arm/code-stubs-arm.h"
51 // A patch site is a location in the code which it is possible to patch. This
52 // class has a number of methods to emit the code which is patchable and the
53 // method EmitPatchInfo to record a marker back to the patchable code. This
56 // the patchable code.
70 // the inlined smi code.
80 // the inlined smi code.
101 __ nop(); // Signals no inlined code
    [all...]
  /external/chromium_org/v8/src/mips/
full-codegen-mips.cc 6 // * Redistributions of source code must retain the above copyright
40 #include "code-stubs.h"
50 #include "mips/code-stubs-mips.h"
59 // A patch site is a location in the code which it is possible to patch. This
60 // class has a number of methods to emit the code which is patchable and the
61 // method EmitPatchInfo to record a marker back to the patchable code. This
64 // instruction of the patchable code.
66 // never be emitted by normal code.
80 // the inlined smi code.
91 // the inlined smi code
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
results.js 7 // * Redistributions of source code must retain the above copyright
50 // data format. Code outside this class shouldn't know about the guts of the JSON format.
  /external/chromium_org/v8/src/
profile-generator.cc 6 // * Redistributions of source code must retain the above copyright
643 // As actual number of decoded code entries may vary, initialize
650 // Don't use PC when in external callback code, as it can point
651 // inside callback's code, and we will erroneously report
657 // If pc is in the function code before it set up stack frame or after the
664 Code* code = Code::cast(HeapObject::FromAddress(start)); local
666 sample.pc - code->instruction_start());
  /external/libffi/src/s390/
sysv.S 162 .uleb128 0x1 # CIE Code Alignment Factor
361 .uleb128 0x1 # CIE Code Alignment Factor

Completed in 2168 milliseconds

<<21222324252627282930