/external/v8/src/ |
stub-cache.cc | 6 // * Redistributions of source code must retain the above copyright 33 #include "code-stubs.h" 58 Code* StubCache::Set(String* name, Map* map, Code* code) { 59 // Get the flags from the code. 60 Code::Flags flags = Code::RemoveTypeFromFlags(code->flags()); 71 ASSERT(Code::ExtractICStateFromFlags(flags) == MONOMORPHIC) 126 Handle<Code> code = local 145 Handle<Code> code = local 165 Handle<Code> code = local 185 Handle<Code> code = local 203 Handle<Code> code = local 228 Handle<Code> code = local 247 Handle<Code> code = local 267 Handle<Code> code = local 286 Handle<Code> code = compiler.CompileLoadInterceptor(receiver, holder, name); local 306 Handle<Code> code = local 323 Handle<Code> code = compiler.CompileLoadArrayLength(name); local 340 Handle<Code> code = compiler.CompileLoadStringLength(name); local 357 Handle<Code> code = compiler.CompileLoadFunctionPrototype(name); local 377 Handle<Code> code = local 472 Handle<Code> code = compiler.CompileStoreGlobal(receiver, cell, name); local 491 Handle<Code> code = compiler.CompileStoreCallback(receiver, callback, name); local 508 Handle<Code> code = compiler.CompileStoreInterceptor(receiver, name); local 528 Handle<Code> code = local 569 Handle<Code> code = local 607 Handle<Code> code = local 644 Handle<Code> code = local 649 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_IC_TAG), *code, *name)); local 674 Handle<Code> code = local 678 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_IC_TAG), *code, *name)); local 708 Object* code = dictionary->ValueAt(entry); local 729 Handle<Code> code = compiler.CompileCallInitialize(flags); local 758 Handle<Code> code = compiler.CompileCallPreMonomorphic(flags); local 775 Handle<Code> code = compiler.CompileCallNormal(flags); local 792 Handle<Code> code = compiler.CompileCallArguments(flags); local 811 Handle<Code> code = compiler.CompileCallMegamorphic(flags); local 831 Handle<Code> code = compiler.CompileCallMiss(flags); local 851 Handle<Code> code = compiler.CompileCallDebugBreak(flags); local 870 Handle<Code> code = compiler.CompileCallDebugPrepareStepIn(flags); local 1149 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallInitialize"); local 1153 *code, code->arguments_count())); local 1170 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallPreMonomorphic"); local 1174 *code, code->arguments_count())); local 1191 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallNormal"); local 1195 *code, code->arguments_count())); local 1210 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallMegamorphic"); local 1214 *code, code->arguments_count())); local 1223 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallArguments"); local 1242 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallMiss"); local 1246 *code, code->arguments_count())); local 1255 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallDebugBreak"); local 1275 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallDebugPrepareStepIn"); local 1279 *code, local 1293 Handle<Code> code = factory()->NewCode(desc, flags, masm_.CodeObject()); local 1324 Handle<Code> code = GetCodeWithFlags(flags, name); local 1336 Handle<Code> code = GetCodeWithFlags(flags, name); local 1347 Handle<Code> code = GetCodeWithFlags(flags, name); local 1361 Handle<Code> code = GetCodeWithFlags(flags, name); local 1454 Handle<Code> code = GetCodeWithFlags(flags, "ConstructStub"); local [all...] |
ic.h | 6 // * Redistributions of source code must retain the above copyright 39 // inline caching code. The argument for the macro, ICU, is the function name. 70 // The ids for utility called from the generated code. 81 // Alias the inline cache state type to make the IC code more readable. 84 // The IC code is either invoked with no extra frames on the stack 97 Code* target() const { return GetTargetAtAddress(address()); } 103 static State StateFrom(Code* target, Object* receiver, Object* name); 109 // operation as it has to search through the heap to find the code 128 // Determines which map must be used for keeping the code stub. 143 // Computes the address in the original code when the code running i 149 void set_target(Code* code) { SetTargetAtAddress(address(), code); } local [all...] |
stub-cache.h | 6 // * Redistributions of source code must retain the above copyright 43 // It maps (map, name, type)->Code* 71 Code* value; 80 Handle<Code> ComputeLoadNonexistent(Handle<String> name, 83 Handle<Code> ComputeLoadField(Handle<String> name, 88 Handle<Code> ComputeLoadCallback(Handle<String> name, 93 Handle<Code> ComputeLoadConstant(Handle<String> name, 98 Handle<Code> ComputeLoadInterceptor(Handle<String> name, 102 Handle<Code> ComputeLoadNormal(); 104 Handle<Code> ComputeLoadGlobal(Handle<String> name [all...] |
ic-inl.h | 6 // * Redistributions of source code must retain the above copyright 55 // the original code instead of the address in the running code. This will 56 // cause the original code to be updated and keeps the breakpoint active in 57 // the running code. 69 Code* IC::GetTargetAtAddress(Address address) { 72 // Convert target address to the code object. Code::GetCodeFromTargetAddress 74 Code* result = Code::GetCodeFromTargetAddress(target) [all...] |
gdb-jit.h | 6 // * Redistributions of source code must retain the above copyright 116 Code* code, 123 Handle<Code> code, 126 static void AddCode(CodeTag tag, String* name, Code* code); 128 static void AddCode(CodeTag tag, const char* name, Code* code); 130 static void AddCode(CodeTag tag, Code* code) [all...] |
/external/chromium_org/tools/json_schema_compiler/ |
code_test.py | 3 # Use of this source code is governed by a BSD-style license that can be 6 from code import Code 11 c = Code() 16 c = Code() 40 b = Code() 45 c = Code() 59 d = Code() 60 a = Code() 74 c = Code() [all...] |
/external/chromium_org/v8/src/ |
builtins.h | 6 // * Redistributions of source code must retain the above copyright 55 UNINITIALIZED, Code::kNoExtraICState) \ 57 UNINITIALIZED, Code::kNoExtraICState) 87 Code::kNoExtraICState) \ 89 Code::kNoExtraICState) \ 91 Code::kNoExtraICState) \ 93 Code::kNoExtraICState) \ 95 Code::kNoExtraICState) \ 97 Code::kNoExtraICState) \ 99 Code::kNoExtraICState) [all...] |
stub-cache.cc | 6 // * Redistributions of source code must retain the above copyright 33 #include "code-stubs.h" 60 Code* StubCache::Set(Name* name, Map* map, Code* code) { 61 // Get the flags from the code. 62 Code::Flags flags = Code::RemoveTypeFromFlags(code->flags()); 73 ASSERT(Code::ExtractICStateFromFlags(flags) == MONOMORPHIC) 509 Handle<Code> code = compiler.CompileLoadElement(receiver_map); local 536 Handle<Code> code = compiler.CompileStoreElement(receiver_map); local 561 Handle<Code> code = FindIC( local 707 Handle<Code> code = local 750 Handle<Code> code = local 789 Handle<Code> code = local 794 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_IC_TAG), *code, *name)); local 820 Handle<Code> code = local 824 CodeCreateEvent(CALL_LOGGER_TAG(kind, CALL_IC_TAG), *code, *name)); local 854 Object* code = dictionary->ValueAt(entry); local 875 Handle<Code> code = compiler.CompileCallInitialize(flags); local 904 Handle<Code> code = compiler.CompileCallPreMonomorphic(flags); local 921 Handle<Code> code = compiler.CompileCallNormal(flags); local 937 Handle<Code> code = compiler.CompileCallArguments(flags); local 956 Handle<Code> code = compiler.CompileCallMegamorphic(flags); local 976 Handle<Code> code = compiler.CompileCallMiss(flags); local 1013 Handle<Code> code = compiler.CompilePolymorphicIC( local 1069 Handle<Code> code = compiler.CompileStoreElementPolymorphic(receiver_maps); local 1089 Handle<Code> code = compiler.CompileCallDebugBreak(flags); local 1108 Handle<Code> code = compiler.CompileCallDebugPrepareStepIn(flags); local 1385 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallInitialize"); local 1389 *code, code->arguments_count())); local 1406 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallPreMonomorphic"); local 1410 *code, code->arguments_count())); local 1427 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallNormal"); local 1431 *code, code->arguments_count())); local 1446 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallMegamorphic"); local 1450 *code, code->arguments_count())); local 1459 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallArguments"); local 1478 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallMiss"); local 1482 *code, code->arguments_count())); local 1491 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallDebugBreak"); local 1511 Handle<Code> code = GetCodeWithFlags(flags, "CompileCallDebugPrepareStepIn"); local 1515 *code, local 1529 Handle<Code> code = factory()->NewCode(desc, flags, masm_.CodeObject()); local 1915 Handle<Code> code = GetCodeWithFlags(flags, name); local 1916 PROFILE(isolate(), CodeCreateEvent(log_kind(code), *code, *name)); local 1928 Handle<Code> code = GetCodeWithFlags(flags, name); local 1929 PROFILE(isolate(), CodeCreateEvent(log_kind(code), *code, *name)); local 1941 Handle<Code> code = GetCodeWithFlags(flags, name); local 1942 PROFILE(isolate(), CodeCreateEvent(log_kind(code), *code, *name)); local 2019 Handle<Code> code = local [all...] |
ic.h | 6 // * Redistributions of source code must retain the above copyright 39 // inline caching code. The argument for the macro, ICU, is the function name. 71 // The ids for utility called from the generated code. 82 // Alias the inline cache state type to make the IC code more readable. 85 // The IC code is either invoked with no extra frames on the stack 98 Code* target() const { return GetTargetAtAddress(address()); } 102 static State StateFrom(Code* target, Object* receiver, Object* name); 108 // operation as it has to search through the heap to find the code 127 // Determines which map must be used for keeping the code stub. 143 // Computes the address in the original code when the code running i 149 void set_target(Code* code) { SetTargetAtAddress(address(), code); } local [all...] |
type-info.cc | 6 // * Redistributions of source code must retain the above copyright 31 #include "code-stubs.h" 59 TypeFeedbackOracle::TypeFeedbackOracle(Handle<Code> code, 66 BuildDictionary(code); 106 Handle<Code> code = Handle<Code>::cast(map_or_code); local 107 return code->is_inline_cache_stub() && code->ic_state() == UNINITIALIZED 117 Handle<Code> code = Handle<Code>::cast(map_or_code); local 134 Handle<Code> code = Handle<Code>::cast(map_or_code); local 154 Handle<Code> code = Handle<Code>::cast(map_or_code); local 176 Handle<Code> code = Handle<Code>::cast(map_or_code); local 219 Handle<Code> code = Handle<Code>::cast(map_or_code); local 234 Handle<Code> code = Handle<Code>::cast(map_or_code); local 248 Handle<Code> code = Handle<Code>::cast(map_or_code); local 364 Handle<Code> code = Handle<Code>::cast(info); local 398 Handle<Code> code = Handle<Code>::cast(object); local 412 Handle<Code> code = Handle<Code>::cast(info); local [all...] |
gdb-jit.h | 6 // * Redistributions of source code must retain the above copyright 116 Code* code, 123 Handle<Code> code, 126 static void AddCode(CodeTag tag, Name* name, Code* code); 128 static void AddCode(CodeTag tag, const char* name, Code* code); 130 static void AddCode(CodeTag tag, Code* code) [all...] |
ic-inl.h | 6 // * Redistributions of source code must retain the above copyright 56 // the original code instead of the address in the running code. This will 57 // cause the original code to be updated and keeps the breakpoint active in 58 // the running code. 70 Code* IC::GetTargetAtAddress(Address address) { 73 // Convert target address to the code object. Code::GetCodeFromTargetAddress 75 Code* result = Code::GetCodeFromTargetAddress(target) [all...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/ |
UnknownInstruction.java | 9 * * Redistributions of source code must retain the above copyright 32 package org.jf.dexlib.Code.Format; 34 import org.jf.dexlib.Code.Opcode;
|
InstructionWithJumboReference.java | 9 * * Redistributions of source code must retain the above copyright 32 package org.jf.dexlib.Code.Format; 34 import org.jf.dexlib.Code.InstructionWithReference; 35 import org.jf.dexlib.Code.Opcode; 36 import org.jf.dexlib.Code.ReferenceType;
|
Instruction11n.java | 9 * 1. Redistributions of source code must retain the above copyright 29 package org.jf.dexlib.Code.Format; 31 import org.jf.dexlib.Code.Instruction; 32 import org.jf.dexlib.Code.LiteralInstruction; 33 import org.jf.dexlib.Code.Opcode; 34 import org.jf.dexlib.Code.SingleRegisterInstruction;
|
Instruction21h.java | 9 * 1. Redistributions of source code must retain the above copyright 29 package org.jf.dexlib.Code.Format; 31 import org.jf.dexlib.Code.EncodedLiteralInstruction; 32 import org.jf.dexlib.Code.Instruction; 33 import org.jf.dexlib.Code.Opcode; 34 import org.jf.dexlib.Code.SingleRegisterInstruction;
|
Instruction21s.java | 9 * 1. Redistributions of source code must retain the above copyright 29 package org.jf.dexlib.Code.Format; 31 import org.jf.dexlib.Code.Instruction; 32 import org.jf.dexlib.Code.LiteralInstruction; 33 import org.jf.dexlib.Code.Opcode; 34 import org.jf.dexlib.Code.SingleRegisterInstruction;
|
Instruction22b.java | 9 * 1. Redistributions of source code must retain the above copyright 29 package org.jf.dexlib.Code.Format; 31 import org.jf.dexlib.Code.Instruction; 32 import org.jf.dexlib.Code.LiteralInstruction; 33 import org.jf.dexlib.Code.Opcode; 34 import org.jf.dexlib.Code.TwoRegisterInstruction;
|
Instruction22s.java | 9 * 1. Redistributions of source code must retain the above copyright 29 package org.jf.dexlib.Code.Format; 31 import org.jf.dexlib.Code.Instruction; 32 import org.jf.dexlib.Code.LiteralInstruction; 33 import org.jf.dexlib.Code.Opcode; 34 import org.jf.dexlib.Code.TwoRegisterInstruction;
|
Instruction31c.java | 9 * 1. Redistributions of source code must retain the above copyright 29 package org.jf.dexlib.Code.Format; 31 import org.jf.dexlib.Code.Instruction; 32 import org.jf.dexlib.Code.InstructionWithReference; 33 import org.jf.dexlib.Code.Opcode; 34 import org.jf.dexlib.Code.SingleRegisterInstruction;
|
Instruction31i.java | 9 * 1. Redistributions of source code must retain the above copyright 29 package org.jf.dexlib.Code.Format; 31 import org.jf.dexlib.Code.Instruction; 32 import org.jf.dexlib.Code.LiteralInstruction; 33 import org.jf.dexlib.Code.Opcode; 34 import org.jf.dexlib.Code.SingleRegisterInstruction;
|
/external/chromium_org/base/ |
safe_numerics.h | 2 // Use of this source code is governed by a BSD-style license that can be 19 #define BASE_NUMERIC_CAST_CASE_SPECIALIZATION(A, B, C, D, Code) \ 23 return Code; \ 27 #define BASE_NUMERIC_CAST_CASE_SAME_SIZE(DestSigned, SourceSigned, Code) \ 29 true, true, DestSigned, SourceSigned, Code); \ 31 true, false, DestSigned, SourceSigned, Code) 33 #define BASE_NUMERIC_CAST_CASE_SOURCE_LARGER(DestSigned, SourceSigned, Code) \ 35 false, false, DestSigned, SourceSigned, Code); \ 37 #define BASE_NUMERIC_CAST_CASE_DEST_LARGER(DestSigned, SourceSigned, Code) \ 39 false, true, DestSigned, SourceSigned, Code); \ [all...] |
/external/llvm/autoconf/m4/ |
config_project.m4 | 6 AS_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]), 10 AS_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),
|
/external/llvm/lib/DebugInfo/ |
DWARFAbbreviationDeclaration.h | 22 uint32_t Code; 29 : Code(InvalidCode), Tag(0), HasChildren(0) {} 31 uint32_t getCode() const { return Code; } 44 bool extract(DataExtractor data, uint32_t* offset_ptr, uint32_t code); 45 bool isValid() const { return Code != 0 && Tag != 0; }
|
/external/llvm/projects/sample/autoconf/m4/ |
config_project.m4 | 6 AS_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]), 10 AS_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),
|