Searched defs:GC (Results 1 - 15 of 15) sorted by relevance

/external/v8/src/extensions/
H A Dgc-extension.cc15 return v8::FunctionTemplate::New(isolate, GCExtension::GC);
19 void GCExtension::GC(const v8::FunctionCallbackInfo<v8::Value>& args) { function in class:v8::internal::GCExtension
/external/clang/test/Layout/
H A Dms-x86-vtordisp.cpp345 struct GC: public virtual GA { struct in inherits:GA
347 GC() {} function in struct:GC
349 struct GD: public virtual GC, public virtual GB {};
360 // CHECK-NEXT: 12 | struct GC (virtual base)
361 // CHECK-NEXT: 12 | (GC vbtable pointer)
376 // CHECK-X64-NEXT: 24 | struct GC (virtual base)
377 // CHECK-X64-NEXT: 24 | (GC vbtable pointer)
/external/llvm/include/llvm/CodeGen/
H A DGCStrategy.h33 // When a reference to a GC-allocated object exists on the stack, it must be
62 namespace GC { namespace in namespace:llvm
99 /// Return the name of the GC strategy. This is the value of the collector
121 /// pointers to GC managed locations and false for pointers to non-GC
141 bool needsSafePoint(GC::PointKind Kind) const {
/external/llvm/unittests/Analysis/
H A DLazyCallGraphTest.cpp1262 LazyCallGraph::SCC &GC = *CG.lookupSCC(G); local
1271 EXPECT_EQ(&GC, &RC[0]);
1298 EXPECT_EQ(&GC, &RC[0]);
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DGCMetadata.h19 // - Stack offsets for GC roots, as specified by calls to llvm.gcroot
47 namespace GC { namespace in namespace:llvm
61 GC::PointKind Kind; //< The kind of the safe point.
65 GCPoint(GC::PointKind K, MCSymbol *L, DebugLoc DL)
113 /// getStrategy - Return the GC strategy for the function.
127 void addSafePoint(GC::PointKind Kind, MCSymbol *Label, DebugLoc DL) {
/external/compiler-rt/lib/asan/
H A Dasan_fake_stack.cc92 GC(real_stack);
142 NOINLINE void FakeStack::GC(uptr real_stack) { function in class:__asan::FakeStack
/external/v8/tools/gcmole/
H A Dgcmole.cc302 static ExprEffect GC() { function in class:__anon23614::ExprEffect
832 return ExprEffect::GC();
1295 FindProblems("find-problems", "Find GC-unsafe places.");
/external/v8/tools/
H A Dtickprocessor.js183 GC: 1,
315 if (vmState == TickProcessor.VmStates.GC) this.ticks_.gc++;
415 this.printLine('GC', this.ticks_.gc, totalTicks, nonLibraryTicks);
789 '-g': ['stateFilter', TickProcessor.VmStates.GC,
790 'Show only ticks from GC VM state'],
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
H A Dllvm_ocaml.c14 |* macros, since most of the parameters are not GC heap objects. *|
1028 const char *GC; local
1032 if ((GC = LLVMGetGC(Fn))) {
1033 Name = copy_string(GC);
1044 CAMLprim value llvm_set_gc(value GC, LLVMValueRef Fn) { argument
1045 LLVMSetGC(Fn, GC == Val_int(0)? 0 : String_val(Field(GC, 0)));
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c14 |* macros, since most of the parameters are not GC heap objects. *|
1290 const char *GC; local
1294 if ((GC = LLVMGetGC(Fn))) {
1295 Name = caml_copy_string(GC);
1306 CAMLprim value llvm_set_gc(value GC, LLVMValueRef Fn) { argument
1307 LLVMSetGC(Fn, GC == Val_int(0)? 0 : String_val(Field(GC, 0)));
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DCore.cpp1329 void LLVMSetGC(LLVMValueRef Fn, const char *GC) { argument
1331 if (GC)
1332 F->setGC(GC);
/external/clang/include/clang/AST/
H A DType.h116 /// * Objective C: the GC attributes (none, weak, or strong)
126 enum GC { enum in class:clang::Qualifiers
287 GC getObjCGCAttr() const { return GC((Mask & GCAttrMask) >> GCAttrShift); }
288 void setObjCGCAttr(GC type) {
292 void addObjCGCAttr(GC type) {
447 // ObjC GC qualifiers can match, be added, or be removed, but can't
996 inline Qualifiers::GC getObjCGCAttr() const;
1172 /// Objective-C GC attributes) are much more rare.
1208 Qualifiers::GC getObjCGCAtt
[all...]
/external/llvm/lib/IR/
H A DCore.cpp1823 void LLVMSetGC(LLVMValueRef Fn, const char *GC) { argument
1825 if (GC)
1826 F->setGC(GC);
/external/v8/include/
H A Dv8.h538 * As always, GC-based finalization should *not* be relied upon for any
572 * GC prologue callback or followed by a global GC epilogue callback.
1647 enum StateTag { JS, GC, COMPILER, OTHER, EXTERNAL, IDLE }; enumerator in enum:v8::StateTag
5984 * GCCallbackFlags is used to notify additional information about the GC
5986 * - kGCCallbackFlagConstructRetainedObjectInfos: The GC callback is for
5988 * - kGCCallbackFlagForced: The GC callback is for a forced GC for testing.
5989 * - kGCCallbackFlagSynchronousPhantomCallbackProcessing: The GC callback
5991 * - kGCCallbackFlagCollectAllAvailableGarbage: The GC callbac
[all...]
/external/v8/src/heap/
H A Dheap.cc259 // Is global GC requested?
262 *reason = "GC in old space requested";
267 *reason = "GC in old space forced by flags";
284 // space. Undercounting is safe---we may get an unrequested full GC when
312 ReportHeapStatistics("Before GC");
378 PrintIsolate(isolate_, "Total time spent in GC : %.1f ms\n",
385 // Similar to the before GC, we use some complicated logic to ensure that
390 ReportHeapStatistics("After GC");
427 // Reset GC statistics.
659 if (FLAG_code_stats) ReportCodeStatistics("After GC");
972 RuntimeCallTimerScope(isolate(), &RuntimeCallStats::GC); member in class:v8::internal::RuntimeCallStats
[all...]

Completed in 957 milliseconds