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

<<11121314151617181920>>

  /external/v8/src/
factory.cc 6 // * Redistributions of source code must retain the above copyright
724 Handle<Code> code,
729 // Set up the code pointer in both the shared function info and in
731 function->shared()->set_code(*code);
732 function->set_code(*code);
755 Handle<Code> code,
760 // Set up the code pointer in both the shared function info and in
762 function->shared()->set_code(*code);
1218 Handle<Code> code = isolate()->builtins()->HandleApiCall(); local
    [all...]
cpu-profiler.cc 6 // * Redistributions of source code must retain the above copyright
249 // proceed to the next code event.
257 // Perform processing until we have tick events, skip remaining code events.
352 Code* code, const char* comment) {
354 tag, comment, code->address(), code->ExecutableSize());
359 Code* code, String* name) {
366 code->address()
    [all...]
mark-compact.cc 6 // * Redistributions of source code must retain the above copyright
30 #include "code-stubs.h"
776 ASSERT(function->code() == function->shared()->code());
789 Code* lazy_compile = isolate_->builtins()->builtin(Builtins::kLazyCompile);
798 Code* code = shared->code(); local
799 MarkBit code_mark = Marking::MarkBitFrom(code);
804 candidate->set_code(shared->code());
832 Code* code = candidate->code(); local
869 Code* code = candidate->code(); local
1180 Code* code = reinterpret_cast<Code*>(object); local
1333 code, local
1425 Code* code = Code::cast(Code::GetObjectFromEntryAddress(entry_address)); local
1463 Code* code = jsfunction->shared()->code(); local
1654 Code* code = frame->unchecked_code(); local
3227 Code* code = invalidated_code_[i]; local
3249 Code* code = invalidated_code_[i]; local
    [all...]
  /external/chromium_org/v8/src/
mark-compact.cc 6 // * Redistributions of source code must retain the above copyright
30 #include "code-stubs.h"
94 rinfo->host()->kind() != Code::OPTIMIZED_FUNCTION ||
334 Code::cast(object)->CodeIterateBody(&visitor);
498 Code* code = Code::cast(obj); local
499 if (code->kind() != Code::OPTIMIZED_FUNCTION) continue;
500 if (WillBeDeoptimized(code)) continue
971 Code *code = Code::cast(list); local
1024 Code* code = shared->code(); local
1066 Code* code = candidate->code(); local
1107 Code* code = Code::cast(code_map->get(i + kCodeOffset)); local
1525 re->SetDataAt(JSRegExp::saved_code_index(is_ascii), code); local
1786 Code* code = frame->unchecked_code(); local
2275 Code* code = it.frame()->LookupCode(); local
2624 Code* code = entries->code_at(i); local
3299 Code* code = invalidated_code_[i]; local
3321 Code* code = invalidated_code_[i]; local
    [all...]
assembler.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
88 // The buffer into which code and relocation info are generated. It could
225 // code which are of interest when making stack traces to pin-point the source
251 CODE_TARGET, // Code target which is not any of the above.
253 CONSTRUCT_CALL, // code target that is a call to a JavaScript constructor.
254 CODE_TARGET_CONTEXT, // Code target used for contextual loads and stores.
255 DEBUG_BREAK, // Code target for the debugger statement.
261 JS_RETURN, // Marks start of the ExitJSFrame code.
265 DEBUG_BREAK_SLOT, // Additional code inserted for debug break slot
    [all...]
cpu-profiler.cc 6 // * Redistributions of source code must retain the above copyright
144 // proceed to the next code event.
212 Code* code,
217 rec->start = code->address();
219 rec->size = code->ExecutableSize();
226 Code* code,
231 rec->start = code->address();
233 rec->size = code->ExecutableSize()
    [all...]
full-codegen.h 6 // * Redistributions of source code must retain the above copyright
36 #include "code-stubs.h"
50 // when the code is compiled by the full compiler in the debugger. This means
51 // that there will be an IC (load/store/call) in the code generated for the
78 // Full code generator.
129 // Platform-specific code size multiplier.
144 explicit BackEdgeTableIterator(Code* unoptimized) {
145 ASSERT(unoptimized->kind() == Code::FUNCTION);
227 // return and give it a chance to generate cleanup code. Return the
371 // Type of a member function that generates inline code for a native function
    [all...]
incremental-marking-inl.h 6 // * Redistributions of source code must retain the above copyright
79 Code* value) {
lithium.cc 6 // * Redistributions of source code must retain the above copyright
448 Handle<Code> LChunk::Codegen() {
459 Code::Flags flags = info()->flags();
460 Handle<Code> code = local
462 generator.FinishCode(code);
463 code->set_is_crankshafted(true);
464 if (!code.is_null()) {
468 CodeEndLinePosInfoRecordEvent(*code, jit_handler_data));
471 CodeGenerator::PrintCode(code, info())
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdflong.asm 54 ;; Code Section
57 SECTION CODE ABSOLUTE=0xFFFFFFFF00000000 FLAT USE64
61 ;; Your Code Goes Here
123 cdesc64 zero, 0xFFFFF, 0 ; 0x0008 - Code Selector
  /external/chromium_org/v8/src/x64/
assembler-x64-inl.h 6 // * Redistributions of source code must retain the above copyright
79 void Assembler::emit_code_target(Handle<Code> target,
90 // Optimization if we keep jumping to the same code target.
113 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3);
118 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3);
128 emit(0x48 | (reg.code() & 0x8) >> 1 | op.rex_);
133 ASSERT_EQ(rm_reg.code() & 0xf, rm_reg.code());
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-liveedit-patch-positions-replace.js 6 // * Redistributions of source code must retain the above copyright
32 // have its positions patched; position changing requires new instance of Code
34 // later it will resume over new instance of Code.
36 // change they are 114 characters away from each other. New instance of Code is
75 // will keep reference to code object of BeingRepalced function. This reference
  /external/llvm/lib/MC/
MCELFStreamer.cpp 425 SmallString<256> Code;
426 raw_svector_ostream VecOS(Code);
462 CEIF->getContents().append(Code.begin(), Code.end());
487 DF->getContents().append(Code.begin(), Code.end());
  /external/v8/test/cctest/
test-disasm-x64.cc 6 // * Redistributions of source code must retain the above copyright
255 Handle<Code> ic(Isolate::Current()->builtins()->builtin(
416 Object* code = HEAP->CreateCode( local
418 Code::ComputeFlags(Code::STUB),
420 CHECK(code->IsCode());
422 Code::cast(code)->Print();
423 byte* begin = Code::cast(code)->instruction_start()
    [all...]
  /external/v8/test/mjsunit/
debug-liveedit-patch-positions-replace.js 6 // * Redistributions of source code must retain the above copyright
32 // have its positions patched; position changing requires new instance of Code
34 // later it will resume over new instance of Code.
36 // change they are 114 characters away from each other. New instance of Code is
75 // will keep reference to code object of BeingRepalced function. This reference
  /external/chromium_org/tools/json_schema_compiler/
preview.py 4 # Use of this source code is governed by a BSD-style license that can be
6 """Server for viewing the compiled C++ code from tools/json_schema_compiler.
10 import code namespace
36 head = code.Code()
40 body = code.Code()
65 Code panes are populated via XHR after links in the nav pane are clicked.
133 // Populate the code panes.
232 # Generate code
    [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/
DexMaker.java 21 import com.android.dx.dex.code.DalvCode;
22 import com.android.dx.dex.code.PositionList;
23 import com.android.dx.dex.code.RopTranslator;
28 import com.android.dx.rop.code.AccessFlags;
29 import static com.android.dx.rop.code.AccessFlags.ACC_CONSTRUCTOR;
30 import com.android.dx.rop.code.LocalVariableInfo;
31 import com.android.dx.rop.code.RopMethod;
50 * including their member methods and fields, executable code, and debugging
56 * <li><strong>For runtime code generation.</strong> By embedding this library
58 * executable code. This approach takes advantage of the fact that th
478 private final Code code; field in class:DexMaker.MethodDeclaration
    [all...]
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 89 unsigned Code = MI->getOperand(OpNo).getImm();
92 switch ((PPC::Predicate)Code) {
134 llvm_unreachable("Invalid predicate code");
138 switch ((PPC::Predicate)Code) {
169 llvm_unreachable("Invalid predicate code");
  /external/lzma/CPP/7zip/Archive/
LzmaHandler.cpp 79 HRESULT Code(const CHeader &header, ISequentialOutStream *outStream, ICompressProgressInfo *progress);
123 HRESULT CDecoder::Code(const CHeader &header, ISequentialOutStream *outStream,
389 result = decoder.Code(st, outStream, progress);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItem.java 9 * 1. Redistributions of source code must retain the above copyright
34 import org.jf.dexlib.Code.Format.Instruction20bc;
35 import org.jf.dexlib.Code.Format.UnknownInstruction;
38 import org.jf.dexlib.Code.*;
  /prebuilts/runtime/common/dex/
dex-host-prebuilt.jar 
  /art/compiler/dex/quick/arm/
fp_arm.cc 23 void ArmMir2Lir::GenArithOpFloat(Instruction::Code opcode, RegLocation rl_dest,
70 void ArmMir2Lir::GenArithOpDouble(Instruction::Code opcode,
119 void ArmMir2Lir::GenConversion(Instruction::Code opcode,
229 void ArmMir2Lir::GenCmpFP(Instruction::Code opcode, RegLocation rl_dest,
  /art/compiler/dex/quick/x86/
fp_x86.cc 23 void X86Mir2Lir::GenArithOpFloat(Instruction::Code opcode,
78 void X86Mir2Lir::GenArithOpDouble(Instruction::Code opcode,
133 void X86Mir2Lir::GenConversion(Instruction::Code opcode, RegLocation rl_dest,
234 void X86Mir2Lir::GenCmpFP(Instruction::Code code, RegLocation rl_dest,
236 bool single = (code == Instruction::CMPL_FLOAT) || (code == Instruction::CMPG_FLOAT);
237 bool unordered_gt = (code == Instruction::CMPG_DOUBLE) || (code == Instruction::CMPG_FLOAT);
  /external/clang/include/clang/Format/
Format.h 1 //===--- Format.h - Format C++ code -----------------------------*- C++ -*-===//
11 /// Various functions to configurably format source code.
279 /// \brief Reformats the given \p Ranges in \p Code.
282 tooling::Replacements reformat(const FormatStyle &Style, StringRef Code,
  /external/clang/include/clang/Tooling/
Refactoring.h 15 // the code is always parseable.
148 /// \brief Applies all replacements in \p Replaces to \p Code.
152 std::string applyAllReplacements(StringRef Code, const Replacements &Replaces);
154 /// \brief Calculates how a code \p Position is shifted when \p Replaces are

Completed in 1350 milliseconds

<<11121314151617181920>>