/external/v8/src/x64/ |
macro-assembler-x64.h | 6 // * Redistributions of source code must retain the above copyright 50 // Default scratch register used by MacroAssembler (and other code that needs 109 // May emit code to set up the scratch register. The operand is 117 // Special case code for load and store to take advantage of 127 // Returns the size of the code generated by LoadAddress. 168 void RememberedSetHelper(Register object, // Used for debug code. 332 // explicit first parameter to make the code more readable at the 336 // Invoke the JavaScript function code by either calling or jumping. 337 void InvokeCode(Register code, 344 void InvokeCode(Handle<Code> code [all...] |
/external/v8/test/mjsunit/regress/ |
regress-1383.js | 6 // * Redistributions of source code must retain the above copyright 30 // hit an assertion in Code::ComputeFlags.
|
/external/chromium_org/v8/src/ |
objects.cc | 6 // * Redistributions of source code must retain the above copyright 7305 Code* code = Code::cast(cache->get(i + kCodeCacheEntryCodeOffset)); local 7395 Code* code = Code::cast(pair->get(1)); local 9370 Code* code = Code::cast(code_map->get(index)); local 9792 Code* code = this->code(); local 10026 Object* code = Code::GetObjectFromEntryAddress(entry_address); local 10117 Code* code = Code::cast(*p); local 10275 Code* code = Code::GetCodeFromTargetAddress(info->target_address()); local 11370 Code* code = code_at(i); local [all...] |
mark-compact.h | 6 // * Redistributions of source code must retain the above copyright 406 // CodeFlusher collects candidates for code flushing during marking and 408 // reset those functions referencing code objects that would otherwise 409 // be unreachable. Code objects can be referenced in three ways: 410 // - SharedFunctionInfo references unoptimized code. 411 // - JSFunction references either unoptimized or optimized code. 412 // - OptimizedCodeMap references optimized code. 413 // We are not allowed to flush unoptimized code for functions that got 414 // optimized or inlined into optimized code, because we might bailout 415 // into the unoptimized code again during deoptimization [all...] |
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 680 RelocIterator::RelocIterator(Code* code, int mode_mask) { 681 rinfo_.host_ = code; 682 rinfo_.pc_ = code->instruction_start(); 685 pos_ = code->relocation_start() + code->relocation_size(); 686 end_ = code->relocation_start(); 691 byte* sequence = code->FindCodeAgeSequence() 806 Code* code = Code::GetCodeFromTargetAddress(target_address()); local 851 Code* code = Code::GetCodeFromTargetAddress(addr); local [all...] |
/art/runtime/ |
dex_instruction.cc | 203 Code opcode = static_cast<Code>(insn & 0xFF); 210 Code opcode = static_cast<Code>(insn & 0xFF); 620 std::ostream& operator<<(std::ostream& os, const Instruction::Code& code) { 621 return os << Instruction::Name(code);
|
/external/v8/src/ia32/ |
macro-assembler-ia32.h | 6 // * Redistributions of source code must retain the above copyright 80 void RememberedSetHelper(Register object, // Used for debug code. 271 // explicit first parameter to make the code more readable at the 275 // Invoke the JavaScript function code by either calling or jumping. 276 void InvokeCode(Register code, 282 InvokeCode(Operand(code), expected, actual, flag, call_wrapper, call_kind); 285 void InvokeCode(const Operand& code, 292 void InvokeCode(Handle<Code> code, 323 // Store the code object for the given builtin in the target register [all...] |
assembler-ia32-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 68 // absolute code pointer inside code object moves with the code object. 99 Object* target_code = Code::GetCodeFromTargetAddress(target); 187 Object* target_code = Code::GetCodeFromTargetAddress(target); 295 // Verify all Objects referred by code are NOT in new space. 328 // Verify all Objects referred by code are NOT in new space. 365 pos = label->pos() + Code::kHeaderSize - kHeapObjectTag [all...] |
/external/v8/test/cctest/ |
test-assembler-x64.cc | 6 // * Redistributions of source code must retain the above copyright 39 using v8::internal::Code; 428 Code* code = Code::cast(HEAP->CreateCode( local 430 Code::ComputeFlags(Code::STUB), 433 CHECK(code->IsCode()); 435 F0 f = FUNCTION_CAST<F0>(code->entry());
|
/external/v8/src/ |
bootstrapper.cc | 6 // * Redistributions of source code must retain the above copyright 357 Handle<Code> call_code = Handle<Code>(isolate->builtins()->builtin(call)); 498 Handle<Code> code = local 499 Handle<Code>(isolate->builtins()->builtin( 501 empty_function->set_code(*code); 502 empty_function->shared()->set_code(*code); 580 Handle<Code> code(isolate()->builtins()->builtin 731 Handle<Code> code = Handle<Code>(isolate()->builtins()->builtin( local 764 Handle<Code> code = Handle<Code>(isolate()->builtins()->builtin( local 1052 Handle<Code> code = Handle<Code>( local 1196 Handle<Code> code = Handle<Code>( local 1213 Handle<Code> code = local 1225 Handle<Code> code = local 1423 Handle<Code> code = Handle<Code>( local [all...] |
/external/clang/lib/Serialization/ |
ASTWriter.cpp | 81 /// \brief Type code that corresponds to the record generated. 82 TypeCode Code; 85 : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { } 103 Code = TYPE_COMPLEX; 108 Code = TYPE_POINTER; 113 Code = TYPE_DECAYED; 118 Code = TYPE_BLOCK_POINTER; 124 Code = TYPE_LVALUE_REFERENCE; 129 Code = TYPE_RVALUE_REFERENCE; 135 Code = TYPE_MEMBER_POINTER [all...] |
/external/clang/unittests/Format/ |
FormatTest.cpp | 22 std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length, 26 tooling::Replacements Replaces = reformat(Style, Code, Ranges); 28 std::string Result = applyAllReplacements(Code, Replaces); 35 format(llvm::StringRef Code, const FormatStyle &Style = getLLVMStyle()) { 36 return format(Code, 0, Code.size(), Style); 39 std::string messUp(llvm::StringRef Code) { 40 std::string MessedUp(Code.str()); 84 void verifyFormat(llvm::StringRef Code, 86 EXPECT_EQ(Code.str(), format(messUp(Code), Style)) [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
BitcodeReader.cpp | [all...] |
/external/chromium_org/v8/test/cctest/ |
test-disasm-ia32.cc | 6 // * Redistributions of source code must retain the above copyright 266 Handle<Code> ic(isolate->builtins()->builtin(Builtins::kLoadIC_Initialize)); 453 Object* code = isolate->heap()->CreateCode( local 455 Code::ComputeFlags(Code::STUB), 456 Handle<Code>())->ToObjectChecked(); 457 CHECK(code->IsCode()); 459 Code::cast(code)->Print(); 460 byte* begin = Code::cast(code)->instruction_start() [all...] |
test-cpu-profiler.cc | 6 // * Redistributions of source code must retain the above copyright 100 i::Code* CreateCode(LocalContext* env) { 118 return fun->code(); 131 i::Code* aaa_code = CreateCode(&env); 132 i::Code* comment_code = CreateCode(&env); 133 i::Code* args5_code = CreateCode(&env); 134 i::Code* comment2_code = CreateCode(&env); 135 i::Code* moved_code = CreateCode(&env); 136 i::Code* args3_code = CreateCode(&env); 137 i::Code* args4_code = CreateCode(&env) 268 i::Code* code = CreateCode(&env); local [all...] |
/external/dexmaker/src/main/java/com/google/dexmaker/stock/ |
ProxyBuilder.java | 19 import com.google.dexmaker.Code; 50 * This is similar to the {@code java.lang.reflect.Proxy} class, but works for classes instead of 53 * The following example demonstrates the creation of a dynamic proxy for {@code java.util.Random} 98 * The {@link #finalize()} method on {@code Object} will not be proxied. 101 * care not to make this a world-writable directory, so that third parties cannot inject code into 104 * <pre>{@code 108 * If the base class to be proxied leaks the {@code this} pointer in the constructor (bad practice), 148 * <p>If null, {@code ProxyBuilder.class.getClassLoader()} will be used. 161 * Sets the directory where executable code is stored. See {@link 195 * @throws IOException if an exception occurred writing to the {@code dexCache} directory 417 Code code = dexMaker.declare(methodId, PUBLIC); local [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
trees.c | 12 * Each code tree is stored in a compressed form which is itself 13 * a Huffman encoding of the lengths of all the code strings (in 14 * ascending order by source values). The actual code strings are 50 /* end of block literal code */ 61 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */ 64 local const int extra_dbits[D_CODES] /* extra bits for each distance code */ 67 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */ 109 /* length code for each normalized match length (0 == MIN_MATCH) */ 112 /* First normalized length for each code (0 = MIN_MATCH) */ 115 /* First normalized distance for each code (0 = distance of 1) * 245 int code; \/* code value *\/ local 583 ush code = 0; \/* running code value *\/ local 1080 unsigned code; \/* the code to send *\/ local [all...] |
/external/v8/src/arm/ |
code-stubs-arm.h | 6 // * Redistributions of source code must retain the above copyright 133 virtual int GetCodeKind() { return Code::UNARY_OP_IC; } 139 virtual void FinishCode(Handle<Code> code) { 140 code->set_unary_op_type(operand_type_); 232 virtual int GetCodeKind() { return Code::BINARY_OP_IC; } 238 virtual void FinishCode(Handle<Code> code) { 239 code->set_binary_op_type(operands_type_); 240 code->set_binary_op_result_type(result_type_) [all...] |
/external/v8/src/mips/ |
code-stubs-mips.h | 6 // * Redistributions of source code must retain the above copyright 134 virtual int GetCodeKind() { return Code::UNARY_OP_IC; } 140 virtual void FinishCode(Handle<Code> code) { 141 code->set_unary_op_type(operand_type_); 233 virtual int GetCodeKind() { return Code::BINARY_OP_IC; } 239 virtual void FinishCode(Handle<Code> code) { 240 code->set_binary_op_type(operands_type_); 241 code->set_binary_op_result_type(result_type_) [all...] |
/external/zlib/src/ |
trees.c | 13 * Each code tree is stored in a compressed form which is itself 14 * a Huffman encoding of the lengths of all the code strings (in 15 * ascending order by source values). The actual code strings are 51 /* end of block literal code */ 62 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */ 65 local const int extra_dbits[D_CODES] /* extra bits for each distance code */ 68 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */ 105 /* length code for each normalized match length (0 == MIN_MATCH) */ 108 /* First normalized length for each code (0 = MIN_MATCH) */ 111 /* First normalized distance for each code (0 = distance of 1) * 241 int code; \/* code value *\/ local 581 ush code = 0; \/* running code value *\/ local 1068 unsigned code; \/* the code to send *\/ local [all...] |
/external/chromium_org/v8/src/arm/ |
code-stubs-arm.h | 6 // * Redistributions of source code must retain the above copyright 85 // Generate code for copying characters using a simple loop. This should only 97 // Generate code for copying a large number of characters. This function 116 // string is found the code falls through with the string in register r0. 251 return IntRegisterBits::encode(the_int_.code()) 252 | HeapNumberRegisterBits::encode(the_heap_number_.code()) 253 | ScratchRegisterBits::encode(scratch_.code()); 264 // Generate code to do a lookup in the number string cache. If the number in 265 // the register object is found in the cache the generated code falls through 267 // can be the same. If the number is not found in the cache the code jumps t [all...] |
regexp-macro-assembler-arm.h | 6 // * Redistributions of source code must retain the above copyright 112 // If the code object is relocated, the return address is fixed before 115 Code* re_code, 136 // Register parameters stored by setup code. 148 // Initial size of code buffer. 191 // Register holding pointer to the current code object. 201 // Call and return internally in the generated code in a way that 202 // is GC-safe (i.e., doesn't leave absolute code addresses on the stack) 227 // Which mode to generate code for (ASCII or UC16).
|
/external/chromium_org/v8/src/x64/ |
code-stubs-x64.h | 6 // * Redistributions of source code must retain the above copyright 86 // Generate code for copying characters using a simple loop. This should only 96 // Generate code for copying characters using the rep movs instruction. 109 // string is found the code falls through with the string in register rax. 215 // Generate code to do a lookup in the number string cache. If the number in 216 // the register object is found in the cache the generated code falls through 218 // can be the same. If the number is not found in the cache the code jumps to 283 return DictionaryBits::encode(dictionary_.code()) | 284 ResultBits::encode(result_.code()) | 285 IndexBits::encode(index_.code()) | [all...] |
/external/llvm/include/llvm/Bitcode/ |
BitstreamWriter.h | 34 /// CurCodeSize - This is the declared size of code values used for the 187 /// EmitCode - Emit the specified code. 264 // Restore the inner block's code size and abbrev table. 310 /// emission code. If BlobData is non-null, then it specifies an array of 409 void EmitRecord(unsigned Code, SmallVectorImpl<uintty> &Vals, 415 EmitVBR(Code, 6); 422 // Insert the code into Vals to treat it uniformly. 423 Vals.insert(Vals.begin(), Code); 429 /// Unlike EmitRecord, the code for the record should be included in Vals as 439 /// EmitRecord, this routine expects that the first entry in Vals is the code [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/ |
MediaKeySession.cpp | 7 * 1. Redistributions of source code must retain the above copyright 160 MediaKeyError::Code mediaKeyErrorCode = MediaKeyError::MEDIA_KEYERR_UNKNOWN; 171 // code = the appropriate MediaKeyError code
|