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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/
liveedit.cc 6 // * Redistributions of source code must retain the above copyright
33 #include "code-stubs.h"
614 // Compile the code.
617 ASSERT(!info.code().is_null());
618 tracker.RecordRootFunctionInfo(info.code());
708 // from JavaScript. It contains Code object, which is kept wrapped
726 void SetFunctionCode(Handle<Code> function_code,
747 Handle<Code> GetFunctionCode() {
753 return Handle<Code>::cast(raw_result);
853 // Saves only function code, because for a script function w
1287 Handle<Code> code = compile_info_wrapper.GetFunctionCode(); local
1793 Handle<Code> code = Isolate::Current()->builtins()->FrameDropper_LiveEdit(); local
    [all...]
debug.cc 6 // * Redistributions of source code must retain the above copyright
33 #include "code-stubs.h"
89 static Handle<Code> ComputeCallDebugPrepareStepIn(int argc, Code::Kind kind) {
127 // Iterate through reloc info for code and original code stopping at each
128 // breakable code target.
155 // Check for breakable code target. Look in the original code as setting
156 // break points can cause the code targets in the running (debugged) cod
159 Code* code = Code::GetCodeFromTargetAddress(target); local
1450 Code* code = Code::GetCodeFromTargetAddress(target); local
1629 Code* code = Code::GetCodeFromTargetAddress(addr); local
    [all...]
compiler.h 6 // * Redistributions of source code must retain the above copyright
80 Handle<Code> code() const { return code_; } function in class:v8::internal::CompilationInfo
92 Code::Flags flags() const;
176 void SetCode(Handle<Code> code) { code_ = code; }
188 void MarkCompilingForDebugging(Handle<Code> current_code) {
190 ASSERT(current_code->kind() == Code::FUNCTION);
255 void CommitDependencies(Handle<Code> code)
    [all...]
factory.h 6 // * Redistributions of source code must retain the above copyright
142 // characters of the string are uninitialized. Currently used in regexp code
374 Handle<Code> NewCode(const CodeDesc& desc,
375 Code::Flags flags,
380 Handle<Code> CopyCode(Handle<Code> code);
382 Handle<Code> CopyCode(Handle<Code> code, Vector<byte> reloc_info)
    [all...]
  /external/chromium_org/v8/src/x64/
stub-cache-x64.cc 6 // * Redistributions of source code must retain the above copyright
44 Code::Flags flags,
63 // Multiply by 3 because there are 3 fields per entry (name, code, map).
82 // Get the code entry from the cache.
88 __ movl(offset, FieldOperand(kScratchRegister, Code::kFlagsOffset));
89 __ and_(offset, Immediate(~Code::kFlagsNotUsedInLookup));
101 // Jump to the first instruction in the code stub.
102 __ addq(kScratchRegister, Immediate(Code::kHeaderSize - kHeapObjectTag));
161 Code::Flags flags,
173 // Make sure that code is valid. The multiplying code relies on th
1516 Handle<Code> code = local
2160 Register code = rbx; local
2499 Handle<Code> code = CompileCustomCall(object, holder, local
2595 Handle<Code> code = CompileCustomCall( local
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 81 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
82 Local<Long> localA = code.getParameter(0, TypeId.LONG);
83 Local<Boolean> localB = code.getParameter(1, TypeId.BOOLEAN);
86 Local<Constructable> localResult = code.newLocal(constructable);
87 code.newInstance(localResult, constructor, localA, localB);
88 code.returnValue(localResult);
110 Code code = dexMaker.declare(methodId, PUBLIC); local
111 code.returnVoid()
129 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
148 Code code = dexMaker.declare(methodId, PUBLIC); local
174 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
212 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
267 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
291 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
310 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
330 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
348 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
424 Code code = dexMaker.declare(constructor, PUBLIC); local
460 Code code = dexMaker.declare(GENERATED.getMethod(returnType, "call"), PUBLIC | STATIC); local
519 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
654 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
684 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
725 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
881 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
965 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1048 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1064 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1089 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1115 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1160 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1205 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1248 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1293 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1369 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1415 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1436 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1494 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1511 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1561 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1603 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1650 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1669 Code code = dexMaker.declare(methodId, PUBLIC | SYNCHRONIZED); local
1700 Code code = dexMaker.declare(methodId, PUBLIC); local
1727 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1798 Code code = dexMaker.declare(GENERATED.getConstructor(), PUBLIC); local
    [all...]
  /art/compiler/dex/
dex_to_dex_compiler.cc 80 Instruction::Code new_opcode, bool is_put);
89 Instruction::Code new_opcode, bool is_range);
188 // Ok, this is a safe cast. Since the "check-cast" instruction size is 2 code
189 // units and a "nop" instruction size is 1 code unit, we need to replace it by
211 Instruction::Code new_opcode,
237 Instruction::Code new_opcode,
  /art/compiler/dex/quick/mips/
fp_mips.cc 24 void MipsMir2Lir::GenArithOpFloat(Instruction::Code opcode,
71 void MipsMir2Lir::GenArithOpDouble(Instruction::Code opcode,
119 void MipsMir2Lir::GenConversion(Instruction::Code opcode, RegLocation rl_dest,
176 void MipsMir2Lir::GenCmpFP(Instruction::Code opcode, RegLocation rl_dest,
  /art/compiler/dex/quick/
mir_to_lir.h 279 bool EvaluateBranch(Instruction::Code opcode, int src1, int src2);
379 bool HandleEasyDivRem(Instruction::Code dalvik_opcode, bool is_div,
392 void GenCompareAndBranch(Instruction::Code opcode, RegLocation rl_src1,
394 void GenCompareZeroAndBranch(Instruction::Code opcode, RegLocation rl_src,
397 void GenIntNarrowing(Instruction::Code opcode, RegLocation rl_dest,
420 void GenShiftOpLong(Instruction::Code opcode, RegLocation rl_dest,
422 void GenArithOpInt(Instruction::Code opcode, RegLocation rl_dest,
424 void GenArithOpIntLit(Instruction::Code opcode, RegLocation rl_dest,
426 void GenArithOpLong(Instruction::Code opcode, RegLocation rl_dest,
528 virtual bool SmallLiteralDivRem(Instruction::Code dalvik_opcode, bool is_div
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/util/
status.cc 2 // Use of this source code is governed by a BSD-style license that can be
19 Status::Status(Code code, const Slice& msg, const Slice& msg2) {
20 assert(code != kOk);
26 result[4] = static_cast<char>(code);
42 switch (code()) {
62 snprintf(tmp, sizeof(tmp), "Unknown code(%d): ",
63 static_cast<int>(code()));
  /external/lzma/CPP/7zip/Compress/
Lzma2Decoder.h 50 STDMETHOD(Code)(ISequentialInStream *inStream,
PpmdDecoder.h 55 STDMETHOD(Code)(ISequentialInStream *inStream, ISequentialOutStream *outStream,
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
ArrayDataMethodItem.java 9 * 1. Redistributions of source code must retain the above copyright
33 import org.jf.dexlib.Code.Format.ArrayDataPseudoInstruction;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PreInstructionRegisterInfoMethodItem.java 9 * 1. Redistributions of source code must retain the above copyright
35 import org.jf.dexlib.Code.Analysis.AnalyzedInstruction;
36 import org.jf.dexlib.Code.Analysis.MethodAnalyzer;
37 import org.jf.dexlib.Code.Analysis.RegisterType;
38 import org.jf.dexlib.Code.*;
MethodDefinition.java 9 * 1. Redistributions of source code must retain the above copyright
32 import org.jf.dexlib.Code.Analysis.SyntheticAccessorResolver;
33 import org.jf.dexlib.Code.InstructionWithReference;
37 import org.jf.dexlib.Code.Analysis.AnalyzedInstruction;
38 import org.jf.dexlib.Code.Analysis.MethodAnalyzer;
39 import org.jf.dexlib.Code.Analysis.ValidationException;
40 import org.jf.dexlib.Code.Format.Format;
41 import org.jf.dexlib.Code.Instruction;
42 import org.jf.dexlib.Code.OffsetInstruction;
43 import org.jf.dexlib.Code.Opcode
    [all...]
  /art/compiler/dex/quick/arm/
codegen_arm.h 29 bool SmallLiteralDivRem(Instruction::Code dalvik_opcode, bool is_div, RegLocation rl_src,
86 void GenArithImmOpLong(Instruction::Code opcode, RegLocation rl_dest,
94 void GenShiftImmOpLong(Instruction::Code opcode, RegLocation rl_dest,
99 void GenArithOpDouble(Instruction::Code opcode, RegLocation rl_dest,
101 void GenArithOpFloat(Instruction::Code opcode, RegLocation rl_dest,
103 void GenCmpFP(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
105 void GenConversion(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src);
171 int EncodeShift(int code, int amount);
173 ArmConditionCode ArmConditionEncoding(ConditionCode code);
  /art/compiler/dex/quick/x86/
codegen_x86.h 30 bool SmallLiteralDivRem(Instruction::Code dalvik_opcode, bool is_div, RegLocation rl_src,
87 void GenArithImmOpLong(Instruction::Code opcode, RegLocation rl_dest,
95 void GenShiftImmOpLong(Instruction::Code opcode, RegLocation rl_dest,
100 void GenArithOpDouble(Instruction::Code opcode, RegLocation rl_dest,
102 void GenArithOpFloat(Instruction::Code opcode, RegLocation rl_dest,
104 void GenCmpFP(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1,
106 void GenConversion(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src);
  /external/chromium_org/tools/json_schema_compiler/
cpp_bundle_generator.py 2 # Use of this source code is governed by a BSD-style license that can be
5 import code namespace
35 """This class contains methods to generate code based on multiple schemas.
51 """Generates a code.Code object for a header file
55 - |body_code| - the code to put in between the multiple inclusion guards"""
56 c = code.Code()
86 c = code.Code()
    [all...]
  /external/v8/src/
factory.h 6 // * Redistributions of source code must retain the above copyright
130 // characters of the string are uninitialized. Currently used in regexp code
315 Handle<Code> NewCode(const CodeDesc& desc,
316 Code::Flags flags,
320 Handle<Code> CopyCode(Handle<Code> code);
322 Handle<Code> CopyCode(Handle<Code> code, Vector<byte> reloc_info)
    [all...]
liveedit.cc 6 // * Redistributions of source code must retain the above copyright
607 // Compile the code.
610 ASSERT(!info.code().is_null());
611 tracker.RecordRootFunctionInfo(info.code());
681 // from JavaScript. It contains Code object, which is kept wrapped
697 void SetFunctionCode(Handle<Code> function_code,
715 Handle<Code> GetFunctionCode() {
718 return Handle<Code>::cast(raw_result);
816 // Saves only function code, because for a script function we
818 void FunctionCode(Handle<Code> function_code)
1090 Handle<Code> code = compile_info_wrapper.GetFunctionCode(); local
1517 Handle<Code> code = Isolate::Current()->builtins()->FrameDropper_LiveEdit(); local
    [all...]
debug.cc 6 // * Redistributions of source code must retain the above copyright
33 #include "code-stubs.h"
89 static Handle<Code> ComputeCallDebugPrepareStepIn(int argc, Code::Kind kind) {
127 // Iterate through reloc info for code and original code stopping at each
128 // breakable code target.
155 // Check for breakable code target. Look in the original code as setting
156 // break points can cause the code targets in the running (debugged) cod
159 Code* code = Code::GetCodeFromTargetAddress(target); local
1356 Code* code = Code::GetCodeFromTargetAddress(target); local
1537 Code* code = Code::GetCodeFromTargetAddress(addr); local
    [all...]
incremental-marking.cc 6 // * Redistributions of source code must retain the above copyright
32 #include "code-stubs.h"
106 void IncrementalMarking::RecordCodeTargetPatch(Code* host,
118 Code* host = heap_->isolate()->inner_pointer_to_code_cache()->
128 Code* value) {
156 Code::cast(value));
181 Code* target = Code::GetCodeFromTargetAddress(rinfo->target_address());
185 target = Code::GetCodeFromTargetAddress(rinfo->target_address());
187 heap_->mark_compact_collector()->RecordRelocSlot(rinfo, Code::cast(target))
    [all...]
  /external/chromium_org/v8/src/mips/
assembler-mips-inl.h 9 // - Redistributions of source code must retain the above copyright notice,
32 // The original source code covered by the above license above has been
99 ASSERT(reg.code() % 2 == 0);
100 ASSERT(reg.code() / 2 < kMaxNumAllocatableRegisters);
104 return (reg.code() / 2);
121 // Absolute code pointer inside code object moves with the code object.
168 Object* target_code = Code::GetCodeFromTargetAddress(target);
264 Code* RelocInfo::code_age_stub()
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 186 // CurCodeSize - This is the declared size of code values used for the current
286 unsigned Code = ReadCode();
287 if (Code == bitc::END_BLOCK) {
294 if (Code == bitc::ENTER_SUBBLOCK)
297 if (Code == bitc::DEFINE_ABBREV &&
305 return BitstreamEntry::getRecord(Code);
466 /// ReadSubBlockID - Having read the ENTER_SUBBLOCK code, read the BlockID for
477 // don't care what code widths are used inside of it.
  /external/giflib/
dgif_lib.c 39 static int DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode);
40 static int DGifDecompressInput(GifFileType *GifFile, int *Code);
683 Get the image code in compressed form. This routine can be called if the
706 Continue to get the image code in compressed form. This routine should be
751 READ(GifFile, &CodeSize, 1); /* Read Code size from file. */
759 Private->RunningBits = BitsPerPixel + 1; /* Number of bits per code. */
760 Private->MaxCode1 = 1 << Private->RunningBits; /* Max. code + 1. */
812 * decoding as soon as we got all the pixel, or EOF code will
825 /* Its regular code - if in pixel range simply add it to output
832 /* Its a code to needed to be traced: trace the linked lis
    [all...]

Completed in 1133 milliseconds

1 2 3 4 5 6 7 8 91011>>