• Title/Summary/Keyword: Java 2

Search Result 700, Processing Time 0.036 seconds

Optimizing Constant Value Generation in Just-in-time Compiler for 64-bit JavaScript Engine (64-bit 자바스크립트 적시 컴파일러를 위한 상수 값 생성 최적화)

  • Choi, Hyung-Kyu;Lee, Jehyung
    • Journal of KIISE
    • /
    • v.43 no.1
    • /
    • pp.34-39
    • /
    • 2016
  • JavaScript is widely used in web pages with HTML. Many JavaScript engines adopt Just-in-time compilers to accelerate the execution of JavaScript programs. Recently, many newly introduced devices are adopting 64-bit CPUs instead of 32-bit and Just-in-time compilers for 64-bit CPU are slowly being introduced in JavaScript engines. However, there are many inefficiencies in the currently available Just-in-time compilers for 64-bit devices. Especially, the size of code is significantly increased compared to 32-bit devices, mainly due to 64-bit wide addresses in 64-bit devices. In this paper, we are going to address the inefficiencies introduced by 64-bit wide addresses and values in the Just-in-time compiler for the V8 JavaScript engine and propose more efficient ways of generating constant values and addresses to reduce the size of code. We implemented the proposed optimization in the V8 JavaScript engine and measured the size of code as well as performance improvements with Octane and SunSpider benchmarks. We observed a 3.6% performance gain and 0.7% code size reduction in Octane and a 0.32% performance gain and 2.8% code size reduction in SunSpider.

Real-Time Traffic Information System Using Internet GIS (지형공간정보시스템을 이용한 인터넷 실시간 도로교통정보 구축)

  • 이준석;노유진;강인준
    • Journal of the Korean Society of Surveying, Geodesy, Photogrammetry and Cartography
    • /
    • v.15 no.2
    • /
    • pp.263-268
    • /
    • 1997
  • Software structure must be dynamic to support new geospatial information sources and their object-oriented implementation on the Web. JAVA is interactive, platform idependent and object-oriented language and meets all needs on Internet GSIS. This paper introduce JAVA based GIS program to manipulates various geographic data on Internet, communicating interactively and transfer real-time data between server and client. This and this program analysis roof detector in all part of Pusan area and indicates the traffic states, road surface conditions, weather information, shortest cut, and road names in JAVA client windows. Also this study shows various techniques in expression real time traffic informations.

  • PDF

JCA(Java Connector Architecture) and the method to access databases using transaction optimization (JCA(Java Connector Architecture)와 트랜잭션 최적화를 통한 데이터베이스 접근 방법)

  • 서범수;김중배
    • Proceedings of the IEEK Conference
    • /
    • 2003.11b
    • /
    • pp.203-206
    • /
    • 2003
  • JCA(Java Connector Architecture)는 다양한 형태의 데이터 리소스들을 하나의 J2EE 서버에서 사용하기 위해 SUN 에서 제안한 리소스 연동 방안이다. JCA 는 J2EE 서버와 데이터베이스, ERP 등의 레거시 시스템을 연동하기 위해 필요한 다양한 인터페이스들을 제공한다. 이러한 인터페이스들은 데이터 소스로부터 커넥션을 얻기 위한 규약, 이때 필요한 접근 제어 및 인증 관련 규약, 그리고 커넥션과 연관된 트랜잭션에 대한 처리 방안을 제시하는 규약들로 구분된다. 본 논문에서는 JCA의 아키텍처에 대한 설명과 함께 데이터베이스 커넥션에 초점을 맞추어, 트랜잭션의 유무와 상이한 데이터베이스 접근에 따른 3가지 모델에 대해 논의한다.

  • PDF

