HomeSort by relevance Sort by last modified time
    Searched refs:V8 (Results 1 - 25 of 187) sorted by null

1 2 3 4 5 6 7 8

  /external/llvm/test/MC/ARM/
invalid-fp-armv8.s 1 @ RUN: not llvm-mc -triple armv8 -show-encoding -mattr=-neon < %s 2>&1 | FileCheck %s --check-prefix=V8
11 @ V8: error: invalid instruction
13 @ V8: error: invalid instruction
15 @ V8: error: invalid instruction
17 @ V8: error: invalid instruction
19 @ V8: error: invalid instruction
21 @ V8: error: invalid instruction
23 @ V8: error: invalid instruction
25 @ V8: error: invalid instruction
27 @ V8: error: invalid instructio
    [all...]
basic-thumb2-instructions-v8.s 3 @ RUN: llvm-mc -triple thumbv8 -show-encoding < %s | FileCheck %s --check-prefix=CHECK-V8
9 @ CHECK-V8: hlt #0 @ encoding: [0x80,0xba]
10 @ CHECK-V8: hlt #63 @ encoding: [0xbf,0xba]
18 @ CHECK-V8: it pl @ encoding: [0x58,0xbf]
19 @ CHECK-V8: hlt #24 @ encoding: [0x98,0xba]
24 @ CHECK-V8: hlt #24 @ encoding: [0x98,0xba]
31 @ CHECK-V8: sbc.w r6, r3, sp, asr #16 @ encoding: [0x63,0xeb,0x2d,0x46]
32 @ CHECK-V8: and.w r6, r3, sp, asr #16 @ encoding: [0x03,0xea,0x2d,0x46]
33 @ CHECK-V8: and sp, r0, #0 @ encoding: [0x00,0xf0,0x00,0x0d]
42 @ CHECK-V8: dcps1 @ encoding: [0x8f,0xf7,0x01,0x80
    [all...]
basic-arm-instructions-v8.s 3 @ RUN: llvm-mc -triple armv8 -show-encoding < %s | FileCheck %s --check-prefix=CHECK-V8
9 @ CHECK-V8: hlt #0 @ encoding: [0x70,0x00,0x00,0xe1]
10 @ CHECK-V8: hlt #65535 @ encoding: [0x7f,0xff,0x0f,0xe1]
16 @ CHECK-V8: hlt #0 @ encoding: [0x70,0x00,0x00,0xe1]
20 @ DMB (v8 barriers)
27 @ CHECK-V8: dmb ishld @ encoding: [0x59,0xf0,0x7f,0xf5]
28 @ CHECK-V8: dmb oshld @ encoding: [0x51,0xf0,0x7f,0xf5]
29 @ CHECK-V8: dmb nshld @ encoding: [0x55,0xf0,0x7f,0xf5]
30 @ CHECK-V8: dmb ld @ encoding: [0x5d,0xf0,0x7f,0xf5]
37 @ DSB (v8 barriers
    [all...]
directive-arch_extension-crypto.s 4 @ RUN: | FileCheck %s -check-prefix CHECK-V8
8 @ RUN: | FileCheck %s -check-prefix CHECK-V8
62 @ CHECK-V8: error: instruction requires: crypto
66 @ CHECK-V8: error: instruction requires: crypto
69 @ CHECK-V8: error: instruction requires: crypto
72 @ CHECK-V8: error: instruction requires: crypto
75 @ CHECK-V8: error: instruction requires: crypto
79 @ CHECK-V8: error: instruction requires: crypto
82 @ CHECK-V8: error: instruction requires: crypto
85 @ CHECK-V8: error: instruction requires: crypt
    [all...]
directive-arch_extension-crc.s 4 @ RUN: | FileCheck %s -check-prefix CHECK-V8
40 @ CHECK-V8: error: instruction requires: crc
43 @ CHECK-V8: error: instruction requires: crc
46 @ CHECK-V8: error: instruction requires: crc
50 @ CHECK-V8: error: instruction requires: crc
53 @ CHECK-V8: error: instruction requires: crc
56 @ CHECK-V8: error: instruction requires: crc
thumb-diagnostics.s 8 @ RUN: | FileCheck --check-prefix=CHECK-ERRORS-V8 %s
45 @ Out of range immediates for v8 HLT instruction.
51 @CHECK-ERRORS-V8: error: instruction requires: arm-mode
52 @CHECK-ERRORS-V8: hlt #64
53 @CHECK-ERRORS-V8: ^
80 @ CHECK-ERRORS-V8: error: writeback operator '!' not allowed when base register in register list
81 @ CHECK-ERRORS-V8: ldm r2!, {r2, r3, r4, r10}
82 @ CHECK-ERRORS-V8: ^
83 @ CHECK-ERRORS-V8: error: writeback register not allowed in register list
84 @ CHECK-ERRORS-V8: ldmdb r2!, {r2, r3, r4
    [all...]
  /external/v8/src/
v8.cc 1 // Copyright 2012 the V8 project authors. All rights reserved.
5 #include "src/v8.h"
26 namespace v8 { namespace
36 v8::Platform* V8::platform_ = NULL;
39 bool V8::Initialize() {
45 void V8::TearDown() {
56 void V8::InitializeOncePerProcessImpl() {
89 void V8::InitializeOncePerProcess() {
94 void V8::InitializePlatform(v8::Platform* platform)
    [all...]
counters.h 1 // Copyright 2012 the V8 project authors. All rights reserved.
8 #include "include/v8.h"
22 namespace v8 { namespace
491 V8_NOINLINE void Dump(v8::tracing::TracedValue* value);
    [all...]
utils-inl.h 1 // Copyright 2016 the V8 project authors. All rights reserved.
10 #include "include/v8-platform.h"
12 #include "src/v8.h"
14 namespace v8 { namespace
26 return V8::GetCurrentPlatform()->MonotonicallyIncreasingTime() *
35 } // namespace v8
v8.h 1 // Copyright 2011 the V8 project authors. All rights reserved.
8 #include "include/v8.h"
12 namespace v8 { namespace
15 class V8 : public AllStatic {
27 static void InitializePlatform(v8::Platform* platform);
29 V8_EXPORT_PRIVATE static v8::Platform* GetCurrentPlatform();
32 static void SetPlatformForTesting(v8::Platform* platform);
41 // v8::Platform to use.
42 static v8::Platform* platform_;
46 } // namespace v8
    [all...]
allocation.cc 1 // Copyright 2012 the V8 project authors. All rights reserved.
12 #include "src/v8.h"
18 namespace v8 { namespace
24 V8::FatalProcessOutOfMemory("Malloced operator new");
67 if (ptr == NULL) V8::FatalProcessOutOfMemory("AlignedAlloc");
84 } // namespace v8
  /external/llvm/test/MC/Sparc/
sparcv9-instructions.s 1 ! RUN: not llvm-mc %s -arch=sparc -show-encoding 2>&1 | FileCheck %s --check-prefix=V8
4 ! V8: error: invalid instruction mnemonic
5 ! V8-NEXT: addc %g2, %g1, %g3
9 ! V8: error: invalid instruction mnemonic
10 ! V8-NEXT: addccc %g1, %g2, %g3
14 ! V8: error: invalid instruction mnemonic
15 ! V8-NEXT: subc %g2, %g1, %g3
19 ! V8: error: invalid instruction mnemonic
20 ! V8-NEXT: subccc %g1, %g2, %g3
24 ! V8: error: instruction requires a CPU feature not currently enable
    [all...]
  /external/v8/samples/
hello-world.cc 1 // Copyright 2015 the V8 project authors. All rights reserved.
10 #include "include/v8.h"
12 using namespace v8;
15 // Initialize V8.
16 V8::InitializeICUDefaultLocation(argv[0]);
17 V8::InitializeExternalStartupData(argv[0]);
19 V8::InitializePlatform(platform);
20 V8::Initialize();
25 v8::ArrayBuffer::Allocator::NewDefaultAllocator();
55 // Dispose the isolate and tear down V8
    [all...]
  /external/v8/tools/
v8-info.sh 2 # Copyright 2013 the V8 project authors. All rights reserved.
32 BASE_URL="https://code.google.com/p/v8/source/list"
33 VERSION="include/v8-version.h"
39 V8="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
43 cd $V8
49 Fetches V8 revision information from a git-svn checkout.
54 -i Print revision info for all branches matching the V8 version.
56 Output format: [Git hash] [SVN revision] [V8 version]
58 -v Print the V8 version tag for a trunk SVN revision.
60 Output format: [V8 version
    [all...]
v8-rolls.sh 2 # Copyright 2013 the V8 project authors. All rights reserved.
33 INFO=tools/v8-info.sh
35 V8="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
43 Run in chromium/src to get information about V8 rolls.
48 -s Chromium git hash to start printing V8 information about.
84 cd $V8
parser-shell.cc 1 // Copyright 2014 the V8 project authors. All rights reserved.
34 #include "src/v8.h"
48 using namespace v8::internal;
50 class StringResource8 : public v8::String::ExternalOneByteStringResource {
62 std::pair<v8::base::TimeDelta, v8::base::TimeDelta> RunBaselineParser(
63 const char* fname, Encoding encoding, int repeat, v8::Isolate* isolate,
64 v8::Local<v8::Context> context) {
67 v8::Local<v8::String> source_handle
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/
ticc-imm-reg.s 1 ! Make ticc aliases operate as per V8 SPARC Architecture Manual
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug473.go 34 var V8 = F(V14, V7, V3, V6, V5)
42 var V12 = F(V5, V3, V8)
62 expect("V8", V8, 21)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug473.go 34 var V8 = F(V14, V7, V3, V6, V5)
42 var V12 = F(V5, V3, V8)
62 expect("V8", V8, 21)
  /external/v8/src/profiler/
tracing-cpu-profiler.cc 1 // Copyright 2016 the V8 project authors. All rights reserved.
9 #include "src/v8.h"
11 namespace v8 { namespace
14 v8::Isolate* isolate) {
25 TRACE_EVENT_WARMUP_CATEGORY(TRACE_DISABLED_BY_DEFAULT("v8.cpu_profiler"));
27 TRACE_DISABLED_BY_DEFAULT("v8.cpu_profiler.hires"));
28 V8::GetCurrentPlatform()->AddTraceStateObserver(this);
33 V8::GetCurrentPlatform()->RemoveTraceStateObserver(this);
39 TRACE_DISABLED_BY_DEFAULT("v8.cpu_profiler"), &enabled);
43 [](v8::Isolate*, void* data)
    [all...]
  /external/v8/src/tracing/
tracing-category-observer.cc 1 // Copyright 2016 the V8 project authors. All rights reserved.
9 #include "src/v8.h"
11 namespace v8 { namespace
18 v8::internal::V8::GetCurrentPlatform()->AddTraceStateObserver(
20 TRACE_EVENT_WARMUP_CATEGORY(TRACE_DISABLED_BY_DEFAULT("v8.runtime_stats"));
22 TRACE_DISABLED_BY_DEFAULT("v8.runtime_stats_sampling"));
23 TRACE_EVENT_WARMUP_CATEGORY(TRACE_DISABLED_BY_DEFAULT("v8.gc_stats"));
24 TRACE_EVENT_WARMUP_CATEGORY(TRACE_DISABLED_BY_DEFAULT("v8.ic_stats"));
28 v8::internal::V8::GetCurrentPlatform()->RemoveTraceStateObserver
    [all...]
  /external/v8/src/snapshot/
mksnapshot.cc 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
18 using namespace v8;
38 void WriteSnapshot(v8::StartupData blob) const {
66 fprintf(fp_, "#include \"src/v8.h\"\n");
69 fprintf(fp_, "namespace v8 {\n");
74 fprintf(fp_, "const v8::StartupData* Snapshot::DefaultSnapshotBlob() {\n");
78 fprintf(fp_, "} // namespace v8\n");
86 fprintf(fp_, "static const v8::StartupData blob =\n");
153 V8::InitializeICUDefaultLocation(argv[0]);
154 v8::Platform* platform = v8::platform::CreateDefaultPlatform()
    [all...]
  /external/skia/experimental/SkV8Example/
SkV8Example.cpp 9 #include <v8.h>
164 v8::V8::SetFlagsFromCommandLine(&argc, argv, true);
167 v8::V8::InitializeICU();
168 v8::Platform* platform = v8::platform::CreateDefaultPlatform();
169 v8::V8::InitializePlatform(platform);
170 v8::V8::Initialize()
    [all...]
  /external/v8/
Android.mk 24 $(warning WARNING: Building on ARM with non-ARMv7 variant. On ARM, V8 is well tested only on ARMv7.)
34 include $(base_path)/Android.v8.mk
  /external/v8/src/heap/
scavenge-job.cc 1 // Copyright 2015 the V8 project authors. All rights reserved.
11 #include "src/v8.h"
13 namespace v8 { namespace
103 v8::Isolate* isolate = reinterpret_cast<v8::Isolate*>(heap->isolate());
104 if (V8::GetCurrentPlatform()->IdleTasksEnabled(isolate)) {
107 V8::GetCurrentPlatform()->CallIdleOnForegroundThread(isolate, task);
112 } // namespace v8

Completed in 195 milliseconds

1 2 3 4 5 6 7 8