/external/v8/src/ |
D | type-info.cc | 68 if (maybe_code->IsCode()) { in LoadIsUninitialized() 78 if (!maybe_code->IsCode()) return false; in StoreIsUninitialized() 86 if (maybe_code->IsCode()) { in StoreIsKeyedPolymorphic() 121 if (maybe_code->IsCode()) { in GetStoreMode() 181 if (!info->IsCode()) { in CompareType() 218 if (!object->IsCode()) { in BinaryType() 249 if (!object->IsCode()) return Type::None(zone()); in CountType() 309 DCHECK(object->IsCode()); in CollectReceiverTypes() 360 if (!object->IsCode()) return; in CollectReceiverTypes() 383 return object->IsCode() ? Handle<Code>::cast(object)->to_boolean_state() : 0; in ToBooleanTypes()
|
D | objects-debug.cc | 523 CHECK(code()->IsCode()); in JSFunctionVerify() 761 (is_native ? one_byte_data->IsCode() : one_byte_data->IsByteArray())); in JSRegExpVerify() 764 (is_native ? uc16_data->IsCode() : uc16_data->IsByteArray())); in JSRegExpVerify() 769 one_byte_saved->IsCode()); in JSRegExpVerify() 772 uc16_saved->IsCode()); in JSRegExpVerify()
|
D | serialize.h | 421 code_object_(o->IsCode()), in ObjectSerializer() 531 o->IsHeapNumber() || o->IsCode() || in ShouldBeInThePartialSnapshotCache()
|
D | assembler.cc | 850 CHECK(found->IsCode()); in Verify() 871 DCHECK(Code::IsYoungSequence(isolate, pc_) || code_age_stub()->IsCode()); in Verify()
|
D | serialize.cc | 802 DCHECK(obj->IsCode() == is_codespace); in ReadObject() 890 if (space_number != CODE_SPACE || new_object->IsCode()) { \ in ReadChunk() 1841 if (heap_object->IsCode()) { in SerializeObject()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldMachOI386.h | 157 bool IsCode = SectionA.isText(); in processSECTDIFFRelocation() local 159 findOrEmitSection(Obj, SectionA, IsCode, ObjSectionToID); in processSECTDIFFRelocation() 168 findOrEmitSection(Obj, SectionB, IsCode, ObjSectionToID); in processSECTDIFFRelocation() 212 bool IsCode = TargetSection.isText(); in processI386ScatteredVANILLA() local 214 findOrEmitSection(Obj, TargetSection, IsCode, ObjSectionToID); in processI386ScatteredVANILLA()
|
D | RuntimeDyldMachOARM.h | 238 bool IsCode = SectionA.isText(); in processHALFSECTDIFFRelocation() local 240 findOrEmitSection(MachO, SectionA, IsCode, ObjSectionToID); in processHALFSECTDIFFRelocation() 249 findOrEmitSection(MachO, SectionB, IsCode, ObjSectionToID); in processHALFSECTDIFFRelocation()
|
D | RuntimeDyldCOFFX86_64.h | 131 bool IsCode = SecI->isText(); in processRelocationRef() local 132 TargetSectionID = findOrEmitSection(Obj, *SecI, IsCode, ObjSectionToID); in processRelocationRef()
|
/external/llvm/tools/lli/ChildTarget/ |
D | ChildTarget.cpp | 25 void handleLoadSection(bool IsCode); 122 void LLIChildTarget::handleLoadSection(bool IsCode) { in handleLoadSection() argument 144 if (IsCode) in handleLoadSection()
|
/external/llvm/tools/lli/ |
D | RemoteMemoryManager.h | 34 : MB(mb), Alignment(a), IsCode(code) {} in Allocation() 38 bool IsCode; member
|
D | RemoteMemoryManager.cpp | 100 if (Section.IsCode) { in notifyObjectLoaded() 117 if (!Section.IsCode) { in notifyObjectLoaded() 158 if (Section.IsCode) { in finalizeMemory()
|
D | RemoteTargetExternal.cpp | 138 bool IsCode) { in SendLoadSection() argument 139 LLIMessageType MsgType = IsCode ? LLI_LoadCodeSection : LLI_LoadDataSection; in SendLoadSection()
|
D | RemoteTargetExternal.h | 118 bool IsCode);
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 194 bool IsCode = SI->isText(); in loadObjectImpl() local 196 findOrEmitSection(Obj, *SI, IsCode, LocalSections); in loadObjectImpl() 232 bool IsCode = RelocatedSection->isText(); in loadObjectImpl() local 234 findOrEmitSection(Obj, *RelocatedSection, IsCode, LocalSections); in loadObjectImpl() 348 bool IsCode = Section.isText(); in computeTotalAllocSize() local 367 if (IsCode) { in computeTotalAllocSize() 548 const SectionRef &Section, bool IsCode) { in emitSection() argument 584 Addr = IsCode ? MemMgr.allocateCodeSection(Allocate, Alignment, SectionID, in emitSection() 635 bool IsCode, in findOrEmitSection() argument 643 SectionID = emitSection(Obj, Section, IsCode); in findOrEmitSection()
|
D | RuntimeDyldMachO.cpp | 79 bool IsCode = Sec.isText(); in getRelocationValueRef() local 80 Value.SectionID = findOrEmitSection(Obj, Sec, IsCode, ObjSectionToID); in getRelocationValueRef()
|
D | RuntimeDyldImpl.h | 323 bool IsCode); 331 bool IsCode, ObjSectionToIDMap &LocalSections);
|
D | RuntimeDyldELF.cpp | 659 bool IsCode = tsi->isText(); in findOPDEntrySection() local 660 Rel.SectionID = findOrEmitSection(Obj, (*tsi), IsCode, LocalSections); in findOPDEntrySection()
|
/external/v8/src/ic/ |
D | ic-compiler.cc | 23 if (probe->IsCode()) return handle(Code::cast(probe)); in Find() 93 if (probe->IsCode()) return Handle<Code>::cast(probe); in ComputeKeyedLoadMonomorphic() 136 if (probe->IsCode()) return Handle<Code>::cast(probe); in ComputeKeyedStoreMonomorphic() 251 if (probe->IsCode()) return Handle<Code>::cast(probe); in ComputeKeyedLoadPolymorphic() 298 if (probe->IsCode()) return Handle<Code>::cast(probe); in ComputeKeyedStorePolymorphic()
|
D | handler-compiler.cc | 23 if (probe->IsCode()) return handle(Code::cast(probe)); in Find()
|
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/ |
D | tokenutil.py | 253 if token.IsCode(): 256 if new_token.IsCode():
|
D | javascripttokens.py | 139 def IsCode(self): member in JavaScriptToken
|
D | ecmametadatapass.py | 417 if self._token.IsCode(): 445 is_last_code_in_line = token.IsCode() and (
|
/external/v8/test/cctest/ |
D | test-hashing.cc | 115 CHECK(code->IsCode()); in check()
|
D | test-assembler-x87.cc | 307 CHECK(code->IsCode()); in TEST()
|
/external/v8/src/heap/ |
D | spaces.cc | 1429 CHECK(!object->IsCode()); in Verify() 2699 if (obj->IsCode()) { in CollectCodeStatistics() 3016 CHECK(object->IsCode() || object->IsSeqString() || in Verify() 3025 if (object->IsCode()) { in Verify() 3076 if (obj->IsCode()) { in CollectCodeStatistics()
|