HomeSort by relevance Sort by last modified time
    Searched refs:Code (Results 251 - 275 of 422) sorted by null

<<11121314151617

  /external/v8/src/
string-stream.h 6 // * Redistributions of source code must retain the above copyright
156 // NOTE: Returns the code in the output parameter.
157 void PrintFunction(Object* function, Object* receiver, Code** code);
assembler.cc 8 // - Redistributions of source code must retain the above copyright notice,
31 // The original source code covered by the above license above has been
559 RelocIterator::RelocIterator(Code* code, int mode_mask) {
560 rinfo_.host_ = code;
561 rinfo_.pc_ = code->instruction_start();
564 pos_ = code->relocation_start() + code->relocation_size();
565 end_ = code->relocation_start();
602 return "code target (js construct call)"
657 Code* code = Code::GetCodeFromTargetAddress(target_address()); local
702 Code* code = Code::GetCodeFromTargetAddress(addr); local
    [all...]
full-codegen.cc 6 // * Redistributions of source code must retain the above copyright
314 Code::Flags flags = Code::ComputeFlags(Code::FUNCTION);
315 Handle<Code> code = CodeGenerator::MakeCodeEpilogue(&masm, flags, info); local
316 code->set_optimizable(info->IsOptimizable() &&
319 code->set_self_optimization_header(cgen.has_self_optimization_header_);
320 cgen.PopulateDeoptimizationData(code);
321 cgen.PopulateTypeFeedbackInfo(code);
    [all...]
objects.cc 6 // * Redistributions of source code must retain the above copyright
5219 Code* code = Code::cast(cache->get(i + kCodeCacheEntryCodeOffset)); local
5309 Code* code = Code::cast(pair->get(1)); local
7759 Code* code = this->code(); local
7965 Object* code = Code::GetObjectFromEntryAddress(entry_address); local
8049 Code* code = Code::cast(*p); local
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
DexMerger.java 24 import com.android.dx.io.Code;
133 codeOut = dexOut.appendSection(writerSizes.code, "code");
644 * Reads a class_def_item beginning at {@code in} and writes the index and
796 private void transformCode(DexBuffer in, Code code, IndexMap indexMap) {
800 codeOut.writeUnsignedShort(code.getRegistersSize());
801 codeOut.writeUnsignedShort(code.getInsSize());
802 codeOut.writeUnsignedShort(code.getOutsSize());
804 Code.Try[] tries = code.getTries()
990 private int code; field in class:DexMerger.WriterSizes
    [all...]
  /external/clang/unittests/Tooling/
RefactoringTest.cpp 212 bool runOver(StringRef Code) {
213 return runToolOnCode(new TestAction(this), Code);
  /external/llvm/include/llvm/Support/
ErrorOr.h 104 /// \code
124 /// \code
509 operator ==(ErrorOr<T> &Err, E Code) {
510 return error_code(Err) == Code;
  /external/llvm/lib/Support/
Dwarf.cpp     [all...]
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 33 // Returns the name of the unwind code.
34 static StringRef getUnwindCodeTypeName(uint8_t Code) {
35 switch(Code) {
36 default: llvm_unreachable("Invalid unwind code");
72 // Calculates the number of array slots required for the unwind code.
75 default: llvm_unreachable("Invalid unwind code");
92 // Prints one unwind code. Because an unwind code can occupy up to 3 slots in
137 << " error code";
  /external/v8/src/arm/
assembler-arm-inl.h 8 // - Redistributions of source code must retain the above copyright notice,
33 // The original source code covered by the above license above has been modified
53 return reg.code();
59 // absolute code pointer inside code object moves with the code object.
91 Object* target_code = Code::GetCodeFromTargetAddress(target);
179 Object* target_code = Code::GetCodeFromTargetAddress(target);
382 // after patching a target address in the code as follows:
macro-assembler-arm.h 6 // * Redistributions of source code must retain the above copyright
103 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al);
110 static int CallSize(Handle<Code> code,
114 void Call(Handle<Code> code,
120 // Emit code to discard a non-negative number of pointer-sized elements
194 void RememberedSetHelper(Register object, // Used for debug code.
306 if (src1.code() > src2.code())
    [all...]
regexp-macro-assembler-arm.cc 6 // * Redistributions of source code must retain the above copyright
34 #include "code-stubs.h"
46 * - r5 : Pointer to current code object (Code*) including heap object tag.
52 * - r9 : Unused, might be used by C code and expected unchanged.
64 * - fp[48] direct_call (if 1, direct call from JavaScript code,
95 * code and the remaining arguments are passed in registers, e.g. by calling the
96 * code entry as cast to a function with the signature:
108 * When calling as a non-direct call (i.e., from C++ code), the return address
109 * area is overwritten with the LR register by the RegExp code. When doing
821 Handle<Code> code = FACTORY->NewCode(code_desc, local
    [all...]
  /external/v8/src/mips/
assembler-mips-inl.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
83 ASSERT(reg.code() % 2 == 0);
84 ASSERT(reg.code() / 2 < kNumAllocatableRegisters);
88 return (reg.code() / 2);
105 // Absolute code pointer inside code object moves with the code object.
152 Object* target_code = Code::GetCodeFromTargetAddress(target);
250 Object* target_code = Code::GetCodeFromTargetAddress(target)
    [all...]
macro-assembler-mips.h 6 // * Redistributions of source code must retain the above copyright
50 // trying to update gp register for position-independent-code. Whenever
51 // MIPS generated code calls C code, it must be via t9 register.
178 void Jump(Handle<Code> code, RelocInfo::Mode rmode, COND_ARGS);
183 static int CallSize(Handle<Code> code,
187 void Call(Handle<Code> code,
    [all...]
regexp-macro-assembler-mips.cc 6 // * Redistributions of source code must retain the above copyright
34 #include "code-stubs.h"
46 * - t1 : Pointer to current code object (Code*) including heap object tag.
63 * - fp[56] direct_call (if 1, direct call from JavaScript code,
94 * code and the remaining arguments are passed in registers, e.g. by calling the
95 * code entry as cast to a function with the signature:
107 * When calling as a non-direct call (i.e., from C++ code), the return address
108 * area is overwritten with the ra register by the RegExp code. When doing a
109 * direct call from generated code, the return address is placed there b
832 Handle<Code> code = FACTORY->NewCode(code_desc, local
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h 40 /// \brief Annotates a diagnostic with some code that should be
45 /// amount of code will correct a compilation error. The compiler
51 /// \brief Code that should be replaced to correct the error. Empty for an
55 /// \brief Code in the specific range that should be inserted in the insertion
59 /// \brief The actual code to insert at the insertion location, as a
65 /// \brief Empty code modification hint, indicating that no code
73 /// \brief Create a code modification hint that inserts the given
74 /// code string at a specific location.
76 StringRef Code,
    [all...]
  /external/v8/test/cctest/
test-disasm-ia32.cc 6 // * Redistributions of source code must retain the above copyright
273 Handle<Code> ic(Isolate::Current()->builtins()->builtin(
461 Object* code = HEAP->CreateCode( local
463 Code::ComputeFlags(Code::STUB),
465 CHECK(code->IsCode());
467 Code::cast(code)->Print();
468 byte* begin = Code::cast(code)->instruction_start()
    [all...]
  /external/v8/tools/
ll_prof.py 8 # * Redistributions of source code must retain the above copyright
80 class Code(object):
81 """Code object."""
86 self.id = Code._id
87 Code._id += 1
192 """Group of adjacent code objects."""
214 def Add(self, code):
215 self.code_objects.append(code)
217 def Remove(self, code):
218 self.code_objects.remove(code)
    [all...]
grokdump.py 8 # * Redistributions of source code must retain the above copyright
47 heap. Code objects are disassembled and the addresses linked from the
135 ("code", ctypes.c_uint32),
507 # List of V8 instance types. Obtained by adding the code below to any .cc file.
623 code = AnnotateAddresses(heap, line[1])
624 return "%s%08x %08x: %s" % (marker, line_address, line[0], code)
803 self.code = heap.FindObject(code_entry - Code.HeaderSize(heap) + 1)
815 p.Print("code:")
816 self.code.Print(p
    [all...]
  /external/libmtp/src/
libusb-glue.c 503 * <code>free_mtpdevice_list(mtp_device_list)</code> when you are done
575 * The user shall simply <code>free()</code> this
600 "error code: %d on line %d\n", ret, __LINE__);
    [all...]
  /external/llvm/utils/TableGen/
FastISelEmitter.cpp 10 // This tablegen backend emits code for use by the "fast" instruction
16 // code to look up these instructions by type and operator.
31 /// instruction needed to emit code for it.
109 if (unsigned Code = getImmCode())
110 OS << "_" << ImmPredicates.getPredicate(Code-1).getFnName();
151 unsigned Code = Operands[i].getImmCode();
152 if (Code == 0) continue;
157 TreePredicateFn PredFn = ImmPredicates.getPredicate(Code-1);
208 // example, X86 doesn't need to generate code to match ADD16ri8 since
583 // Now emit code for all the patterns that we collected
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 170 A64CC::CondCodes Code;
242 return CondCode.Code;
433 // certainly break resulting code.
719 static AArch64Operand *CreateCondCode(A64CC::CondCodes Code,
722 Op->CondCode.Code = Code;
    [all...]
  /external/v8/src/x64/
assembler-x64-inl.h 6 // * Redistributions of source code must retain the above copyright
66 void Assembler::emit_code_target(Handle<Code> target,
77 // Optimization if we keep jumping to the same code target.
92 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3);
97 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3);
107 emit(0x48 | (reg.code() & 0x8) >> 1 | op.rex_);
112 ASSERT_EQ(rm_reg.code() & 0xf, rm_reg.code());
    [all...]
regexp-macro-assembler-x64.cc 6 // * Redistributions of source code must retain the above copyright
60 * positions from end of string or code location from Code* pointer).
61 * - r8 : code object pointer. Used to convert between absolute and
62 * code-object-relative addresses.
67 * kRootRegister) aren't special during execution of RegExp code (they don't
68 * hold the values assumed when creating JS code), so no Smi or Root related
76 * - direct_call (if 1, direct call from JavaScript code, if 0 call
99 * The first seven values must be provided by the calling code by
100 * calling the code's entry address cast to a function pointer with th
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 2 * Code Generation
94 (* Validate the generated code, checking for consistency. *)

Completed in 1090 milliseconds

<<11121314151617