The Bytecode Optimizer (바이트코드 최적화기)

  • 이야리;홍경표;오세만
    • Journal of KIISE:Software and Applications
    • /
    • v.30 no.1_2
    • /
    • pp.73-80
    • /
    • 2003
  • The Java programming language is designed for developing effective applications in a heterogeneous network environment. Major problem in Java is its performance. many attractive features of Java make the development of software easy, but also make it expensive to support ; applications written in Java are often much slower than their counterparts written in C or C++. To use Java`s attractive features without the performance penalty, sophisticated optimizations and runtime systems are required. Optimising Java bytecode has several advantages. First, the bytecode is independent of any compiler that is used to generate it. Second, the bytecode optimization can be performed as a pre=pass to Just-In-Time(JIT) compilation. Many attractive features of Java make the development of software easy, but also make it expensive to support. The goal of this work is to develop automatic construction of code optimizer for Java bytecode. We`ve designed and implemented a Bytecode Optimizer that performs the peephole optimization, bytecode-specific optimization, and method-inlining techniques. Using the Classfile optimizer, we see up to 9% improvement in speed and about 20% size reduction in Java class files, when compared to average code using the interpreter alone.

An Effective Dual Threaded Java Processor Core (효율적인 이중 스레드 자자 프로세서 핵심)

  • 정준목;김신덕
    • Proceedings of the Korean Information Science Society Conference
    • /
    • 1998.10a
    • /
    • pp.700-702
    • /
    • 1998
  • 자바(Java)의 수행 성능을 향상시키기 위한 방법으로 자바 프로세서가 제안되었다. 그러나 현재의 자바 프로세서는 자바 가상 머신(Java Virtual Macjine)의 구조만을 고려한 것이다. 본 논문에서는 기존 자바 프로세서의 성능을 향상시키는 자바 프로그래밍에서 사용되는 다중스레드를 직접 지원하는 새로운 자바 프로세서인 동시 다중스레드 자바 칩(Simultaneous Multithreaded Java Chip SMTJC)을 제안한다. SMTJC은 두 개의 독립적인 스레드를 동시에 수행함으로써, 자바 프로그램에서의 명령어 수준 병렬성(Instruction level parallelism)을 향상시킨다. 다중스레드 수행을 위해 새로운 스택 캐쉬의 구조 및 운영 방법을 사용한다. JavaSim을 통한 시뮬레이션은 SMTJC 이 기존 자바 프로세서에 비해 이중 스택 캐쉬와 추가적 처리 유닛들로 인해 1.28~2.00의 전체적 수행 성능이 향상됨을 보여준다. 본 연구는 하드웨어와 소프트웨어의 상호 보안적인 기술적 경향을 배경으로 자바의 언어적 특성을 고려한 프로세서를 설계, 지원함으로써 자바 프로세서의 성능 향상을 도모하고 있다.

  • PDF

A Performance Comparative between WAP Service and JAVA Wireless Internet Service (무선 인터넷의 WAP 기반 서비스와 자바 기반 서비스간의 성능 비교)

  • 오기욱
    • Journal of the Korea Society of Computer and Information
    • /
    • v.8 no.2
    • /
    • pp.122-128
    • /
    • 2003
  • There are many development methods to implement wireless internet service. These methods are WAP(Wireless Application Protocol) based services and Java based service WAP based service has been proposed to support limited convenience for user But Java based service can support many convenience and GUI(Graphic User Interface) and easy to use to access for user. This paper will be propose a WAP based application development method and Java based application development method. As an illustrative experiment, WAP based service and Java based service are used to show performance for each systems.

  • PDF

Implementation of a Multimedia based ExamBank System in Web Environments (Web환경에서 멀티미디어 기반 문제은행 시스템의 구현)

  • 남인길;정소연
    • Journal of Korea Society of Industrial Information Systems
    • /
    • v.6 no.2
    • /
    • pp.54-62
    • /
    • 2001
  • In this paper, we proposed multimedia based ExamBank system in web environments. In the proposed system the database was designed based on the object-relation model and the application program was implemented with Java such that independent execution would be possible to guarantee no fault for multi-client in Web environments. We defined the Exam entities as objects, and implemented those inter-relationships as user definition and type. In addition, by mapping the schema object of DBMS and JAVA class, it becomes to possible transferring the object systematically between DHMS and JAVA application server.

  • PDF

