Searched refs:LPlatformChunk (Results 1 - 24 of 24) sorted by relevance

/external/v8/src/crankshaft/
H A Dlithium-codegen.h20 class LPlatformChunk;
36 LPlatformChunk* chunk() const { return chunk_; }
77 LPlatformChunk* const chunk_;
H A Dlithium-allocator.h26 class LPlatformChunk;
349 LPlatformChunk* chunk() const { return chunk_; }
515 LPlatformChunk* chunk_;
H A Dlithium.h625 class LPlatformChunk;
630 // arch-specific LPlatformChunk classes.
723 LPlatformChunk* chunk() const { return chunk_; }
759 LPlatformChunk* chunk_;
H A Dlithium-codegen.cc52 : chunk_(static_cast<LPlatformChunk*>(chunk)),
H A Dlithium-allocator.cc1074 chunk_ = static_cast<LPlatformChunk*>(chunk);
/external/v8/src/crankshaft/x64/
H A Dlithium-codegen-x64.h114 LPlatformChunk* chunk() const { return chunk_; }
H A Dlithium-x64.h242 virtual bool MustSignExtendResult(LPlatformChunk* chunk) const {
282 bool MustSignExtendResult(LPlatformChunk* chunk) const final;
2336 class LPlatformChunk final : public LChunk {
2338 LPlatformChunk(CompilationInfo* info, HGraph* graph) function in class:v8::internal::final
2364 LPlatformChunk* Build();
H A Dlithium-x64.cc158 LPlatformChunk* chunk) const {
306 int LPlatformChunk::GetNextSpillIndex(RegisterKind kind) {
321 LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) {
382 LPlatformChunk* LChunkBuilder::Build() {
384 chunk_ = new(zone()) LPlatformChunk(info(), graph());
/external/v8/src/crankshaft/arm/
H A Dlithium-arm.h2341 class LPlatformChunk final : public LChunk {
2343 LPlatformChunk(CompilationInfo* info, HGraph* graph) function in class:v8::internal::final
2361 LPlatformChunk* Build();
H A Dlithium-arm.cc337 int LPlatformChunk::GetNextSpillIndex(RegisterKind kind) {
344 LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) {
355 LPlatformChunk* LChunkBuilder::Build() {
357 chunk_ = new(zone()) LPlatformChunk(info(), graph());
/external/v8/src/crankshaft/arm64/
H A Dlithium-arm64.h2677 class LPlatformChunk final : public LChunk {
2679 LPlatformChunk(CompilationInfo* info, HGraph* graph) function in class:v8::internal::final
2696 LPlatformChunk* Build();
H A Dlithium-arm64.cc483 int LPlatformChunk::GetNextSpillIndex() { return current_frame_slots_++; }
485 LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) {
510 LPlatformChunk* LChunkBuilder::Build() {
512 chunk_ = new(zone()) LPlatformChunk(info_, graph_);
/external/v8/src/crankshaft/ia32/
H A Dlithium-ia32.h2352 class LPlatformChunk final : public LChunk {
2354 LPlatformChunk(CompilationInfo* info, HGraph* graph) function in class:v8::internal::final
2378 LPlatformChunk* Build();
H A Dlithium-ia32.cc315 int LPlatformChunk::GetNextSpillIndex(RegisterKind kind) {
326 LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) {
384 LPlatformChunk* LChunkBuilder::Build() {
386 chunk_ = new(zone()) LPlatformChunk(info(), graph());
/external/v8/src/crankshaft/mips/
H A Dlithium-mips.h2300 class LPlatformChunk final : public LChunk {
2302 LPlatformChunk(CompilationInfo* info, HGraph* graph) function in class:v8::internal::final
2320 LPlatformChunk* Build();
H A Dlithium-mips.cc344 int LPlatformChunk::GetNextSpillIndex(RegisterKind kind) {
351 LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) {
362 LPlatformChunk* LChunkBuilder::Build() {
364 chunk_ = new(zone()) LPlatformChunk(info(), graph());
/external/v8/src/crankshaft/mips64/
H A Dlithium-mips64.h2346 class LPlatformChunk final : public LChunk {
2348 LPlatformChunk(CompilationInfo* info, HGraph* graph) function in class:v8::internal::final
2366 LPlatformChunk* Build();
H A Dlithium-mips64.cc344 int LPlatformChunk::GetNextSpillIndex(RegisterKind kind) {
351 LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) {
362 LPlatformChunk* LChunkBuilder::Build() {
364 chunk_ = new(zone()) LPlatformChunk(info(), graph());
/external/v8/src/crankshaft/ppc/
H A Dlithium-ppc.h2268 class LPlatformChunk final : public LChunk {
2270 LPlatformChunk(CompilationInfo* info, HGraph* graph) : LChunk(info, graph) {} function in class:v8::internal::final
2287 LPlatformChunk* Build();
H A Dlithium-ppc.cc350 int LPlatformChunk::GetNextSpillIndex(RegisterKind kind) {
357 LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) {
368 LPlatformChunk* LChunkBuilder::Build() {
370 chunk_ = new (zone()) LPlatformChunk(info(), graph());
/external/v8/src/crankshaft/s390/
H A Dlithium-s390.h2117 class LPlatformChunk final : public LChunk {
2119 LPlatformChunk(CompilationInfo* info, HGraph* graph) : LChunk(info, graph) {} function in class:v8::internal::final
2135 LPlatformChunk* Build();
H A Dlithium-s390.cc319 int LPlatformChunk::GetNextSpillIndex(RegisterKind kind) {
325 LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) {
335 LPlatformChunk* LChunkBuilder::Build() {
337 chunk_ = new (zone()) LPlatformChunk(info(), graph());
/external/v8/src/crankshaft/x87/
H A Dlithium-x87.h2348 class LPlatformChunk final : public LChunk {
2350 LPlatformChunk(CompilationInfo* info, HGraph* graph) function in class:v8::internal::final
2374 LPlatformChunk* Build();
H A Dlithium-x87.cc326 int LPlatformChunk::GetNextSpillIndex(RegisterKind kind) {
337 LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) {
395 LPlatformChunk* LChunkBuilder::Build() {
397 chunk_ = new(zone()) LPlatformChunk(info(), graph());

Completed in 245 milliseconds