Research on IEEE1394 Java API for HAVi home network middleware (HAVi 흠 네트웍 미들웨어를 위한 IEEE1394의 Java API 구조)

  • 박동환;구태연;문경덕
    • Proceedings of the Korean Information Science Society Conference
    • /
    • 2003.04d
    • /
    • pp.52-54
    • /
    • 2003
  • IEEE1394는 디지털 멀티미디어 데이터의 전송의 실시간성이 보장되고 빠른 전송속도와 동적인 네트웍 재구성이 가능한 직렬 인터페이스로 현재 대표적인 흠 네트웍 프로토콜로 인식되고 있다. IEEE1394를 기반 프로토콜로 사용하는 흠 네트웍 미들웨어인 HAVi는 디지털 AV기기간의 상호운용성을 보장하는 미들웨어이다. HAVi의 구현은 어떠한 언어를 사용하든 관계가 없으나, 미들웨어의 구조상 HAVi 응용(Havlet)의 다운로드와 실행, 메시지의 전송방식 등에서 Java언어로의 구현이 가장 적절하며, HAVi에서는 또한 응용 개발을 위한 미들웨어의 Java API와 DTV와 셋탑박스 등에 탑재될 때 사용할 수 있는 HAVi L2 ui를 제공한다. 본 논문은 HAVi 미들웨어를 Java언어로 구현함에 있어 필요한 IEEE1394의 Java API와 효과적인 데이터의 전달을 위한 콜백기법과 005의 보장을 위한 버퍼링 기법을 제안한다.

  • PDF

Notes on Species Belonging to the Genus Coreomyces (Laboulbeniales) Collected from Java Island, Indonesia

  • Lee, Yong-Bo;Na, Young-Hee;Kim, Sung-Jun;Lim, Chae-Kyu
    • Mycobiology
    • /
    • v.36 no.2
    • /
    • pp.134-138
    • /
    • 2008
  • Four species of Laboulbeniales collected from Java Island, Indonesia between August and September in 2006 are described. These species, which belong to the genus Coreomyces and were found on the family Corixidae of the order Hemiptera, were as follows; Coreomycus corixae Thaxter, Coreomyces micronectae Thaxter and Coreomyces orientalis Thaxter, which were found on Micronecta sedula Horvath, and Coreomyces recurvatus Thaxter, which was found on Micronecta sedula Horvath and Xenocorixa sp. C. corixae Thaxter and C. orientalis Thaxter were originally found on Micronecta, whereas C. recurvatus Thaxter was originally found on Xenocorixa. All species described herein are new to Java Island. The specimens were deposited in the Biological Herbarium, Division of Science Education, College of Education, Chosun University.

A Framework for Remote Service Invocation of Android Services to Communicate with External Services in Java Environment (자바환경에서 효과적인 안드로이드 서비스의 외부협업을 위한 원격서비스호출프레임워크)

  • Choi, Jaehyun;Park, Jeawon
    • Journal of Information Technology Services
    • /
    • v.12 no.2
    • /
    • pp.349-359
    • /
    • 2013
  • Recently, smart phones have been widely used in the world. Android phones especially provide existing mobile phone features as well as capability of running enterprise applications and web applications by using services. However, such a linkage has limitations to use Android phones as client devices, there is difficulties in providing services by utilizing characteristics of Android. To solve this problem, we need to invoke services by each other. Currently, the Android platform currently supports inter-process communication IPC. However, there is a limitation that Android services just can invoke remote calls. In this paper, we propose a framework to invoke Android services in java environments. For doing this, we propose methods to make services public and to invoke services in using remote calls and communication methods between java environments and Android.